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.
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
@echo off & setlocal | |
rem Absinthe Jailbreak Installer Assistant | |
rem Written by Ad@m <http://adam.hbang.ws> | |
rem Licensed under the MIT License <http://adam.mit-license.org> | |
rem -------------------------------------- | |
rem To use, download download and unzip this batch file from | |
rem <http://gist.github.com/gists/1653393/download>, then download | |
rem Absinthe from <http://idownloadblog.com/iphone-downloads>. | |
rem Now right click this batch file and run as administrator. | |
title Absinthe Jailbreak |
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
# 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] |
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
<? | |
// Twitter self-hosted image service/url shortener by Ryan Petrich | |
// Installation: | |
// 1. Paste this script into the top of your HTTP root's index.php (rename index.html to index.php if it doesn't exist) | |
// 2. Add the following to your HTTP root's .htaccess file (create .htaccess if it doesn't exist): | |
// ErrorDocument 404 /index.php | |
// 3. Create a "s" subfolder and give it 777 permissions | |
// 4. Add the following as the custom URL for URL shortening in Twitter for iPhone's settings: | |
// http://yourdomain.com/?d=%@&p=password | |
// 5. Add the following as the custom URL for Image service: |
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
html,body,h1,h2,nav,p,a,article,section,header,footer{margin:0;padding:0;border-width:0}html,body{width:100%;height:100%}html{font:13pt "Helvetica Neue",Helvetica,sans-serif;background:#EFEFEF linear-gradient(#EFEFEF,#E0E0E0)}header h1{display:none}nav h2:after{content:" for CSS1K"}article h2,nav h2,footer{color:#717880;font-size:18px;line-height:42px;text-align:center;text-shadow:0 1px 0 #E1E3E8;border-top:1px solid white;border-bottom:1px solid #797F90;background:#F4F5F7 linear-gradient(#F4F5F7,#A8ACB9)}article header p{font-style:italic}section{position:relative;z-index:1}body>header{position:absolute;top:0;left:0;width:300px;z-index:2}article>header,section,footer{margin-left:300px}ul{margin:0;padding:0;list-style-image:none;background:white}ul li{border-bottom:1px solid #ccc;padding:4px}ul a{display:block;color:black}ul a:first-child{font-weight:bold}ul li:hover,ul li:hover a{background:blue;color:white}footer:after{content:"iPad style written by Ad@m"} |
This is outdated. See this guide.
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
// ==UserScript== | |
// @name JailbreakQA Answer Macros | |
// @description Lazy answers for the lazy questions | |
// @author thekirbylover | |
// @include http://www.jailbreakqa.com/questions/* | |
// @version 1.0 | |
// ==/UserScript== | |
var macros = { | |
"Safe Mode": "Have you tried the instructions at [this FAQ entry](http://www.jailbreakqa.com/questions/32462/frequently-asked-questions/32560)?", |
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 | |
isup=0 | |
check=0 | |
store=au # change this to your country code | |
player=play | |
sound=/System/Library/Sounds/Tink.aiff | |
if [[ "$(which afplay)" != "" ]]; then | |
player=afplay | |
fi |
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
CGRect alertFrame = self.frame; | |
CGFloat oldY = alertFrame.origin.y; | |
alertFrame.origin.y = -alertFrame.size.height; | |
self.frame = alertFrame; | |
[UIView animateWithDuration:.3f animations:^{ | |
CGRect alertFrame = self.frame; | |
alertFrame.origin.y = oldY; | |
self.frame = alertFrame; | |
}]; |
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 | |
export THEOS=/opt/theos | |
export SDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk | |
if [[ "$1" =~ \.xi?m?$ ]]; then | |
file="$(mktemp /tmp/temp.mm.XXXXXX)" | |
isLogos=1 | |
$THEOS/logos.pl "$1" > "$name" || exit 1 | |
else | |
file="$1" |