Skip to content

Instantly share code, notes, and snippets.

View fjbardelli's full-sized avatar
🏠
Working from home

Fernando J Bardelli fjbardelli

🏠
Working from home
  • |
  • Buenos Aires, Argentina
View GitHub Profile
@michfield
michfield / mysql56-install.sh
Created May 14, 2013 19:26
Shell script to install MySQL 5.6.11 on Ubuntu Raring Ringtail 13.04 x64
#!/usr/bin/env bash
#
# Install MySQL server
#
# Author:
# Colovic Vladan, First Beat Media
#
download_dir=/srv/tmp/download
download_url=https://dl.dropbox.com/u/191471/FirstBeatMedia/mysql-5.6.11-debian6.0-x86_64.deb
@yxkelan
yxkelan / limit_file_size.py
Created November 2, 2012 06:15
Limit the uploaded file size Django
#In form.py
#The original source for this : http://djangosnippets.org/snippets/1303/
from django import forms
from django.template.defaultfilters import filesizeformat
from django.utils.translation import ugettext_lazy as _
# 2.5MB - 2621440
# 5MB - 5242880
# 10MB - 10485760