gregs

helping me remember what I figure out

August 23, 2005
by gregs
0 comments

Busy

Apologies again for the lack of posts, but I have been real busy at work completing another mach-ii app. So I thought I’d share a few details about this application that went live today. You won’t be able to publicly … Continue reading

August 23, 2005
by gregs
2 Comments

SOUNDEX

Ever wondered how Google does it's little "did you mean this..." when you carry out a search? Well we just put together something similar (though I am sure not quite as clever as the folks over at Google). From some … Continue reading

August 23, 2005
by gregs
0 comments

du

I stumbled across the following command while reading this article: du --max-depth=1 --human-readable --total This gives you an estimated indication of your file space usage by folder. Here is some sample output: 12K ./lost+found 2.5M ./bin 84K ./dev 3.3M ./etc … Continue reading

June 30, 2005
by gregs
0 comments

maxEvents

maxEvents is used in the mach-ii framework primarily to help you not get into an infinite loop. Of course limiting the number of events can also land you in trouble as some request may require more events than currently set. … Continue reading