Ask HN: What programming language is color.com built in?

7 points by riskish ↗ HN

7 comments

[ 3.1 ms ] story [ 30.1 ms ] thread
What makes you think there's any server-side code running at all? It looks quite straightforward to me.

  $ GET -e -d http://color.com/ | grep Server
  Server: Jetty(7.3.0.v20110203)
Jetty server, so presumably Java.

  $ host 50.17.223.164
  164.223.17.50.in-addr.arpa domain name pointer
  ec2-50-17-223-164.compute-1.amazonaws.com.
Hosted on EC2.

  $ host -t ns color.com
  color.com name server ns2.p18.dynect.net.
  color.com name server ns3.p18.dynect.net.
  color.com name server ns1.p18.dynect.net.
  color.com name server ns4.p18.dynect.net.
With Dyn (DynDNS) handling DNS.
That could also represent JRuby, Jython, Scala, or any other language that runs in the JVM.
if its java, wonder why they chose it?
DJ Patil is LinkedIn's Chief Scientist, and they're a big J2EE shop.
The iPhone client is written in Objective C.

The Android client is written in Java.

The webserver appears to be written against the JVM, so it could either be plain Java, JRuby, Jython, Scala, or any other language that runs in the JVM.

DJ Patil however, was LinkedIn's Chief Scientist, and LinkedIn is a heavy Java/J2EE shop, so my guess is that it's vanilla J2EE.