Devtools Code Snippets and its benefit
Snippet: Snippets are small scripting feature that allows you to execute within the sources panel of Chrome Developer tools. It executes from the context of… Read More »Devtools Code Snippets and its benefit
Snippet: Snippets are small scripting feature that allows you to execute within the sources panel of Chrome Developer tools. It executes from the context of… Read More »Devtools Code Snippets and its benefit
The global object Array itself does not have any remove or delete method. However, there are many other ways to remove array elements in JavaScript.… Read More »How to Remove Array Elements in JavaScript
A useful mnemonic for Call() and Apply() is: a in apply() stands for array of arguments. c in  call() stands for comma separated arguments. The difference between apply() and call() is… Read More »Difference Between Call() and Apply() in JavaScript
Ever wondered how to save any data or a large object from Chrome browser console while debugging? Let’s talk about it and get the hands… Read More »Export data from the Chrome browser console
Variable: var (ES5):Â Variable scope is available within the function in which it is declared. let (ES6): let scope works only within the block in which… Read More »Features of ECMAScript 6 (ES6)
Logging Service Objective: Logging in an application should not be just for the sake of logging so it should not lack coverage, consistency, and purpose.… Read More »Logging Service levels – How it should be in Your Application
What is Jenkins: An open source continuous integration server. Helps to continuously and automatically build, deploy and test your software/project. Helps you to monitor the… Read More »Getting started with Jenkins – An Open Source Continuous Integration Server
What is Gulp: Gulp.js is a JavaScript task runner that helps to perform repetitive tasks like: CSS Preprocessing. JavaScript linting. Unit Testing. Image optimization. Minification of… Read More »Getting started with Gulp – The JavaScript Task Runner
What is Grunt: Grunt.js is a JavaScript task runner that helps to perform repetitive tasks such as: CSS Preprocessing. JavaScript linting. Unit Testing. Image optimization. Minification… Read More »Getting started with Grunt – The JavaScript Task Runner
What is Bower: A package manager for a web (front-end) that manages all your application’s front-end dependencies. It is used to install the right versions… Read More »Getting started with Bower – A package manager for web.
https://github.com/sagrawal003/aws-shell-scripts
https://github.com/sagrawal003/git-shell-scripts
If you keep autoscaling your servers after some interval of time to shutdown/terminate old servers and create new to have fresh servers up and running… Read More »Preserve application logs to external storage or aws s3
By following steps mentioned below, you can allow a user(s) to access the server via FTP and allow access to only their home directories. In… Read More »setup ftp only access for server and for multiple users
ps gives detail of the current processes. Below command can be used to get detailed information on the running processes like start time, elapsed time,… Read More »Using ps command to get process detailed information
Set up AWS cloud watch Logs: Configure your IAM role or user for Cloud Watch Logs: Cloud Watch uses the Identity and Access Management (IAM)… Read More »AWS – Cloudwatch Logs
There can be cases where you want to revert a branch or commits in git but due to many other commits on the top of… Read More »Git revert specific commits from the command line
In this post we will see how SonarQube can be upgraded to the newer version, for example, upgrading SonarQube 5.2 to SonarQube 5.4. NOTE: Read… Read More »How to Upgrade SonarQube from its previous version to new version.
SonarQube provides Github plugin using which it can publish inline comments in the git pull request for issues found in the modified/new codes of the… Read More »GitHub pull request analysis using SonarQube
This post is useful for people who are maintaining their code on below scenarios: You are using aws cloud server to manage your application codebase.… Read More »AWS: From creating instance AMI to updating Auto Scaling group at once using shell script