• Happy Coding

Archive for September, 2009

links for 2009-09-30

Nice idea for registrations… a queue.

Funny idea for registrations visualisation. A queue waiting to get entrance into the platform.
Just saw this on Graph.me. I don’t know what they are doing exactly, but i really like the idea.

graphme

links for 2009-09-29

links for 2009-09-27

links for 2009-09-25

links for 2009-09-24

Nokia buys Dopplr

Image representing Dopplr as depicted in Crunc...
Image via CrunchBase

Social networking travel site Dopplr has apparently been acquired by Nokia for somewhere between $15-22 million dollars.
(via ReadWriteWeb)

Reblog this post [with Zemanta]

links for 2009-09-22

links for 2009-09-18

Create AuthUserFile

htpasswd -c .htpasswd USERNAME

How to change a normal Eclipse project to a Java Eclipse project

I just had the problem that i wanted to change the project-type of an Eclipse project to ‘Java Project’ — it was a normal project before. This are the steps i executed:

  1. Close the project
  2. Go to the project directory  (e.g. using Terminal application)
  3. Open .project file
  4. Go to the XML node <natures> and insert <nature>org.eclipse.jdt.core.javanature</nature> as a child.
  5. Save the file
  6. Re-Open the project

That’s it.

Reblog this post [with Zemanta]

links for 2009-09-16

Recovering a deleted file in Subversion

svn up -r 3838 myfile.test

In this case 3838 is the number of the revision in which the file existed.

links for 2009-09-14

XMind – Mind Mapping Tool

I am really a big fan of XMind, the nice and free Mind Mapping Tool.

XMind

Reblog this post [with Zemanta]

Getting the domain name for a request with Ruby on Rails

Just tried to get the domain name in an ActionController and here we go: e.g.

render :text => request.domain()