
Na lang zoeken, had ik em dan eindelijk; een naam voor mijn eigen bedrijfje: Tuber. Het belangrijkste was natuurlijk dat het .nl domein nog niet weg, dus die meteen geregistreerd. Tuber is naast een synoniem voor 'root' ("bow before me, for I am root") ook "someone who works with tubes" en dat is precies wat ik doe, aangezien het internet niet meer is dan "a series of tubes". Inschrijving bij de KvK is gedaan, nu nog een logo, briefpapier, visitekaartjes, de hele rambam, maar dat komt goed!
Ever had the need for having all the nice features of SVN, but having no internet connection? Dr. Nic wrote a nice piece on using GIT as an offline repository, connected to SVN.
More info can be found here.
After getting really annoyed by IEs PNG handling, I started some research and stumbled upon a fairly recent blog entry that really has the solution to the whole issue. I tried some javascript stuff before, but this forced me to specify width and height for images (which is generally a pain in the ass, if you have a big pile of code).
More information can be found at http://komodomedia.com/blog/index.php/2007/11/05/css-png-image-fix-for-ie/
Git is great, I love it. Currently, I'm really into creating branches for stuff I have to do, without bothering the rest of the repo. Because of this, I'm constantly switching branches. Sometimes I'm lost and changing stuff in the wrong branch. Of course, Git is wonderful in resolving these issues (reverting, cherry-picking, etc), but because knowing which branch I'm using probably works better (and saves time), I added the following one-liner to my Bash prompt:
$(git branch &>/dev/null; if [ $? -eq 0 ]; then echo " ($(git branch | grep '^*' |sed s/\*\ //))"; fi)
when entering a Git repo subdir results in:
wouter@mini-me:~/prjs/git/myproject (query_builder)$
Otherwise just displays:
wouter@mini-me:~/$
For completeness, my complete PS1 (bash on ubuntu) looks like:
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(git branch &>/dev/null; if [ $? -eq 0 ]; then echo " ($(git branch | grep '^*' |sed s/\*\ //))"; fi)\$ '
Vandaag markeert het officiële begin van een nieuwe stap in mijn carrière. Ik heb besloten om niet meer bij NoXa te blijven, maar als zelfstandig ondernemer verder te gaan. Omdat ik natuurlijk nog wel wat werk hier heb om af te maken en over te dragen en omdat er nog het een en ander geregeld moet worden (met name klanten
) zal ik me de komende 2 maanden hier op focussen. Omdat mijn huidige werkgever erg flexibel en ook enthousiast voor me is hoef ik niet mijn gehele opzeg termijn in dienst te blijven, maar kan ik (na overdracht) weg wanneer ik een klus heb. Erg ok dus. Mochten er dus lezers zijn die projectjes hebben, dan hoor ik dat natuurlijk graag. Werk aan de winkel dus!
Meer info over mijn skills is natuurlijk te vinden in mijn CV
Published at November 8, 2007
in life and work.
Nog 2 jaar en het is weer een mooi priemgetal (en hetzelfde als mijn huisnummer). Nog 3 jaar en het einde is echt begonnen.
Meer info: Wikipedia
Published at November 7, 2007
in life.
Note so I don't forget it (and don't have to look it up again), Setting up pppd over ssh:
# pppd nodetach noauth nodeflate pty "/usr/bin/ssh root@remote.host
/usr/sbin/pppd nodetach notty noauth" ipparam vpn myip:remoteip
# ip route add <remote_net>/<remote_subnet_size> dev ppp0
Set the remoteip to the same IP as the IP of the remote host in the subnet you want to access.
Recent Comments