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/sh | |
# | |
# iOS5.xの設定ファイル&データのバックアップスクリプト | |
# | |
# 使い方: | |
# rootユーザでbkup_system.shを実行すると、カレントに現在の年月日でフォルダを作成しその中にtgz形式で | |
# バックアップを取得します。主に/var/mobile/Library配下の設定ファイルやデータをバックアップ。 | |
# バックアップファイルは、各フォルダ名.tgz | |
# |
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
Making all for tweak SwipeShiftCaret... | |
Preprocessing SwipeShiftCaret.x... | |
Compiling SwipeShiftCaret.x... | |
SwipeShiftCaret.x:2:46: error: UIKit/UIGestureRecognizerSubclass.h: No such file or directory | |
SwipeShiftCaret.x:13: error: cannot find protocol declaration for 'UITextInput' | |
SwipeShiftCaret.x:35: error: expected ')' before 'UIKBKey' | |
SwipeShiftCaret.x:40: error: cannot find interface declaration for 'UISwipeGestureRecognizer', superclass of 'SCSwipeGestureRecognizer' | |
SwipeShiftCaret.x:43: error: expected ')' before 'UIGestureRecognizer' | |
SwipeShiftCaret.x: In function '-[SCSwipeGestureRecognizer canBePreventedByGestureRecognizer:]': | |
SwipeShiftCaret.x:44: error: 'UIPanGestureRecognizer' undeclared (first use in this function) |
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
<!doctype html> | |
<!-- | |
"Notations" theme designed by Ben Delaney (http://bendelaney.me) | |
Available in the Tumblr theme garden: http://www.tumblr.com/theme/8631 | |
Modifed by @takamii | |
Photo show large |
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
<?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>Label</key> | |
<string>com.takamii.iTeleportLaunchd</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Applications/iTeleport Connect.app/Contents/MacOS/iTeleport Connect</string> | |
</array> |
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 requests | |
import json | |
import time | |
import hmac | |
import hashlib | |
import base64 | |
from datetime import datetime | |
import os | |
# SwitchBot APIトークンとシークレットキー |
OlderNewer