Git Is Simpler Than You Think

Just ran into an excellent Git tutorial by Nick Farina: Git Is Simpler Than You Think.

For me, understanding the structure of the object database was my Eureka moment for Git. After that, I could start to understand not just how Git worked, but why. The best way to get yourself out of a Git disaster scenario is to understand what Git is trying to do for you.

I think this is The Key in becoming fluent with Git. As a learning strategy it is much better than the typical way of trying to learn which Git command represents which Subversion command.

Must... stop... myself... from writing... a CMS!

Everyone and their brother are writing their own content management systems. Especially in Python. I used to think that there is no other point to that other than personal learning experience. But I have started to wonder.

First I need to discredit a bit the major php stuff floating around. Joomla feels like coding for web in Java way but in PHP. That's a double no-no for me.

All the world full of nonrel databases

There are a lot of nonrelational database engines. Really a lot. I have for some time been wondering on how do they differ and which should I use in which scenarios.

Finally someone managed to explain the differences in a format I understand:

Kristóf Kovács: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j comparison

IPv6 Subnetting Card

Note to self: print this and place it somewhere where I can keep looking it until I can remember the correct values in my sleep:

RIPE NCC: IPv6 Subnetting Card

Two-factor authentication

This is a nice concept.

Luke Faraone: Simple two-factor authentication

Makes it a bit more difficult to do something nasty with just a stolen password. A bit limited in deployment though, at least as long as the mobile devices have as little portability as they do now.

Muualla luettua

Believe it or not, SCO isn't dead yet. SCO Group, by its lawyers Boies Schiller & Flexner and Hatch & Dodge, has just asked the US District Court for the District of Utah to reopen [PDF] its litigation against IBM: SCO respectfully moves the Court to reopen this case in order to...
Samfundet, like many other organizations these days, is feeling the IPv4 crunch—you always seem to gain new devices and more clients that need addresses, and for various reasons it can be hard to get more address space upstream. So, it's time to start looking at turning off IPv4 and go IPv6-only;...
What to get the files older than today? Run    find /path/ -type f -daystart -mtime +0it will return only the files older than today, no matter the time the command is executed (by default, -mtime counts multiples of 24 hours from now). Kinda nice when you want to archive yesterday log files.