Skip to content

Instantly share code, notes, and snippets.

@tony0x59
tony0x59 / AGROZones.lua
Last active December 31, 2022 10:10
No More Zone Checks mod add Agrotsar support
function doAgroMapZones()
--do nothing, remove this
end
function doAgrotsarMapZones()
-- print("doAgroMapZones")
local file = 'media/mapszones/Muldraugh, KY/agrozones.lua'
if fileExists(file) then
-- print("doAgroMapZones fileExists")
agrozones = {}
@tony0x59
tony0x59 / channel.plist
Created December 17, 2020 07:23
just for test
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
@tony0x59
tony0x59 / build-protobuf-2.5.0.sh
Created October 12, 2020 07:35
build protobuf for iOS Simulator
#!/bin/bash
echo "$(tput setaf 2)"
echo Building Google Protobuf for Mac OS X / iOS.
echo Use 'tail -f build.log' to monitor progress.
echo "$(tput sgr0)"
# Controls which architectures are build/included in the
# universal binaries and libraries this script produces.
# Set each to '1' to include, '0' to exclude.
@tony0x59
tony0x59 / hook.js
Created September 26, 2019 09:16
frida script for modify device info in Any iOS App
if (ObjC.available) {
try {
// list methods
// ObjC.classes.XXXClassName.$ownMethods.forEach(function (m) {
// console.log('method: ' + m);
// })
// watch method callstack
// if (1) {
// // -[NSTimeZone secondFromGMT]
@tony0x59
tony0x59 / ping.c
Last active October 11, 2018 07:49
the original ping.c from Mike Muuss (https://gist.github.com/bugparty/ccba5744ba8f1cece5e0)
/*
* P I N G . C
*
* Using the InterNet Control Message Protocol (ICMP) "ECHO" facility,
* measure round-trip-delays and packet loss across network paths.
*
* Author -
* Mike Muuss
* U. S. Army Ballistic Research Laboratory
* December, 1983
@tony0x59
tony0x59 / d3_crusader_hand_saver.ahk
Last active August 9, 2018 14:44
暗黑3 圣教军 阿克汉天谴宏
#SingleInstance force
#IfWinActive ahk_class D3 Main Window Class
;圣教军天谴流自用宏
;源自 http://nga.178.com/read.php?tid=13558051 自动钢甲速刷宏
;
; 代码做了重构,主要有几处修改:
; 1. 宏开关触发挪到了鼠标侧键(按 F2 还要左手操作,懒,只想单手扣脚),喝药水我在游戏按键绑定的鼠标侧键1。
; 2. 右键长按与 shift 键长按效果相同,用于做出强制原地攻击,躲地面元素伤,站立核眼buff圈等场景使用。
; 3. 左键自动连点特性可通过鼠标滚轮上划开启,下滑关闭。方便装备杨裤后快速切换,以及Boss战时安全走位,防止误触发左键普攻。
var CryptoJS = require('crypto-js')
var request = require('request-promise')
/*
* npm install crypto-js request-promise request
* node wx_t1t_hack.js
*/
// export function testEncription(msg, fullKey) {
// var fullKey = fullKey.slice(0, 16)
#!/usr/bin/python
# coding:utf-8
import requests
import re
import time
sess = requests.Session()
void bin_to_strhex(unsigned char *bin, uint32_t size)
{
char hex_str[]= "0123456789ABCDEF";
unsigned int i;
char *result;
result = (char *)malloc(size * 2 + 1);
(result)[size * 2] = 0;
if (!size)
- (BOOL)checkNotificationIsEnabled {
UIApplication *application = [UIApplication sharedApplication];
BOOL enabled = NO;
// iOS8 and above
if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)]) {
if ([application isRegisteredForRemoteNotifications]) {
UIUserNotificationSettings *settings = [[UIApplication sharedApplication] currentUserNotificationSettings];
if (settings.types != UIUserNotificationTypeNone) {
enabled = YES;
}