Skip to content

Instantly share code, notes, and snippets.

View Apreche's full-sized avatar
🚲

Scott Rubin Apreche

🚲
View GitHub Profile
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\9bis.com\KiTTY\Sessions\Default%20Settings]
"Colour0"="77,77,76"
"Colour1"="234,234,234"
"Colour2"="250,250,250"
"Colour3"="0,0,0"
"Colour4"="214,214,214"
"Colour5"="214,214,214"
"Colour6"="142,144,140"
@Apreche
Apreche / ipython_config.py
Last active April 7, 2020 15:53
iPython configuration
# Configuration file for ipython.
#------------------------------------------------------------------------------
# InteractiveShellApp(Configurable) configuration
#------------------------------------------------------------------------------
## A Mixin for applications that start InteractiveShell instances.
#
# Provides configurables for loading extensions and executing files as part of
# configuring a Shell environment.
@Apreche
Apreche / secrypt.php
Created November 30, 2012 12:30
lucb1e's secrypt original code
<?php
/**************************************************************************
LICENCE
- You may copy and redistribute this file under the conditions:
1. The file is credited to lucb1e
2. The file remains unmodified, including this licence
- You may modify and redistribute this file under these conditions:
(This includes porting to another language.)
@Apreche
Apreche / githubnotes.py
Created September 4, 2012 15:52
github hosted shownotes
import urllib2
import base64
from django.utils import simplejson
def get_file_contents(user, repo, path):
url = "https://api.github.com/repos/%s/%s/contents/%s" % (user, repo, path)
try:
response = urllib2.urlopen(url)
except urllib2.HTTPError:
@Apreche
Apreche / gist:2954956
Created June 19, 2012 15:55
MySQL create user and database
create database DATABASENAME;
grant usage on *.* to USERNAME@localhost identified by 'PASSWORD';
grant all privileges on DATABASENAME.* to USERNAME@localhost ;
@Apreche
Apreche / screenrc
Last active October 1, 2015 04:38
screenrc
startup_message off
shell "/bin/bash"
caption always "%{= kB}%-Lw%{=s kB}%50>%n%f* %t %{-}%+Lw%<"
@Apreche
Apreche / vanillafix.py
Created October 27, 2011 03:26
Reformats comments from Vanilla 1 to Vanilla 2 style
#!/usr/bin/env python
# Rerformat comments for transition from Vanilla1 to Vanilla 2
import re
import MySQLdb
from BeautifulSoup import BeautifulSoup
connection = MySQLdb.connect(user='root',db='newforum', use_unicode=True)
select_cursor = connection.cursor()
@Apreche
Apreche / bash_aliases
Last active April 7, 2020 15:53
bash_aliases
alias apt-search="apt-cache search --names-only"
alias greppy='find ! -path "*migrations*" -name "*.py" | xargs grep'
alias grephtml='find -name "*.html" | xargs grep'
alias grepjs='find -name "*.js" | xargs grep'
alias grepcss='find -name "*.css" | xargs grep'
alias grepall='find ! -path "*migrations*" -and ! -name "*.pyc" | xargs grep'
alias grepregex='grep -rnE'
alias rmpyc='find -name "*.pyc" -delete'
alias runserver='./manage.py runserver_plus 0.0.0.0:8000'
alias gittag='git tag | sort -g'
@Apreche
Apreche / gist:1143791
Created August 13, 2011 12:19
Create siege file from access_log
$ cut -d ' ' -f7 /var/log/apache2/access.log > urls.txt
$ siege -c<concurreny rate> -b -f urls.txt
@Apreche
Apreche / .bashrc
Last active June 28, 2020 22:37
Ubuntu 16.04 bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
umask 022
PATH="$HOME/bin:$HOME/.poetry/bin:$HOME/.local/bin:$PATH"
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;