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
| img2pdf --output %1.pdf *.jpg | |
| 7z a -mx9 %1.zip *.jpg | |
| del *.jpg | |
| exit |
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
| const POST_URL = "INSERT DISCORD WEBHOOK URL HERE"; | |
| // aliases allow you to use alternative titles in the webhook | |
| // for example, in the form the title may be "Your Name" | |
| // you can change it to just "Name" in the webhook by setting an alias for that field. | |
| // you will need to find the field's ID (the numbers) for that | |
| const ALIASES = { | |
| 123456789: "Email Address", | |
| 789102112: "Name", |
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 Google Auto Log-in | |
| // @author Danny | |
| // @match https://accounts.google.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { | |
| "use strict"; |
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Watch Changes", // Name of task | |
| "type": "shell", | |
| "command": "npm run watch", // Enter your command here | |
| "group": "none", | |
| "presentation": { | |
| "reveal": "silent", |
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
| /* Shrink MP4 files using node.js and ffmpeg | |
| * | |
| * (c) 2021 Daniel Fernandes. This code is licensed under the MIT license. | |
| * | |
| * This script takes any video files from an "input folder", and exports a | |
| * lower bit-rate version of the video to an "output folder". | |
| * | |
| * Make sure you have Node.js and ffmpeg installed! | |
| * | |
| * My hope is to eventually make this work cross-platform. I believe it |
NewerOlder