FREE BURMA!

( ? , qUeStIoNMaRk )

Seeking for a sustainable amount of chaos. AKA an electronic stream of consciousness about software engineering, open source, life. By Marco Fabbri.

March 7, 2009

RadioParadise

Filed under: life, commons, music, web

One of my first sources of music (and inspiration for new artists) on the internet has been Radio Paradise. During the years Radio Paradise kept on impressing me with an outstanding soundtrack for studying/working/training hours, and the magic keeps on rolling every day.

Just for your information this has been the playlist so far this morning:

  • The Cure - The Love Cats
  • Quetzal - Planta De Los Pies
  • Dave Brubeck Quartet - Take Five
  • Talking Heads - Burning Down The House
  • U2 - Magnificent
  • The Caesars - Jerk It Out
  • Ray Barretto - A Deeper Shade of Soul
  • My Morning Jacket - Touch Me
  • Led Zeppelin - Immigrant Song
  • Madness - One Step Beyond
  • Gogol Bordello - Tribal Connection
  • Paco De Lucia - A Pesar De Todo
  • Charlie Musselwhite - Que Te Parece, Cholita
  • Rolling Stones - Miss You
  • John Butler Trio - Zebra

You have just to love it. Thanks Radio Paradise, for keeping on rocking (any given day)!

Did I mention it is commercial free and it’s fully listener supported? If you like it be sure to support Radio Paradise.

December 22, 2008

Mozilla Survey

Mozilla Community needs you… for a quick survey: “Firefox in your country“.

I took it and it takes only 5 minutes, take it and help improving your favorite browser. The deadline is December 26th.

via [gioxx]… via [pseudotecnico].

November 28, 2008

Geek moments

Filed under: web, fun, geek

reddit programming close to 65535

October 26, 2008

Potential for Terrorist Use of Twitter

Filed under: internet, web, fun, geek

Just read it on Slashdot: US Army Sees Twitter As Possible Terrorist “Operation Tool”

A chapter titled ‘Potential for Terrorist Use of Twitter’ notes that Twitter members reported the July Los Angeles earthquake faster than news outlets and activists at the Republican National Convention in Minneapolis used it to provide information on police movements. ‘Twitter is already used by some members to post and/or support extremist ideologies and perspectives,’ the report said. The report goes on to say, ‘Terrorists could theoretically use Twitter social networking in the US as an operation tool.’

Then, the Fail Whale will save us :-)

PS: We just need to get Jack Bauer in touch with the Fail Whale.

Good Bye SeekTube

After being installed for the whopping amount of 42 times (yes, 42) SeekTube gets outdated by YouTube providing the same functionality. You can now postfix a YouTube link with #t=XmYYs (which differs from SeekTube links for an additional “t=”) and get the player start at that precise moment; actually the precision depends on the nearest available key-frame, which the player starts playing from.

As a plus, YouTube also implemented a functionality I was wondering to add to SeekTube: it now automatically detects when someone mentions a specific time and adds a link to that point in the video. If you write 01:18 in a comment, YouTube would enclose it in an anchor tag wth the onclick attribute set to the seekTo function, i.e. <a href=”#” onclick=”seekTo(01*60+18);return false;”>01:18</a>. The detection is performed server-side (although the conversion is completed on the client - is this by or design by accident?); this leaves a little room for (seektube-strikes-back) porting the detection fully on the client side (in a greasemonkey/ubiquity script) and having it available on every page linking or embedding a YouTube video.

Good Bye SeekTube,
So LongShort and Thanks
For All the Few FishLinks

October 17, 2008

Beginnings (New Addictions)

Filed under: life, internet, web, technology

Notwithstanding Google Reader subscriptions getting fatter and fatter and Facebook Live Feed reaching flood level, I had to try, I couldn’t help myself but to begin twittering.

October 9, 2008

Comic Driven Development

CDD (Comic Driven Development) seems the last trend in software development techniques, first experimental evidences show it as particularly successful in getting the fun back to programming.
Ingredients for the recipe are a talented and sharp comic writer (say your favorite geek comic author) and a smart and receptive development team (say the one behind your favorite video-powered online time waster): the comic writer portraits a tremendously useful feature which could clearly improve the life of the many,

Man, I just wanted to know how babby was formed.

the development team makes it real,

YouTube Audio Preview Feature

and it actually works!

YouTube Audio Preview feature actually works!

Now the whole CDD thing just needs a wikipedia entry.

July 21, 2008

SeekTube in action

Here comes a video demoing SeekTube functionality.


July 19, 2008

Of Small Things, Time, Links and Videos.

