Skip to content

Instantly share code, notes, and snippets.

@the-unsoul
the-unsoul / Service worker cheat sheet
Last active April 1, 2016 09:24
This cheat sheet collecting information of quick snippet of Service Worker from many source ( StackOverflow, Mozila Developer Network..)
// Registering
navigator.serviceWorker.register('./path_to_your_worker.js', {
scope: './base_url_of_the_web_app/'
}).then(function(registration) {
// Do soemthing with registration...
}, function(error) {
console.log('Failed to install:' + error);
});
// Unregistering (uninstall) all
@praphull27
praphull27 / Jenkins_Protractor_Headless_Chrome_Setup_Ubuntu_14.04.md
Last active April 9, 2024 11:44
Jenkins, Protractor and Headless Chrome Browser Setup on Ubuntu 14.04

Jenkins, Protractor and Headless Chrome Browser Setup on Ubuntu 14.04

Update Ubuntu

sudo apt-get update
sudo apt-get upgrade

Install Java