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/sh | |
read -p "Apple Id: " appleid; echo | |
stty -echo | |
read -p "Password: " passw; echo | |
stty echo | |
while [ /bin/true ]; do | |
curl -s -u$APPLEID:$PASSW developer.apple.com/devcenter/ios/index.action | grep "soon" >/dev/null | |
if [ $? -eq 1 ]; then | |
echo "Done" |
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
favicon.gif | |
favicon.ico | |
s |
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
<?php | |
/* | |
Plugin Name: Blubrry PowerPress | |
Plugin URI: http://www.blubrry.com/powerpress/ | |
Description: <a href="http://www.blubrry.com/powerpress/" target="_blank">Blubrry PowerPress</a> adds podcasting support to your blog. Features include: media player, 3rd party statistics, iTunes integration, Blubrry Services (Media Statistics and Hosting) integration and a lot more. | |
Version: 2.0.3 | |
Author: Blubrry | |
Author URI: http://www.blubrry.com/ | |
Change Log: | |
Please see readme.txt for detailed change log. |
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/sh | |
## | |
## Debug a MobileSafari instance running in the iOS 5 simulator | |
## | |
PID=`ps axc|awk '{if ($5=="MobileSafari") print $1}'` | |
if [ "$PID" == "" ] | |
then |
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/sh | |
## | |
# Git diff for SQLite databases | |
## | |
if [ -z "$DIFF" ] | |
then | |
DIFF=diff | |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'mechanize' | |
agent = Mechanize.new | |
page = agent.get('https://accounts.google.com/ServiceLoginAuth') | |
form = page.forms.first | |
form.Email = '<<<Your Google Reader username>>>' |
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/sh | |
# | |
## Strip debug symbol from universal static libraries | |
# | |
if [ -z "$1" ] | |
then | |
echo "$0 library" | |
exit 1 |
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/env ruby | |
##### Automatically post to your Google+ account from the commandline. | |
##### (C) 2012 Boris Buegling <[email protected]> | |
require 'rubygems' | |
require 'mechanize' | |
## Use Windows Mobile user agent to get Basic Mobile HTML | |
agent = Mechanize.new |
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/env ruby | |
## Configuration ## | |
################### | |
gplus_user = '<<<Google+ username>>>' | |
gplus_pass = '<<<Google+ password>>>' | |
tweet_count = 25 # Number of tweets to consider | |
twitter_user = '<<<Twitter username>>>' | |
################### |
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/sh | |
## | |
## Create universal static libraries from a build directory | |
## | |
ls -ld Build >/dev/null 2>&1 | |
if [ $? -ne 0 ] | |
then | |
echo "No 'Build' directory found." |
OlderNewer