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"?> | |
<TabHost xmlns:android="http://schemas.android.com/apk/res/android" | |
android:id="@android:id/tabhost" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<LinearLayout | |
android:orientation="vertical" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<TabWidget |
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
private String getSdcardFolder() { | |
File externalStorage = Environment.getExternalStorageDirectory(); | |
if (externalStorage.exists() && externalStorage.canWrite()) { | |
File trySubDir1 = new File(externalStorage, "external_sd"); | |
File trySubDir2 = new File(externalStorage, "sd"); | |
if (trySubDir1.exists() && trySubDir1.canWrite()) { | |
return trySubDir1.getAbsolutePath(); | |
} else if (trySubDir2.exists() && trySubDir2.canWrite()) { | |
return trySubDir2.getAbsolutePath(); | |
} else { |
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 java.io.FilterInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
public class LazyStartingInputStream extends FilterInputStream { | |
private final byte[] startingAfter; | |
private int foundAlready = 0; | |
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/bash | |
# | |
# Copyright 2012 Christoph Jerolimov, Dominik Schilling | |
# | |
# 0) No, i did not developed this for myself/my server. ;-) | |
# 1) I strongly recommend you to reinstall all your server software, | |
# inclusive the whole operating system like linux, unix, etc. If you | |
# use a web hosting service, backup your data and request your | |
# provider for a fresh system. If this is not possible feel free to | |
# try this script. |
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
// javascript reimplementation of | |
// https://github.com/hellozimi/HCYoutubeParser/blob/master/YoutubeParser/Classes/HCYoutubeParser.m | |
var url = require('url'); | |
var http = require('http'); | |
var videoId = '7qpvjsMaXPE'; | |
var infoUrl = 'http://www.youtube.com/get_video_info?video_id=' + videoId; |
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
#defaults delete com.apple.dock | |
defaults write com.apple.dock no-glass -integer 1 # <= 10.8 sets the black 2D theme | |
#defaults write com.apple.dock autohide -string -1 # sure | |
killall Dock | |
#defaults delete com.apple.dock persistent-apps # remove all apps, should be used after reorder at least one :D |
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/bash | |
allgits=`find ~/.cocoapods/CUSTOMERNAME ~/git/CUSTOMERNAME -name .git | sed 's_/.git__'` | |
filter=$* | |
filter="$filter --author=jerolimov" | |
filter="$filter --date=iso" | |
filter="$filter --after=2013-05-01" | |
filter="$filter --before=2013-05-31" | |
for i in $allgits |
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/bash | |
IFS=$(echo -en "\n\b") | |
# Ensure we are in a git repo with gitignore. | |
if [ ! -d .git ]; then echo "Current working directory is not a git repository."; exit -1; fi | |
#if [ ! -f .gitignore ]; then echo "Current working directory has no .gitignore file."; exit -2; fi | |
# Sort (by date) and save new files | |
for file in `git status --porcelain --untracked-files=all | grep -v '.log$' | grep '^?? ' | sed 's/^?? //g'` | |
do |
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/bash | |
#set -e | |
jail="jail" | |
if [ -e "$jail" ]; then | |
echo Folder already exists: "$jail" | |
exit -1 | |
fi |
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
if ! pgrep "iPhone Simulator"; then | |
exit 0; | |
fi | |
pids=$(pgrep "iPhone Simulator") | |
osascript -e 'tell app "iPhone Simulator" to quit' | |
sleep 1 | |
for pid in $pids; do | |
if ps $pid; then |
OlderNewer