Notes: November 2007 Archives

Main | December 2007 »

November 16, 2007

Using git.

Information courtesy of dormando

# Conceptual 'checkout'
git-svn clone http://svn/repo/whatever dir

# to pull and update working dir
git-svn fetch && git-svn rebase


# to shovel your history upstream. turns it into one-patch-per-revision
git-svn dcommit

# protip:
# after doing an initial pull of an svn repo
git repack -a -d && git prune
# it's hella slow and makes one git object per svn revision along the way
# but once the clone finishes and the repack's done it should be fast

# both git log and git-svn log will work after the checkout
# clone
# whatever
# git-svn log mimmicks svn obviously

# you use git
# I don't use it much, but the process is:
commit commit blah blah blah
git-format-patch blah
git-send-email blah
# which'll crap your commits out into a patch series
# or you can stop at git-format-patch and send them yourself

November 12, 2007

multiuser screen

Q: Multiuser mode is not working - how can I enable it?

A: Screen has to be setuid root to accomplish this. (Note the security implications
this has! Also bear in mind that setuid programs remove some variables from their
environment for exactly this reason - see ld.so(1).) If you still want to enable
the feature, you may do so with the following commands:

] dpkg-statoverride --add root utmp 4755 /usr/bin/screen
] chmod 0755 /var/run/screen

dpkg-statoverride will make sure that the modified permissions remain in effect
even if a new version of the screen package is installed. /var/run/screen will
be automatically recreated with the proper permissions if the directory lives
on volatile storage (doesn't persist between subsequent reboots).

November 11, 2007

Anime I have seen

* Ah My Goddess
* All Purpose Cultural Cat Girl Nuku Nuku
* Azumanga Daioh
* Battle Angel
* Battle Athletes
* Bleach
* Card Captor Sakura
* Chobits
* Chrono Crusade
* Cutey Honey Flash
* El Hazard
* Escaflowne
* Excel Saga
* FLCL
* Full Metal Alchemist
* Futakoi
* Galaxy Express 999
* Gunslinger Girls
* Haibane Renmei
* Inu Yasha
* Iria no Sora - UFO no natsu
* Kanon
* Kazemakaze Tsukikage Ran
* Kareshi no Kanojyo no Jijyo
* Lain
* Lost Universe
* Love Hina
* Magic Knight Rayearth
* Mahou Sensei Negima
* Nadesico
* Nadia
* Naruto
* Neon Genesis Evangelion
* Niea_7
* Noir
* Now and Then, Here and There
* Onegai Sensei
* Onegai Twins
* Outlaw Star
* Pia Carrot
* Piano
* Pita Ten
* Ranma 1/2
* Record of Lodoss Wars
* Revolutionary Girl Utena
* Rurouni Kenshin
* Sailor Moon
* Samurai 7
* Scrapped Princess
* Shamanic Princess
* Slayers
* Steel Angel Kurumi
* Tenchi Muyo
* Trigun
* Tsubasa Chronicles
* Vandread
* Witch Hunter Robin
* Wolf's Rain
* You're Under Arrest


This can't have been healthy.