This file contains hidden or 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
// Go to https://www.reddit.com | |
// Open JS Console, paste this: | |
document.cookie = "redesign_optout=true; expires=Mon, 1 Jan 2035 12:00:00 UTC; path=/"; |
This file contains hidden or 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 Spotify app only | |
// @namespace com.fiaxhs | |
// @description Launch app, kill that web player (with fire) | |
// @include https://play.spotify.com* | |
// @include https://open.spotify.com* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
* Put this file under ~/Library/Application Support/Firefox/Profiles/[you]/chrome/ | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
/* | |
* FF < 57 | |
*/ | |
#TabsToolbar { | |
padding-left: 0 !important; |
This file contains hidden or 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
Verifying that +fiaxhs is my blockchain ID. https://onename.com/fiaxhs |
This file contains hidden or 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
REM Create a bat file with the following 4 lines (feel free to change ntp servers below) | |
w32tm /config /syncfromflags:manual /manualpeerlist:"ntp.unice.fr, ntp.accelance.net" | |
net start w32time | |
w32tm /resync | |
w32tm /resync | |
REM Yep, often the first time fails, just do it again. | |
REM Save as .bat file, and create a scheduled task at each logon. | |
REM - You can do this with Task Scheduler by hand, be sure to tick "Run as administrator" |