This article is really nice for you that are working with NodeJS and ExpressJS. You should read to improve your application … More
Author: camilamacedo86
[Tips] – How to do a SSH in an AWS instance ?
How I lost enough time to be able to understand what was wrong or missing I decided to write … More
[DevOps] – Use Ansible with Ansible Tower to automate tasks
What is Ansible ? Ansible IT automation engine that automates several IT needs by commands line. ANSIBLE QUICK START VIDEO ( 12′ … More
[Tips] – AWS – Do you need learn ? How can I start ?
So, Amazon offers mini videos and these show how to do the things. You can find how to do something or … More
[Redis] – Understanding Redis
What is Redis? Redis is a database that stores data in the form of key-value. We may store certain data … More
[NodeJS] – How to automating front-end tasks with Grunt ?
What is Grunt ? The Grunt is a task automation Node.js module . Official WebSite :http://gruntjs.com/ How to install in your … More
[Android] – How to setup remote debugging for chrome on android devices with a mac?
Prerequisites : X-Code Homebrew ( To check : $ brew doctor ) . Setup : $ brew install android-sdk # Add … More
[Android] – How to install gradle and take the home path on mac os x ?
You can use brew : $ brew install gradle The home path will be : /usr/local/opt/gradle/libexec/ Also, you can follow the … More
[Node.js] – How to debug a node application ?
By node-inspector module : # install $ npm install -g node-inspector # run : $ node-debug app.js Debugger – Official Documentation … More
[DevOps] – How to use Docker to automate environments ?
Docker https://www.docker.com/ Docker containers wrap a piece of software in a complete filesystem that contains everything needed to run: code, … More