1. Următorul release de Kiwi Linux nu va avea nimic special în afară de obișnuitele schimbări mici în plus.
    Am curățat bugurile vechi și irelevante din LP, așa că sunt doar 4 deschise.
    Mai e de făcut pachet din grafice făcute de Radu Mircea Ilea pentru xsplash, compilat un wubi și eventual portat restoregrub la GRUB 2
    Legat de lansare va trebui înainte cu câteva zile să vedem pe ce servere vor fi puse ISOuri.
    8

    View comments

  2. Nu știu cu cine a mai colaborat Stas pentru a face situl http://alege.softwareliber.ro dar mi se pare de departe cea mai bună prezentare online din România a conceptului din câte am văzut până acum. Felicitări autorilor! Ar merita să fie prima pagină a softwareliber.ro , că aceste avantaje și softul e ce interesează pe oameni nu neapărat comunitățile tehnice din spate. Cu un nou tab eventual pentru comunități locale de unde se ajunge la oameni și implicare. Și aspectul e mult mai reușit imho.
    Vă urez spor în continuare. Pe liste de mail tot nu mă bag, din ce am văzut în arhive sunt mult prea multe posturi off topic sau threaduri diluate, și au apărut recent câteva mesaje derutate și de-a dreptul agresive care mă țin departe de a mă implica în curând în comunitate. Rămân mailurile cu max 4-5 cc:-uri ;)
    1

    View comments

  3. The perl and python solutions presented for dumping Firefox current session URLs are not very accurate if you navigate around in the same tab using backwards and forward buttons while remaining on the same domain, as they always print the first visited URL. UPDATE: Actually the python one is as it too uses JSON :)

    The JSON data in that sessionstore.js file keeps a list of URLs and an index field of the current one, and the latter is changed by the back/forward navigation.

    Using Javascipt we can load that JSON object and manipulate it far more naturally that via regexps. Here's how it is done using the Mozilla JS interpreter smjs that comes in the spidermonkey-bin package. It has no file access libraries so I used this interpreter's readline along with some help from the shell (echo is needed to append a newline to the original input file, otherwise readline() choked.)

    echo | cat `locate sessionstore.js | head -n 1` - | smjs -e 'eval("pig="+readline());

    i=0;
    for each (w in pig.windows) {
    print("Window ", i++);
    for each (t in w.tabs) {
    print(" ", t.entries[t.index-1].url)
    }
    }'


    I have no idea how to do code formatting in blogger, so above code is unindented. On the plus side it can be easily copy-pasted and tested :) Change the locate invocation with you hardcoded path if you want more speed.

    Things will be even nicer when GJS and/or Seed are in wider use and you are able to manipulate files directly from JS :)
    1

    View comments

  4. I have finally published some 8 year old code which I only kept in backups so far and never got motivated enough to put somewhere visible. But I thought it's a good excuse to test gitorious :)

    It is a small set of simple linux commands written in ARM assembly language, inspired by asmutils, which I contributed to in 2001. That was the first open source project I actually sent code to, before that it was a few documentation patches to lkml.

    Repository on gitorious (which is a very nice, but slow service)

    More details in the project's README
    1

    View comments

  5. Copied over Pidgin 2.5.7 that fixes the recent Yahoo protocol connection problems from the Pidgin PPA to the Kiwi Linux 9.04 archives, so if you have the latter an upgrade will get it. Nice work Pidgin upstream and Ubuntu packagers :)

    Until this version needed by YMSG users gets through ubuntu-updates (or backports) it's a good way to stop confused newbies.
    0

    Add a comment

Blog Archive
About Me
About Me
Loading