After Amazon DX was discontinued, there is no much alternatives in large e-ink display segment. The Onyx seems to be a choice.
[ add comment ] ( 6 views ) | [ 0 trackbacks ] | permalink
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
>>> class bar( object ):
... def __init__(self):
... print "ahoj"
... def baz():
... self.x=100
...
>>> y = bar()
ahoj
>>> class bar2(bar):
... def __init__(self):
... hoo = 2
... super(bar2, self).__init__()
...
>>> daz = bar2()
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
http://www.slideshare.net/jmgimeno/meta ... on#btnNext
http://youtu.be/ANhTacigaf8
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
To view your current settings:
# xset -q
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink | related link
UNetbootin allows you to create bootable Live USB drives for Ubuntu, Fedora, and other Linux distributions without burning a CD. It runs on Windows, Linux, and Mac OS X. You can either let UNetbootin download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you've already downloaded one or your preferred distribution isn't on the list.
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink | related link
/etc/pam.d/gdm-autologin
#
# access for autologin
#
auth required pam_nologin.so
auth required pam_permit.so
account required pam_unix.so
session required pam_permit.so
/etc/gdm/custom.conf
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=root
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink | related link
2check
django signals
https://docs.djangoproject.com/en/1.4/ref/signals/
jango decorators
https://docs.djangoproject.com/en/1.4/topics/http/decorators/
python property
http://adam.gomaa.us/blog/2008/aug/11/t ... y-builtin/
python programming
http://www.tutorialspoint.com/python/py ... orking.htm
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
A Quick Primer On Unicode and Software Internationalization Under Linux and UNIX
http://eyegene.ophthy.med.umich.edu/unicode/
[img]
http://eyegene.ophthy.med.umich.edu/uni ... s/utf8.png
[/img]
To determine your current locale settings, type
$locale
To determine all the locale available
$locale -a
set the locale
export LC_MESSAGES=C
export LANG=cs_CZ.ISO-8859-2
export LC_MESSAGES=C
export LANG=cs_CZ.utf8
Vim and unicode
:echo globpath(&rtp, "keymap/*.vim")
:set keymap=czech_utf-8
You can specify a keymap to use in your
.vimrc
To force VIM to save without BOM
:setlocal nobomb
:w
DJango and unicode
https://docs.djangoproject.com/en/dev/ref/unicode/
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
http://ago.tanfa.co.uk/css/examples/menu/hs5.html
http://www.cssportal.com/horizontal-menus/kalsey4.htm
[ add comment ] ( 6 views ) | [ 0 trackbacks ] | permalink