You are here: Blogsphere Longtail

Rails BlogSphere

BlogSphere

Keep up to date with your favourite Rails bloggers in context.

Read more about how it works


Cutting corners with xmpp4r-simple

by Vladimir Dobriakov | 3 days ago | Read more

xmpp4r-simple aims to provide a wrapper around the powerful and well maintained xmpp4r library, "making it dead-simple to send and receive Jabber messages". Unfortunately, the abstraction and simplification provided by xmpp4r-simple is leaky, missing the principles of jabber protocol. The...

Two stories about light and information

by Matthew Katz | 3 days ago | Read more

When I was younger I saw small haloish ripples around some shadows.  I thought I had magic powers, that I could see auras.  I believed I had this secret power for quite some time.  While reading a moving presentation by Matt Web about ancient Patagonian communication (it’s sort of heartbreaking), I learned what it was.  [...]

Headshot2 @xentek Another SVN client for…

by Damien McKenna | 3 days ago | Read more

@xentek Another SVN client for you to try out: http://tinyurl.com/4rnnhu

Portrait Refactoring an ActiveRecord callback

by Josh Nichols | 3 days ago | Read more

Inspired by a few articles and pesentations (1 2 3 4), I decided it was time to cleanup some of the logic in my Post model related to a particular ActiveRecord callback. The fact that I needed some comments to explain what it is doing should be a red flag.

before_validation :update_published_at_if_necessary

def published?
  self.is_published == true
end

def unpublished?
  ! published?
end

protected
  # Ensure that published_at is set accordingly.
  # 
  #  * Unpublished posts should not have this set
  #  * Published posts should have it set to the current time
  def update_published_at_if_necessary
    if new_record? && published? && published_at.nil?
      self.published_at = Time.now
    end
    if ! published? && !published_at.nil?
      self.published_at = nil
    end
  end

Fortunately, I have tests in place that excercise this logic, so as long as my tests are passing, the refactorings must work (hopefully!).

My first impression is that the callback is doing too much work. Let's split it up into two pieces.

before_validation :set_published_at_to_now_if_necessary
before_validation :unset_published_at_if_necessary

protected
  def set_published_at_to_now_if_necessary
    if new_record? && published? && published_at.nil?
      self.published_at = Time.now
    end
  end

  def unset_published_at_if_necessary
    if ! published? && !published_at.nil?
      self.published_at = nil
    end
  end

That's somewhat better. At least the methods are more focused.

Hmm, I probably don't need to check the existing published_at value when something isn't published. I can also make use of unpublished?

def unset_published_at_if_necessary
  if unpublished?
    self.published_at = nil
  end
end

I would do something similar for set_published_at_if_necessary, but I don't want to override the published_at if it was explicitly set. Maybe I post something in the future, or past. I go a little crazy sometimes with that.

I could probably simplify the conditional logic in set_published_at_if_necessary by making a new method.

protected
  def set_published_at_to_now_if_necessary
    if new_published_post_without_published_at?
      self.published_at = Time.now
    end
  end

  def new_published_post_without_published_at?
    new_record? && published? && published_at.nil?
  end

Having if_necessary into the method names are kind of bugging me. before_filter supports :if and :unless options, so we should use those, and remove the conditionals from the callback methods.

before_validation :set_published_at_to_now, :if => :new_published_post_without_published_at?
before_validation :unset_published_at, :if => :unpublished?

protected
  def set_published_at_to_now
    self.published_at = Time.now
  end

  def unset_published_at
    self.published_at = nil
  end

Looking good. Looking pretty, pretty good.

Let's see the finished product:

before_validation :set_published_at_to_now, :if => :new_published_post_without_published_at?
before_validation :unset_published_at, :if => :unpublished?

def published?
  self.is_published == true
end

def unpublished?
  ! published?
end

protected
  def set_published_at_to_now
    self.published_at = Time.now
  end

  def unset_published_at
    self.published_at = nil
  end

  def new_published_post_without_published_at?
    new_record? && published? && published_at.nil?
  end

I'm pretty happy with this. Reads really well. Some of the methods have kind of long names, but I can deal with that.

