Category Archives: Software

Android Scripting Environment is heating up

The Android Scripting Environment is to the Android phone as Greasemonkey is to Firefox.   It’s a simple place to do quick hacks for your phone without having to build a full plugin or application.

Two cool scripts that just got released are Silent Night and Droid Track. Continue reading Android Scripting Environment is heating up

Project Idea: Context Free or Processing Header Plugin for WordPress

An iteration or so of the website ago I hacked in a random art generator into the background of the title of my website using ContextFree.js by Aza Raskin.  It was a cool little hack, but what would be really nice is to make it shareable.

I’d like a WordPress Plugin that finds the heading of your website and inserts a little Canvas element, includes either processing.js or contextfree.js and picks a sketch, then plops it in the background of your website’s title.  How cool would that be?

How to show WordPress page hierarchies

Got a request for help from some the Eyebeam list. 1 The folks organizing the Urban Wilderness Action Center for the international Electrosmog festival 2 wanted some usability help.  Navigating between subpages of their projects was too confusing.

If you like the way the sub pages are listed out on, say, the Berlin Micro-Turf Expedition – here you go.

<?php
// Does this even have a parent?
if($post->post_parent) {
$parent_title = get_the_title($post->post_parent);
?>
<a href="<?php echo get_permalink($post->post_parent) ?>"><?php echo $parent_title;?></a>:
<?php } ?>
<?php
//ok let's find our sibling pages, but we don't need to list the current page
if ( ($post->post_parent) && (get_post($post->post_parent)->post_parent) )
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&exclude=".$post->ID."&echo=0");
else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul style="display:inline">
<?php echo $children; ?>
</ul>
<?php } ?>
  1. The Eyebeam folks are doing a cool skillshare on how “Tools and Models for Online Collaboration”  (back)
  2. It starts March 20th!  It’s completely free!  Go!   (back)

Volunteer Your Computer to Keep Privacy Possible

The good folks over at Wild Bee have an excellent article about how you can use your computer to help the world while you sleep. Lotsa people run SETI@home – I think it is because of the screensaver. Instead of a looking for aliens, you could help political dissidents in repressive regimes, protect anonymous whistleblowers, and even protect our intelligence agents overseas. Install TOR and volunteer your computer for global privacy.

Project Idea: Dasher for Android

Dasher is a text entry method completely unlike a keyboard. You just swipe and like a video game you navigate through the possible sentences you could be writing.
Check the demo:

I like the idea that you are just navigating through the Borgesian infinite library to extract your sentences.
Dasher is free and GPL, it just hasn’t been compiled for android yet. Compile it, sell it with source for $.99.

Remember, qwerty is not destiny.

Automattic Writing

The company behind WordPress has written a pretty amazing online grammar and style checker.

It integrates with WordPress and other platforms, providing really good suggestions.  Each mark also comes with an “Explain” option.  That’s nice because it gives you the reasoning for the suggestion.  I’ve installed the WordPress plugin – expect less passive voice from me.

If you’ve got a blog where you’ve got any control over it at all, I’d suggest you try the demos, then integrate it into your site.