Monday, November 9, 2009

Test post to Blogger from Posterous

It doesn't require to enter your Google Account password now =)

Posted via email from zuko's posting place

Saturday, January 17, 2009

Instant Delicious lookup of a page (browser button)

There are cases when it's useful to quickly check how the web page you're currently viewing is tagged and commented at social bookmarking services.

For example, sometimes I am not quite sure could some page or web service be useful for me later because of my insufficient knowledge of language, and having no time to explore / translate it at the moment, I just want to know so much as what tags to assign to it while bookmarking.

For such cases I have a "Delicious lookup" button on bookmark panel in Google Chrome and Opera.
Code for this button (tested with Google Chrome and Opera):
javascript:if(!window.open('http://delicious.com/url/view?url='+encodeURIComponent(window.location.href)))
location.href='http://delicious.com/url/view?url='+encodeURIComponent(window.location.href)
(Don't forget to remove line breaks.)
You can just click this button and new tab will open showing you who and how many people bookmarked on delicious the page you are currently viewing, how is it tagged or commented, and what are the top tags for this page. Handy.

Labels: , ,

Saturday, December 27, 2008

It's all semantics

I just want to have a convenient way to compose documents (any documents for any purpose) defining their meaning, not formatting text and page layout. Also, to make those documents easy to read and understand, i need a possibility to give them an appropriate formatting (cleanly separated from content and structure).
Well, it seems like there's no such way =(

I'm sick of software like MS Word.
I've discovered and installed LaTeX. It works well (few localization-related problems still exist though). Yes, LaTeX really rocks, but as i see it's very hard to give the result desired look — if this look is different to existing document presets. Sure, LaTeXed document is typographically correct, and it looks neat, but i want more... And still there are problems with content-structure-formatting separation in LaTeX (explained in this post).

I've started to think about XML + Adobe InDesign chain. It should be great if XML's interoperability and power of information organization can be combined with InDesign's power of information presentation.

But it turned out that this also isn't an ideal solution. I thought i can just write an XML document as i see it, import it to InDesign and then do anything with its data presentation there. But this approach doesn't work. Yes, with InDesign i can help well-structured document become well-looking, i can even keep InDesign document in sync with changing XML data (via Links panel), but the problem is that I have to write XML specially for this software.

For example, i see term definition in XML this way:

<termdef term="YAML">A human-readable data serialization format</termdef>

But InDesign doesn't care of XML attributes, so i need to write something like

<term>YAML</term>
<def>A human-readable data serialization format</def>

(Relation between the term and its definition becomes less obvious.)

Though it seems like InDesign will become too complex if it gets enough options to manage with all XML features.

Well, this world isn't perfect, and there's no perfect solution yet here. Though maybe i'm missing something. Still searching...

Labels: ,