- http://www.disambiguity.com/drupalcommunity-model-for-design/
- http://www.disambiguity.com/5-ux-initiatives-for-drupal8/
- http://www.pilpi.net/software/moodle/2010/09/30/masters-thesis-about-moodle-and-open-source-usability/
- http://mairin.wordpress.com/2010/04/06/contributing-to-free-open-source-software-as-a-designer/
- http://thorwil.wordpress.com/2011/03/10/design-boost/
- http://groups.drupal.org/prairie-initiative
- http://smarterware.org/7550/designers-women-and-hostility-in-open-source (serendipitously posted to HN today)
💫
- GitHub Staff
- https://gazit.me
- @[email protected]
- @idangazit
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
class ScoredModel(models.Model): | |
score = models.IntegerField(default=0) | |
total = models.DecimalField(max_digits=7, decimal_places=2, default=0) | |
raw = models.DecimalField(max_digits=7, decimal_places=2, default=0) | |
easy_total = models.IntegerField(default=0) | |
easy_score = models.IntegerField(default=0) | |
easy_raw = models.DecimalField(max_digits=7, decimal_places=2, default=0) |
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 unipath import FSPath as Path | |
PROJECT_DIR = Path(__file__).absolute().ancestor(2) | |
DEBUG = False | |
TEMPLATE_DEBUG = DEBUG | |
ADMINS = ( | |
('Idan Gazit', '[email protected]'), | |
) |
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
(skills) [idan@IdanBookPro ../skillsapp.com/skills (master)]$ pip install httplib2 | |
Downloading/unpacking httplib2 | |
Real name of requirement httplib2 is httplib2 | |
Could not find any downloads that satisfy the requirement httplib2 | |
No distributions at all found for httplib2 | |
Storing complete log in /Users/idan/.pip/pip.log |
layout | title |
---|---|
page |
PyPy |
PyPy is a `fast`_, `compliant`_ alternative implementation of the `Python`_ language (2.7.1). It has several distinctive advantages and features:
- Speed: thanks to its Just-in-Time compiler, Python programs often run `faster`_ on PyPy. `(What is a JIT compiler?)`_
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
1x users/show | |
1-3x friends/ids (depending on friend count) | |
1-3x followers/ids (depending on follower count) | |
1x statuses/user_timeline (only need the last 1k tweets). | |
1-10x lists/memberships (depending on listed count) | |
Total: | |
~5-18 API calls per candidate investigated. |
DjangoCon Europe is a volunteer-run conference funded mainly by ticket sales; everybody pays to attend (including speakers). Talk submission is not a substitute for purchasing a ticket. If you plan on giving a talk, please make sure to purchase conference tickets and arrange transportation/lodging for yourself.
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
<table> | |
{% for row in data %} | |
<tr> | |
<td>{{ row.foo }}</td> | |
<td>{{ row.bar }}</td> | |
... | |
</tr> | |
{% endfor %} | |
</table> |
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
try: | |
import simplejson as json | |
except ImportError: | |
import json | |
from django.http import HttpResponse | |
from django.core.cache import cache | |
def my_mongo_view(request, filter_args=None): | |
data = cache.get(filter_args) # first check to see if it's in the cache |
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
idan at IdanBookPro in ~/Downloads/subtle patterns/pngs | |
$ ls -l *.png | |
-rw-r--r-- 1 idan staff 80297 May 26 10:51 45degreee_fabric.png | |
-rw-r--r-- 1 idan staff 606 May 26 10:51 60degree_gray.png | |
-rw-r--r-- 1 idan staff 9998 May 26 10:51 black_denim.png | |
-rw-r--r-- 1 idan staff 142 May 26 10:51 carbon_fibre.png | |
-rw-r--r-- 1 idan staff 46006 May 26 10:51 cork_1.png | |
-rw-r--r-- 1 idan staff 145267 May 26 10:51 exclusive_paper.png | |
-rw-r--r-- 1 idan staff 102354 May 26 10:52 fabric_1.png | |
-rw-r--r-- 1 idan staff 16964 May 26 10:51 gray_sand.png |