Skip to content

Instantly share code, notes, and snippets.

View wakinchan's full-sized avatar
👻
working

Yusuke KUROIWA wakinchan

👻
working
View GitHub Profile
@kirb
kirb / README.md
Last active October 18, 2022 03:26
Install Theos on Linux

Please don't use this. It's old and didn't really even work in the first place. Just keeping it around for historical value.

@kirb
kirb / .htaccess
Last active November 16, 2020 22:39
Self-hosted Cydia repo download counter
# Use the Apache rewrite engine to redirect downloads to our script.
RewriteEngine On
RewriteBase /
RewriteRule ^repo/((Packages|Release)(.*)?)$ /repo/counter.php?filename=$1 [L,QSA]
RewriteRule ^repo/downloads/(.*)\.deb$ /repo/counter.php?filename=$1 [L,QSA]
{
// Delay in ms until autocompletion pops up after . or :: or ->
// Set to 0 to disable
"popup_delay": 100,
// Delay in ms until recompiling the file after the buffer is modified
// Set to 0 to disable
"recompile_delay": 1000,
// Whether or not to hide the clang output panel when it's empty
@r-plus
r-plus / Tweak.xm
Created March 5, 2011 14:58
get active tab URL method of mobilesafari.
@interface UIApplication (SafariActiveURL)
- (id)activeURL;
//maybe return NSString class
@end
//...
id activeURL = [[UIApplication sharedApplication] activeURL];
@Sakurina
Sakurina / FCSB.mm
Created October 13, 2010 14:19
five-column springboard.
/*
* Five-Column SpringBoard (FCSB) by Yanik Magnan
* http://r-ch.net/iphone/
Copyright (c) 2008-2009, Yanik Magnan <[email protected]>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.