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
# get the actual directory | |
root_path = Dir.pwd | |
# all files on the actual directory | |
Dir.glob(File.join root_path, '*').each do |file| | |
# check that is a directory | |
if File.directory? file | |
print "Converting #{file}... " | |
# path where image files are |
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
adb shell reboot bootloader | |
fastboot boot recovery-RA-hero-v1.7.0.1.img | |
adb shell mount /sdcard | |
adb push recovery-RA-hero-v1.7.0.1.img /sdcard/recovery-RA-hero-v1.7.0.1.img | |
adb shell flash_image recovery /sdcard/recovery-RA-hero-v1.7.0.1.img | |
adb shell reboot |
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
#Importante: resetear el single_access_token de los usuarios que no tengan | |
cd /var/www/apps/pareja10/current | |
script/console staging (o production) | |
User.find_each do |u| | |
unless u.single_access_token? | |
u.reset_single_access_token | |
u.save(false) | |
end | |
end |
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
# How to echobot with XMPP, BOSH, and Strophe | |
1. Setup ejabberd(http://www.ejabberd.im/) server and setup account [email protected] | |
NOTE: localhost should be enough. If you setup something else, make sure you add it at /etc/hosts like this | |
#/etc/hosts | |
127.0.0.1 localhost.local | |
NOTE: Also download Psi(http://psi-im.org/), and make sure you can connect to your ejabberd server. | |
2. Download strophe(http://code.stanziq.com/strophe/) and place it (eg: /Users/makoto/work/sample/strophejs-1.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
function auto_link_text($text) { | |
$regexp = '/ | |
( # leading text | |
<\w+.*?>| # leading HTML tag, or | |
[^=!:\'"\/]| # leading punctuation, or | |
^ # beginning of line | |
) | |
( | |
(?:https?:\/\/)| # protocol spec, or | |
(?:www\.) # www.* |
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
cd /Applications/MAMP/bin | |
ln -s php5.3 php5 | |
php5/bin/pear channel-discover pear.phpunit.de | |
php5/bin/pear channel-discover components.ez.no | |
php5/bin/pear channel-discover pear.symfony-project.com | |
php5/bin/pear channel-update pear.php.net | |
php5/bin/pear upgrade pear | |
php5/bin/pear install phpunit/PHPUnit | |
ln -s /Applications/MAMP/bin/php5/bin/phpunit /usr/local/bin/phpunit | |
phpunit --version |
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
Found this tip in comment here: http://www.tipb.com/2011/01/04/tipb-bug-home-button-working-iphone/ | |
1.) Open any application | |
2.) Press and hold the power button until the slide to shutdown swipe bar appears. | |
3.) Release Power button | |
4.) Press and hold Home button Lightly | |
until screen returns to icon screen |
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
# install brew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" | |
# install imagemagick | |
brew install imagemagick | |
# install imagick | |
brew install imagick | |
# if giving errors on the installation, comment the content on ~/.bash_profile or ~/.profile, open a new terminal and retry |
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
# place this code on http-vhost.conf file | |
UseCanonicalName Off | |
VirtualDocumentRoot /Users/MY_USER/Documents/%0/web | |
<Location /> | |
AllowOverride All | |
Options +FollowSymLinks | |
</Location> |
OlderNewer