Posts

VS Code Must Have Extensions

Image
VS Code Must Extensions For Developers/Programmers Below are the extensions which you should installed: Git-Lens Prettier Python Text Transformer AWS Toolkit Read-me Preview Material Icon Theme <> Happy Coding  </> 💻

How to Use VIM Editor in CLI

Image
VIM is most popular editor which Developer's generally require to use while Development, Let's see how we can use it: VIM Editor - Education Funda Open a File: ~ vim fileName.ext  To save and exit the Vim editor, you can use the following commands: :wq  This command saves the changes to the file and exits Vim. It is equivalent to “write and quit”. :w : This command saves the changes to the file, but remains in Vim. You can continue editing or use other commands to manipulate the file. :q! : This command exits Vim without saving changes. It is equivalent to “quit bang” and discards any unsaved modifications. Additional Tips To enter command mode, press the Esc key. To switch between insert mode and command mode, use Esc to exit insert mode and return to command mode. Save and exit a file: :wq Save a file without exiting: :w Exit Vim without saving changes: :q! Rename a file and save changes: :w new_filename.txt Save and exit multiple files: :wqa Remember to use these commands...

Full Stack Development

Image
FULL STACK DEVELOPMENT  A Full Stack Web Developer is someone who is able to work on the front-end and the back-end portions on an application. Being a Full Stack Developer doesn't mean that you have necessarily mastered everything required to work with the front-end, But it means that you are able to work on both sides and understands what is going on when building an applications. More About Full Stack Development Guys, for become a full stack developer you should have knowledge of following languages: html & css java-script all back-end languages database and web storage HTTP and rest API   Venn Diagram As in this "Venn Diagram" you can see that "Full Stack Development" is actually a combination of Front-End, Back-End & Database. So, if you have knowledge of all languages than you can become a "Full Stack Developer", I know while reading this 'article' you think this is 'impossible' but don'...

Mean Stack Development

Image
MEAN STACK DEVELOPMENT  M E A N Stands For: Mongo DB Express JS Angular JS Node JS MEAN is a collection of JavaScript-based technologies such as: Mongo DB, Express.js, AngularJS, and Node.js — used to develop web applications. From the client and server sides to databases. MEAN is a Full-Stack development toolkit. More About Mean Stack Development Work Process Diagram As in the above diagram clearly shown how these technologies works together for develop an Web Application. Angular JS being client makes AJAX calls to Express JS then it response in JSON format. Express JS that is running on Node JS server further communicate with Mongo DB(No SQL Database) as persistent medium.  I hope below video will also help you for more Thank You For Reading This Article