This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "basic-less-workflow", | |
"authors": [ | |
"Fabio Del Bene <[email protected]>" | |
], | |
"description": "basic less workflow", | |
"main": "", | |
"keywords": [], | |
"license": "MIT", | |
"homepage": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |