Put your ssh key on the server:
$ ssh-copy-id username@remote-server.orgOn the server, create a bare git repo:
$ mkdir website.git| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import MySQLdb as mysql | |
| def QueryDatabase(query, values): | |
| """Function to query a MySQL database and return the results of the | |
| query.""" | |
| # Initialize variables and return values. |
| #!/usr/bin/python | |
| import simplejson as json | |
| import oauth2 as oauth | |
| # Create your consumer with the proper key/secret. | |
| consumer = oauth.Consumer(key="YOUR_CONSUMER_KEY", | |
| secret="YOUR_CONSUMER_SECRET") |
| """ | |
| The activation key for the ``UserProfile`` will be a | |
| SHA1 hash, generated from a combination of the ``User``'s | |
| email and a random salt. | |
| """ | |
| salt = hashlib.sha1(str(random.random())).hexdigest()[:5] | |
| email = user.email | |
| if isinstance(email, unicode): |
| # Build Passes | |
| curl -d "room_id=ourRoom&from=BuildBot&message=Build+Status:+Passing&color=green" https://api.hipchat.com/v1/rooms/message?auth_token=AUTH_TOKEN_HERE&format=json | |
| # Build Fails | |
| curl -d "room_id=ourRoom&from=BuildBot&message=Build+Status:+Failing&color=red¬ify=1" https://api.hipchat.com/v1/rooms/message?auth_token=AUTH_TOKEN_HERE&format=json |
| from django.contrib.auth.decorators import user_passes_test, login_required | |
| active_required = user_passes_test(lambda u: u.is_active, | |
| login_url='/profile/not_active') | |
| def active_and_login_required(view_func): | |
| decorated_view_func = login_required(active_required(view_func)) | |
| return decorated_view_func |
| # http://stackoverflow.com/questions/748675/finding-duplicate-files-and-removing-them/748908#748908 | |
| import sys | |
| import os | |
| import mmh3 | |
| CHUNK_SIZE = 1024*1024 | |
| def check_for_duplicates(paths): |
| # List audio devices | |
| ffmpeg -list_devices true -f dshow -i dummy | |
| # Pipe audio from Line In to another computer (192.168.1.17) | |
| ffmpeg -f dshow -i audio="Line In (High Definition Audio " -acodec libmp3lame -ab 320000 -f rtp rtp://192.168.1.17:1234 | |
| # Listen to audio on destination computer | |
| ffplay rtp://192.168.1.17:1234 |
| #!/bin/bash | |
| # http://johnmacfarlane.net/pandoc/demos.html | |
| pandoc -s README.md -o README.html |