This header is quite big....
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 MDN FD light theme | |
// @namespace Violentmonkey Scripts | |
// @match https://developer.mozilla.org/* | |
// @grant none | |
// @version 1.0 | |
// @author SJongeJongeJonge | |
// @description 24/08/2024, 19:40:19 | |
// ==/UserScript== |
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 devhints.io TOC | |
// @description 26-4-2021 23:12:54 Adds a table of contents to the devhint cheatsheets. | |
// @version 1.0 | |
// @author SJongeJongeJonge | |
// @match http*://devhints.io/* | |
// @exclude http*://devhints.io/ | |
// @run-at document-end | |
// @grant none | |
// @downloadURL https://gist.github.com/SJongeJongeJonge/c6c92707e70f60a0c3187b4e70bd3215/raw/devhints-toc-userscript.js |
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
const events = ['spfready', 'spfclick', 'spfhistory', 'spfrequest', 'spfprocess', 'spfdone']; | |
const log = event => { | |
console.groupCollapsed(event.type); | |
console.log(event); | |
console.groupEnd(event.type); | |
}; | |
events.forEach(event => window.addEventListener(event, log)); |
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
import open3d.visualization.gui as gui | |
import open3d.visualization.rendering as rendering | |
class TestWindow: | |
def __init__(self, pcd_file, width, height): | |
self.pcd_file = pcd_file | |
self._window = gui.Application.instance.create_window("Test", width, height) | |
w = self._window |
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 YouTube Thumbnail Blur | |
// @namespace YouTube Scripts | |
// @match https://www.youtube.com/* | |
// @grant none | |
// @version 1.1 | |
// @author SJongeJongeJonge | |
// @description 21-9-2020 00:05:32 Blurs thumbnails on the youtube homepage. | |
// ==/UserScript== |
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
const Discord = require('discord.js'); | |
const client = new Discord.Client(); | |
const prefix = '!'; | |
client.on('message', async msg => { | |
if (msg.author.bot || !msg.content.startsWith(prefix)) return; | |
const args = msg.content.slice(prefix.length).split(' '); | |
if (args[0] === 'activitycheck') { |