Username | Offering in Return |
---|---|
Azzeh | 5 RLME tokens, Alpha Testing |
Jordan#7468 | Server promotion thru giveaway |
Jeder#2091 | |
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 Command = require('../../cmdModule/commands').Command | |
class LcountCommand extends Command { | |
constructor() { | |
super({ | |
name: 'list', | |
help: 'List the members who have the prestige car', | |
lhelp: '{crew letter} [z]\n{crew letter} is G or Y or R, what crew to list prestige car + cup for.\n[z] If z is specified, the list will be of the crew\'s user\'s nicks/timezones rather than prestige status' | |
}) | |
} |
I hereby claim:
- I am julianschiavo on github.
- I am dotjs (https://keybase.io/dotjs) on keybase.
- I have a public key ASDOEPbTWb9xB_BtQoZNlI9HnXlheqbXmmQUsD2Z-zluNAo
To claim this, I am signing this object:
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 UIKit | |
// Fix missing selectors on NSFont | |
extension NSObject { | |
@objc func isSystemFont() -> Bool { | |
return false | |
} | |
@objc func _fontAdjustedForContentSizeCategoryCompatible(withTraitCollection arg1: Any?) -> Any? { | |
return self |
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
enum Region: String { | |
case antarctica = "Antarctica" | |
case africa = "Africa" | |
case asia = "Asia" | |
case europe = "Europe" | |
case latinAmericaAndTheCaribbean = "Latin America and the Caribbean" | |
case northAmerica = "North America" | |
case oceania = "Oceania" | |
var name: String { rawValue } |
- Get a copy of an unencrypted iOS app (IPA) file (see here)
- Double-click the file on Mac with Apple Silicon to install it to
/Applications
- Save the
resign.sh
script - Replace
CODE_SIGN_IDENTITY_HERE
with your code signing identity from Xcode (see here) - If needed, allow execution on the script file by running
chmod +x SCRIPT_PATH
in Terminal - Run
resign.sh
, passing in the wrapped app to resign./resign.sh /Applications/Snapchat.app
- If successful, the resigned app will open
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 | |
clear | |
# Initialize variables | |
declare -a output | |
declare -a ping_history | |
max_ping_lines=$(($(tput lines) - 7)) | |
success_count=0 | |
timeout_count=0 | |
total_count=0 |