It’s long been my theory that social media are a great fun tool, can even be used for marketing and promotion, but it still hasn’t figured out how to reliably make money. Actually, only eCommerce and porn are the two reliable moneymakers on the web ;-) That inspite of the fact that social web sites have actually accounted for more traffic than porn on the internet this year so far — first time ever.
Business Week writes a rather interesting article about The Trouble With Twitter:
Twitter’s business model is starting to show. An early sign came in April, when the popular microblogging service launched in Japan and the home page for every Japanese user included a big banner ad in the top right corner.
Then, on Aug. 7, Twitter made another change, this time in the U.S., by limiting the number of people a single user could connect with, or “follow,” to about 2,000. Most recently, on Aug. 14, Twitter made the biggest move yet to slash costs. It killed outbound message delivery to mobile phones via short message, or SMS, in all countries except the U.S., Canada, and India.
Taken together, these moves point to the trouble with Twitter. Investors and marketers have been agog over the potential for Twitter—unlike other social media properties, such as Facebook and MySpace (NWS)—to crack the code, finally, on wringing revenue from millions of users. But the optimists better brace for disappointment.
>> See the Busineess Week site for the full article.
This is a very interesting article about why the video traffic from the Olympics didn’t “melt” the internet. LimeLight (unlike Akamai) actually runs their own backbone which keeps a lot of traffic off the internet:
Avenue A|Razorfish could be up for sale by Microsoft, a spy tells us, possibly to WPP. From the beginning of the relationship, AA|RF has been an odd fit for Microsoft, and based on a few strong indicators, we surmise a sell off before too long.
When you’re spending $6 billion to pick up a company like Redmond, it makes sense to get as much for your money as possible. That seems to be what Microsoft was thinking when they kept AA|RF — but a year later the agency is broadening its horizons, expanding services to “a media and entertainment consulting practice with 200 staffers in New York, L.A. and San Francisco,” according to Silicon Alley Insider.
More after the jump.
Internally, many believe that Microsoft never planned to keep the agency within its roster. For starters, we’ve learned that AA|RF employees haven’t been switched to Microsoft benefits.
Also, the new SF offices are “oddly configured to fit WPP standards, a radical change from the fun, bigger spaces of the old AA/RF office.” I guess you’d have to work at WPP to know exactly what that means — but it sounds as though AA|RF has been told to keep it in its pants if it wants to marry a nice girl one day.
One final oddity, SF based employees were told not to order “new business cards printed with the new office address until future notice.”
We’ve had a multi-touch Surface device at work for a while now and built a few neat prototypes with it. But this multi-touch emm multi-grab hologram looks way cooler. The demonstration shows a man interacting with holographic images projected before him, moving them around and resizing them. It’s only sort of like the Minority Report display, which used hand movements to control elements on a screen.
You might have read about Cuil, the supposed Google killer which indexes three times as much content as Google does. Too bad it never surfaces anything relevant for me. And have you noticed that the “Search 121,617,892,992 web pages” hasn’t changed in days? Ok, you might guess, they’re not really going to kill Google. Instead I think we’re really re-living some sort of strange bubble at the moment.
First of all, check this out to get an insight into the inner workings of Cuil as a company. That sounds very 1999.
Secondly, working for the largest interactive agency in the world™, I’ve seen a lot of requests for proposals from a lot of companies that all want to build video search portals. That seems to be the next big thing. There are a few cool players out there, Truveo is one of them. Select sites are trying to index the videos by scene detection and voice recognition software in addition to standard metadata.
A lot of players want to build similar portals all of a sudden. Unfortunately there aren’t any really viable off-the-shelf search engine technologies you can buy to do this right. If I look at FAST Search, which is still one of my favorite engines and happens to be owned by Microsoft, they have a multimedia search add-on I want to evaluate soon (yet I’m told not to get my hopes up). I think sophisticated video search portals will be limited to a very few capable players that can invest in the technology themselves and have the proper funding for the R&D and necessary server farm required to parse through all video on the web.
And just to round off the argument, I am surprised at how many of these projects don’t have clear business models (Cuil included). It might be cool, but what’s the point if it doesn’t make money? Just because Google can throw money at 15 technologies to get one out of it that works doesn’t you should.
Anyhow, I think we’re in the middle of a (video) search bubble and it’ll be very interesting to see which players emerge from it as leaders!
About half a year ago I bought an Alix 2C3 embedded system board. It’s got a 500 MHz Geode CPU, 256 MB of RAM, a mini-PCI slot (for a wireless card), 3 network interfaces, and a compact flash slot (CF-card as hard drive). It’s running m0n0wall, a free FreeBSD-based firewall software and is essentially the entry point into my home network. I had looked at other alternatives such as pfsense, yet I found m0n0wall convincingly simple and to the point. And it boots up fast from a 256M flash card.
I used to rely on a Linux box to provide my basic network needs like DHCP and DNS and every time I rebooted the box my network stopped working. This little dedicated box is not running all of it. With the three network interfaces I created LAN, DMZ, and WAN zones. The LAN is hooked up to my Linux server and wireless (for the iMac and laptops), the DMZ is connected to a virtual machine on the Linux server which is basically my public-facing web server (Ubuntu!). The WAN is directly hooked up to the cable modem.
Let’s look at some of the features that have led me come to adore m0n0wall:
Web-based admin interface with user management capabilities
DNS relay
DHCP Server (much more configurable than a standard wireless router)
Firewall and NAT rules (stateful packet filtering)
Traffic Shaper (which I use to throttle the traffic on my public web server)
VPN (PPTP and IPSec) - I just love VPN-ing in to my home network from work
Logs, debugging support, and live traffic graphs
Dynamic DNS integration (e.g. with DynDNS in my case)
The upgrade to Wordpress 2.6 wasn’t quite as seamless as it should have been but everything seems to work fine now. I further decided to go for a new - clean and simple - theme which is now optimized for 1024×768 - more content! Learn more about all the new features in Wordpress 2.6.
This site now also has a mobile version (just point your phone at it) thanks to the wordpress mobile plugin. I also integrated Twitter. Or, in web 2.0 talk: this is so like totally awesome :)
My former colleagues at CoreMedia decided to release their Javascript cross-compiler, Jangaroo, as open source. The tool takes Javascript 2 / ActionScript 3 and translates it into browser-compatible JavaScript 1.x, allowing the developer to write the scripts in a much nicer — and more object-oriented language.
Here’s a sample JavaScript 2.0 class:
package net.jangaroo.example {
/**
* A simple example demonstrating how to receive and return typed arguments.
*/
public class HelloWorld {
/**
* Returns a personalized greeting.
* @param name name of the person to greet
* @return String a personalized greeting
*/
public function greet(name : String) : String {
return "Hello, " + name + "!";
}
/**
* Returns a personalized and HTML-escaped greeting.
* @param name name of the person to greet
* @return String a personalized and HTML-escaped greeting
*/
public function greetHtml(name : String) : String {
return this.greet(name).replace(/&/g, "&").
replace(/</g, "<");
}
}
}
Once translated with the cross-compiler, you can import the classes into your HTML and use them:
<script type="text/javascript" src="joo/Class.js"></script>
<script type="text/javascript" src="net/jangaroo/example/HelloWorld.js"></script>
<script type="text/javascript">
//<![CDATA[
// asserts that all required classes have been loaded
joo.Class.complete();
// instantiate the example class
var helloWorld = new net.jangaroo.example.HelloWorld();
// button onclick event handler
function sayHello() {
// grab the input and output elements
var outputDiv = document.getElementById("output");
var inputField = document.getElementById("nameField");
// call the #greetHtml method of the HelloWorld class, and output the return value
outputDiv.innerHTML = helloWorld.greetHtml(inputField.value);
}
// ]]>
</script>