The only part I don't really like is published? and unpublished?, but that's for another day.

MapReduce at RailsConf Europe

by Jonathan Dahl | 3 days ago | Read more

This September, I’ll be presenting at RailsConf Europe on EC2, MapReduce, and Distributed Processing. The talk will explain the MapReduce approach to distributed processing, will show a few example implementations, and will discuss MapReduce vs. other distributed processing techniques.

Whether you’ll be there or not, if you’re interested in learning more about MapReduce, here are some resources. I’ll write a few more posts on the subject before the conference, so watch this space as well.

Cluster Computing and MapReduce is a great series of video lectures given to Google interns in 2007. The first two are the most appropriate: the first introduces distributed processing concept, while the second covers MapReduce itself.

MapReduce: Simplified Data Processing on Large Clusters is the paper by Jeffrey Dean and Sanjay Ghemawat of Google that got things going in the first place.

MapReduce for Ruby: Ridiculously Easy Distributed Programming discusses MapReduce and introduces Starfish, a Ruby library for distributed processing. Starfish is not a MapReduce implementation, however – it takes a somewhat different approach to distributed processing.

Skynet (a few writeups: InfoQ, Dion Almaer) is another Ruby-based distributed processing system inspired by MapReduce.

Writing Ruby Map-Reduce programs for Hadoop discusses using Ruby to wrap Hadoop, a MapReduce-like system built in Java.

Introduction to Parallel Programming and MapReduce at Google Code University, a good overview of distributed processing and the MapReduce approach.

And finally, one article that you should avoid:

MapReduce: A major step backwards compares MapReduce to relational databases, and says that MapReduces loses out because it doesn’t support database indices, database views, Crystal reports, etc. Basically, the complaint is that MapReduce isn’t SQL compliant. WTF? Clearly, the author(s) didn’t understand what MapReduce is. The problem, as explained elsewhere, is that the authors thought that MapReduce == CouchDB/SimpleDB. Which is obviously not true. %s/MapReduce/SimpleDB the original article and it makes some sense. But long story short, this article will teach you nothing about MapReduce, and will likely confuse you further. So stay away.

Checkbox list in Ruby on Rails using HABTM

by Justin Ball | 3 days ago | Read more

Checkboxes are one of those things that look easy and should be easy, but they aren’t always easy. I needed a solution that could create a checkbox list of languages that a user speaks. So I don’t forget here’s how to do it: The migrations are important. You have to be sure [...]

Twitter Updates for 2008-07-03

by Marcus Ahnve | 3 days ago | Read more

Calling Telia is painful. After talking to the ‘intelligent’ machine I am now supposed to wait for 28 minutes. There is no email option. # Telia is 10x more expensive on international calls than Telenor. I thought that was a mistake, but apparently it is not. # Anyone using Callex for international calls? http://www.callex.se # Or Voyo? http://www.voyo.se [...]

1200033289_m Cattle Brands

by Jordan Dobson | 3 days ago | Read more



During my road trip across the United States we took a short rest
somewhere in the middle of Montana and I saw this interesting display
of local cattle brands.

My favorite is the “Lazy P Swinging 9”. I think I see the beginings of
the Weezer =W= in there too!



» Email This  » Post A Comment!

Slobodan-110x110 SproutCore - a javascript framework

by Slobodan Kovacevic | 3 days ago | Read more

SproutCore is a javascript framework which tries to enable developers to build web apps that look and act more like a desktop apps. It steps away from a classic web app model by moving a lot of app into the browser itself, which then interacts with server via AJAX. As it says on the SproutCore site: After [...]

Avatar_web Empowering regular expressions

by Sérgio Santos | 3 days ago | Read more

A post at Coding Horror got me thinking how the experience of using regular expressions through out code can be improved. I use them frequently in various cases, but many programmers though about them being like some kind of super-human ability:

XKCD comic

The syntax of regular expressions itself isn’t very welcoming and some (really) ugly examples can be found on the web. Also, the creation of a single expression can be a bit long and error prone process, even for experienced programmers and testing their correctness isn’t painless either. What options do we have then?

Regular expressions pocket reference book

