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
| tar -zxvf libmcrypt-2.5.8.tar.gz && | |
| tar -zxvf php-5.5.9.tar.gz && | |
| rm *.gz && | |
| cd libmcrypt-2.5.8 && | |
| ./configure && | |
| make && | |
| sudo make install && | |
| cd .. && | |
| curl -O http://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.gz && | |
| tar xvfz autoconf-latest.tar.gz && |
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
| #include <SoftwareSerial.h> | |
| SoftwareSerial bluetooth(10,11); // TX, RX | |
| void setup() | |
| { | |
| Serial.begin(14400); | |
| while (!Serial) { |
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 | |
| projectPath=null | |
| fileToCompressPattern="/([a-zA-Z0-9+-_]+).(css|js)$"; | |
| fileCompressedPattern="([a-zA-Z0-9+-_]+).min.(css|js)$"; | |
| minifyPattern=".min." | |
| #WARNING!!!!!!!!!!!!! | |
| #CHANGE THIS TO YOUR COMPRESSOR PATH | |
| g_compressor_command="java -jar <YOUR_PATH_OF_yuicompressor.jar>"; |
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
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); |
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
| #EXPORT | |
| export PATH="/usr/local/bin:$PATH" | |
| export AWS_RDS_HOME="$HOME/Sites/tools/rds/" | |
| export JAVA_HOME="/System/Library/Frameworks/JavaVM.framework/Home/" | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced | |
| export PATH=/usr/local/mysql/bin:$PATH | |
| export PATH=/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources:$PATH | |
| export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/ |
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
| Made by Gabriel Pires - gabrielpires.com.br | |
| Madeon ALL TRACK UNTIL - 2012-09-01 | |
| LINKS TO PLAY ONLINE AND DOWNLOAD | |
| - Singles | |
| Madeon - Gold - http://www.hulkshare.com/2m8nwjznill4 | |
| Madeon - For You - http://soundowl.com/track/1yxv/madeon-for-you-radio-edit | |
| Madeon - Shuriken - http://soundowl.com/track/3vk/madeon-shuriken | |
| Madeon - Icarus - http://soundowl.com/track/2uzw/madeon-icarus-radio-edit | |
| Madeon - Finale - http://soundowl.com/track/3khu/madeon-finale-bbc-radio-rip |
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
| function extract() { | |
| unset REMOVE_ARCHIVE | |
| if test "$1" = "-r"; then | |
| REMOVE=1 | |
| shift | |
| fi | |
| if [[ -f $1 ]]; then | |
| case $1 in | |
| *.tar.bz2) tar xvjf $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
| <?php | |
| Class Konsole{ | |
| function debug($message){ | |
| if($message){ | |
| echo '<script type="text/javascript"> | |
| if(console.log){ | |
| console.log('.$this->_debug($message).') | |
| } | |
| </script>'; | |
| } |
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
| :%s/<word>//gn |
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
| --CODE TO RESET AN AUTOINCREMENT NUMBER IN SQLSERVER TABLE | |
| DBCC CHECKIDENT (<Table>, RESEED, 0) |
NewerOlder