Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:: [': 0.03; 'pycon': 0.03; 'skip:# 20': 0.03; 'wed,': 0.04; 'python': 0.07; 'pm,': 0.11; 'def': 0.13; 'wrote:': 0.14; 'cc:name:python list': 0.16; 'poster': 0.16; 'stumbled': 0.16; 'subject:cool': 0.16; 'subject:really': 0.16; '\xa0while': 0.16; "hasn't": 0.19; 'cc:2**0': 0.20; 'header:In-Reply-To:1': 0.22; 'cc:addr:python- list': 0.22; 'checked': 0.25; 'wrote': 0.25; 'skip:# 10': 0.25; 'skip:[ 10': 0.26; 'message-id:@mail.gmail.com': 0.28; 'cloud': 0.29; 'cc:addr:python.org': 0.31; 'subject:]: ': 0.31; 'it.': 0.31; 'random': 0.31; 'anyone': 0.31; 'import': 0.32; 'test': 0.33; 'using': 0.34; 'print': 0.35; 'yet,': 0.35; 'two': 0.37; 'some': 0.37; 'received:209.85': 0.37; 'run': 0.37; 'received:google.com': 0.38; 'pretty': 0.38; 'back.': 0.39; 'received:209': 0.39; 'works': 0.40; 'header:Received:5': 0.40; '2011': 0.62; 'upon': 0.63; 'play': 0.64; 'received:209.85.216.181': 0.68; 'received:mail- qy0-f181.google.com': 0.68; 'subject:!': 0.68; 'with,': 0.73; 'locally': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=+Se96e0QC4UspDPpXn+bgoC6c3A3gDxmLGagwP8B368=; b=ojge/WAlNIrQkE6JKEwhKl/dJrDD6OcJEqgkldl0qzMzxmixVGmsNTKk/uXAq8uyoQ ZfXmltKmqFmGuuy2/Th8Lx97389hSei37dan9mCKsCd8EWXHmTxWOL7V+jzBIN8o4Ru3 Nk6+dblmt7ut4JOm3HPovnZRsvG/SkL22/ycM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=kPBdH3yt4wWmU229M7aF5UzTvGfGL5+ByebEbdTi2wij70grUfWNAFmxe9loGIxIIo rDHi9LixWrQ64lhwQIASPXbS+qntdYfVOZmzZGt29Ku9dbE9Gh6XOgTY4wdUjkAXSR9E 5kKzTA/ypu6lh0eVRXKk7GHX3pDC1Q3YTCMI0= MIME-Version: 1.0 In-Reply-To: References: Date: Wed, 4 May 2011 17:19:38 -0700 Subject: Re: [OT]: PiCloud - really cool! From: geremy condra To: James Mills Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: python list X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 34 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1304554781 news.xs4all.nl 34849 [::ffff:82.94.164.166]:37205 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:4674 On Wed, May 4, 2011 at 5:13 PM, James Mills wrote: > If anyone hasn't seen this yet, I encourage you to! > (I stumbled upon it with some random thoughts and Gooogling) > > http://www.picloud.com/ > > Here's a quick test I wrote up that works locally using the simulator > and live (I did run it live): > > #!/usr/bin/env python > > import cloud > > def fib(n): > =A0 =A0a, b, =3D 1, 1 > =A0 =A0while n > 1: > =A0 =A0 =A0 =A0a, b =3D b, a + b > =A0 =A0 =A0 =A0n -=3D 1 > =A0 =A0return b > > #cloud.start_simulator() > > jobs =3D cloud.map(fib, range(100)) > > print [cloud.result(job) for job in jobs] > > Enjoy! :) I was the poster across from them at PyCon two years back. Pretty fun to play with, although last I checked it was hard to do true HPC on it. Geremy Condra