One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| function worker() { | |
| setInterval(function() { | |
| postMessage({foo: "bar"}); | |
| }, 1000); | |
| } | |
| var code = worker.toString(); | |
| code = code.substring(code.indexOf("{")+1, code.lastIndexOf("}")); | |
| var blob = new Blob([code], {type: "application/javascript"}); |
https://github.com/stefanbuck/awesome-browser-extensions-for-github
I use :
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| # Commands that are useful once in a while but not always for everyday usage | |
| # Remove all node_modules forlder recursively | |
| find . -name "node_modules" -type d -prune -exec rm -rf '{}' + | |
| # List globally installed npm package | |
| npm list -g --depth=0 | |
| # Loop over files in the current dir | |
| for f in *; do |
| /* | |
| http://jsbin.com/rolojuhuya/1/ | |
| https://stackoverflow.com/questions/8802845/inheriting-from-the-error-object-where-is-the-message-property | |
| https://stackoverflow.com/questions/783818/how-do-i-create-a-custom-error-in-javascript | |
| */ | |
| function CustomError(message, somethingElse) { | |
| var error = Error.call(this, message); |
| const pipe = (...fns) => x => fns.reduce((acc, fn) => fn(acc), x); | |
I hereby claim:
To claim this, I am signing this object:
| <section data-transition='concave' data-state='blackout'> | |
| <h1>CHAOS ENGINEERING</h1> | |
| <h2>with</h2> | |
| <h1>SERVICE MESH</h1> | |
| </section> | |
| <section data-transition='concave' id="inquiry"> | |
| <h2>Questions to the audience</h2> | |
| <ol> | |
| <!-- <li>Who uses containers ?</li> --> |