goosh.org

goosh.org is a new Web-based tool that has been warming up the wires for last hours. The idea is really cool, though it does not work in text lynx-like browsers, as one would expect.

Hmm, looks like the next (and obvious) step is to implement GDAL utilities plugin for goosh, so everyone can run:

guest@goosh.org:/gdal/> ogrinfo -ro PG:'host=gdal.org user=root dbname=cool'

Layer name: streets
   Geometry: Line String
   Feature Count: 13
   Extent: (-87.634943, 24.543945) - (-80.031369, 31.000975)
   Layer SRS WKT:
   GEOGCS["GCS_WGS_1984",
      DATUM["WGS_1984",
      SPHEROID["WGS_1984",6378137.0,298.257223563]],
      PRIMEM["Greenwich",0.0],
      UNIT["Degree",0.0174532925199433]]
...
guest@goosh.org:/gdal/>

What about hackers/crackers? Don’t worry! This time, lucky works for Google:

I tried “rm -rf /”, but Google is still up.

;-)

Update: Stupid me! I really should not use the term hacker inappropriately above.

colormake on Mac OS X

I have just discovered colormake utility – a simple wrapper around make to colorize its output.

colormake is really helpful for someone who heavily works in Unix shell environments to visually analyse messages generated during programs compilation. Simply, colors are used as another language for communication with a user, complementing letters printed out to the console. The colormake wrapper in combination with clean console fonts like Terminus serve as a great tandem in hacker daily job.

First, I started to use colormake 0.2 on Ubuntu Linux:

$ sudo apt-get install colormake

Next, I tried it on Mac OS X 10.5, though with no luck. Basically, because of subtle differences in Bash and format of GCC output messages. So, simple patch (colormake-0.2-mloskot.patch) is required to get colormake 0.2 working on Mac OS X. I’ve sent this patch to Bjarni – the author of colormake, so perhaps he will like to include it in next (0.3?) version. BTW, thanks to Bjarni for the colormake tool!