<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Server-Side Magazine</title>
	
	<link>http://www.serversidemagazine.com</link>
	<description>Cutting edge server-side tutorials &amp; news</description>
	<lastBuildDate>Tue, 31 Jan 2012 07:24:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/server-side-magazine" /><feedburner:info uri="server-side-magazine" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>server-side-magazine</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>10 Questions with Facebook Research Engineer – Andrei Alexandrescu</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/CGZKlMCk4Ts/</link>
		<comments>http://www.serversidemagazine.com/news/10-questions-with-facebook-research-engineer-andrei-alexandrescu/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 21:21:37 +0000</pubDate>
		<dc:creator>Server-Side Magazine</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?p=1321</guid>
		<description><![CDATA[Today we caught up with Andrei Alexandrescu for a &#8220;10 Question&#8221; interview. He is a Romanian born research engineer at Facebook living in the US, you can contact him on his website erdani.com or @incomputable.

We will talk about some of the juicy stuff that going on at Facebook, so let&#8217;s get started.





Hello Andrei, welcome on [...]]]></description>
			<content:encoded><![CDATA[<p>Today we caught up with Andrei Alexandrescu for a <em>&#8220;10 Question&#8221;</em> interview. He is a Romanian born research engineer at <a href="https://www.facebook.com/" target="_blank">Facebook</a> living in the US, you can contact him on his website <a href="http://erdani.com/" target="_blank">erdani.com</a> or <a href="https://twitter.com/incomputable" target="_blank">@incomputable</a>.</p>

<p>We will talk about some of the juicy stuff that going on at Facebook, so let&#8217;s get started.</p>

<p><span id="more-1321"></span></p>

<p class="img"><img src="http://www.serversidemagazine.com/wp-content/uploads/2012/01/andrei-alexandrescu1.jpg" alt="Photo of Andrei Alexandrescu" /></p>

<p><em>Hello Andrei, welcome on Server-Side Magazine.</em></p>

<h3>1. Tell us a little bit about yourself. Who are you? Where and what do you work?</h3>

<p>Who am I? Ah, the coffee breath of one talking about himself. Well let me try. I&#8217;m a hacker living in the US, originally from Romania. In 2001 I wrote a book called &#8220;<a href="http://www.amazon.com/Modern-Design-Generic-Programming-Patterns/dp/0201704315" target="_blank">Modern C++ Design</a>&#8221; that was notable enough to convince me to do anything I could to avoid being typecast as a <em>&#8220;C++ guy&#8221;</em>.</p>

<p>I don&#8217;t want to be an &#8220;XYZ guy&#8221; forever. Such efforts included eight years spent on a doctorate in Machine Learning for Natural Language Processing partially overlapped with five years working on the <a href="http://www.d-programming-language.org/" target="_blank">D programming language</a>.</p>

<p>I currently work at Facebook. The high-brow title of &#8220;Research Scientist&#8221; is a wildcard covering a variety of tasks, which I&#8217;m lucky to have considerable freedom in choosing. <strong>Sampling my work week you could find me messing with some bash script, reviewing some code, making an off-by-one error, or pulling my hair over said bug.</strong></p>

<p>I&#8217;m currently involved in three lines of work. One is working on our core C++ libraries (I know, typecast!) on an ongoing basis. We&#8217;re considering open sourcing some of those. The second is optimizing <a href="http://hive.apache.org/" target="_blank">Hive</a>, a distributed database system we use intensively at Facebook. Finally, my most research work is actually a continuation of my thesis.</p>

<p>I do research on graph-based machine learning. And guess who has the biggest and most interesting graph in the Universe! Machine learning on the social graph can help a variety of applications in spam detection, site integrity, and much more.</p>

<h3>2. What&#8217;s your development setup?</h3>

<p>The most significant bit would be Windows vs. Unix, right? Facebook being a Unix shop, it uses Unix tools through and through. Let me dive into our tools a bit.</p>

<p>Each Facebook engineer gets a choice of MacBook or Windows laptop, plus the invariable 30&#8242; monitor (yum). But development is not really happening on the laptop itself; to get any work done, engineers connect to a remote Linux machine (each engineer has one assigned) using a variety of protocols over ssh (plain terminal, nx, vnc, and probably more).</p>

<p>There&#8217;s freedom in choosing editors, so the usual suspects &#8211; <a href="http://www.gnu.org/software/emacs/" target="_blank">emacs</a> and <a href="http://www.vim.org/" target="_blank">vim</a> &#8211; are quite popular, with some <a href="http://eclipse.org/" target="_blank">Eclipse</a> and others here and there. I personally prefer emacs via nx, the combo works quite swimmingly even over a slow connection.</p>

<p>We also have a lot of cool organizational tools, many developed in house. That sounds a bit <em>NIHish</em>, but the history behind it is that we tried hard to make off-the-shelf tools work at the scale and quality we need them to, failed, and had to write our own.</p>

<p>The tools use our own technologies (talk about dog food) so they work, look, and integrate beautifully. Best part, if someone doesn&#8217;t like something, well, they can just fix it. (To wit, our email and calendar software is off-the-shelf and is the most unpleasant tool to deal with. Get this &#8211; we have a few people <em>&#8220;specialized&#8221;</em> in sending large meeting invites out, because there are bugs that require peculiar expertise to work around. Not to mention that such invites come with &#8220;Do not accept from an iPhone lest you corrupt the invite for everyone!&#8221;)</p>

<p>Anyway, back to our tool chain. Once an engineer makes a code change that passes unit tests and <a href="http://en.wikipedia.org/wiki/Lint_%28software%29" target="_blank">lint</a>, they submit for review a so-called &#8220;diff&#8221; via our <a href="http://phabricator.org/" target="_blank">Phabricator</a> system, which we open sourced.</p>

<p>The reviewers are selected partly manually, partly automatically; virtually not one line of code is committed without having been inspected by at least one (other) engineer. <a href="http://phabricator.org/" target="_blank">Phabricator</a> is great at this flow, making diff analysis, comment exchange, and revision updates very handy. I&#8217;d recommend it.</p>

<p>Once the diff has been approved, the author uploads it to our central <a href="http://git-scm.com/" target="_blank">git</a> repository. We love git; when I joined two years ago, we were just starting to migrate from <a href="http://subversion.tigris.org/" target="_blank">svn</a> to git, and today we virtually all use git. Some of us (including myself) wrote a few popular git scripts that integrate with our workflow.</p>

<p>To build C++ code we have our own build system driving a build farm. I don&#8217;t do front-end work, so I don&#8217;t know many details in that area; in broad strokes, we use the recently-released <a href="https://www.facebook.com/note.php?note_id=10150415177928920" target="_blank">HipHop Virtual Machine (HHVM)</a> for development, and the static <a href="https://github.com/facebook/hiphop-php" target="_blank">HipHop compiler</a> for the production site.</p>

<p>We have quite a few more browser-based tools for improving workflow, such as task management, discussions, wiki, peer review, recruiting and interviewing, analytics, systems management, and many many more. Really for pretty much any typical need &#8220;there&#8217;s an app for that&#8221;. And if there isn&#8217;t, there&#8217;s a vast infrastructure allowing you to build one quickly.</p>

<h3>3. How did you got started coding in C++ ?</h3>

<p>I think for many of us, starting with a language has a lot of happenstance associated with it &#8211; much like picking a favorite sports team or getting a crush on someone. For me, much of it was the buzz in the college. Pascal was the prevalent language, but I recall the jocks talking &#8220;C is the real thing, dude&#8221; and &#8220;C++ is cool like C, but it has objects, encapsulation, the works&#8230; that&#8217;s good if you want to build large applications!&#8221;</p>

<p><p>I thought, heck, large applications are the place to be. A stolen electronic copy of Bjarne&#8217;s opus and a great book by Romanian C++ celebrity Ionut Muslea (whom I got to incidentally know years later) sealed the deal.<p></p>

<p>One funny thing &#8211; I worked as a programmer for a while in Romania before moving to the US, and I was convinced my understanding of C++ was mediocre at best. Imagine my surprise when coworkers at my first job in the US quickly came to consider me quite the C++ connoisseur &#8211; and, as I mentioned, that&#8217;s what I became no matter what else I tried.</p>

<h3>4. What do you think of PHP as a language from your perspective, regarding that Facebook was initially written in PHP then transformed to C++ using HipHop for PHP. What are the pros and cons of using C++ over PHP at Facebook?</h3>

<p>I was afraid you were going to ask that <img src='http://www.serversidemagazine.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>

<p>Let me first clarify that HipHop for PHP (HPHP) is a PHP to C++ translator, but the generated code is not meant for human consumption; it&#8217;s just <a href="http://developers.facebook.com/blog/post/358" target="_blank">compiled</a>. We still write PHP code for our front-end.</p>

<p>Probably I won&#8217;t bruise any ego by saying I don&#8217;t consider PHP a well-designed language; it makes a lot of the classic mistakes and even invents a couple of new ones. Rasmus Ledorf is a self-confessed dilettante in language design. But let&#8217;s not forget that Rasmus is a brilliant hacker who likes to get things done.</p>

<p>So he connected and integrated PHP with everything worth connecting and integrating, and made every typical task in web design no further than a few hacks away. I think that&#8217;s where the power of PHP lies. For example, I&#8217;d say D is a better-designed language, but it would be a major undertaking for me to integrate it with Apache the way PHP is.</p>

<p>Facebook&#8217;s outlook of PHP is largely passionless; yes, engineers understand it is far from perfect, and people occasionally rant or show some WTF code sample. At the same time, at Facebook we love doing cool things, and PHP is simply a means to an end. With our extensive framework and libraries, it&#8217;s also often the simplest means to an end.</p>

<p>We also added important improvements to PHP that help a lot. <a href="https://www.facebook.com/notes/facebook-engineering/xhp-a-new-way-to-write-php/294003943919" target="_blank">XHP</a> is an extension to PHP that allows embedded XML in PHP. Our front-end engineers swear by it.</p>

<p>We&#8217;ve also added a Python-like yield. One topic that&#8217;s been discussed several times is adding a &#8220;real&#8221; array type; PHP&#8217;s arrays are a rather odd concoction, and not efficient enough for our needs.</p>

<p>That being said, one cannot stop thinking about costs and liabilities. HPHP is a major Facebook project to which many engineers participated. We also have a newer project, <a href="https://www.facebook.com/note.php?note_id=10150415177928920" target="_blank">HHVM</a>, which is a fast virtual machine for PHP.</p>

<p>That&#8217;s great for our testing and debugging cycle because it obviates the expensive steps of translating to C++ and compiling it. All this work raises the classic question: are we spending too much on fixing the car to afford a new one?</p>

<p>At this point, probably not. There&#8217;s no language that we could switch to without a major disruption, and the incremental benefits would not be all that large; you see, PHP is far from perfect but our engineers are very good, and with a combination of talent, discipline, and tools, our PHP code base is in good shape.</p>

<p>The same goes about our C++ code base. We use C++ heavily on our back-end systems, and actually there has been a visible net increase of C++ use compared to PHP and others at Facebook since two years ago.</p>

<p>To compare C++ with PHP (and with this I&#8217;m finally getting to your exact question), in a way we have more incentive to write good C++ than good PHP, because the penalty is so much harsher: the typical C++ bug is more difficult to fix than the typical PHP one, and the impact of a back-end issue is often larger than that of a front-end issue. So I&#8217;d say we have a better C++ code base just on account of survival needs.</p>

<p>Compilation times (and generally managing dependencies and physical design) remain a large issue with C++. We have a build farm driven by sophisticated software, which reduces the problem&#8217;s size from unbearable to just major. Deployment has also its issues due to the sheer scale of our systems, but we have much more control there.</p>

<p>At the end of the day, the performance is there, and we need every single ounce of it. We have concurrent hash tables with millions and even billions of elements, so we&#8217;re careful about our hash functions; we know the vast distinctions between sorting and stable sorting; we know and care about the cost of memory allocation, locking, or atomic increment. C++ allows us control over all of that, whereas PHP and most other languages wouldn&#8217;t.</p>

<h3>5. Currently, what kind of research do you conduct at Facebook? (or is this confidential?)</h3>

<p>I can discuss it in broad strokes.</p>

<p>Well, I was lucky to be able to continue my thesis work (in addition to a few other directions). This carries a risk &#8211; a common mistake of PhD graduates is to try to apply their thesis everywhere. In my case there was some serendipity involved; let me explain.</p>

<p>My research topic was machine learning using similarity graphs. In brief, say you have a lot of data points (users, servers, posts, clicks, you name it) and you want to figure out some interesting properties about them. In a graph-based approach you throw all data points in a graph and you link them by similarity edges, after which you look at how they cluster together.</p>

<p>For example, let&#8217;s say we want to figure out whether a public status update is a meme or a joke versus original content. In that case, you need to figure out a &#8220;similarity&#8221; between any two posts. That&#8217;s not too difficult (but not trivial, either) as there are plenty of approximate string comparison metrics. If there are many similar posts from unrelated persons, those are likely to form a meme &#8211; the kind that is copied and pasted over and over again.</p>

<p>Then, what&#8217;s meme detection for? Well it has plenty of good uses. It allows better content grouping so you don&#8217;t see near-identical things all over your news feed. It also allows identifying chaff, spam, and possibly even malevolent content. (Note that this is only a hypothetical project; we do have attacks on these issues, but they currently use other methods.)</p>

<p>One really cool thing about doing machine learning at Facebook is the sheer size of data involved; most researchers are happy to put together a graph with some hundreds of thousands of nodes. At Facebook samples of interest are in the hundreds of millions and more. It took a few of us quite a while to figure out how to distribute graph processing on many machines, but we finally did it. We should be able to publish the method soon.</p>

<h3>6. Tell us a little bit about the D programming language, in contrast to C, PHP, Ruby and others. In what fields can someone apply D? (is it mostly research / scientific applications, web environments?)</h3>

<p>D is aiming to occupy a surprisingly large and underpopulated area on the landscape of programming languages, laying between the convenience of scripting languages, the safety and modeling power of full-featured type systems, and the control and performance of system-level languages.</p>

<p>Conventional wisdom asserts these needs are in tension, and people have been advised to compromise depending on the most pressing requirements. But recent progress in programming languages theory and practice has slowly but surely reduced these gaps.</p>

<p>We designed D as a modern language that replies with &#8220;and&#8221;s wherever people would have otherwise needed to answer to &#8220;or&#8221;s. In reply to your question &#8211; research? scientific applications? web environments? &#8211; I&#8217;d say: all of the above, and many more.</p>

<p>In the web space in particular, D could do great but doesn&#8217;t benefit from extensive libraries and frameworks like Ruby or PHP. I wish I&#8217;d convince a serious hacker to bring things to the point where</p>


<div class="wp_syntax"><div class="code"><pre class="d" style="font-family:monospace;"><span style="color: #66cc66;">&lt;?</span>d writeln<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;Hello, world!&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">;</span> <span style="color: #66cc66;">?&gt;</span></pre></div></div>


<p>could be inserted in a web page.</p>

<p>Even today people write lean and mean web apps in D. Consider <a href="http://dfeed.kimsufi.thecybershadow.net/discussion/group/digitalmars.D" target="_blank">Vladimir Panteleev&#8217;s NNTP-HTTP proxy</a>. It converts a large Usenet newsgroup to HTML format in real time, and is written exclusively in D. I may be subjective, but the thing is very snappy, unlike similar server-side software written in other languages.</p>

<p>There would be a lot more to say, but I won&#8217;t get into details that can be easily found. Let me just say one surprising thing we learned. It&#8217;s difficult to keep a language in good balance. It&#8217;s beneficial and tempting to restrict the design space: everything is a list, hash table, or object; everything is mutable or immutable; everything is eager or lazy; and so on.</p>

<p>Doing too much of that robs the language expressive power (lists are great, except when you need a contiguous array). Doing too little leads to non-committal wish-wash. We tried hard to not fall into either of these extremes, and I feel we haven&#8217;t done too bad at it. We still have work to do on bringing implementation quality on par with the ambition of the design, and of course adding library facilities.</p>

<h3>7. What advice would you give to a beginner server-side developer and what to an open-source author / contributor?</h3>

<p>Meh, advice-shmadvice. Who am I to give advice? What&#8217;s experience good for in our field? I used to know how to write a keyboard driver and floppy disc formatters with non-standard densities. I&#8217;d be all but obsolete today if I hadn&#8217;t learned continuously.</p>

<p><strong>Oh, so maybe this would be one piece of advice: learn how to learn, and stick with principles; mastering individual technologies will follow.</strong></p>

<p>Technology is a great servant but a terrible master. The best people in our métier are those who know how to quickly become experts in some particular field.</p>

<h3>8. Also, what kind of advice can you give for developers who are considering to apply to Facebook? What kind of skills is Facebook looking for in a potential candidate. Is it really important to be a
graduate CS? What kind of skills do the majority of Facebook employees possess?</h3>

<p><strong>First and foremost, the ideal Facebook engineering candidate should be good at coding.</strong> I know this sounds silly, but a surprising fraction of the people we interview could improve their coding skills instead of focusing on mastering specific languages or technologies. We look for good generalists able to move freely within the organization.</p>

<p>Feel free to choose your favorite programming language when interviewing. The typical Facebook interviewer accepts a choice of 3 &#8211; 6 languages, subject to the ones she&#8217;s comfortable assessing coding ability in.</p>

<p>The candidates I personally interviewed used Java, C, C++, C#, Javascript, Python, Ruby, PHP, Pascal, and even pseudo-code. (I recall I recommended &#8220;hire&#8221; for the pseudo-code guy.)</p>

<p>We do care about one&#8217;s ability to code; code is quintessential for us, for engineers from front-end to back-end to system configurators to researchers. You know how you figure someone can play basketball, or act, in a mere few seconds? Same goes about coding &#8211; you can tell whether one can code by seeing how they approach implementing some simple algorithm.</p>

<p>Consider for example someone chooses C or C++. Then a good warmup question I might ask is <strong>&#8220;Implement strstr()&#8221;</strong>. It has a simple spec (so we don&#8217;t waste time with explanations) and allows the candidate to show they can code.</p>

<p>Just do a clean implementation of the brute force algorithm &#8211; no need to memorize Boyer-Moore and others. The canonical solution looks somewhat like this:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">char</span><span style="color: #339933;">*</span> strstr<span style="color: #009900;">&#40;</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> haystack<span style="color: #339933;">,</span> <span style="color: #993333;">char</span><span style="color: #339933;">*</span> needle<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">;;</span> <span style="color: #339933;">++</span>haystack<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #993333;">char</span><span style="color: #339933;">*</span> h <span style="color: #339933;">=</span> haystack<span style="color: #339933;">;</span>
        <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> n <span style="color: #339933;">=</span> needle<span style="color: #339933;">;;</span> <span style="color: #339933;">++</span>n<span style="color: #339933;">,</span> <span style="color: #339933;">++</span>h<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!*</span>n<span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> haystack<span style="color: #339933;">;</span>
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>h <span style="color: #339933;">!=</span> <span style="color: #339933;">*</span>n<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!*</span>h<span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> NULL<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>


<p>Using indexes is fine, too, as are myriads of alternatives. Ten people implement it in eleven ways, which is fine as long as things don&#8217;t get too complicated or plain broken. The code above is a good baseline because it&#8217;s simple &#8211; no special casing for &#8220;the empty string is a substring of any string including the empty string&#8221;, &#8220;a longer string cannot be a substring of a shorter string&#8221; etc.</p>

<p>The function organizes computation systematically towards achieving the result. Compare with e.g. the more complex solutions at <a href="http://goo.gl/U4poN" target="_blank">http://goo.gl/U4poN</a> (the short function above implements the optimized algorithm given there).</p>

<p>This question is a Facebook interview classic, known all over the Net (<a href="http://goo.gl/glnAz" target="_blank">http://goo.gl/glnAz</a>). I ask much more complicated questions when interviewing (some I don&#8217;t even know the answer for), but a candidate unable to lift <em>strstr</em> (or similar) off the ground cannot be a Facebook engineer. It is surprising how many fail at it or get it wrong.</p>

<p>I focused above on the coding part because it&#8217;s a gating factor. We have other important criteria, such as cultural fit and design / architectural abilities. Even specialists (in e.g. machine learning) must impress when it comes to coding and other general skills, in addition to being great at their specialty (our recruiters pair such candidates with engineers particularly strong in the same area).</p>

<p><strong>The ideal Facebook engineer is a great hacker, a strong generalist (and in addition possibly exceptional depth in some area), and an adaptable person comfortable working in small, fluid teams.</strong></p>

<p>Regarding degrees, I asked <a href="http://www.linkedin.com/in/seanmurphyrecruiter" target="_blank">Sean Murphy</a>, lead recruiter with Facebook. His exact answer was:</p>

<p>&#8220;<em>It&#8217;s helpful to have a strong CS background but not a requirement. We have many engineers who are doing really well with degrees in math/physics/symbolic systems and other areas or no degree at all. We have some really smart people and some really creative people with no CS background. For foreign candidates, its much easier to get a work visa with a degree but we&#8217;ve hired some engineers with stellar experience and no degree.</em>&#8220;</p>

<h3>9. Where can we catch you this year?</h3>

<p>Coming up is Microsoft&#8217;s <a href="http://channel9.msdn.com/Events/GoingNative/GoingNative-2012" target="_blank">GoingNative 2012</a> conference on Feb 2-3, where I&#8217;ll give two talks and attend a panel (in a star-studded company that will probably put me to shame: Bjarne Stroustrup, Herb Sutter, Hans Boehm). Nevertheless this is very exciting.</p>

<p>Later in the year there&#8217;s the <a href="http://cppandbeyond.com/2012/01/16/cb-2012-august-5-8-in-asheville-nc" target="_blank">C++ and Beyond</a> event on Aug 5-8 in Asheville, NC and at the <a href="http://laser.inf.ethz.ch/2012" target="_blank">LASER</a> Summer School on Software Engineering.</p>

<p>I&#8217;ve submitted proposals to the <a href="http://thestrangeloop.com" target="_blank">Strange Loop Conference</a> and <a href="http://oscon.com" target="_blank">OSCON</a>, and I&#8217;ll announce the results on <a href="http://erdani.com" target="_blank">my website</a>. A couple of us at Facebook also plan to work on a Machine Learning paper, which we&#8217;ll probably submit to <a href="http://nips.cc" target="_blank">NIPS</a>.</p>

<p>Last but not least, I hope to attend and possibly participate to some of Facebook&#8217;s tech talks, and I warmly invite like-minded hackers to join.</p>

<h3>10. Do you have any future projects you wish to share with Us?</h3>

<p>At Facebook we&#8217;re working on some quite cool performance improvements to <a href="http://hadoop.apache.org/" target="_blank">Hadoop</a> / <a href="http://hive.apache.org/" target="_blank">Hive</a>. That work is not exactly &#8220;server-side&#8221; in the sense it&#8217;s oriented more towards offline storage and retrieval, than traditional online server-side data access. We hope to open source the project some time this year.</p>

<p><strong>This year may also see the launch of some of Facebook&#8217;s core C++ library code.</strong> We&#8217;re quite excited about that; there is some really cool stuff in there, most of which is directly aimed at high-performance server-side computing. Definitely something to watch for.</p>

<p>Outside Facebook, my copious free time is dedicated to working on the <a href="http://www.d-programming-language.org/" target="_blank">D programming language</a>. I think D is very relevant to server-side software and will become more relevant this year.</p>

<p>The issue I see at this point is that we don&#8217;t have a strong champion to put together last-mile integration libraries (e.g. MySQL, Apache, CGI, and such), and push them in the standard library. George, if you know someone just let me know <img src='http://www.serversidemagazine.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> .</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=CGZKlMCk4Ts:H046FoV20cU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=CGZKlMCk4Ts:H046FoV20cU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=CGZKlMCk4Ts:H046FoV20cU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/CGZKlMCk4Ts" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/news/10-questions-with-facebook-research-engineer-andrei-alexandrescu/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/news/10-questions-with-facebook-research-engineer-andrei-alexandrescu/</feedburner:origLink></item>
		<item>
		<title>Smashing Magazine My Favorite Programming Mistakes</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/5U12iVNxnhM/</link>
		<comments>http://www.serversidemagazine.com/community/smashing-magazine-my-favorite-programming-mistakes/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 18:35:18 +0000</pubDate>
		<dc:creator>Server-Side Magazine</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1294</guid>
		<description><![CDATA[Over my programming career, I have made a lot of mistakes in several different languages. In fact, if I write 10 or more lines of code and it works the first time, I’ll get a bit suspicious and test it more rigorously than usual. I would expect to find a syntax error or a bad [...]]]></description>
			<content:encoded><![CDATA[<p>Over my programming career, I have made a lot of mistakes in several different languages. In fact, if I write 10 or more lines of code and it works the first time, I’ll get a bit suspicious and test it more rigorously than usual. I would expect to find a syntax error or a bad array reference or a misspelled variable or something. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=5U12iVNxnhM:zO67ekxIiIw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=5U12iVNxnhM:zO67ekxIiIw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=5U12iVNxnhM:zO67ekxIiIw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/5U12iVNxnhM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/smashing-magazine-my-favorite-programming-mistakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/smashing-magazine-my-favorite-programming-mistakes/</feedburner:origLink></item>
		<item>
		<title>Separating Maven Unit &amp; Integration Tests</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/etExShvGnHY/</link>
		<comments>http://www.serversidemagazine.com/community/separating-maven-unit-integration-tests/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 10:16:42 +0000</pubDate>
		<dc:creator>John Dobie</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1291</guid>
		<description><![CDATA[In this example I will show how you can perform a standard Maven build whilst keeping your unit and integration tests in separate packages. [...]
]]></description>
			<content:encoded><![CDATA[<p>In this example I will show how you can perform a standard Maven build whilst keeping your unit and integration tests in separate packages. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=etExShvGnHY:wwVYgSgPRn8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=etExShvGnHY:wwVYgSgPRn8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=etExShvGnHY:wwVYgSgPRn8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/etExShvGnHY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/separating-maven-unit-integration-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/separating-maven-unit-integration-tests/</feedburner:origLink></item>
		<item>
		<title>Separating Code Coverage With Maven, Sonar and Jacoco</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/nzXlQv1hYNA/</link>
		<comments>http://www.serversidemagazine.com/community/separating-code-coverage-with-maven-sonar-and-jacoco/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 10:16:23 +0000</pubDate>
		<dc:creator>John Dobie</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1292</guid>
		<description><![CDATA[In this example I will expand upon my previous example of keeping your unit and integration tests in separate packages, and explain how to also produce code coverage statistics. [...]
]]></description>
			<content:encoded><![CDATA[<p>In this example I will expand upon my previous example of keeping your unit and integration tests in separate packages, and explain how to also produce code coverage statistics. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=nzXlQv1hYNA:wadVXim224o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=nzXlQv1hYNA:wadVXim224o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=nzXlQv1hYNA:wadVXim224o:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/nzXlQv1hYNA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/separating-code-coverage-with-maven-sonar-and-jacoco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/separating-code-coverage-with-maven-sonar-and-jacoco/</feedburner:origLink></item>
		<item>
		<title>Maven Multi-Module With Sonar and Jacoco</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/NYybJfe2X_8/</link>
		<comments>http://www.serversidemagazine.com/community/maven-multi-module-with-sonar-and-jacoco/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 10:15:59 +0000</pubDate>
		<dc:creator>John Dobie</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1293</guid>
		<description><![CDATA[This blog shows how to seperate your unit and integration tests in a multi-module maven project whilst providing seperate test coverage results for each. [...]
]]></description>
			<content:encoded><![CDATA[<p>This blog shows how to seperate your unit and integration tests in a multi-module maven project whilst providing seperate test coverage results for each. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=NYybJfe2X_8:E0Ar8G3uTSw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=NYybJfe2X_8:E0Ar8G3uTSw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=NYybJfe2X_8:E0Ar8G3uTSw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/NYybJfe2X_8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/maven-multi-module-with-sonar-and-jacoco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/maven-multi-module-with-sonar-and-jacoco/</feedburner:origLink></item>
		<item>
		<title>10 examples of grep command in UNIX and Linux</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/IPeQRg4iI9U/</link>
		<comments>http://www.serversidemagazine.com/community/10-examples-of-grep-command-in-unix-and-linux/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 17:57:27 +0000</pubDate>
		<dc:creator>ssm_feed_tibco</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1279</guid>
		<description><![CDATA[&#8220;grep&#8221; one of the most frequently used UNIX command stands for &#8220;Global Regular Expression Print&#8221;. This grep command tutorial is not about theory of UNIX grep but to practical use of grep in UNIX and here I am sharing my experience [...]
]]></description>
			<content:encoded><![CDATA[<p>&#8220;grep&#8221; one of the most frequently used UNIX command stands for &#8220;Global Regular Expression Print&#8221;. This grep command tutorial is not about theory of UNIX grep but to practical use of grep in UNIX and here I am sharing my experience [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=IPeQRg4iI9U:brBNZBNn24s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=IPeQRg4iI9U:brBNZBNn24s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=IPeQRg4iI9U:brBNZBNn24s:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/IPeQRg4iI9U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/10-examples-of-grep-command-in-unix-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/10-examples-of-grep-command-in-unix-and-linux/</feedburner:origLink></item>
		<item>
		<title>How to become a proficient Python programmer</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/OsHkIdb7pAU/</link>
		<comments>http://www.serversidemagazine.com/community/how-to-become-a-proficient-python-programmer/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 16:05:38 +0000</pubDate>
		<dc:creator>Server-Side Magazine</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1289</guid>
		<description><![CDATA[I will focus on four primary topics: Functional programming, performance, testing and code guidelines. When those four aspects merge in one programmer, he or she will gain greatness no matter what. [...]
]]></description>
			<content:encoded><![CDATA[<p>I will focus on four primary topics: Functional programming, performance, testing and code guidelines. When those four aspects merge in one programmer, he or she will gain greatness no matter what. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=OsHkIdb7pAU:5nTvB1mDR4Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=OsHkIdb7pAU:5nTvB1mDR4Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=OsHkIdb7pAU:5nTvB1mDR4Q:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/OsHkIdb7pAU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/how-to-become-a-proficient-python-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/how-to-become-a-proficient-python-programmer/</feedburner:origLink></item>
		<item>
		<title>Quick Ways to Boost Performance and Scalability of ASP.NET, WCF and Desktop Clients</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/ecpNU8yYs_A/</link>
		<comments>http://www.serversidemagazine.com/community/quick-ways-to-boost-performance-and-scalability-of-asp-net-wcf-and-desktop-clients/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 15:19:26 +0000</pubDate>
		<dc:creator>The Code Project</dc:creator>
				<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1280</guid>
		<description><![CDATA[There are some simple configuration changes that you can make on machine.config and IIS to give your web applications significant performance boost. These are simple harmless changes but make a lot of difference in terms of scalability. [...]
]]></description>
			<content:encoded><![CDATA[<p>There are some simple configuration changes that you can make on machine.config and IIS to give your web applications significant performance boost. These are simple harmless changes but make a lot of difference in terms of scalability. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=ecpNU8yYs_A:artadrlbM4w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=ecpNU8yYs_A:artadrlbM4w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=ecpNU8yYs_A:artadrlbM4w:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/ecpNU8yYs_A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/quick-ways-to-boost-performance-and-scalability-of-asp-net-wcf-and-desktop-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/quick-ways-to-boost-performance-and-scalability-of-asp-net-wcf-and-desktop-clients/</feedburner:origLink></item>
		<item>
		<title>10 Caching Mistakes that Break your App</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/tjmJJDfLlvw/</link>
		<comments>http://www.serversidemagazine.com/community/10-caching-mistakes-that-break-your-app/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 15:13:24 +0000</pubDate>
		<dc:creator>The Code Project</dc:creator>
				<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1281</guid>
		<description><![CDATA[Caching large objects, duplicate objects, caching collections, live objects, thread unsafe caching and other common mistakes break your app instead of making it fly. Learn ten common caching mistakes devs make. [...]
]]></description>
			<content:encoded><![CDATA[<p>Caching large objects, duplicate objects, caching collections, live objects, thread unsafe caching and other common mistakes break your app instead of making it fly. Learn ten common caching mistakes devs make. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=tjmJJDfLlvw:aCCTEz63LEk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=tjmJJDfLlvw:aCCTEz63LEk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=tjmJJDfLlvw:aCCTEz63LEk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/tjmJJDfLlvw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/10-caching-mistakes-that-break-your-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/10-caching-mistakes-that-break-your-app/</feedburner:origLink></item>
		<item>
		<title>Unit Testing and Integration Testing in Business Applications</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/6uc-fbI6ehc/</link>
		<comments>http://www.serversidemagazine.com/community/unit-testing-and-integration-testing-in-business-applications/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 14:43:19 +0000</pubDate>
		<dc:creator>The Code Project</dc:creator>
				<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1285</guid>
		<description><![CDATA[This article presents some realistic unit and integration test examples in a N-tier web application to assist in writing tests that provide confidence in moving towards Test Driven Development (TDD) [...]
]]></description>
			<content:encoded><![CDATA[<p>This article presents some realistic unit and integration test examples in a N-tier web application to assist in writing tests that provide confidence in moving towards Test Driven Development (TDD) [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=6uc-fbI6ehc:bPl8bGbvhQg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=6uc-fbI6ehc:bPl8bGbvhQg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6uc-fbI6ehc:bPl8bGbvhQg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/6uc-fbI6ehc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/unit-testing-and-integration-testing-in-business-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/unit-testing-and-integration-testing-in-business-applications/</feedburner:origLink></item>
		<item>
		<title>To push, or not to push, the Web Socket dilemma</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/30lteL7kx4g/</link>
		<comments>http://www.serversidemagazine.com/community/to-push-or-not-to-push-the-web-socket-dilemma/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 13:03:18 +0000</pubDate>
		<dc:creator>ASP.NET Weblogs</dc:creator>
				<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1286</guid>
		<description><![CDATA[Web Sockets is a relatively new specification introduced as part of HTML 5 to support a full duplex-communication channel over http in web browsers.&#160; This&#160; represents a great advance toward real-time and event driven web applications. Before Web Sockets jumped in scene, the only available&#160; solutions for emulating real time notifications in web applications were [...]]]></description>
			<content:encoded><![CDATA[<p>Web Sockets is a relatively new specification introduced as part of HTML 5 to support a full duplex-communication channel over http in web browsers.&nbsp; This&nbsp; represents a great advance toward real-time and event driven web applications. Before Web Sockets jumped in scene, the only available&nbsp; solutions for emulating real time notifications in web applications were different variants of Http Long polling. Real time notifications in this context became particularly important for specific scenarios, such as reporting stock pricing updates, online gaming or news reports to name a few. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=30lteL7kx4g:cZY1xTHmZqI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=30lteL7kx4g:cZY1xTHmZqI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=30lteL7kx4g:cZY1xTHmZqI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/30lteL7kx4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/to-push-or-not-to-push-the-web-socket-dilemma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/to-push-or-not-to-push-the-web-socket-dilemma/</feedburner:origLink></item>
		<item>
		<title>Proxying HTTP and Websockets in Node</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/VhH_bBNXpfI/</link>
		<comments>http://www.serversidemagazine.com/community/proxying-http-and-websockets-in-node/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 12:57:17 +0000</pubDate>
		<dc:creator>Nodejitsu</dc:creator>
				<category><![CDATA[Server-Side JS]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1287</guid>
		<description><![CDATA[This guide is geared toward beginners and people who are unfamiliar with reverse HTTP proxying, websocket proxing, load balancing, virtual host configuration, request forwarding, and other web proxying concepts &#8211; those who already know what they&#8217;re doing and just want to see the syntax should skip down to the sample code. [...]
]]></description>
			<content:encoded><![CDATA[<p>This guide is geared toward beginners and people who are unfamiliar with reverse HTTP proxying, websocket proxing, load balancing, virtual host configuration, request forwarding, and other web proxying concepts &#8211; those who already know what they&#8217;re doing and just want to see the syntax should <a href="http://blog.nodejitsu.com/http-proxy-intro#sampleCode">skip down to the sample code.</a> [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=VhH_bBNXpfI:ek0tgIaORoI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=VhH_bBNXpfI:ek0tgIaORoI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=VhH_bBNXpfI:ek0tgIaORoI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/VhH_bBNXpfI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/proxying-http-and-websockets-in-node/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/proxying-http-and-websockets-in-node/</feedburner:origLink></item>
		<item>
		<title>SQL Server 10xs Faster with Rails 3.1</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/z0p-jLPEpAM/</link>
		<comments>http://www.serversidemagazine.com/community/sql-server-10xs-faster-with-rails-3-1/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 10:32:23 +0000</pubDate>
		<dc:creator>Engine Yard</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1282</guid>
		<description><![CDATA[As you may have heard or seen, ActiveRecord 3.1 now comes with prepared statement support. This happens for you automatically since ActiveRecord will associate all SQL statements with bind substitute variables. The implementation of these is left to each database adapter. [...]
]]></description>
			<content:encoded><![CDATA[<p>As you may have heard or seen, ActiveRecord 3.1 now comes with prepared statement support. This happens for you automatically since ActiveRecord will associate all SQL statements with bind substitute variables. The implementation of these is left to each database adapter. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=z0p-jLPEpAM:37vn7Y2efXA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=z0p-jLPEpAM:37vn7Y2efXA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=z0p-jLPEpAM:37vn7Y2efXA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/z0p-jLPEpAM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/sql-server-10xs-faster-with-rails-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/sql-server-10xs-faster-with-rails-3-1/</feedburner:origLink></item>
		<item>
		<title>Advanced PHP Closed Captioned Training Video</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/9K5x_Vl-7u8/</link>
		<comments>http://www.serversidemagazine.com/community/advanced-php-closed-captioned-training-video/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 07:39:28 +0000</pubDate>
		<dc:creator>KillerPHP</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1278</guid>
		<description><![CDATA[This is the third closed captioned video in a series where we explore PHP6 and other advanced PHP concepts. From our Advanced PHP Course. We are happy to announce that we are well on our way to closed captioning all of our Web Design and Web Programming related video training courses. [...]
]]></description>
			<content:encoded><![CDATA[<p>This is the third closed captioned video in a series where we explore PHP6 and other advanced PHP concepts. From our Advanced PHP Course. We are happy to announce that we are well on our way to closed captioning all of our Web Design and Web Programming related video training courses. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=9K5x_Vl-7u8:jgEjwjdTVkw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=9K5x_Vl-7u8:jgEjwjdTVkw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=9K5x_Vl-7u8:jgEjwjdTVkw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/9K5x_Vl-7u8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/advanced-php-closed-captioned-training-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/advanced-php-closed-captioned-training-video/</feedburner:origLink></item>
		<item>
		<title>Create alias for class</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/BL-kRGIbpdI/</link>
		<comments>http://www.serversidemagazine.com/community/create-alias-for-class/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 07:18:22 +0000</pubDate>
		<dc:creator>Left join</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1283</guid>
		<description><![CDATA[Sometimes we need to use external libraries with strange and obscure class names, and it can be really annoying. Luckily, from PHP 5.3 version we can create aliases for classes and interfaces with class_alias function. Example of class_alias usage. [...]
]]></description>
			<content:encoded><![CDATA[<p>Sometimes we need to use external libraries with strange and obscure class names, and it can be really annoying. Luckily, from PHP 5.3 version we can create aliases for classes and interfaces with class_alias function. Example of class_alias usage. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=BL-kRGIbpdI:b75SWGeX3YU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=BL-kRGIbpdI:b75SWGeX3YU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=BL-kRGIbpdI:b75SWGeX3YU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/BL-kRGIbpdI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/create-alias-for-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/create-alias-for-class/</feedburner:origLink></item>
		<item>
		<title>Working with date and time in object oriented way</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/FLaZTwBtz_o/</link>
		<comments>http://www.serversidemagazine.com/community/working-with-date-and-time-in-object-oriented-way/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 06:59:16 +0000</pubDate>
		<dc:creator>Left join</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1284</guid>
		<description><![CDATA[Date and time manipulation in PHP is mostly connected with functions like: date, time or strtotime. They can be sufficient, but if we want to deal with dates like with objects &#8211; we can use DateTime class. DateTime class is not only straightforward wrapper for standard functions, it has a lot of additional features [...]
]]></description>
			<content:encoded><![CDATA[<p>Date and time manipulation in PHP is mostly connected with functions like: date, time or strtotime. They can be sufficient, but if we want to deal with dates like with objects &#8211; we can use DateTime class. DateTime class is not only straightforward wrapper for standard functions, it has a lot of additional features [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=FLaZTwBtz_o:RaPI8BAmAuA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=FLaZTwBtz_o:RaPI8BAmAuA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=FLaZTwBtz_o:RaPI8BAmAuA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/FLaZTwBtz_o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/working-with-date-and-time-in-object-oriented-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/working-with-date-and-time-in-object-oriented-way/</feedburner:origLink></item>
		<item>
		<title>SQL Server: Quickest Method to Create Single Table Backup</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/6PjaVVDLdnM/</link>
		<comments>http://www.serversidemagazine.com/community/sql-server-quickest-method-to-create-single-table-backup/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:48:43 +0000</pubDate>
		<dc:creator>Connect SQL</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1276</guid>
		<description><![CDATA[There are several ways to create backup for a single table in SQL Server database. In SQL Server 2008, now you can create insert statements for selected tables. Beside this Export wizard is commonly used to create a flat file backup for a single table. Both methods are reliable but still time consuming. [...]
]]></description>
			<content:encoded><![CDATA[<p>There are several ways to create backup for a single table in SQL Server database. In SQL Server 2008, now you can create insert statements for selected tables. Beside this Export wizard is commonly used to create a flat file backup for a single table. Both methods are reliable but still time consuming. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=6PjaVVDLdnM:PJuMkplZXJk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=6PjaVVDLdnM:PJuMkplZXJk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=6PjaVVDLdnM:PJuMkplZXJk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/6PjaVVDLdnM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/sql-server-quickest-method-to-create-single-table-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/sql-server-quickest-method-to-create-single-table-backup/</feedburner:origLink></item>
		<item>
		<title>Introduction to LINQ</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/-OaHL2hMksM/</link>
		<comments>http://www.serversidemagazine.com/community/introduction-to-linq/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:06:47 +0000</pubDate>
		<dc:creator>SitePoint</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1272</guid>
		<description><![CDATA[Language-Integrated Query—LINQ—is a new data-access feature that does exactly what it says: allow for querying of data sources from within the language itself. [...]
]]></description>
			<content:encoded><![CDATA[<p>Language-Integrated Query—LINQ—is a new data-access feature that does exactly what it says: allow for querying of data sources from within the language itself. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=-OaHL2hMksM:fcHtjCznqpM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=-OaHL2hMksM:fcHtjCznqpM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=-OaHL2hMksM:fcHtjCznqpM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/-OaHL2hMksM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/introduction-to-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/introduction-to-linq/</feedburner:origLink></item>
		<item>
		<title>Installing Node.js and NPM on Ubuntu 11.04</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/iHUVzyWFu3s/</link>
		<comments>http://www.serversidemagazine.com/community/installing-node-js-and-npm-on-ubuntu-11-04/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 13:06:47 +0000</pubDate>
		<dc:creator>Giant Flying Saucer</dc:creator>
				<category><![CDATA[Server-Side JS]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1271</guid>
		<description><![CDATA[In my last article I installed Node on Ubuntu 10.10. Nothing really has changed for Ubuntu 11.04 but I want to have a separate article since a lot of people hit my installing Node articles. Also, keep in mind you [...]
]]></description>
			<content:encoded><![CDATA[<p>In my last article I installed Node on Ubuntu 10.10. Nothing really has changed for Ubuntu 11.04 but I want to have a separate article since a lot of people hit my installing Node articles. Also, keep in mind you [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=iHUVzyWFu3s:h-YS9598_mU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=iHUVzyWFu3s:h-YS9598_mU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=iHUVzyWFu3s:h-YS9598_mU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/iHUVzyWFu3s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/installing-node-js-and-npm-on-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/installing-node-js-and-npm-on-ubuntu-11-04/</feedburner:origLink></item>
		<item>
		<title>The Storage Technologies Behind Facebook Messages [Video]</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/kv0gz8KQDEM/</link>
		<comments>http://www.serversidemagazine.com/community/the-storage-technologies-behind-facebook-messages-video/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 11:12:50 +0000</pubDate>
		<dc:creator>ontwik</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1269</guid>
		<description><![CDATA[The engineering team behind Facebook Messages spent the past year building out a robust, scalable infrastructure. We spent a few weeks setting up a test framework to evaluate clusters of MySQL, Apache Cassandra, Apache HBase, and a couple of other [...]
]]></description>
			<content:encoded><![CDATA[<p>The engineering team behind Facebook Messages spent the past year building out a robust, scalable infrastructure. We spent a few weeks setting up a test framework to evaluate clusters of MySQL, Apache Cassandra, Apache HBase, and a couple of other [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=kv0gz8KQDEM:kCJPSEtRktc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=kv0gz8KQDEM:kCJPSEtRktc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=kv0gz8KQDEM:kCJPSEtRktc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/kv0gz8KQDEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/the-storage-technologies-behind-facebook-messages-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/the-storage-technologies-behind-facebook-messages-video/</feedburner:origLink></item>
		<item>
		<title>Learn MVC (Model view controller) Step by Step in 7 days</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/vp11UiSzhmU/</link>
		<comments>http://www.serversidemagazine.com/community/learn-mvc-model-view-controller-step-by-step-in-7-days/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 10:06:49 +0000</pubDate>
		<dc:creator>The Code Project</dc:creator>
				<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1270</guid>
		<description><![CDATA[As the article name says learn MVC, so the agenda is simple we are going to learn ASP.NET MVC  [...]
]]></description>
			<content:encoded><![CDATA[<p>As the article name says learn MVC, so the agenda is simple we are going to learn ASP.NET MVC  [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=vp11UiSzhmU:6EvCoiBV2Aw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=vp11UiSzhmU:6EvCoiBV2Aw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=vp11UiSzhmU:6EvCoiBV2Aw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/vp11UiSzhmU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/learn-mvc-model-view-controller-step-by-step-in-7-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/learn-mvc-model-view-controller-step-by-step-in-7-days/</feedburner:origLink></item>
		<item>
		<title>How To Get That Edge Ruby Faster-Loading-Hotness in Ruby 1.9.2 Now</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/e1-VXrEqc4g/</link>
		<comments>http://www.serversidemagazine.com/community/how-to-get-that-edge-ruby-faster-loading-hotness-in-ruby-1-9-2-now/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 09:06:45 +0000</pubDate>
		<dc:creator>Ruby Inside</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1274</guid>
		<description><![CDATA[As the current production version of Ruby, a boost for Ruby 1.9.2-p180 should benefit most of you so I knew I had to share Todd&#8217;s work as soon as I&#8217;d given it a test run. I ran the same benchmarks [...]
]]></description>
			<content:encoded><![CDATA[<p>As the current production version of Ruby, a boost for Ruby 1.9.2-p180 should benefit most of you so I knew I had to share Todd&#8217;s work as soon as I&#8217;d given it a test run. I ran the same benchmarks [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=e1-VXrEqc4g:_9C41yqk4x4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=e1-VXrEqc4g:_9C41yqk4x4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=e1-VXrEqc4g:_9C41yqk4x4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/e1-VXrEqc4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/how-to-get-that-edge-ruby-faster-loading-hotness-in-ruby-1-9-2-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/how-to-get-that-edge-ruby-faster-loading-hotness-in-ruby-1-9-2-now/</feedburner:origLink></item>
		<item>
		<title>Strategies for refactoring untestable PHP code</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/j5nu6gLgt18/</link>
		<comments>http://www.serversidemagazine.com/community/strategies-for-refactoring-untestable-php-code-2/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 08:23:43 +0000</pubDate>
		<dc:creator>Server-Side Magazine</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1277</guid>
		<description><![CDATA[With the growth of PHP from a simple scripting language to a full-fledged programming language, there has been a parallel growth in the complexity of the code bases of a typical PHP application. To control support and maintenance of these applications, various testing tools help automate this process. [...]
]]></description>
			<content:encoded><![CDATA[<p>With the growth of PHP from a simple scripting language to a full-fledged programming language, there has been a parallel growth in the complexity of the code bases of a typical PHP application. To control support and maintenance of these applications, various testing tools help automate this process. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=j5nu6gLgt18:Ga6rPeHDl4I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=j5nu6gLgt18:Ga6rPeHDl4I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=j5nu6gLgt18:Ga6rPeHDl4I:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/j5nu6gLgt18" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/strategies-for-refactoring-untestable-php-code-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/strategies-for-refactoring-untestable-php-code-2/</feedburner:origLink></item>
		<item>
		<title>Purging Zend Server’s Job Queue.</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/o4RkjYTcqBA/</link>
		<comments>http://www.serversidemagazine.com/community/purging-zend-servers-job-queue/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 07:30:46 +0000</pubDate>
		<dc:creator>Developly</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1273</guid>
		<description><![CDATA[Zend Server is great. It kicks WAMP &#038; MAMP’s butt. My favorite feature is the job queue – it offers an object oriented, cross-platform, cron-like paradigm. It’s really handy. [...]
]]></description>
			<content:encoded><![CDATA[<p>Zend Server is great. It kicks WAMP &#038; MAMP’s butt. My favorite feature is the job queue – it offers an object oriented, cross-platform, cron-like paradigm. It’s really handy. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=o4RkjYTcqBA:lsv9B886Qzc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=o4RkjYTcqBA:lsv9B886Qzc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=o4RkjYTcqBA:lsv9B886Qzc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/o4RkjYTcqBA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/purging-zend-servers-job-queue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/purging-zend-servers-job-queue/</feedburner:origLink></item>
		<item>
		<title>PHP Multithreading with cURL</title>
		<link>http://feedproxy.google.com/~r/server-side-magazine/~3/DWgx8mBSgPo/</link>
		<comments>http://www.serversidemagazine.com/community/php-multithreading-with-curl/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 07:07:21 +0000</pubDate>
		<dc:creator>PHPBuilder</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.serversidemagazine.com/?post_type=ssm_syndicated_posts&amp;p=1275</guid>
		<description><![CDATA[Some applications need to perform several tasks that may take a while to finish. When there are many tasks to execute, it may take a long time to finish all of them if they are executed sequentially, i.e., one after another. A possible solution for this problem is to execute several tasks at the same [...]]]></description>
			<content:encoded><![CDATA[<p>Some applications need to perform several tasks that may take a while to finish. When there are many tasks to execute, it may take a long time to finish all of them if they are executed sequentially, i.e., one after another. A possible solution for this problem is to execute several tasks at the same time using separate processes or threads. [...]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=DWgx8mBSgPo:IzvznQpcDt8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?i=DWgx8mBSgPo:IzvznQpcDt8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/server-side-magazine?a=DWgx8mBSgPo:IzvznQpcDt8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/server-side-magazine?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/server-side-magazine/~4/DWgx8mBSgPo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.serversidemagazine.com/community/php-multithreading-with-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.serversidemagazine.com/community/php-multithreading-with-curl/</feedburner:origLink></item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
