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
wget ftp://ftp.mutt.org/mutt/devel/mutt-1.5.21.tar.gz | |
tar -xzvf mutt-1.5.21.tar.gz | |
cd mutt-1.5.21 | |
yum install ncurses-devel tokyocabinet-devel openssl-devel cyrus-sasl-devel | |
./configure --enable-imap --enable-smtp --enable-hcache --with-ssl --with-sasl | grep error | |
make | |
make install |
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
ctags --langmap=php:.engine.inc.module.theme.install.php --php-kinds=cdfi --languages=php --recurse |
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
drush --quiet --yes sql-sync @live @website |
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
#in this case the user name is jenkins | |
sudo su - -s /bin/bash jenkins |
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
# GitHub's IP address | |
'207.97.227.253', 50.57.128.197, 108.171.174.178 |
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 | |
max_process=0; | |
running_avg=1; | |
time_to_send_email=$(date --date="7pm today" +%s); | |
mail_to="[email protected]"; | |
max_process_time=$(date); | |
while : |
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
bash -ex /etc/usr/bin/headlessSelenium.sh $WORKSPACE http://website.dev.jenkinslaw.org $WORKSPACE/all/modules/jenkins/Tests/JenkinsTestSuite |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\dev.jenkinslaw.org] | |
"Colour0"="131,148,150" | |
"Colour1"="147,161,161" | |
"Colour2"="0,43,54" | |
"Colour3"="7,54,66" | |
"Colour4"="0,43,54" | |
"Colour5"="238,232,213" | |
"Colour6"="7,54,66" |
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
# Delete all deployed branches that are fully merged. | |
git branch -d --merged | |
# The above doesn't actually always work for me. So the next option is | |
git branch -d $(git branch --merged | cut -d \* -f 1) |
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
var url = 'http://casperjs.org'; | |
var casper = require('casper').create(); | |
var t = casper.test; | |
var Test = { | |
oneArgument : { | |
number : { | |
'five' : 5, | |
'four' : 4 | |
} |
OlderNewer