Last weekend On The Media ran a repeat airing of their excellent episode on online business models. One of the segments is an interview with AdBlock Plus CEO Till Faida, who defends their eyebrow-raising business model of charging large companies to not block their ads. Yesterday Salon ran an article on the travails of online [&]
Last weekend On The Media ran a repeat airing of their excellent episode on online business models. One of the segments is an interview with AdBlock Plus CEO Till Faida, who defends their eyebrow-raising business model of charging large companies to not block their ads. Yesterday Salon ran an article on the travails of online [&]
Last weekend On The Media ran a repeat airing of their excellent episode on online business models. One of the segments is an interview with AdBlock Plus CEO Till Faida, who defends their eyebrow-raising business model of charging large companies to not block their ads. Yesterday Salon ran an article on the travails of online [&]
Reduce (a.k.a. foldl) is one of my all-time favorite higher-order functions. Its kinda sorta the crane stance of the functional style kung-fu: you dont want to use it a lot but when you do it can save the day. Every now and then you come across an array and you want to combine its items somehow [&]
Reduce (a.k.a. foldl) is one of my all-time favorite higher-order functions. Its kinda sorta the crane stance of the functional style kung-fu: you dont want to use it a lot but when you do it can save the day. Every now and then you come across an array and you want to combine its items somehow [&]
Reduce (a.k.a. foldl) is one of my all-time favorite higher-order functions. Its kinda sorta the crane stance of the functional style kung-fu: you dont want to use it a lot but when you do it can save the day. Every now and then you come across an array and you want to combine its items somehow [&]
Lets face it: the map function (a.k.a. apply-to-all) is pretty simple. You just pass it an array and a function and it returns an array of results of that function applied to each item. Whats it all about then? Here comes the important bit: the new array will have the same size as the original one. Always. [&]
Lets face it: the map function (a.k.a. apply-to-all) is pretty simple. You just pass it an array and a function and it returns an array of results of that function applied to each item. Whats it all about then? Here comes the important bit: the new array will have the same size as the original one. Always. [&]
Adding a toolbar button in a Firefox extension is simple. Since the Firefox user interface is described using XUL, it is enough to inject a snippet of XUL into the toolbar palette in browser.xul. Traditionally this would be done with a XUL overlay. Experienced XUL developers know that a button added like this wont show [&]
Adding a toolbar button in a Firefox extension is simple. Since the Firefox user interface is described using XUL, it is enough to inject a snippet of XUL into the toolbar palette in browser.xul. Traditionally this would be done with a XUL overlay. Experienced XUL developers know that a button added like this wont show [&]