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
.ui-datepicker { | |
background-color: #fff; | |
border: 1px solid #66AFE9; | |
border-radius: 4px; | |
box-shadow: 0 0 8px rgba(102,175,233,.6); | |
display: none; | |
margin-top: 4px; | |
padding: 10px; | |
width: 240px; | |
} |
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
#How to install zmq extention on Ubuntu | |
cd ~/ | |
git clone git://github.com/mkoppanen/php-zmq.git | |
cd php-zmq | |
phpize && ./configure | |
sudo su | |
make && make install | |
cd ~/zmq/php-zmq/modules | |
echo 'extension=zmq.so' | sudo tee /etc/php5/mods-available/zmq.ini | |
sudo php5enmod php-zmq |
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
# Use ${idea.home} macro to specify location relative to IDE installation home. | |
# Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value. | |
#################################################################################################################### | |
# Note for Windows users: please make sure you're using forward slashes (e.g. c:/idea/system). | |
#################################################################################################################### | |
#--------------------------------------------------------------------- | |
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes. | |
#--------------------------------------------------------------------- |
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
# Use ${idea.home} macro to specify location relative to IDE installation home. | |
# Use ${xxx} where xxx is any Java property (including defined in previous lines of this file) to refer to its value. | |
#################################################################################################################### | |
# Note for Windows users: please make sure you're using forward slashes (e.g. c:/idea/system). | |
#################################################################################################################### | |
#--------------------------------------------------------------------- | |
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes. | |
#--------------------------------------------------------------------- |
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
https://github.com/WellCommerce/WellCommerce/blob/development/composer.json |
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
cd ~ && cd VM && vagrant up && vagrant ssh -c "cd /var/www; /bin/bash" |
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 AppKernel extends Kernel | |
{ | |
// ... | |
public function getCacheDir() | |
{ | |
if (in_array($this->environment, array('dev', 'test'))) { | |
return '/dev/shm/appname/cache/' . $this->environment; |
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
# screen | |
#You SSH into a server, run a command, the internet goes off…profanities all around you! | |
#Had you used screen, this wouldn’t have happened! | |
#With screen, you will: | |
#create a new terminal session with | |
screen -S executing-long-command |
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
[ -r /etc/bashrc ] && source /etc/bashrc | |
[ -r /etc/bash_completion ] && source /etc/bash_completion | |
[ -r ~/.git-completion.bash ] && source ~/.git-completion.bash | |
[ -r ~/.git-prompt.sh ] && source ~/.git-prompt.sh | |
[ -r /usr/local/rvm/scripts/rvm ] && source /usr/local/rvm/scripts/rvm | |
__has_parent_dir () { | |
# Utility function so we can test for things like .git/.hg without firing up a | |
# separate process | |
test -d "$1" && return 0; |