Posts

Showing posts from October, 2024

c language

Image
 

sewa samiti

 username:sewasamiti password:Sew@_123 y sahi h username.... username:u889142657.sewasamiti https://myoutspark.com/ultimate-resume-test/v2?utm_source=Performance-Max&utm_medium=cpc&utm_campaign=RR-Outspark-Jobs-Inmarket-PMax-081024&utm_adgroup=Job-Search-Inmarket-Audience-New-LP&gad_source=2&gclid=CjwKCAiA5Ka9BhB5EiwA1ZVtvK_MwSKtVxomsaYFbb1-ivYNgWFi3j-m8yYTazQoLQn90nowignXWBoCVJoQAvD_BwE

react with ts and talwind

  talwind css itelisence pakckage.json vs code:-- file association search: item:*.css value talwindcss editor quick suggestion settings on eslint:--problem waring in our code

interface ts

 https://www.geeksforgeeks.org/explain-type-assertions-in-typescript/ function fullName(person:{firstName:string,lastName:string}){ console.log(`${person.firstname} ${person.lastName}`); } let p={ firstName:'Bruce', lastName?:'Wayne'//optional:registration....form } interface:----- interface Person{ firstName:string, lastName:string; } function fullName(person:Person){ console.log(`${person.firstName}${person.lastName}`); } let p={ firstname:'radhe' } fullName(p); ...access modifier public privat protected can be used.............

angular 18 project structure

 package.json bundle lot of packages dependencies:angular application[build part] dev dependencies:-locally environment run [build not a part] angular.json:--project configuration configuration file architecture settting execute file first:-main.ts style.css: global style .gitignore:--which u don't want to push tsconfig.ts:--typescript related configuration index.html:--approot main.ts:--appcomponent:[default component] appconfig.ts:-- now days we have standalone component few things we can include:-- like http services client app.route.ts:-- route setting ................................................................ component:-- ng g c componentname component.ts file is enough for component .ts:-- @component:--decorator:-- selector:--unique identifier of that component standalone:--component app.module.ts configure appcomonent.ts:-- import[] that component ...........................

sewasamitia

 username:sewasamiti password:Sewa_samiti1 hostinger ftp

angular ngnx

Image
  ngrx: state management in angular services for small application ngrx:--efficient track updates [directly doesn't  modified easy track] performance better. [Redux pattern based] easy debug.[for ngrx]

angular 18 ..1

 module system:--optional standalone component first  this was introduced in module zoneless:--[expriemental] zone.js:--changes detection faster inital render and runtime samller bundle size and faster page load more readable ...................... app.config.ts:-- provdeExprerimentalZonlessCangeDetection( angular.json polyfill:--remove zoneless change angular.dev:--official website. angular material3:stable lazy loading allow:deferable views :--control flow built in control flow server side rendering faster load i18n   support improve debugging experience angular debugger:--hydrated process route redirects with functions:-- redirectTo:(url)=>{ } redirect command :--authentication[gurad resolver] ng-content[defaut content] typescript support forms api updates npm --v:node version ng v:angular version project structure:----- package.json:---

nest vs node js

 React vs angular js:-- react:--flexibility and freedom /agility angular:-stability and reilibility node js vs nest js:-- node js:-- Express Fast, unopinionated, minimalist web framework for Node.js unopinionated:--Express is an un-opinionated framework, meaning that it allows developers the freedom to structure their code how they choose instead of forcing a particular code structure. nest js nest js:---[angular inspired framework] security modular Architecture:-- modules component pipes controller features:-- task scheduling queues logging cookies validation build in support:-- websocket supports api:-- rest graphql more robust [nest provides a comprehensive  solution reducing the need to hunt the external libraries]