Because I have too many things to do and to little time to do it. Let's start a list!
- Make a new pypi release for django-shop-paypal
- Update dependencies to django-polymorphic and jsonfield to 1.6 compatible versions
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v1 | |
mQINBFO8VeMBEADCj46af3zouBZ+4Hii5nyfwJHyKReE1FzxqYsbAJC7g6NGegNq | |
54FFDpmu2ITYbI3eN2fAy+NGv+AdZ07I/KEXaJh+h80E6C1Nxf+veu1t7TQRTWrs | |
SHIHIws+PjTODkt225Yzs8mVuvmqQsGN2s9Wn70ddp31BXApRST6+AkOG1C5W1Zs | |
J2rIFHslKwEZRn+/jgMxW8tQMktuK73rc4WeKyzekHDcWT3/Onz11IgoLEeYGa0B | |
4FB0X4T29ok1TgIbQqzeTOyXGfDJO/PpslEs4rTwTDYFRh8NuwTDuTLK0Yte/g0R | |
7MakhITb2TLDUv0+aiYSjd8I7EhaNmRj/WRV/eYd5fRvuYtFDkSVNJSCzUlTSlBG | |
859ffDdr9wJkOzq2LaKTPpwYHugTd7R3Br1SmQkPBZVw3NbCIrhlBj6HDG0NzGX8 |
mondict = {"blah": "foo"} | |
def une_fonction(undict): | |
undict["blah"] = "bar" | |
une_fonction(mondict) | |
print mondict # C'est "{'blah': 'bar'} | |
# A l'invere |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# template script for generating ubuntu container for LXC based on released | |
# cloud images. | |
# | |
# Copyright © 2012 Serge Hallyn <[email protected]> | |
# | |
# This library is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either |
#!/bin/bash | |
# | |
# template script for generating ubuntu container for LXC | |
# | |
# This script consolidates and extends the existing lxc ubuntu scripts | |
# | |
# Copyright � 2011 Serge Hallyn <[email protected]> | |
# Copyright � 2010 Wilhelm Meier |
lxc-create -n <NAME> -t ubuntu -- --release <RELEASE ie. precise, raring...> -b <USERNAME to bind home to in the VM> |
$('*').each(function() { $(this).css({background: "#"+((1<<24)*Math.random()|0).toString(16)});}); |
#!/usr/bin/python | |
import os | |
import urllib | |
import shutil | |
lines = [] | |
playlist = "/tmp/Test.pls" | |
playlist_name = playlist.split("/")[-1] | |
playlist_name = playlist_name.split(".")[0] | |
destination_folder = "/tmp/%s" % playlist_name |
#!/usr/bin/python | |
import os | |
import urllib | |
import shutil | |
lines = [] | |
playlist = "/tmp/Test.pls" | |
playlist_name = playlist.split("/")[-1] | |
playlist_name = playlist_name.split(".")[0] | |
destination_folder = "/tmp/%s" % playlist_name |