Well for creating my own regular expression, I often fall back to a external tool. I use an online tester: Rubular. Although it’s said to be for the ruby language, the rules and characters are pretty generic for most regular expression engines. After getting the expression right on Rubular, I just integrate them with my code. Most of the times I just abstract it to its own method, to help with code reuse and testing. The pocket reference that I acquired also comes in hand, with all the rules explained and implementations for all the popular languages.

Unfortunately there isn’t much intellisense for regular expression when it comes to IDEs. Here I’m talking about identifying them (an easier task in some languages like ruby and perl, in which they have been granted with a unique syntax), checking if the syntax is valid, automatically offer a box where you can throw several test cases, and other nice features you can probably think of.

Finally, some experiences have been done towards making the regular expression a bit more programmer friendly. Most notably, a readable version through object-oriented rendering of the regular expression string. A random example of what it looks like:

Pattern.With.Literal(@"<div")
    .WhiteSpace.Repeat.ZeroOrMore
    .Literal(@"class=""game""").WhiteSpace.Repeat.ZeroOrMore.Literal(@"id=""")
    .NamedGroup("gameId", Pattern.With.Digit.Repeat.OneOrMore)
    .Literal(@"-game""")...

It’s arguable if this version is itself a improvement not only in readability, but also in maintainability (bigger number of lines for example). A lot of arguments have been thrown at the coding horror post comments section, so I suggest you read a bit through them. In my personal opinion I found the syntax a bit harder to remember and would only increase the overhead of making casual changes. However, I also agree that for some folks it might be a simpler and familiar way to start using regular expressions, specially if they’re all against learning a new language.

Taches Rake pour Bivouac

by Gregoire Lejeune | 3 days ago | Read more

Guillaume, qui test a fond Bivouac, m’a fait prendre conscience que migrer une application de la version N-1 à la version N de Bivouac, n’est pas facile, ou tout au moins que cela n’est pas sans danger. En effet, jusqu’à maintenant cette opération ne pouvait se faire qu’en régénérant l’application sur elle-même, au risque d’écraser certains [...]

mp3 of Carter promising to reduce America's dependence on foreign oil

by Ben Moore | 3 days ago | Read more

mp3 of Carter promising to reduce America's dependence on foreign oil

Avatar The last year or so

by Thijs van der Vossen | 3 days ago | Read more

This morning we had a meeting with a potential new client. When he asked us to name the companies we’ve worked for recently, I realized we haven’t posted much about the work we’ve done in the last year or so.

Mostly, we’ve been working on larger back-end and some internal projects. We helped Brighter Planet build a web application that allows people to keep track of, and then reduce, their climate impact. They’re now up and running, and slowly moving their Rails development inside the company (they’re hiring).

For Prada we built an auction system which has been used to sell unique prototype pieces. This project is now also being maintained by an internal developer at Prada.

Boom Test Uitgevers, a publisher of psychological tests, asked us to design and implement an architecture that allows third-party developers to integrate Boom’s tests safely and easily. We decided to split their existing Rails project into a separate account management and multiple test scoring applications that talk to eachother using ActiveResource. See the Account Manager and Scoring API documentation for an overview of how this works.

For another tests publisher, Bohn Stafleu van Loghun, we designed and implemented three different testing products, one providing diagnostic tests for psychotherapists, one that allows teachers to screen schoolchildren for psychosocial problems, and an early warning instrument for use in eldercare.

We also created two e-learning applications; Dr.Stat, a statistics course developed by the University of Amsterdam, …

…and Basics, currently being used by the educational publisher Boom Onderwijs to create various courses.

For Mountain Goat Software we designed and built Planning Poker, a fun estimation tool for distributed agile teams.

Finally, we also did a few regular website projects, for example Rijnboutt Van der Vossen Rijnboutt, Hendriks Schulten architecten, and Uitgeverij Luister.

No Tag Backs

by Eric Smith | 3 days ago | Read more

Well Micah tagged me, and if I look at these XML request/responses for another hour without a break I’m going to pass out into my keyboard. Here goes.

How old were you when you started programming.

