Tag: ruby

Rails 3.1beta deployed to Heroku from your iPhone

The tools:

  1. Local shell, LogMeIn or an ssh shell to a terminal system on your phone/tablet
  2. a system with git and heroku (I haven’t tried installing these on my phone)
  3. Internet
  4. DropBox and DropText for easy mobile editing. Alternatively you could use github as a web editing/auto-commiting platform

(more…)

Building an App for Mac OS X Part 2

This is a continuation of my exploration of developing a Mac OS X application, particularly a MacRuby app which has been designed well with deep integration into Cocoa objects implemented in objective C. The series is now two posts strong :) (more…)

Exploring speculative execution and evaluation

Consider a simple search problem with multiple paths. The main processing path can be computed in series as required functionality is identified. Completion occurs whenever an adequate solution is found. Alternatively, potential paths can be searched in batches or all simultaneously ahead of time**. This diminishes the wait for required functionality at the cost of additional processing, some of which may never be necessary. We trade computation power for statistically lower execution time.

(more…)