Ruby 1.9.2 gets a second release candidate – The H Open Source: News and Features
… According to the developers, the final version is expected to arrive in August …
Ruby 1.9.2 gets a second release candidate – The H Open Source: News and Features
… According to the developers, the final version is expected to arrive in August …
Over the last many years quite some of my Ethernet cables got defunct because of that broken “thingie”, which should in theory make the plug stay in the jack. If you don’t replace the plug yourself (which looks quite difficult to me), you can just through the entire cable away. No shop offers a service to fix that. Why should they? They earn more money selling you new cables. Does anyone know of such a service anyhow?
And if you tell me the proper name for that “thingie”, I will happily use it from now on.
There are calm days, and there are awfully calm days, this one is not – like half a dozen of “friends” today confirmed my add for them resp. requested me to confirm their add.
I am very excited about this.
There is an exploding number of web views on that Google Group.
Keep your fingers crossed, that there will be frequent activities soon.
DocBook Website is going to revolutionise the activities necessary to set up static and almost static web-sites, it will not stay the gold mine for a few – it will be affordable for the many.
DocBook Slides is the new way to create slides, forget everything before!
Tell everybody about this user group in Berlin! Join “us” for learning and helping each others!
Today resp. just now I found “yet another time …“, that browsing my music library in iTunes / on the iPod / on the iPhone “by genre” is much more fun, then browsing by name on my file system – what a surprise!
Yet I still insist, that my music library has to be kept “by name” on the file system. Quite a contradiction, isn’t it?!? But browsing a huge amount of music, with lots of covers included, that definitely is fun. Have a nice weekend, all of you out there …
One good reason for not not authoring in XML is not having a suitable editor or IDE. I personally use and recommend emacs and James Clark‘s nxml-mode. I create and modify all sorts of XML documents this way. If you supply nxml-mode with the right schema for your document, nxml-mode can even help you with tag completion and document validation. nxml-mode makes use of schemas in RELAX-NG, co-created by James Clark. RELAX-NG schemas are rather easily created, if not yet just available, as for DocBook, DocBook Website, DocBook Slides, and many, many other XMLs.
I have done that a dozen times, it does work.
Here you find nxml-mode’s manual page.
The Slides Document Type is an XML vocabulary derived from
DocBook. It is used to create presentations (slides, foils, whatever
you call them) in HTML or print.
Presentations are by nature
visual and the Slides stylesheets
provide a wide range of options to control how the transformation from
XML to HTML is performed.
One good reason for not not authoring in XML is not having a suitable editor or IDE.
I have a long list of cpanm jobs,
don’t want to put them in a batch all toghether,
and want to get signalled, when each of them is done:
$ while true; do beep; done
In my case the beep is acutally just the flashing of an xterm window.
Update:
Yes, notify-send is far, far, far superiour, growlnotify on OS X.
Thanks for the pointers!
Why do I keep forgetting the name of this wonderful little helper?
seq prints a sequence of numbers to standard output. Synopses:
seq [option]... last
seq [option]... first last
seq [option]... first increment last
seq prints the numbers from first to last by increment. By default, each number is printed on a separate line. When increment is not specified, it defaults to ‘1’, even when first is larger than last. first also defaults to ‘1’. So seq 1 prints ‘1’, but seq 0 and seq 10 5 produce no output. Floating-point numbers may be specified (using a period before any fractional digits).