I had a Texas Instruments computer thingy that I got for my 6th or 7th birthday, somewhere in there. It played these educational games, but I noticed one day that if I didn’t put a cartridge in it a blue screen came up with a cursor. It had an instruction book and I would basically type in the programs verbatim, then do little things with it like change a color or a line. Later I had an Atari XE and it did the same thing, so I made the same little guessing game in it just like the one I made on the TI. Realistically I didn’t write anything of use until high school though.

Interestingly, perhaps only to me, my version of Hello World for the iPhone SDK was a guessing game.

How did you get started programming.

I guess that was the real answer. I played with my dad’s computers all the time but didn’t consider it as a career until I was about 16 or 17, when I realized I could probably get paid for it. Up until then I wanted to be a sports journalist. So I went to school so I could found my own game company.

What was the first real program you wrote?

What counts as “real”? The guessing game? Making horizontal lines appear on the screen? I wrote a bunch in Basic and Pascal for homework assignments, and like Micah had one of those TI calculators. The first specific one I can recall was a text-based adventure game I made for a homework assignment my freshman year. It was based on the Haymarket Bombing

What languages have you used since you started programming?

Pascal, C, C++, C#, COBOL, Assembly, Perl (but I won’t admit it), Java, Objective-C, Ruby, Javascript, Lisp, VB, Erlang, and I just wrote Hello World in Smalltalk (Squeak).

I too doubt I could write Hello World in most of those languages, and wouldn’t put them all on my resume. It’s funny because I probably would have when I came out of school, since I didn’t know the difference between “familiar with” and “able to write some code with”.

What was your first professional programming gig?

I started a web design company in college, which employed me and myself. I had two clients, one of whom paid me in Kung Fu lessons.

If there is one thing you learned along the way that you would tell new developers, what would it be?

Find great people to work with. If you’re the smartest person in the room, you need a new room, because if you’re not growing you’re dying. This is tricky when you’re new, since you don’t know a great developer from a tree stump, but take a look at Micah’s tag list. It looks like the list of authors in my library.

I would also tell them they should come to work for me as my apprentice, unless they weren’t any good. Then they can work for Jim.

What’s the most fun you’ve ever had programming?

Working with the team I work with now is fantastic. I also had a great time working Agile 2007 as part of RailsFest, and I’m looking forward to doing the same thing on the Live Aid stage this year.

Up Next

Sadly I don’t know many developer’s who keep blogs, so I’ll just echo Micah’s list and tell Paul, Jim, Doug and Matt they’re next.

Me trms goal week wrapup

by John Reilly | 3 days ago | Read more

  • Company Presentation: check.
  • Grilling: check.
  • Beers: check.
  • Smoking pipes out back: check.
  • Rock Band in the conf room: check.
  • More Beers: check.
  • Enjoying the awesome folks you work with: check.
Gotta say, it’s been a pretty good day today.

Blackburn_120x180 Hack to fix "undefined method" error when running rake on a gem not yet installed

by Chris Blackburn | 3 days ago | Read more

Recently, while trying to install the ultrasphinx gem for one of our projects, I ran into this little bonus:

(in /Users/cblackburn/Source/ruby/bols)
These gems that this application depends on are missing:
 - ultrasphinx
