Skip to main content

Posts

How to get Windows 11 24H2 update

 Here's a video from Microsoft Community to follow

End of support for Windows 10, Windows 8.1 and Windows 7

Here's more you can read about the support:  link How you can move to Windows 11 Frequently asked questions   What can I do with my old computer? Trade it  in or  recycle it  with local organizations. Will my Windows 10 PC stop working? No. Your PC will continue to work, but support will be discontinued. How is Windows 11 more secure? Windows 11 is the most secure Windows ever built, with comprehensive end-to-end security that covers antivirus, firewall, internet protections, and more.  Read more  about Windows security.

Windows 11 2024 update | Biggest release ever 24H2

  Inside this update 24H2 update history

Paint 3D won't be available in the Microsoft Store | starting on Nov 4, 2024.

 Paint 3D won't be available in the Microsoft Store or receive any future updates as confimed and starting on Nov 4, 2024.

Happy 10th anniversary, Windows Insiders!

In October 2014, we launched the   Windows   Insider   Program.  Checkout 10th year anniversary wallpapers (Light and Dark theme). Windows Insider Webcast | October 2024 A decade later, our global community of millions of   Windows   Insiders   have greatly helped us shape   Windows   we   know today. We thank you for your enthusiasm and feedback and look forward to the next decade of innovation together!  fo

Google Bard is now available in INDIA

Google Bard  https://bard.google.com/

Google I/O 2023

 

Angular 16 Released

 check out these videos:

Node & Redis cache Connection

Refer below link to connect both and follow below details for docker integration:   node.js - Nodejs Redis createClient() function - Stack Overflow Install the Redis package: First, you need to install the Redis package for Node.js. You can do this using npm by running the command npm install redis. Initialize Redis client: In your server-side code, you would create a Redis client instance using the redis.createClient() method, which establishes a connection to the Redis server. You can also pass in configuration options such as the Redis server host and port. Add caching logic: Once you have a Redis client instance, you can add caching logic to your server-side code. This typically involves wrapping a function that retrieves data from a database or external API in a Redis cache check. For example, you might use the Redis get() method to check if the requested data already exists in the cache. If it does, you can return the cached data. If it doesn't, you would fetch the data fr...

React Redux

Some common keywords associated with React Redux are: Store : A global state object that holds all the data for the application. Actions : A plain JavaScript object that describes what you want to do. Action creators : A function that creates an action. Reducer : A function that updates the state of the application in response to an action. Dispatch : A method that dispatches an action to the store. Provider : A component that makes the store available to the rest of the application. Connect : A higher-order component that connects a component to the store. mapStateToProps : A function that maps the state of the store to the props of a component. mapDispatchToProps : A function that maps dispatch actions to the props of a component. Middleware : A function that enhances the behavior of the store and can be used for logging, debugging, or handling asynchronous actions.

Pros & Cons of going to the office

Just random thoughts after working from home and from office...hmm 🤔   Pros of going to the office: Collaboration : Going to the office provides an opportunity for in-person collaboration with coworkers. This can lead to better teamwork and more productive discussions. Work-Life Balance : For some people, a clear separation between work and personal life is important for maintaining a healthy work-life balance. Going to the office can provide that separation and help individuals focus on work when they are at work and relax when they are at home. Social Interaction : Going to the office can provide opportunities for social interaction with coworkers and can foster a sense of community and belonging. Professional Development : Going to the office can provide opportunities for professional development and learning through in-person training and other activities. Cons of going to the office: Commuting : Commuting to and from the office can be time-consuming and stressful and can...

JEST for React and Angular | React and Angular Testing Library | MS App Dynamics

 import { Component, Input } from '@angular/core'; @Component({   selector: 'app-hello',   template: `<h1>Hello {{name}}!</h1>`, }) export class HelloComponent {   @Input() name: string; } // The test for the component import { HelloComponent } from './hello.component'; import { TestBed } from '@angular/core/testing'; describe('HelloComponent', () => {   beforeEach(() => {     TestBed.configureTestingModule({       declarations: [HelloComponent],     });   });   it('should display the name', () => {     const fixture = TestBed.createComponent(HelloComponent);     const component = fixture.componentInstance;     component.name = 'Jest';     fixture.detectChanges();     const h1 = fixture.nativeElement.querySelector('h1');     expect(h1.textContent).toBe('Hello Jest!');   }); }); --------------------------------------------------------...

SolidJS & SwiperJS

in 2018 Ryan Carniato developed -   SolidJS SolidJS is an exciting framework with a small (6.4kb) footprint, a reactive, component-based approach, and incredible performance. ------------------------========================----------------------------------- swiperjs - The Most Modern Mobile Touch Slider

How huge is AWS?

 I've used below services of AWS. There are 25 Categories and approx. 221 services running currently and offers free console for a year and cost-effective servers, containers and storage.  Compute : EC2, EC2 Image Builder, AWS App Runner Containers:   Storage: S3, AWS Backup Database: Amazon DocumentDB Migration & Transfer: DataSync Networking & Content Delivery: CloudFront Developer Tools: CodeCommit, CodeBuild, CodeArtifact, CodeDeploy, CodePipeline Customer Enablement:  Robotics: Blockchain: Satellite: Quantum Technologies: Management & Governance: Media Services: Game Development:  IoT: End User Computing: Business Applications: Application Integration: Amazon AppFlow,  AR & VR: Front-end Web & Mobile: AWS Amplify AWS Cost Management: Security, Identity & Compliance: IAM, Resource Access Manager Analytics: Athena, CloudSearch, Data Pipeline, AWS Glue Machine Learning:

Aha..!! That's JavaScript

Aha..!!  That's JavaScript  kind of mixed feelings, I'll post  - JavaScript, TypeScript, vue.js, react, angular.  This might help in Interviews as well. TYPE of  typeof null          // "object" (not "null" for legacy reasons) typeof undefined     // "undefined" null === undefined   // false null  == undefined   // true null === null        // true null  == null        // true !null                // true isNaN(1 + null)      // false isNaN(1 + undefined) // true typeof(NaN)     // number FAT Arrow function - ES6 Syntax difference  // Regular Function Syntax ES5:var add = function(x, y) { return x + y;};// Arrow function ES6let add = (x, y) => { return x + y }; Arguments binding // Object with Regular function. let getData = { // Regular function     showArg:function...