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 ruby | |
require 'zlib' | |
require 'yaml' | |
def decode(fname,dir) | |
begin | |
Dir.mkdir(dir) if !File.exist?(dir) and !File.directory?(dir) | |
marshal=File.open(fname,'rb') | |
yaml=File.open(File.join(dir,'Scripts.yaml'),'wb') |
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 | |
# Run as root, and it'll remove PandaDaemon automatically | |
# Make sure you have uninstalled ALL the pxl package before you run this script | |
# This script comes up with NO WARRANTY, it may brick your iOS device, you should know what you're doing before you start. | |
echo 'Cleaning up...' | |
rm -rf /Applications/PandaSpace.app | |
rm -rf /var/mobile/PandaSpace | |
rm -rf /var/mobile/Library/PandaSpace/ | |
rm -rf /var/mobile/Library/NetDragon/ |
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
$ desmume --cpu-mode=1 --jit-size=1 ind-cpue.nds | |
Slot 2: NONE | |
Failed to set format: Invalid argument | |
Microphone init failed. | |
DeSmuME 0.9.10 svnr4636 x86-JIT NOSSE | |
SoftRast Initialized with cores=1 | |
Already decrypted. | |
ROM game code: CPUE | |
ROM crc: 69D628E8 |
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
x | |
webadmin | |
webadmin2 | |
vmail | |
vaimedia | |
vaimedia3 | |
upload | |
transoft | |
tomcat | |
test |
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
# 脚本使用设定: | |
LEVEL_UP_POINT = 1 # 每升一级所增加的点数 | |
LEVEL_UP_VARIABLE = 110 # 储存角色点数的变量编号与角色id编号的差值 | |
# 默认情况 = 100, | |
# 则是数据库里1号角色的加点数存于101号变量 | |
# 3号角色的加点数存于103号变量。 | |
# 你可以直接操作变量赠与角色可分配点数 |
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
不能从外表去判断的,就像美丽的蔷薇也有刺一样。 | |
人是不可以过度水贴的……如果特意去水贴的话,吧务就会给你惩罚。 | |
人是有感情的动物,而感情是看不见的,所以才会十分善变。 | |
人类的科学所创造出来的悲剧,你不觉得很可怕吗? | |
今天是大吉呢 | |
你不会得意忘形,水好多贴了吧,嗯? | |
你又召唤我这个年幼可爱的少女来帮你暖贴吗? | |
你是变态吗 | |
你是我非常感兴趣的研究对象,所以我想给你挽尊 | |
你的正义之眼看得穿邪恶之心,却看不透女人的心意? |
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
FROM alpine:latest | |
# ENV V2RAY_VERSION master | |
ENV V2RAY_VERSION v1.17.3 | |
ENV BUILD_DEPENDENCIES go git | |
ENV GOPATH /tmp/go | |
RUN apk add --update $BUILD_DEPENDENCIES \ | |
&& mkdir $GOPATH \ |
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 python | |
# Requires Python >= 3.2 or >= 2.7 | |
# This file is part of Luma3DS | |
# Copyright (C) 2016 Aurora Wright, TuxSH | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
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 python3 | |
import sys | |
import struct | |
if __name__ == '__main__': | |
if len(sys.argv) < 2: | |
print('Usage:', sys.argv[0], '<fux2packedrgss3a>') | |
sys.exit(1) | |
hdr = struct.Struct('<8sI') |
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 python3 | |
# Credits to: | |
# - Eleccelerator and PS4 Developer Wiki for the HID report format used in | |
# authentication procedure. | |
# - Author of jedi_crypto.py who provides detailed information on the basic | |
# building blocks used by the authentication scheme (and the Jedi CA | |
# certificate). | |
# | |
# This tool is for education and demonstration purpose only. Use it at your own | |
# risk. |
OlderNewer