Joined February 2012
·
Posted to
How to make a cool $() selector
over 1 year
ago
@webreflection I like to be explicit in this example, because is for educational purposes. But if anyone use this code, these tips are useful.
Thanks!
Posted to
Your own Git server
over 1 year
ago
Thanks francisc!
Posted to
Run Django commands using cron
over 1 year
ago
Yes, I use a bash script like the following:
#!/bin/bash
cd /var/www/project/management/commands
source ../../ENV/bin/activate
python ../../manage.py exporter
Achievements
931 Karma
125,056 Total ProTip Views
Charity
Fork and commit to someone's open source project in need
Python 3
Have at least three original repos where Python is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Cub
Have at least one original jQuery or Prototype open source repo
@webreflection Ok, 'return this' is valid, but the constructor returns 'this' anyway. Removed from the code.
Regards