Ubuntu 12.10 setup (rbenv/RVM, Janus, PostgreSQL)
- Some utilities:
sudo apt-get install vim tmux git curl- Copy/paste from the command line:
| # This is an auto-generated Django model module. | |
| # You'll have to do the following manually to clean this up: | |
| # * Rearrange models' order | |
| # * Make sure each model has one field with primary_key=True | |
| # Feel free to rename the models, but don't rename db_table values or field names. | |
| # | |
| # Also note: You'll have to insert the output of 'django-admin.py sqlcustom [appname]' | |
| # into your database. | |
| from django.db import models |
| #!/bin/bash | |
| mkdir prancing_heroku | |
| cd prancing_heroku | |
| django-admin.py startproject prancing_heroku | |
| echo "Django==1.3" > requirements.txt | |
| echo "psycopg2" >> requirements.txt | |
| echo "web: prancing_heroku/run_heroku_run.sh" > Procfile |
| namespace :heroku do | |
| desc "Generate the Heroku gems manifest from gem dependencies" | |
| task :gems do | |
| RAILS_ENV='production' | |
| Rake::Task[:environment].invoke | |
| list = Rails.configuration.gems.collect do |g| | |
| command, *options = g.send(:install_command) | |
| options.join(" ") + "\n" | |
| end | |
sudo apt-get install vim tmux git curlThis guide enables you to install (ruby-build) and use (rbenv) multiple versions of ruby, isolate project gems (gemsets and/or bundler), and automatically use appropriate combinations of rubies and gems.
# Ensure system is in ship-shape.
aptitude install git zsh libssl-dev zlib1g-dev libreadline-dev libyaml-dev
| {% load core_utils %} | |
| <ul id="tags" class="nav nav-tabs nav-stacked"> | |
| {% for tag in tags %} | |
| {% if tag_full_list|list_count:tag %} | |
| <li> | |
| <a href="{% url "post:posts-tagged-related" tag.slug %}"> | |
| {{ tag.name }} <span class="label label-info">{{ tag_full_list|list_count:tag }}</span> | |
| </a> | |
| </li> |
| class CachedCountCloneProxy(object): | |
| ''' This allows us to monkey-patch count() on QuerySets so we can cache it and speed things up. | |
| ._clone is called so we have to monkey-patch that first... | |
| ''' | |
| def __init__(self, queryset): | |
| self._queryset = queryset | |
| self._queryset._clone_original = self._queryset._clone | |
| def __call__(self): |
| #!/bin/sh | |
| # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
| # CREATE block and create them in separate commands _after_ all the INSERTs. | |
| # Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
| # The mysqldump file is traversed only once. | |
| # Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
| # Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
| /** | |
| * Builds a horizontal masonry in whats possbily (i haven't researched | |
| * the techniques) a crude manner. | |
| * Fits elements into columns if there is room and sets the width of | |
| * the container element to contain all the columns. | |
| * | |
| * Known Issues: | |
| * - Does not do anything clever for elements where height exceeds | |
| * window height (probably just gets chopped off if overflow: hidden) | |
| * - All elements are expected to be the column width |
| #views.py | |
| def events_index(request, year): | |
| selected_year = Year.objects.get(title=year) | |
| events_list = Event.objects.filter(year = selected_year.id).order_by('category','start_date') | |
| return render_to_response('events_list.html', {"events_list": events_list}) | |
| #events_list.html | |
| {% regroup events_list by category.title as events_list_by_category %} |