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
#!/usr/bin/env sh | |
# usage: sh ./generate-target-dependencies.sh | dot -Tsvg -o target-graph.svg | |
packages=`swift package describe --type json` | |
targets=`echo $packages | jq '.targets'` | |
target_names=`echo $targets | jq -r '.[] | .name'` | |
body="" | |
template=`cat <<EOF | |
digraph DependenciesGraph { |
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 Split horizontally for Mermaid | |
// @namespace https://twitter.com/wa_kinchan | |
// @version 0.2 | |
// @description Split horizontally when editing Mermaid | |
// @author @wa_kinchan | |
// @match https://www.notion.so/*/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=notion.so | |
// @grant none | |
// ==/UserScript== |
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
#define PreferencesFilePath [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Preferences/com.kindadev.transparenticonselection.plist"] | |
@interface SBApplicationIcon | |
- (id)applicationBundleID; | |
@end | |
@interface SBUserInstalledApplicationIcon : SBApplicationIcon | |
@end | |
%hook SBIconImageView |
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
#!/bin/bash | |
function dump { | |
if [ ! -e /usr/bin/class-dump ]; then | |
echo | |
echo "Cannot find Class Dump install it to use this option" | |
echo | |
exit 1 | |
fi | |
echo |
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
#!/bin/bash | |
THEOS_INSTALL_DIR="/opt" | |
THEOS=${THEOS_INSTALL_DIR}/theos | |
BIGBOSS_REPO="http://apt.thebigboss.org/repofiles/cydia" | |
SUBSTRATE_REPO="http://apt.saurik.com" | |
# initial theos install directory check | |
if [ ! -d "$THEOS_INSTALL_DIR" ]; then | |
echo "making $THEOS_INSTALL_DIR" |
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
ARCHS = armv7 | |
THEOS_INSTALL_KILL = gunosy | |
THEOS_DEVICE_IP = iphone.local | |
include theos/makefiles/common.mk | |
TWEAK_NAME = GunosyEnhancer | |
GunosyEnhancer_FILES = PocketAPI/PocketAPI.m PocketAPI/PocketAPIOperation.m PocketAPI/SFHFKeychainUtils.m | |
GunosyEnhancer_OBJCC_FILES = Tweak.xm | |
GunosyEnhancer_FRAMEWORKS = UIKit Security Foundation CoreGraphics |
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
{ | |
// Delay in ms until autocompletion pops up after . or :: or -> | |
// Set to 0 to disable | |
"popup_delay": 100, | |
// Delay in ms until recompiling the file after the buffer is modified | |
// Set to 0 to disable | |
"recompile_delay": 1000, | |
// Whether or not to hide the clang output panel when it's empty |
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
#!/bin/bash | |
# class-dump class-dump-z | |
# - main.h | |
# CDStructures.h main-Structs.h | |
# xxx-Protocol.h xxx.h | |
usage () | |
{ | |
echo "Usage: $0 executable target_directory" |
NewerOlder