<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| from fabric.api import env, local, run | |
| def vagrant(): | |
| # change from the default user to 'vagrant' | |
| env.user = 'vagrant' | |
| # connect to the port-forwarded ssh | |
| env.hosts = ['127.0.0.1:2222'] | |
| # use vagrant ssh key | |
| result = local('vagrant ssh_config | grep IdentityFile', capture=True) |
| #! /usr/bin/env python | |
| import fileinput | |
| import argparse | |
| from operator import itemgetter | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--target-mb', action = 'store', dest = 'target_mb', default = 61000, type = int) | |
| parser.add_argument('vmtouch_output_file', action = 'store', nargs = '+') | |
| args = parser.parse_args() |
| #!/usr/bin/env python | |
| """Implementation of RFC 4226: HMAC-Based One-Time Password Algorithm (HTOP), | |
| and RFC 6238: Time-Based One-Time Password Algorithm (TOTP). | |
| """ | |
| __author__ = 'acoster' | |
| __copyright__ = 'Copyright 2012, Alexandre Coster' | |
| import hmac |
| import operator | |
| from django.db.models import Q | |
| from django_filters import CharFilter | |
| class MultiFieldFilter(CharFilter): | |
| """ | |
| This filter preforms an OR query on the defined fields from a | |
| single entered value. | |
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bashrcInstall Package Control for easy package management.
Ctrl+`
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| #!/bin/sh | |
| # Redirect output to stderr. | |
| exec 1>&2 | |
| # enable user input | |
| exec < /dev/tty | |
| consoleregexp='console.log' | |
| # CHECK | |
| if test $(git diff --cached | grep $consoleregexp | wc -l) != 0 | |
| then |