It seems that a pragmatic approach to ending procrastination is focusing on “small things”, and getting them done. As part of this today I focused on a long-standing “issue” of mine… getting YouTube videos link-addressable. You know, it happens you want to link to a precise (topical) moment in a video - e.g “when the kitten can’t finally keep up with the ever speeding treadmill” - and what you are left with is a “at X minutes and Y seconds in the “.

That said, having previously spotted the YouTube JavaScript Player API providing a seekTo function, I managed to leverage it (through Greasemonkey) to come to a solution: SeekTube.

SeekTube is a Greasemonkey user script to enable the same “link within a video” feature provided by Google Video also on YouTube videos.
[…]
Well, SeekTube enables the same functionality: i.e. you can specify a permalink to a precise time in the video by appending an “#” followed by the time formatted as HhMmSs to the video url, where H, M, S are sequence of digits indicating hours, minutes and seconds respectively (none of them is mandatory); e.g. you can take a look at the BeOS nice long degradation curve under heavy load(multiple multimedia streams and 3D graphics, half computing power down), happening at 7 minutes and 50 seconds (http://www.youtube.com/watch?v=6VDYdaXApNk#7m50s) from the beginning of the video.

Note: it’s rather alpha stage, as I haven’t yet figured out a way to cope more gracefully with the security/sandboxing model of Greasemonkey/Firefox (see SeekTube page for details on the implementation).

As a note for the JavaScript-inclined, an interesting failing approach to get a working reference to the “player” object inside the Greasemonkey execution environment (without overloading the window.onYouTubePlayerReady function) is to wait for the player.seekTo function to be ready, i.e. defined, i.e no more undefined, which goes down to setting a recurring timeout until the player.seekTo is defined. This approach failed beacuse of Greasemonkey sandboxing; player.seekTo will be undefined forever. Here comes the code… (the GM_log() is GreaseMoney logger to JavaScript Console)

function seekOnPlayerReady(){
  player = document.getElementById(‘movie_player’);
  if(player.seekTo) {
    /* seek time retrieval from url */
    player.seekTo(seekTime,true);
  } else {
    GM_log(‘player not yet ready’);
    setTimeout(’seekOnPlayerReady()’, 500);
  }
}
setTimeout(‘’, 500);

PS: DiveIntoGreasemonkey, being not fully up to date, is yet a very nice introduction, js2mode (by Steve Yegge) for Emacs is great.

March 18, 2008

Martian Headsets

Joel wrote, as usual, a thoughtful and witty article on the web, standards, interoperability and the upcoming mother of all flame wars; this is a must-read for everyone concerned with web-related software development (web designers, web programmers, information architects, marketeers…) .

As usual, the idealists are 100% right in principle and, as usual, the pragmatists are right in practice. The flames will continue for years.

Joel goes into a lengthy explanation, driven by an extra-terrestrial catchy case study, of what are the possible “cardinalities” of “market standards” (One-to-One - all is fine and simple, One-to-Many - yet fine, Sequence-to-Many - a story of pain and backward compatibility, Many-to-Many - you know, PurePain ™), why a standard without a reference implementation it’s not that standard, and why in the long run being conservative in what you do, and being liberal in what you accept from the others potentially ends in deployment issues kicking your conservative yet liberal butt. In the meanwhile you get also acquainted with some real-world compatibility issues between rabbis from different ultra-orthodox communities:

If you’ve ever visited the ultra-orthodox Jewish communities of Jerusalem, all of whom agree in complete and utter adherence to every iota of Jewish law, you will discover that despite general agreement on what constitutes kosher food, that you will not find a rabbi from one ultra-orthodox community who is willing to eat at the home of a rabbi from a different ultra-orthodox community. And the web designers are discovering what the Jews of Mea Shearim have known for decades: just because you all agree to follow one book doesn’t ensure compatibility[…]

As a very brief personal memorandum: Real Standards must have Real Reference Implementations (because “reality siphons off excess complexity1) and although Postel’s Robustness Principle is (imho) still much valuable for the wide spread of the internet/web it has been able to sustain so far, it should be carefully balanced - “in medium stat virtus” - with having very, very strict standards and “components” positively obnoxious about pointing them all out to you; maybe we (as developers/engineers) should resort to some sort of “carrot and stick” principle.

NOTE 1: The full citation from David H. Gelernter’s Mirror Worlds (a wonderful and fascinating book narrating a vision of computing and information of extraordinary elegance - that is by other words a good combination of simplicity and power) is:

“Information structures are, potentially, the most complicated structures known to man. Precisely because software is so easy to build, complexity is a deadly software killer.
The same problem exists for hardware machines, but it lacks comparable significance. Physical reality is the overflow valve that siphons off excess complexity before the whole system blows.[…]”.

Safely store your passwords on

Clipperz - online password manager

Get free blog up and running in minutes with Blogsome | Theme designs available here