Sandeep G
-
Prettier code installation setup on the visual studio.
Installation Configuration You have several ways to configure Prettier: Formatting Important Notes: Let me know if you’d like specific examples… Read More
-
Steps to build angular service library.
Concept of Angular Service Libraries Steps To Create an Angular Service Library Example (Data Fetching Service) TypeScript Let’s Build Something… Read More
-
Internationalization (i18n) vs Localization (l10n)
Localization Localization is the adaptability of a application to meet the language, cultural and other requirements. Localization involves, Names and titles.… Read More
-
How to find FK constraints rule in any schema in MySQL ?
constraints rule can be ‘RESTRICT’ OR ‘SET NULL’ OR ‘CASCADE’ SELECT distinct table_name FROM information_schema .referential_constraints WHERE constraint_schema = ‘<DB… Read More
-
Install Open JDK 1.8 on Amazon EC2
Execute below commands: sudo yum update #yum update will update every currently installed package sudo yum install java-1.8.0 # install openjdk… Read More
-
How to disable same page routing on url change in angular 4/5/6 ?
Steps: 1. Disable same page redirection this._router.onSameUrlNavigation=”ignore”; 2. Change param for the requested page. this._router.navigateByUrl(this._router.url+”;step-no=”+ (step+1)) Read More
-
[Solved]: Cookie is not able to Set / Access with Anguar Http Calls
In angular, Cookie access will not be able to given directly hence it fails to write info. Solution is using… Read More
-
Logic to apply left rotation for given array.
Example: Assume array is [ 1, 2, 3, 4, 5 ] Do 1 – Left rotation ie, First Element should… Read More
-
lombok: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags
Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags This problem raises when you use lombok in Java 10 environment. Change the default or… Read More

