Barack Obama spoke in Berlin today. It streamed live on his site using ustream.tv and topped 40000 viewers at one point! Apparently, ustream can handle quite the load.
Obama also had an awesome publicity poster, flyer, etc for the event.
I have completed wlk_defensio, a plugin utilizing the Defensio spam-fighting service. I started developing this thing awhile ago but got side-tracked with other responsibilities. While I wasn’t paying attention, the Defensio guys added OpenID logins to the accounts on their service. I love OpenID and so this only added to the pleasure I have found with their quality service.
Josh needed to output a cakePHP radio button set without the radio button’s around it. We looked at the API, the docs, etc. We just could not figure it out ( 'fieldset'=>false ? or maybe 'fieldset'=>null ?). Nope.
So Josh went off looking and found out you just set 'legend'=>false in the input option’s array:
echo $form->input('user_need', array('option'=>$radios, 'legend'=>false));
…yes, a user can only have one need at a time….muwahaha
Also, you can also select which radio button is “active” on page load using “checked”=>[the value].
We were in the process of updating an older application to work with AMFPHP and cake1.2. We were getting some fairly serious errors on the AMFPHP connection.
We found that one part of the fix was to comment out line 177 in cake_gateway.php and add in a require_once of your app_controller.php file. (This assumes you have an application directory-level app_controller.php file.)
//loadController(null);
require_once('app_controller.php');
We were unable to get App::import(), the new method of loading items in cakePHP 1.2, to work in a similar manner as the loadController() method.
Here’s a new plugin called wlk_helpful. I just finished the installation portion of the plugin this evening (auto-creation of the database tables).
This is a Textpattern article rating plugin that allows users to give a thumbs up or down (yes/no, plus/minus) to an article. There is also a function that you can then use to then display a list of the most popular (positive rating) or least popular (negative rating) articles.
You can download it here. There’s also a javascript file you’ll need to make it work that can be downloaded here
Playground Blues on creating a simple XMl or JSON api for your Django app.
Categories: api, django, how-to, programming
A Yahoo! Boss application running on Google's AppEngine. It answers your questions.
Cuil was rebuilt as Yuil using Yahoo's Boss. Then taken down and relaunched as 4hoursearch.
A JSON read-only API for accessing information within the CrunchBase directory.
Categories: api, crunchbase, documentation, json, techcrunch
Open-source project from Facebook that is essentially a variant Big Table implementation.
Categories: big table, database, facebook, open source