- Download
AdobeCC.disc1.iso
fromsmb://nas.etc.vpn/Cookbook/AdobeCC/AdobeCC.disc1.iso
- Mount & run the exe, enjoy
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
#!/bin/bash | |
# spdk - A script to pack/unpack spotify mini-apps | |
# Constants | |
UNPACK_ARG="unpack" | |
UNPACKALL_ARG="unpackall" | |
PACK_ARG="pack" | |
LIST_ARG="list" | |
BAD_ARGS="Usage: spdk [unpack|unpackall|pack] [application name]" |
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
window.sdk = { | |
version: "0.0.1 Alpha", | |
drawIcon(name, icons = {notifications: "", appIcon: "", appIcon2x: ""}) { | |
var app = { | |
name, | |
notificationIcon: icons.notifications, | |
appIconUrl: icons.appIcon, | |
appIconUrl2x: icons.appIcon2x | |
} | |
COS.appsController._appsInfo[app.name] = COS.AppInfo.create(app); |
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 fs = require('fs'); | |
const path = require('path'); | |
const client = new discord.Client(); | |
global.triggerWord = 'Beep boop, boop boop beep???' | |
const readline = require(`readline`) | |
if (!process.argv[2]) { | |
console.log(`Usage: node client.js <token>`) | |
process.exit(-69) | |
} |
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
Array.from(document.getElementsByClassName("guilds")[0].children).slice(5).forEach(n => n.remove()); | |
document.getElementsByClassName("unread-mentions-indicator-bottom")[0].remove(); | |
document.getElementsByClassName("friends-online")[0].innerText = "0 Online"; | |
document.getElementsByClassName("friends-online")[0].previousSibling.children[1].remove(); | |
Array.from(document.getElementsByClassName("iconBadge-2dji3k")).forEach(e => e.remove()); | |
Array.from(document.getElementsByClassName("default-1VPH9n")).forEach(e => e.remove()); |
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
export THEOS=${THEOS:-~/theos} | |
export SIMJECT=${SIMJECT:-~/simject} | |
install_theos_deps() { | |
LDID_VERSION=$(brew ls --versions ldid) | |
XZ_VERSION=$(brew ls --versions xz) | |
if [ -z "$LDID_VERSION" ] | |
then | |
echo "has ldid: no"; | |
BREW_ARGS=" ldid" |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"id": "259392830932254721", | |
"name": "SpeedRunners", | |
"icon": "cb48279ea90e86fb4f71c709d3236395", | |
"splash": "94e91cac9509fee1eb80a69b9503878a", | |
"overlay": false, | |
"overlayWarn": false, | |
"overlayCompatibilityHook": false, |
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
Object.assign(typeof window === 'object' ? window : typeof global === 'object' ? global : typeof globalThis === 'object' ? globalThis : {}, { | |
hasKeys: function<Keys extends string[], Obj extends object>(obj: Obj, keys: Keys): obj is Obj & { | |
[key in ValueOf<Keys>]: unknown | |
} { | |
return keys.every(key => key in obj) | |
} | |
}) |
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
/** | |
Helper function for efficiently initializing a value based on a pointer | |
- Parameter type: the type of value the pointers value will be cast to | |
- Parameter closure: block of code that will handle the pointer | |
- Returns: tuple of (value the pointer was given, return type of closure) | |
*/ | |
func withUnsafeMutablePointer<T, R>(ofType type: T.Type, _ closure: (UnsafeMutablePointer<T>) -> R) -> (T?, R) { | |
let ptr = UnsafeMutablePointer<T>.allocate(capacity: 1) |
OlderNewer