Skip to content

Instantly share code, notes, and snippets.

View nsrau's full-sized avatar
🇧🇷

Newton Samin Urbanetz nsrau

🇧🇷
View GitHub Profile
@nsrau
nsrau / localstorage.service.ts
Last active October 7, 2018 07:55
Local Storage html5 - service angular
export class LocalstorageService {
private _localstorage: Storage = window.localStorage;
private _cache_duration = 15;
constructor() {
if (!this.supportsLocalStorage()) {
console.error('LocalstorageService: No HTML5 localStorage Support');
} else {
@nsrau
nsrau / Git push deployment in 7 easy steps.md
Created July 23, 2017 18:12 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook