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 fs from "node:fs"; | |
import extract from "png-chunks-extract"; | |
import encode from "png-chunks-encode"; | |
/** Using png-chunks-extract + png-chunks-encode */ | |
function add_itxt_pngchunk( | |
fileBytes: Uint8Array | Buffer, | |
value: string, | |
keyword: string | |
) { |
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
# Please note this script has a chance to break code that depends on a specific version of Node (especially if it is a non-LTS or end-of-life version). | |
# | |
# This script will: | |
# 1. Reinstall and Upgrade the current LTS versions of Node to their latest versions | |
# 2. Uninstall ALL other nvm versions of Node (except the 'system' version) | |
# 3. Set the current nvm version to the latest LTS | |
# output current installed versions of nvm (for reference in case an old version needs installing again) | |
nvm ls |
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
/** Await a promise, or reject after X milliseconds */ | |
const asyncWithTimeout = async <T>(promise: Promise<T>, milliseconds = 10000): Promise<T> => { | |
//Promise that rejects after X milliseconds | |
const timeoutPromise = new Promise((_, reject) => | |
setTimeout(() => reject(`timed out after ${milliseconds} milliseconds`), milliseconds), | |
); | |
return await Promise.race([promise, timeoutPromise]) | |
.then((result) => result as T) | |
.catch((e) => { |
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 monsterhunterworld.wiki.fextralife full width | |
// @namespace http://shameen.info | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author shameen | |
// @match https://monsterhunterworld.wiki.fextralife.com/* | |
// @icon https://www.google.com/s2/favicons?domain=fextralife.com | |
// @updateURL https://gist.github.com/shameen/62157b714cb417c258caa01b62d4df1b/raw/c3ada76a6bc62e500cfc4e4461268dcfbfdd8f69/mhw-fextralife-full-width.user.js | |
// @downloadURL https://gist.github.com/shameen/62157b714cb417c258caa01b62d4df1b/raw/c3ada76a6bc62e500cfc4e4461268dcfbfdd8f69/mhw-fextralife-full-width.user.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
var emojis = [ | |
'๐','๐','๐','๐','โบ','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐ณ','๐','๐','๐','๐','๐','๐ฃ','๐ข','๐','๐ญ','๐ช','๐ฅ','๐ฐ','๐ ','๐','๐ฉ','๐ซ','๐จ','๐ฑ','๐ ','๐ก','๐ค','๐','๐','๐','๐ท','๐','๐ด','๐ต','๐ฒ','๐','๐ฆ','๐ง','๐','๐ฟ','๐ฎ','๐ฌ','๐','๐','๐ฏ','๐ถ','๐','๐','๐','๐ฒ','๐ณ','๐ฎ','๐ท','๐','๐ถ','๐ฆ','๐ง','๐จ','๐ฉ','๐ด','๐ต','๐ฑ','๐ผ','๐ธ','๐บ','๐ธ','๐ป','๐ฝ','๐ผ','๐','๐ฟ','๐น','๐พ','๐น','๐บ','๐','๐','๐','๐','๐ฝ','๐ฉ','๐ฅ','โจ','๐','๐ซ','๐ฅ','๐ข','๐ฆ','๐ง','๐ค','๐จ','๐','๐','๐','๐ ','๐','๐','๐','๐','๐','โ','โ','๐','โ','๐','๐','๐','๐','๐','๐','๐','โ','๐','๐ช','๐ถ','๐','๐','๐ซ','๐ช','๐ฌ','๐ญ','๐','๐','๐ฏ','๐','๐ ','๐','๐','๐','๐','๐ ','๐ฐ','๐','๐','๐','๐ฉ','๐','๐','๐','๐','๐ก','๐ ','๐ข','๐','๐','๐','๐','๐ฝ','๐','๐','๐','๐ผ','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','โค','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐ค','๐ฅ','๐ฌ','๐ฃ','๐ญ','๐ถ','๐บ','๐ฑ','๐ญ','๐น','๐ฐ','๐ธ','๐ฏ','๐จ','๐ป','๐ท','๐ฝ','๐ฎ','๐','๐ต','๐','๐ด','๐','๐','๐ผ','๐ง','๐ฆ','๐ค','๐ฅ','๐ฃ','๐','๐','๐ข','๐','๐','๐','๐','๐','๐','๐','๐ ','๐','๐ฌ','๐ณ','๐','๐','๐','๐','๐','๐ ','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐ฒ','๐ก','๐','๐ซ','๐ช','๐','๐','๐ฉ',' |
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 JIRA classic backlog: Inline labels | |
// @namespace http://shameen.info | |
// @version 0.1.1 | |
// @description (Classic JIRA Backlog) Labels shouldnt take up an entire line, this puts them inline on the right of each issue (as the leftmost item) | |
// @author shameen | |
// @match https://*.atlassian.net/secure/RapidBoard.jspa?*rapidView=271* | |
// @downloadUrl https://gist.github.com/shameen/e53581ea7f80c56fdd8942550184af2c/raw/6220806f91df7e827f983406646caba23cb19b16/jira-classic-backlog-inline-labels.user.js | |
// @grant none | |
// ==/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
/** Make property names conform to javascript property name rules. | |
* One use case of this is with Kendo UI's Grid, when the column templates are dynamically generated from JSON | |
*/ | |
sanitizeJsonPropertyNames(arr) { | |
let _return = []; | |
for (let i = 0; i < arr.length; i++) { | |
for (var property in arr[i]) { | |
//sanitize any property names | |
let propertyName = property.toString(); | |
propertyName = propertyName.replace(/[\-_]+/g, '_'); |
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
<!doctype html> | |
<html> | |
<head> | |
<title>pkmn quest</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
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
//This will make a desktop notification EVERY TIME the inspected element $0 changes text. | |
//in Google Chrome, $0 is the current element inspected in the dev tools. | |
var initialElem = $0; | |
var initialText = initialElem.innerText; | |
var initialVisibility = isVisible(initialElem); | |
function isVisible(elem) { return !(elem.offsetWidth === 0 && elem.offsetHeight === 0) } | |
Notification.requestPermission(); | |
clearInterval(x); | |
var x = setInterval(() => { | |
var newText = initialElem.innerText; |
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
/* Kendo UI TreeView: https://demos.telerik.com/kendo-ui/treeview | |
* Measurements based on the default "Material" theme as of April 2018, should be easily adjustable for other themes. | |
*/ | |
.k-treeview .k-item[data-expanded="true"] { overflow:hidden;position:relative; } | |
.k-treeview .k-item[data-expanded="true"]:before { | |
content:''; | |
position:absolute; | |
top:2em; | |
bottom:1.2em; |
NewerOlder