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
| adb shell su -c am start -n com.netease.cloudmusic/com.netease.cloudmusic.activity.DeveloperActivity |
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/python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| @author: Nzix | |
| """ | |
| import os, shutil, platform, subprocess | |
| import re, zipfile, json | |
| import ssl |
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
| [client] | |
| default-character-set = utf8mb4 | |
| [mysql] | |
| default-character-set = utf8mb4 | |
| [mysqld] | |
| character-set-client-handshake = FALSE | |
| character-set-server = utf8mb4 | |
| collation-server = utf8mb4_unicode_ci | |
| init_connect = 'SET NAMES utf8mb4' |
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
| $ apt-get install dnsmasq | |
| # /etc/dnsmasq.conf | |
| no-resolv | |
| no-hosts | |
| server=119.29.29.29 | |
| addn-hosts=/etc/dnsmasq.hosts | |
| #listen-address=127.0.0.1 | |
| # /etc/dnsmasq.hosts |
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
| keycode 66 = Mode_switch Caps_Lock | |
| keycode 25 = w W Up | |
| keycode 38 = a A Left | |
| keycode 39 = s S Down | |
| keycode 40 = d D Right |
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
| SetStoreCapslockMode, Off | |
| global capslock, action, click | |
| Capslock:: | |
| SetTimer, Timeout, -300 | |
| click:=1 | |
| capslock:=1 | |
| action:=0 | |
| KeyWait, Capslock | |
| if(!action && click){ |
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
| -----BEGIN PUBLIC KEY----- | |
| MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDgtQn2JZ34ZC28NWYpAUd98iZ3 | |
| 7BUrX/aKzmFbt7clFSs6sXqHauqKWqdtLkF2KexO40H1YTX8z2lSgBBOAxLsvakl | |
| V8k4cBFK9snQXE9/DDaFt6Rr7iVZMldczhC0JNgTz+SHXT6CBHuX3e9SdB1Ua44o | |
| ncaTWz7OBGLbCiK45wIDAQAB | |
| -----END PUBLIC KEY----- |
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
| # -*- coding: utf-8 -*- | |
| from Crypto.Cipher import AES | |
| f = open('before.bmp','rb') | |
| bid_header = f.read(54) | |
| raw_data = f.read() | |
| f.close() | |
| pad = lambda s: s + (16 - len(s) % 16) * chr(16 - len(s) % 16) |
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
| const fs = require('fs') | |
| /* | |
| module.exports = { | |
| key: fs.readFileSync('domain.key'), | |
| cert: fs.readFileSync('fullchain.cer'), | |
| } | |
| */ |
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
| const menu = [ | |
| { | |
| name: 'YOSHINOYA 22', | |
| weight: 4 | |
| }, | |
| { | |
| name: 'YOSHINOYA 24', | |
| weight: 4 | |
| }, | |
| { |