Live data from Hacker News

PiCloud : Cloud Computing. Simplified.

picloud.com

21–30 of 43 posts

Re: PiCloud : Cloud Computing. Simplified.

#21
Nice. Currently using GAE...how do you plan to handle CDNs?

Also, should i want to migrate my data from Google's Datastore, how easy would that be?

What do you have that GAE doesn't?

I'm asking on behalf of myself, mostly, but I imagine there are others here deploying mission critical stuff on app engine.

Re: PiCloud : Cloud Computing. Simplified.

#22
post #19
post #15

Earlier quoted context omitted.

Aa well as providing a transparent computing platform. This is a much better alternative for my batch processing than keeping my laptop on overnight.

You would still need to keep your laptop on as you wait for your function call to return.

PiCloud dev here.

You don't need to. As long as you save the returned job id (what is returned by cloud.call and cloud.map), you can access its return value at any future time - from any computer.

Re: PiCloud : Cloud Computing. Simplified.

#24
post #19

Earlier quoted context omitted.

You would still need to keep your laptop on as you wait for your function call to return.

PiCloud dev here. You don't need to. As long as you save the returned job id (what is returned by cloud.call and cloud.map), you can access its return value at any future time - from any computer.

I stand corrected. Thank you. :)

Re: PiCloud : Cloud Computing. Simplified.

#25
"Imagination at Work" - You probably shouldn't use that phrase next to a light bulb on your home page. I'm not even going to bother to do the search, but I'm 100% sure that GE has that trademarked.

Re: PiCloud : Cloud Computing. Simplified.

#26
post #21

Nice. Currently using GAE...how do you plan to handle CDNs? Also, should i want to migrate my data from Google's Datastore, how easy would that be? What do you have that GAE doesn't? I'm asking on behalf of myself, mostly, but I imagine there are others here deploying mission critical stuff on app engine.

I'm not involved with them in any way, but their faq says that though their product is amazon specific ATM if you want to work with rackspace or a private install to contact them directly.

Re: PiCloud : Cloud Computing. Simplified.

#28
post #23

Earlier quoted context omitted.

how's that namespace working out for you?

Who needs namespaces when you have a 'quick reference'? http://php.net/quickref.php

All programming languages should have a quick reference page exactly like this. It would make learning and working with them so much easier.

Re: PiCloud : Cloud Computing. Simplified.

#30
post #13
post #9

Earlier quoted context omitted.

Python is a functional language in the sense that it has first class functions and you can pass them around.

Yes but it's not purely functional in that you cannot automagically make a script scale to n threads, as is the case with Haskell. This is what the OP is referring to.

You can't really do that either in Haskell. Well, in theory you can, but in practice nobody has yet written a way to autoparallelize Haskell that actually gets you reasonable speedups, because it requires predicting which parts are worth parallelizing.

Instead, the Haskell devs are mostly taking the same approach, of providing constructs for the programmer to explicitly write parallel code: http://www.haskell.org/ghc/docs/6.6/html/libraries/base/Cont...

Post reply on HN