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 70s.neader Auto Center-Screen + turnStyles | |
| // @namespace https://github.com/vdeemann | |
| // @version 2.0.0 | |
| // @description On joining any room on 70s.neader.com, auto-injects the Screen-In-Center and turnStyles scripts — identical to clicking the two bookmarklets. | |
| // @match https://70s.neader.com/* | |
| // @run-at document-idle | |
| // @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
| // Bookmarklet Access To Plugin | |
| const path = "https://ts.pixelcrisis.co/build" | |
| window.localStorage.setItem("tsBase", path) | |
| // inject the main turnStyles script | |
| const main = document.createElement('script') | |
| main.type = 'text/javascript' | |
| main.src = `${ path }/turnStyles.js?v=${ Math.random() }` | |
| document.body.append(main) |
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
| setTimeout(function() { | |
| playlist.loadList(); | |
| }, 5000); | |
| function thingvote(c) { | |
| var f = $.sha1(turntable.user.attributes.roomId + c + turntable.topViewController.currentSong._id); | |
| var d = $.sha1(Math.random() + ""); | |
| var e = $.sha1(Math.random() + ""); | |
| turntable.sendMessage({ | |
| api: "room.vote", |
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 Tumblr Explore - Hide Seen Posts | |
| // @namespace https://github.com/vdeemann | |
| // @version 2.2.2 | |
| // @description Tracks posts you scroll past on Tumblr's Explore page. On the next page refresh, those posts are hidden — before they paint, no flash. | |
| // @author Dee | |
| // @match https://www.tumblr.com/explore* | |
| // @match https://www.tumblr.com/dashboard/explore* | |
| // @grant GM_getValue | |
| // @grant GM_setValue |
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 YouTube Theater Mode - Centered Top + Sidebar Beside Comments | |
| // @namespace https://github.com/vdeemann | |
| // @version 9.0.0 | |
| // @description In theater mode: title, Subscribe row, and description are centered as a group at the top with empty space on either side. Recommendations sidebar appears on the right starting at the comments section. No flicker on page load. | |
| // @author Dee | |
| // @match https://www.youtube.com/* | |
| // @match https://youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none |
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 Deepcut Global Playlist Search | |
| // @namespace https://github.com/vdeemann | |
| // @version 0.9.9 | |
| // @description Search across one, several, or all of your playlists at once on deepcut.live. | |
| // @match https://deepcut.live/* | |
| // @match https://www.deepcut.live/* | |
| // @match https://*.neader.com/* | |
| // @grant none | |
| // @run-at document-idle |
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 Deepcut DJ Auto-Muter | |
| // @namespace https://github.com/vdeemann | |
| // @version 2.1.0 | |
| // @description Auto-mutes songs from DJs not on your favorites list on deepcut.fm | |
| // @author vdeemann | |
| // @match https://deepcut.live/* | |
| // @match https://deepcut.fm/* | |
| // @match https://deep-cut.fm/* | |
| // @match https://www.deepcut.live/* |
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
| # MacPorts - MUST be first in PATH | |
| export PATH="/opt/local/bin:/opt/local/sbin:$PATH" | |
| # Commented out Homebrew paths | |
| #export PATH="/usr/local/opt/icu4c/bin:$PATH" | |
| #export PATH="/usr/local/opt/icu4c/sbin:$PATH" | |
| #source /opt/local/share/asdf/asdf.sh | |
| # Enable history in iex console |
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 SoundCloud Artist Repost Hider | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2.1 | |
| // @description Hide reposts from specific artists on SoundCloud | |
| // @author You | |
| // @match https://soundcloud.com/* | |
| // @grant GM_setValue | |
| // @grant GM_getValue | |
| // @run-at document-idle |
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
| colorscheme default | |
| " Set line numbers | |
| :set number | |
| :set relativenumber | |
| " Highlight searches | |
| set hlsearch | |
| " :noh to clear highlighting |
NewerOlder