author avatar

akshay

Mon Nov 20 2017

we can tell the browser how to execute the script. By default, browser runs the script immediately by pausing HTML parsing. Else you can specify async or defer with the script tag to either run script asynchronously or defer it until HTML is parsed.
author avatar

harshwardhan

Sat Nov 18 2017

if you are using file-loader with webpack to process your assets and want to serve images from cdn you need to pass that cdn url in `publicPath: ''
author avatar

harshwardhan

Fri Nov 17 2017

when using webpack-uglify to minify your code if you face a situation where your build fails with syntex error try setting "uglify-js": true this will run all the transformations, however you can use "useBuiltIns": true with that option to only include polyfills for your target browsers
author avatar

emil

Mon Nov 13 2017

We can use the command docker-compose up -d --no-deps --build to do a zero downtime upgrade of services inside a running docker-compose stack.
author avatar

emil

Sat Nov 11 2017

docker system prune -a will free up significant space on your hard disk if you have a lot of stopped docker containers and dangling volumes etc
author avatar

emil

Fri Nov 10 2017

Cypher language, the SQL equivalent for neo4j graph DB is kickass . It allows users to fetch complex join queries in an intuitive way using pattern matching. https://neo4j.com/developer/cypher/ . Also, neo4j is the DB that helped journalists uncover interesting data relationships that led to paradise papers. This is because neo4j treats relationships as first class citizens and you can query using paths between different data elements. For example, "what is the shortest path between PersonA and PersonB".

Showing 62 to 64 of 69 results