Run "rake gems:install" to install them.
rake aborted!
undefined method `validates_email_address' for #<Class:0x1f577f0>
/Users/cblackburn/Source/ruby/bols/rakefile:11
(See full trace by running task with --trace)

As usual I won’t bore you with why it happens other than to say the loader doesn’t work properly in this instance. To hack around it find out which models are using the ‘undefined method’ and place the following inside the class definition, before using the method.

# Hack to fix "undefined method" error when running rake on a gem not yet installed
require File.join(RAILS_ROOT, 'config', 'initializers', 'custom_validations')

Comment if you need more help or if this is not clear.

Putting a Wordpress blog behind a nginx frontend (with a bit of cheating)

by Mathias Stjernström | 3 days ago | Read more

This is how I did a quick fix for a client of ours that are running a Ruby On Rails app behind an nginx/mongrel setup. The mission where to move their wordpress weblog to the same server as the website. The easiest way had been to add another IP and install apache behind it. They did not [...]

Most memorable advice you've been given [ma.gnolia]

by Rich Orris | 3 days ago | Read more

Most memorable advice you've been given

You can have the life you want.

Saved By: Rich Orris | View Details | Give Thanks

Tags: photography, unrulythings

Bring the Lightning

by Rich Manalang | 3 days ago | Read more

You may have noticed my irritation at ZDNet this week due to their borked podcast of Paul’s appearance at the Churchill Club a few weeks ago. Everything is cool now, thanks to one Dennis Howlett. A few things were wrong about this whole thing. First, I left a comment Monday about the podcast being borked; then two [...]

511979588_19de511f1c_m "Their version of our mission is to go [on a course] for umpty-x thousands of dollars, so they can..."

by Alan C Francis | 3 days ago | Read more

Their version of our mission is to go [on a course] for umpty-x thousands of dollars, so they can claim they were “certified”. One two-day blowjob and they’re set for life. Sure, it tastes like salted raw egg-whites, but afterwards you’re *Agile*.

Kids. “Agile” is for people who don’t have the balls for “XP”. I’m sorry to be the one to tell you, but lookit, agile always was a word provided by marketeers, bereft of any commitment beyond what could be sold. It always fucking was.



- Mike Hill : XP Prophet

How to confuse an Idiot

by Joren De Groof | 3 days ago | Read more

I have no idea if I’m being way to late whith this post or not. But I shure do like it (via)

Boem.

by Koen Van der Auwera | 3 days ago | Read more

Vandaag heb ik gebotst. Boem met mijne mooie auto. Den eerste keer ooit, in ik weet hoeveel jaar, +10. Ik was/ben onder den indruk. Daar moet ge dan eerst +3000 km voor rijden om dan achter den hoek (bij wijze van spreken) te botsen.

Gelukkig enkel materiele schade. En ook dat valt nog mee.

Desalniettemin niet plezant.

eRubyCon: Be There!

by Chris Nelson | 3 days ago | Read more

Just a quick little post to get the word out to my readers about eRubyCon in Columbus, OH Aug. 15-17th. It's shaping up to be an awesome conference. And the early bird rate makes it the best conference deal I've ever heard of. Heck, even the post early bird rate makes it the best conference deal I've ever heard of. So register already. You know you wanna.

SLK Course Manager 1.0 Released

by Andrew Woodward | 3 days ago | Read more

On the 1st July 2008 the SLK Course Manager package was uploaded to codeplex,  this was something that I had been waiting for as there are plans to incorporate functionality into a project I am currently working on.    Having installed and tested the solution I can say that I am totally under-whelmed,  this add-on was expected to fill the Gap left after the move from Class Server to SLK/MLG.

Please feel free to grab the download an try it out for yourselves, and post comments if you think I have this wrong.

http://www.codeplex.com/slk

A brief review of the Installation Guide highlighted some real concerns

  1. You must be running the 1.3.1 (Alpha) release of SLK.   Yes you read that correctly - this will only work with Alpha code - who is going to deploy this to live??
  2. This release is not guaranteed to work with future releases!  

For most these two statement alone should have started alarm bells ringing, and you are going to be pretty brave to let this code out to on you live installation.   Others have been waiting for ages for these additions so will press on.

Installation

The installation process is not too bad, you do need to pass in a parameter for the URL that actually has a web site - not a problem for most but if you have been a good SharePoint person and spilt out you schools into site collections you may not have a site at the root.

Central Admin feature activation is ok but I would have liked this to have been automated.  Database creation is a bit light - it works but could have been more helpful in pulling in default database details and suggesting a name,  the code for this is already in SLK so a bit lazy that!.

Only one database?  It appears that the solution relies on a DB connection setting in the registry,  meaning you can only have one database for course manager across the entire farm.   This may be ok for single school installations but what about the managed services or District (Local Authority in the UK) deployments.   Again why not use the same approach adopted by SLK to keep things consistent.

Its all a bit manual

Activation of the Course Manager on a site is all a bit too manual.  Considering you would need to do this as a site for each and every course.

The instructions do guide you through this feature activation and adding the 3 web parts so i'll just look at these.

Course Manager Pages Web Part

SLK CM Pages

Course Manager Pages Web Part,  just provides two links to the Plan and Assign page and the Monitor and Assess page (both stored in as forms in a document library).   I'm not sure of the design reasons for using a document library to hold pages and then not display the pages,  also why the link on the Quick Launch when you don't use the library? 

The web part does not appear to have any logic,  i.e. if I log in as a student I still see both links?  why not hide them if you not an Instructor or Admin?

Plan and Assign Page and Web Part

SLK CM Plan and Assign

As described above this page is stored in the forms library of the Course Manager Pages library.   But you have to manually add the Plan and Assign web part.  Come on please this is not hard to automate a page with some web parts on it!

In this page you have the ability to group assignments into Activities (in fact assignments as used in SLK are called activities in Course Manager) so you have Activity Groups which can have multiple Activities.   This is fairly useful in that it allows you to organise activities together.   The UI has made use of Ajax so no need for page postbacks - whilst I agree with this I find the actual UI to be very unfriendly..   Why do I click on a blue bar (that looks like a toolbar) in order to show a text box for data entry?

The file upload is good, you can upload a document without leaving the page, but it's very limited.   Why can it only use one Library?   What if you have course material stored centrally do you have to copy it here?  it appears so with Course Manager.   Also if you navigate Up from the root of the document library you get completely redirected away from the page.

Assign / Unassign is an all or nothing activity,  no way to choose which students to assign the work to as in SLK, this is an all students regardless!   Not sure if that really reflects the real world where you will have mixed ability students in the same class.

I also noticed that any work you have assigned via SLK directly can only be viewed here - no ability to manage these or group into activities.

Monitor and Assess Page

As with the Plan and Assign page you have to manually add the web part which as you can see below is not really the GradeBook we were expecting.

SLK CM Monitor and Assess

Without any documented instructions this screen is just difficult to understand.   There are options to enter values on this page,  you can Save - but what? Return to learners - what am I returning?   Here we actually see the first real reference to a Course - pretty lame considering this is supposed to be a Course Manager. 

Clicking on the Activities (assignments) takes you to the normal SLK assignment management screens.

And that's all that I could find?

At this point your probably looking at the documentation to see what was missed!  If you find anything please email as I've not found anything yet.  After installation you move straight to Uninstalling!  Wait perhaps that's what is going to happen in reality once people see how little you get from the add on.

Disappointment in what has been provided has been raised and I am hoping that in the next few days I can report that I missed a whole area of functionality,  but having looked at the solution files and code (I know it's not available,  but Reflector does a great job :) ) I can't see anything.

Oh and I nearly forgot,  if your upgrading from a previous version there is a database Schema change (still testing the MLG version) as the new Observer role has been introduced.   Looking at the SLK documentation you are advised that in order to upgrade you need to delete you SLK database and create a new one.

Yes you read that correctly... DELETE YOUR DATABASE!!!

So all that work that you have done so far with SLK will. ummm be lost???   This for me is just ridiculous,  how about running something like SQL Compare on the DBs and a little bit of code to perform the upgrade,  I mean if we can upgrade SharePoint databases from V2 to V3 this should be a walk in the park.

C’è un nesso?

by Maurizio Pedriale | 3 days ago | Read more

“Figlio di una coppia di fiorai, Pezzali coltiva sin da giovane la passione per la musica…” Dalla biografia di Max Pezzali, su wikipedia.

Bodao Mais Text Munger

by Walter Rodrigo de Sá Cruz | 3 days ago | Read more

Whitespace, punctuation, numbers -- anything that isn't a word -- should also remain unchanged.

Ou seja, minha implementação anterior está fundamentalmente errada ;)

E eu só li essa parte do enunciado depois do comentário do Rodolpho.

Mas é fácil de resolver, usando o shlex mesmo:


import sys
import shlex

from random import shuffle

def munge(text):
    t = shlex.shlex(text, posix=False)
    t.quotes = "'"
    t.whitespace = ""
    #print(list(t))
    s = (munge_word(word) for word in t)
    print("".join(s))

def munge_word(aword):
    s = list(aword)
    first = s.pop(0)
    try:
      last = s.pop()
    except IndexError:
        return aword
    shuffle(s)
    return first + ''.join(s) + last

try:
  s = open(sys.argv[1]).read()
  munge(s)
except IndexError:
  print("Usage: munge.py file")
 

El cerebro, ese órgano maravilloso

by Carles Balaguer | 3 days ago | Read more

Ya sé que muchos pensáis que tenéis otro órgano mucho más maravillos, pero hoy va sobre el cerebro. He aquí la cita:

El cerebro es un órgano maravilloso. Se pone a trabajar al levantarnos y no deja de funcionar hasta entrar en la oficina.

Robert Frost (Poeta estadounidense)

(Sacado de Espai Multimèdia)

Espero que no leáis mi blog en la oficina, sino ahora puedo explicarme algún que otro comentario descerebrado que deja la gente.

Con la de tacos que ha puesto supongo que mi posicionamiento web habrá mejorado para búsquedas guarrillas. Gracias majo.

Robert Frost leyendo un poema de Gloria Fuertes

Sí, este hombre es Robert Frost, ¿quién lo diría verdad? Tiene cara de Robert, pero no de Frost.

Domain Hunting

by Marcel Scherf | 3 days ago | Read more

I have alot of ideas about projects I could do online and when I think the idea is easy to implement I usually look if a nice domain is available. I had a lot of domains before and this week I registered 2 more. This brings me to a total of 14 domains as of [...]

Five Technology Tips to Save Your Business Money

by Daniel Gibbons | 3 days ago | Read more

Pay no attention to that man behind the curtain. The Wizard of Oz Getting Started is the Hardest Part This post is the first in a regular series I’ll be writing about practical tips for incorporating technology into your business. We’ve got a lot of small business owners and entrepreneurs reading our website, so we thought it would [...]

All Your Technology Are Belong To You

by Marcus Ahnve | 3 days ago | Read more

Jonathan Schwartz writes about finance as a technology business I remember a dinner I had a while back with the CEO of a global financial services firm. As one of his first acts as CEO, he’d cancelled an enormous outsourcing contract, and I’d asked him why - his response has stuck with me. ‘Banking is a [...]

My NDA Policy ~ I have decided to starting signing them!

by Alexander Muse | 3 days ago | Read more

You would be surprised how many call me looking for advice (i.e. free advice that I am happy to provide), but first ask me if I would sign an NDA before they share their idea with me.  I have refused to sign NDAs for a number of reasons in the past (well covered in this [...]

Smoke from Crown King (AZ) Fire

by Dagny Gromer | 3 days ago | Read more

There’s a nasty wildfire burning in Crown King, AZ. Earlier in the week I took a couple of photos which show the smoke from this in Prescott, AZ.

Got an idea for a web app, but you aren’t a techie?

by Alexander Muse | 3 days ago | Read more

You and your business partner have an idea for the next ‘Big Big Thing’, but neither of you knows anything about software development or programming.  How do you turn get your idea out of your heads and on to the internet?  I spent a few minutes chatting about this very topic earlier today.  The individual [...]

2008년 7월 3일

by Heungseok Do | 3 days ago | Read more

  • 이번 루비세미나에서 deepblue발표자료.(deepblue 센스 킹왕짱 storyq)2008-07-03 18:48:10
  • 뼈다귀 해장국에 거더기 많타(식미투 me2photo)2008-07-03 19:39:22

  • 음성으로 얘기하시니까 더 와 닿네요. 넵! 알겠습니다!(어려운 미투캐스트 고객지원용으로 전환해야 하나?)2008-07-03 20:57:11
  • 이 글은 꽃띠앙님의 2008년 7월 3일의 미투데이 내용입니다.

    <!-- end of daily_digest -->

    261478848_f54c1359ab_d Unit Testing iPhone apps with Ruby: rbiphonetest

    by Dr Nic Williams | 3 days ago | Read more

    Everything to love about Ruby: the concise, powerful language; the sexy testing frameworks; and finally, the people. Everything to love about Objective-C: hmmm; well…; and finally, its the only high-level language you can use to write iPhone apps. On iPhone 2.0, to arrive on the 11th of July, you cannot run RubyCocoa. But you can run it [...]

    Jerry135x135 Hot Dog! Reserve price met on my ipod touch. We’re going to make a sale!

    by Jerry Richardson | 3 days ago | Read more

    Hot Dog! Reserve price met on my ipod touch. We’re going to make a sale!

    How To Run A National Blood Service

    by John Topley | 3 days ago | Read more

    Rightly or wrongly, the National Health Service in Britain receives a lot of criticism. My own family’s experiences of state provided healthcare have been mixed, to say the least. However, in my experience one area that we have got right is the National Blood Service. I give blood every four months and today two units came [...]

    Jason_150 I haven’t kept up with the Blender community for a while,...

    by Jason Long | 3 days ago | Read more



    I haven’t kept up with the Blender community for a while, but wow have they been busy. Check out the new short film, Big Buck Bunny which led to tons of huge advances in the latest rev.

    Karl Nashville Scene - Meet Caldwell Hancock

    by Rick Bradley | 3 days ago | Read more

    Nashville Scene - Meet Caldwell Hancock: (posted by vinbarnes)

    Joshportrait ACLU v. US Constitution

    by Joshua R. Poulson | 3 days ago | Read more

    Despite DC v. Heller and a strong belief that all the other items in the Bill of Rights refer to individual rights, the ACLU's official stance is a failed exercise in reading comprehension: The ACLU interprets the Second Amendment as...

    RSpec Stories - Ruby gerado a partir do texto!

    by Rodrigo Urubatan Ferreira Jardim | 3 days ago | Read more

    Não, eu não quero que vocês gerem o código dos testes, isto iria apenas criar testes inúteis! Mas eu acho muito chato ter certeza de que todos os possíveis passos de um arquivo txt com a user story estão presentes nos passos definidos no arquivo .rb Claro que isto não esta considerando reutilização de passos através de [...]

    Channl.tv

    by Elise Huard | 3 days ago | Read more

    For the last three months i’ve been working on a web application for VRT medialab channl.tv, together with Hendrik for design,usability and creative input, and under supervision of Werner. Channl.tv was started by Werner as an initiative to gather videos from internet and to offer them to several devices. A step into a more modern [...]

    Karl thoughts on a more generic Array#partition function - ruby-talk-google | Google Groups

    by Rick Bradley | 3 days ago | Read more

    thoughts on a more generic Array#partition function - ruby-talk-google | Google Groups: “just apply #values to it” is not quite the good advice you think it is (posted by cardioid)

    Karl "If there is a day in law schol when students learn not to refer to an opposing counsel as..."

    by Rick Bradley | 3 days ago | Read more

    “If there is a day in law schol when students learn not to refer to an opposing counsel as ‘asswipe,’ well, local attorney Caldwell Hancock must have been sick.”

    - Matt Pulle in the Nashville Scene (posted by cardioid)

    Note à moi même: svn branche

    by Carl Pelletier | 3 days ago | Read more

    Je ne me rappel jamais de la syntax pour créer une branche. L’opération est très simple, mais il faut juste le savoir! $ svn copy http://svn.example.com/repos/calc/trunk \ http://svn.example.com/repos/calc/branches/my-calc-branch \ -m "Creating a private branch of /calc/trunk." [...]

    Jason_150 Damn those unused icons!

    by Jason Long | 3 days ago | Read more



    Damn those unused icons!

    288887654_94e759eb3c_m jorgemir - Identi.ca [del.icio.us]

    by Jorge Mir | 3 days ago | Read more



    Tell us what you think of the new BlogSphere feature. We are continually looking to improve and update the functionality based on your feedback.

    Job Board

    Job Boards
    Find your next Ruby on Rails project or job.
    Exclusive content, regularly updated - onsite and tele-working positions listed.

    View the opportunities

    Latest from the Weblog

    Recent Recommendation

    Marshall Sontag:

    My go-to man for rails questions.

    - Sbubble J.Z, United States