Skip to content

Instantly share code, notes, and snippets.

View thedom85's full-sized avatar
🏠
Working from home

thedom85

🏠
Working from home
View GitHub Profile
@echo on & @setlocal enableextensions
@echo =========================
@echo Turn off the time service
net stop w32time
@echo ======================================================================
@echo Set the SNTP (Simple Network Time Protocol) source for the time server
w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org"
@echo =============================================
@echo ... and then turn on the time service back on
net start w32time
@delbio
delbio / bower.json
Last active October 2, 2016 08:07
Basic Gulpfile to manage compile less task
{
"name": "basic-less-workflow",
"authors": [
"Fabio Del Bene <delbio87@gmail.com>"
],
"description": "basic less workflow",
"main": "",
"keywords": [],
"license": "MIT",
"homepage": "",
@delbio
delbio / Javascript_Greasemonkey_TagHighlighter.user.js
Created May 30, 2016 08:50
Javascript_Greasemonkey_TagHighlighter.user.js
// ==UserScript==
// @name Tag Highlighter
// @namespace https://github.com/thedom85/TagHighlighter
// @description exec JS TagHighlighter on document loaded
// @include *
// @require https://raw.githubusercontent.com/thedom85/TagHighlighter/master/src/taghighlighter.js
// @version 1
// @grant none
// ==/UserScript==