Version: 0.2.4
Duration: 4.4s
Status: ✅ Success
No arguments
| #!/bin/bash | |
| # Display help message | |
| show_help() { | |
| echo "Usage: $0 [options]" | |
| echo "" | |
| echo "This script cleans up or archives Git branches based on their PR status." | |
| echo "" | |
| echo "Options:" | |
| echo " --help Show this help message and exit." |
| #!/bin/bash | |
| set -e | |
| SCRIPT_DIR=$(dirname "$(realpath "$0")") | |
| sudo bash "$SCRIPT_DIR/update-hosts" add "$1" "127.0.0.1" | |
| sudo bash "$SCRIPT_DIR/update-hosts" add "$1" "::1" |
| // ==UserScript== | |
| // @name Twitter Scroll Restore | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author @kiliman | |
| // @match https://twitter.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=twitter.com | |
| // @grant none | |
| // ==/UserScript== |
| #!/bin/bash | |
| # Check if the correct number of arguments is provided | |
| if [ "$#" -ne 2 ]; then | |
| echo "Usage: $0 source_folder target_folder" | |
| exit 1 | |
| fi | |
| source_folder="$1" | |
| target_folder="$2" |
| export type MakeOptional<Type, Key extends keyof Type> = Omit<Type, Key> & | |
| Partial<Pick<Type, Key>>; | |
| export type PickNullable<T> = { | |
| [P in keyof T as null extends T[P] ? P : never]: T[P]; | |
| }; | |
| export type PickNotNullable<T> = { | |
| [P in keyof T as null extends T[P] ? never : P]: T[P]; | |
| }; |
| const { spawn } = require("child_process"); | |
| const fs = require("fs"); | |
| const command = process.argv[2]; | |
| const appName = process.argv[3]; | |
| if (!fs.existsSync("apps")) { | |
| fs.mkdirSync("apps"); | |
| } | |
| if (fs.existsSync(`apps/${appName}`)) { |
| // ==UserScript== | |
| // @name GitHub open npm from import | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1.1 | |
| // @description Opens the npm package by Ctrl/Cmd+click on import statement | |
| // @author Kiliman | |
| // @match https://github.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=github.com | |
| // @grant none | |
| // ==/UserScript== |
| diff --git a/node_modules/@remix-run/react/dist/data.js b/node_modules/@remix-run/react/dist/data.js | |
| index b3b935f..58a4874 100644 | |
| --- a/node_modules/@remix-run/react/dist/data.js | |
| +++ b/node_modules/@remix-run/react/dist/data.js | |
| @@ -61,6 +61,12 @@ async function fetchData(request, routeId, retry = 0) { | |
| init.body = await request.formData(); | |
| } | |
| } | |
| + init.headers = { | |
| + ...init.headers, |