Skip to content

Instantly share code, notes, and snippets.

View jezdez's full-sized avatar
🚴
💨

Jannis Leidel jezdez

🚴
💨
View GitHub Profile
Step1-Identify LCD:
Open Terminal and copy-paste
ioreg -lw0 | grep \"EDID\" | sed "/[^<]*</s///" | xxd -p -r | strings -6
LP154WT1-SJA2 (=LG 2nd revision)
LP154WT1-SJA1 (=LG 1st revision)
LSN154YL01001 (=Samsung)
Step2-Test for IR:
http://www.mitchmalone.name/retina-test/
@jezdez
jezdez / gist:5347395
Created April 9, 2013 16:57
a list of names for the class that is used in the app loading refactor
AppBase
AppPortrait
AppSketch
AppPassport
AppPlan
AppDetails
AppSpec
AppThing
AppTraits
AppFrame
@jezdez
jezdez / common [stash] fields.py
Created December 1, 2012 15:07 — forked from thomasyip/common [stash] fields.py
Updated version of Django BigInt Patch for 64bit Primary Keys
"""
module mydjangolib.bigint_patch
A fix for the rather well-known ticket #399 in the django project.
Create and link to auto-incrementing primary keys of type bigint without
having to reload the model instance after saving it to get the ID set in
the instance.
Logs:
@jezdez
jezdez / __init__.py
Created July 13, 2012 07:23 — forked from aliles/__init__.py
PEP 302 import hook to reload modules on changes
# apkg/__init__.py
# Empty. Nothing to see here.
from functools import wraps
from mock import patch
def environ(**variables):
def decorator(func):
@wraps(func)
def wrapped(*args, **kwargs):
with patch.dict('os.environ', variables):
return func(*args, **kwargs)
diff --git a/docs/ref/class-based-views/fundamentals.txt b/docs/ref/class-based-views/fundamentals.txt
index 2591869..95ae352 100644
--- a/docs/ref/class-based-views/fundamentals.txt
+++ b/docs/ref/class-based-views/fundamentals.txt
@@ -16,9 +16,8 @@ views.
**Method Flowchart**
- 1. dispatch()
- 2. http_method_not_allowed()
@jezdez
jezdez / gist:1336593
Created November 3, 2011 14:20
making the forms template loader cached by default
before:
Running all benchmarks
Control: Django 1.4 pre-alpha (in git branch master)
Experiment: Django 1.4 pre-alpha (in git branch soc2011/form-rendering)
Running 'simple_form' benchmark ...
Min: 0.000264 -> 0.000267: 1.0117x slower
Avg: 0.000309 -> 0.000448: 1.4518x slower
Significant (t=-76.577531)
@jezdez
jezdez / gist:1242317
Created September 26, 2011 14:10
cut -f1 -d" " .bash_history|sort|uniq -c|sort -r
1769 git
1258 cd
596 python
562 mate
525 brew
386 ./manage.py
288 pip
249 sudo
227 ssh
202 workon
@jezdez
jezdez / djpatch.py
Created August 25, 2011 10:21
A helper script to apply patches from Django's trac
#!/usr/bin/env python
"""
Obviously this is only useful if you have to deal with Django's
Trac a lot.
Mostly stolen from Jacob Kaplan-Moss, but improved by Jannis Leidel
and Aymeric Augustin.
Reads a config file at ~/.djpatchrc, e.g.:
@jezdez
jezdez / gloss.py
Created August 24, 2011 10:10
A dictionary like object that supports attribute access, too.
import copy
class gloss(dict):
"""
A dictionary like object that supports attribute access, too.
>>> import pickle
>>> s = gloss(a=123)
>>> c = s.copy()