___ ___ ____ __ __ ______ __ __ _____ _____ ( ( ) ) ( ) ) ) ( ( (____ \ \ \ / / ( __ \ )__ \ \ \ _ / / / /\ \ ( ( ) ) ) / () \/ () ) )_) ) __) / \ \/ \/ / ( (__) ) \ \ / / __ / / / _ _ \ ( ___/ (__ ( ) _ ( ) ( \ \/ / / \/ / __ / / \/ \ \ ) ) \ \ \ ( ) / / /\ \ \ / ( () \__/ / /_/ \_\ ( ( ___/ ) \_/ \_/ /__( )__\ \/ \__\____( (/ \) /__\ )____/
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
from django.contrib import admin | |
from polls.models import Poll, Choice | |
from django.contrib.auth.models import User | |
from django.contrib.admin import AdminSite | |
from polls.views import index | |
class MyAdminSite(AdminSite): |
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
web: php -S 0.0.0.0:8000 -t . | |
#gulp: gulp watch |
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
nst>brew install redis | |
==> Downloading http://download.redis.io/releases/redis-2.8.12.tar.gz | |
######################################################################## 100.0% | |
==> make -C /private/tmp/redis-qA8O/redis-2.8.12/src CC=clang | |
==> Caveats | |
To have launchd start redis at login: | |
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents | |
Then to load redis now: | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist | |
Or, if you don't want/need launchctl, you can just run: |
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 PATH=/Applications/Postgres.app/Contents/Versions/9.4/bin/:$PATH | |
pip install psycopg2 |
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
>git commit -a -m 'add index' | |
gi[master 5377c90] add index | |
1 file changed, 547 insertions(+) | |
create mode 100755 public/vf/index.html | |
>git push sandbox master | |
Counting objects: 7, done. | |
Delta compression using up to 8 threads. | |
Compressing objects: 100% (4/4), done. |
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 include 'protect.php';?> | |
<!DOCTYPE html> | |
<html> | |
<head></head> | |
<body>Secrets. </body> | |
</html> |
I tested all of these projects on my dokku-alt server!
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
sudo swapon -s | |
free -m | |
df -h | |
# 2G, 4G, etc | |
sudo fallocate -l 2G /swapfile | |
ls -lh /swapfile | |
sudo chmod 600 /swapfile | |
ls -lh /swapfile | |
sudo mkswap /swapfile | |
sudo swapon /swapfile |
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
videojs.BigPlayButton.prototype.onClick = function(){ | |
if(this.player_.paused()) { | |
this.player_.play(); | |
} else { | |
this.player_.pause(); | |
} | |
}; |