<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PiCloud Blog &#187; pycon</title>
	<atom:link href="http://blog.picloud.com/tag/pycon/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.picloud.com</link>
	<description>Cloud Computing. Simplified.</description>
	<lastBuildDate>Wed, 25 Jan 2012 01:15:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PyCon Aftermath</title>
		<link>http://blog.picloud.com/2010/03/03/pycon-aftermath/</link>
		<comments>http://blog.picloud.com/2010/03/03/pycon-aftermath/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 19:36:06 +0000</pubDate>
		<dc:creator>Ken Elkabany</dc:creator>
				<category><![CDATA[Aftermath]]></category>
		<category><![CDATA[pycon]]></category>

		<guid isPermaLink="false">http://blog.picloud.com/?p=96</guid>
		<description><![CDATA[Thanks to everyone who stopped by our poster session on Sunday after our lightning talk. In our effort to contribute to the community and shed more light on PiCloud&#8217;s systems, we&#8217;ve decided to share our posters publicly.
Overview of the PiCloud Platform:

Inner workings of our cloud library:

Shout out: Thanks to those who got us on the [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to everyone who stopped by our poster session on Sunday after our lightning talk. In our effort to contribute to the community and shed more light on PiCloud&#8217;s systems, we&#8217;ve decided to share our posters publicly.</p>
<p><strong>Overview of the PiCloud Platform:</strong><br />
<embed src="http://embedit.in/5rMnePjG5o.swf" height="350" width="590" type="application/x-shockwave-flash" allowFullScreen="true"></p>
<p><strong>Inner workings of our cloud library:</strong><br />
<embed src="http://embedit.in/n9rAyas6bj.swf" height="350" width="590" type="application/x-shockwave-flash" allowFullScreen="true"></p>
<p>Shout out: Thanks to those who got us on the <a href="http://www.reddit.com/r/programming/comments/b78bk/picloud_cloud_computing_simplified/">front page of Reddit</a> and the <a href="http://news.ycombinator.com/item?id=1155635">top post on Hacker News</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.picloud.com/2010/03/03/pycon-aftermath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Users, New Features, and PyCon!</title>
		<link>http://blog.picloud.com/2010/02/19/new-users-new-features-and-pycon/</link>
		<comments>http://blog.picloud.com/2010/02/19/new-users-new-features-and-pycon/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 08:00:48 +0000</pubDate>
		<dc:creator>Ken Elkabany</dc:creator>
				<category><![CDATA[What's New]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[pycon]]></category>

		<guid isPermaLink="false">http://blog.picloud.com/?p=83</guid>
		<description><![CDATA[Wait no longer! We&#8217;ve opened up PiCloud to another batch of users today, and from now onward, we promise to accelerate the roll out of PiCloud to new users. For users, both new and old, I wanted to highlight some of the many changes we&#8217;ve made in the past month that haven&#8217;t necessarily been the [...]]]></description>
			<content:encoded><![CDATA[<p>Wait no longer! We&#8217;ve opened up PiCloud to another batch of users today, and from now onward, we promise to accelerate the roll out of PiCloud to new users. For users, both new and old, I wanted to highlight some of the many changes we&#8217;ve made in the past month that haven&#8217;t necessarily been the most visible.</p>
<p><strong>Variable Compute Units</strong><br />
We had customers asking us for more powerful CPUs, and so we&#8217;ve delivered. With a simple keyword argument change, you can now switch between using 1 Compute Unit (1-1.2 ghz Xeon) to 2.5 Compute Units (2.5-3ghz Xeon). Check it out (code):</p>
<p><code>cloud.call(cpu_intensive_func, _high_cpu=True) # uses 2.5 compute units</code></p>
<p><strong>Profiler Option</strong><br />
While we&#8217;ve gotten great feedback for profiling functions that run on PiCloud, we&#8217;ve also received requests to have the ability to turn off the profiler. After all, the deterministic profiler does have overhead that scales with the number of function calls in a script. To turn off the profiler, it&#8217;s simply another keyword argument _profile.</p>
<p><code>cloud.call(foo, _profiler=False)</code></p>
<p><strong>Drop in for multiprocessing</strong><br />
If you&#8217;re already using Python multiprocessing, but want to run your computation across our cluster, now you can. Check out our <a href="http://docs.picloud.com/client_adv.html#multiprocessing-pool-interface">docs</a> to see how.</p>
<p><strong>cloud library is now open source</strong><br />
We told users before that the client library was not open sourced, because frankly, we didn&#8217;t believe it was stable enough to deserve the attention of developers in the community. We are now at that point, so the client library has been released with an LGPL license.</p>
<p><strong>Inclusion in the Enthought Python Distribution (EPD)</strong><br />
<a href="http://www.enthought.com/products/epd.php">EPD</a> is ideal for scientists and engineers looking for an easy, standardized way to deploy a powerful set of scientific tools on their own computer or across a whole organization. As of the latest EPD release, 6.0, the cloud library is now included in the distribution. Welcome EPD customers!</p>
<p><strong>Bug fixes</strong><br />
Having hundreds of users using our platform is the easiest way to expose all the nitty-gritty bugs and race conditions that are lurking in our system. We would like to thank our ever-growing community for the many bug reports and critical fixes we have had over the past month.</p>
<p>Lastly, our CTO, Aaron Staley, and I will be at PyCon this weekend. Hope to see you all there!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.picloud.com/2010/02/19/new-users-new-features-and-pycon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

