-
Jan 23, 2025 |
arxiv.org | Faisal Ahmed
-
Dec 9, 2024 |
ft.com | Faisal Ahmed
The writer is Sudanese American Physicians Association country director In Sudan, Khartoum’s hospitals used to be a source of hope and...
-
Nov 27, 2024 |
dev.to | Faisal Ahmed
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="button-container"> <button class="btn btn-cancel"> Cancel </button> <button class="btn btn-next"> Next <svg class="arrow-icon" fill="#ffffff" height="22px" width="22px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"...
-
Nov 11, 2024 |
faisalahmedador.medium.com | Faisal Ahmed
Faisal Ahmed·Follow3 min read·--In this post, I’ll walk you through setting up a Dockerized NX monorepo with multiple applications, each configured to use environment-specific settings. This setup allows for distinct configurations for development and production environments by using .env.development and .env.production files. Additionally, I’ll show you how to pass these environment variables through Docker Compose into Dockerfiles and integrate them into the applications using Webpack.
-
Nov 2, 2024 |
dev.to | Faisal Ahmed
Faisal Ahmed I am Faisal Ahmed, A tech enthusiast and love to learn and explore web technologies. Currently, I am exploring React js, Node, MongoDb and React native also. Location Dhaka,Bangladesh Education BSc. in computer science and engineering Joined
-
Oct 10, 2024 |
dev.to | Faisal Ahmed
On HTML, Only one class variable added, On TS, set different class name in different different route in a variable.
-
Oct 3, 2024 |
dev.to | Faisal Ahmed
main route: http://localhost:4200/pricingproblem statement: if you go to pricing url, then set a value true in isShow variable. Based on this isShow variable, you can hide/unhide the div or others things. import { Router } from '@angular/router'; isShow = false;constructor(private router: Router) {}ngOnInit(): void { if (this.router.url.includes('/pricing')) { this.isShow = true; } else { this.isShow = false; } }
-
Sep 4, 2024 |
dev.to | Faisal Ahmed
{ path: 'blogs', loadChildren: () => import('./pages/all-blog/all-blog-routing.module').then( (m) => m.AllBlogRoutingModule ), }, { path: 'blogs/:id', loadChildren: () => import('./pages/blog-details/blog-details-routing.module').then( (m) => m.BlogDetailsRoutingModule ), }, <div class="blog-card"> <div class="blog-title"> <h3>{{ data?.title }}</h3> </div> <div class="blog-read"> <a [routerLink]="['/blogs', data?.id]">Read More</a> </div> </div> export class DetailsComponent { // Store Data...
-
Sep 3, 2024 |
dev.to | Faisal Ahmed
// Get Page From Query Param this.subRouteOne = this.activatedRoute.queryParams.subscribe((qParam) => { // Search Query this.searchQueryFromQueryParam(qParam); // console.log(qParam); // Filter Query this.filterQueryFromQueryParam(qParam); // Base data this.getAllCourses(); this.getAllCategories(); }); Read next Muhammad Bilal - Sep 3 Rafael Herik de Carvalho - Sep 3 We're a place where coders share, stay up-to-date and grow their careers.
-
Aug 18, 2024 |
dev.to | Faisal Ahmed
App.component <h1 style="color: blue;">I am parent= {{title}}</h1> <h2 style="color: red;">Data is coming from Child to Parent= {{comingFromChildData}}</h2> <app-child (updateDataEvent)="sendFunc($event)"></app-child> title: any = "Hello Parent"; comingFromChildData: any; sendFunc(item: any){ console.log("I am from child data = ", item); this.comingFromChildData = item; } Child.component <h2>I am child!</h2> <button (click)="updateDataEvent.emit(myChildData)">Update Data</button> import {...