Hacker Newsnew | past | comments | ask | show | jobs | submit | error's commentslogin

Macbook pro 15 Retina


This is a very stupid question! So I guess you are not a programmer :)


You are wrong that's not a car :)


I think this one has missed the point... Chad does everything he can to get people store their shit in his garage and is really proud that so many are using his garage.


Instagram new policy: You are not our customers, you are the cattle we drive to market and auction off to the highest bidder. Enjoy your feed and keep producing the milk.

The guy seems to understand that his just a cattle and he likes that or even if he doesn't like it he chooses to use the service because the feed is good, but not every one likes to be a cattle.

src: http://raganwald.posterous.com/translation-from-legalese-and...


must be awesome! if books start to be written like blog posts then.. oh well I have nothing to say, I will write a book about it.


Why? really why do you put this kind of article here?


What's wrong with this kind of article?


salam brother, you shouldn't post something like this here. it is not reddit or your facebook. thanks.


As a muslim, I don't think this belongs here.


The most frightening thing about this is the number of people that want a black list of names. what's the next step? stoning them in public, making them wear a special hat?

The job of coursera is to provide access to learning and there it should stop. Coursera should not provide certificate of any kind, most people go there to learn not to become certified on anything, Cheaters will go way if there is no certificate since their purpose is not to learn.


I'm using them for the last two years, they are awesome, great job.


First congrats for the framework.

Secondly a question :)

Play team solved the compile "problem" of java using a lib from eclipse so it compiles files on the fly. do you have something similar, or do you plan to include something similar? I think compiling on every change you make while developing an app is painful, the biggest problem java frameworks have, excluding Play! of course.


Yep, having the hot-compile functionality was a major point of this.

Here is a description of how it works: http://robfig.github.com/revel/manual/howrevelworks.html

Basically: In development mode, it runs a proxy (called the "harness") that watches your source for changes and recompiles/restarts your server on the next request, if necessary, using the "go build" tool. The go build process is incremental, so in theory should only recompile packages that have changed (and those that depend on them)


There is actually a way to do this fully in process. I think Rob Pike initially build this, and it's being used in the App Engine framework (or so I hear...).

Code: http://code.google.com/p/rsc/source/browse/#hg%2Fdevweb


It looks like he takes the same approach as Revel. From the comments:

    // Devweb is a simple environment for developing a web server.
    // It runs its own web server on the given address and proxies
    // all requests to the http server program named by importpath.
    // It takes care of recompiling and restarting the program as needed.
And, he uses "go build" to build the program:

    out, err := exec.Command("go", "build", "-o", "prox.exe", rootPackage).CombinedOutput()
It appears to do more than Revel does, though -- I will look at it more closely to see what extra it provides. Wish I had seen this before!


Russ Cox, not Rob Pike, built that.

It's not what's used in the App Engine SDK. I believe it was inspired by what we do in the App Engine SDK, though.


awesome!

This is a good reason to learn go :)


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: