
net
Get flash to fully experience Pearltrees
Norwegian Rubyist August Lilleaas has been busy putting together a ton of examples of using the Net::HTTP Ruby library that comes with most Ruby distributions. I asked him if it'd be okay to put some of them directly on Ruby Inside for reference purposes and he said "No problem!" It's worth noting that Net::HTTP has been superseded in many areas by libraries like John Nunemaker's HTTParty and Paul DIx's high performance Typhoeus , but as part of the standard library, Net::HTTP is still a popular option though it doesn't have the easiest API to remember.
Net::HTTP Cheat Sheet
Ben Strong's Blog: Google and Microsoft Cheat on Slow-Start. Should You?
HTTP cookies, or how not to design protocols
For as long as I remember, HTTP cookies have been vilified as a grave threat to the privacy of online browsing; wrongly so . That said, the mechanism itself is a very interesting cautionary tale for security engineers - and that will be the theme of today's feature. Cookies were devised by Lou Montulli , a Netscape engineer, somewhere in 1994. Lou outlined his original design in a minimalistic, four-page proposal posted on netscape.com; based on that specification, the implementation shipped in their browser several months later - and other vendors were quick to follow. It wasn't until 1997 that the first reasonably detailed specification of the mechanism has been attempted: RFC 2109 .node.js
var net = require ( 'net' ); var server = net . createServer ( function ( socket ) { socket . write ( 'Echo server \r\n ' ); socket . pipe ( socket ); } ); server . listen ( 1337 , '127.0.0.1' ); A guided introduction to Nodefor Web Authors and Webmasters This is an informational document. Although technical in nature, it attempts to make the concepts involved understandable and applicable in real-world situations. Because of this, some aspects of the material are simplified or omitted, for the sake of clarity.
Caching Tutorial for Web Authors and Webmasters
HTTParty by John Nunemaker
.NET Feature Articles Dino Esposito states that, compared with writing iOS and Android applications, developing applications for Windows Phone is much easier. If you're coming to Windows Phone with a .NET background, you will feel right at home LINQ queries execute when you iterate over results, and they execute sequentially. With PLINQ, the iterations are performed in parallel, as tasks are scheduled on threads running in the .NET Framework 4 thread pool ASP.NET 4 provides support for cache extensibility through a provider model that you can write yourself.

