Blogs

Building Git on Ubuntu

To "git" the latest goodies in Git 1.6.x, I like to build it on my systems rather than obtain it thru a package manager.

On Ubuntu server systems, I may be missing some Git build dependencies. I can go into the Makefile and set some values (near the top) to work around this like :

NO_TCLTK=true

It's probably easier, however, to do this to have apt-get grab the build dependencies :

$ aptitude build-dep git-core

This may get some things you may not need (Subversion, CVS), but it makes it easier.

Then just make :

# make prefix=/usr install2
...

Categories: 

Git merge strategies

Here are a few comments about Git merge strategies.

When you do something like git merge FETCH_HEAD, Git will by default apply a recursive strategy when you pull or merge one branch.

I had a case where I had to pull in commits from a "similar but unrelated" Git repository. I did a git fetch to grab the changes into a local FETCH_HEAD. But when I did git merge with the default merge strategy, the merge failed miserably (lots of conflicts).

When I tried the resolve strategy, the merge failed totally :
$ git merge -s resolve FETCH_HEAD

Categories: 

Windows Vista Media Center and Acer Aspire L5100 - HTPC

OK, yesterday I was thinking about using Mythbuntu / MythTV as a PC-based media center (home theater PC). I didn't know, but it seems like Windows Vista Premium has a "media center" application which should be sufficient for my needs.

I don't want to put a lot of time into this (we don't watch that much TV), so we'll see what we get out of the box with Vista.

One problem -- our TVs are old (like I said - we don't watch much TV)!. We have a 1994-5 (??) big old Phillips TV, and a Dec 2004 Sony WEGA KV-24FS120. I'm going to try this experiment on the Sony.

Categories: 

Ripping DVDs to disk and play back

While cleaning up things a bit, I realized we have some one-of-a-kind DVDs (wedding videos etc.), so having multiple "soft" backups of these on computer drives makes more sense than having DVDs that will scratch and fade with age. You can always buy another copy of a movie, but last time I checked, our wedding DVD wasn't on Netflix -- even in the comedy section ;-)

Categories: 

PHP Frameworks - CodeIgniter Overview

Here are the slides to an interesting talk about PHP frameworks, given by the "first" creator of PHP, Rasmus Lerdorf, who now works for Yahoo.

In PHP 3.0+, Rasmus kind of gave up control of PHP to a couple other guys who took it in much more of a Object-oriented way. I like the following slides where Rasmus questions how 10 years of OO haven't added much (except confusion) to the language :

http://talks.php.net/show/drupal08/4 PHP 1995 - short and simple
http://talks.php.net/show/drupal08/5 PHP 2005 - after 10 years of OO cruft added

PHP security

A friend thought that updating to the latest version of PHP would "automatically" provide much better security. I'm skeptical.

I've heard that most of the "unintentional" PHP security issues over the past 2-3 years were only a risk if you were accessing PHP from the local file system (not via Apache). If somebody's already on your filesystem you're going to have problems regardless of the PHP version.

Categories: 

XMind is a nice, free brainstorming tool

XMind is an Eclipse-based mind mapper (brainstorming) tool. I've found it to be quite adequate for brain dumps.

I still like Microsoft Word's outlining tool. It's one of the few reasons to still use Word.

But XMind provides a nice way to create and visualize "bubbles" or groups of ideas.

http://www.xmind.net

There are some videos which show how to use it. Each of these are about 1-2 minutes and a good way to try before you "buy".

Categories: 

XMLWriter in Perl, PHP and Tcl

Here's some information on XMLWriter.

It looks like popular XMLWriter implementations in PHP, Perl and Tcl just wrap the C library libxml2 (or older libxml) :
http://xmlsoft.org/index.html

For Perl, there's a CPAN XMLWriter :
http://search.cpan.org/~josephw/XML-Writer/

For PHP, there's an old PECL library that looks like it will work with older versions (4.x) of PHP :
http://pecl.php.net/package/xmlwriter

Categories: 

Thoughts on becoming an IRS Enrolled Agent

I received the following question about my thoughts on becoming an IRS Enrolled Agent :

I am interested in taking the enrolled agent exam.

How has being an enrolled agent benefited you professionaly?

What course of study did you use to pass the exam.

Thanks for the question

I'm not a practicing EA, so it really hasn't directly helped me. I mostly took the exam quite a while ago to get some "certification" when I was thinking about being a financial planner.

Categories: 

Pages

Subscribe to RSS - blogs