<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: LINQ, F-Script and Speaking at the TechDays 2008 Conference</title>
	<atom:link href="http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/feed/" rel="self" type="application/rss+xml" />
	<link>http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/</link>
	<description>Interactive Cocoa</description>
	<pubDate>Wed, 23 Jul 2008 22:58:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>By: Heinsk.net blog &#187; Blog Archive &#187; Simplicidad</title>
		<link>http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/#comment-97</link>
		<dc:creator>Heinsk.net blog &#187; Blog Archive &#187; Simplicidad</dc:creator>
		<pubDate>Wed, 27 Feb 2008 02:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://pmougin.wordpress.com/?p=140#comment-97</guid>
		<description>[...] de Cocoa sobre Objective-C.  El titulo de este post tiene relación en un artículo que lei en Fun Script (Blog dedicado a F-Script) en donde queda de manifiesta la simplicidad de la programación y cuando [...]</description>
		<content:encoded><![CDATA[<p>[...] de Cocoa sobre Objective-C.  El titulo de este post tiene relación en un artículo que lei en Fun Script (Blog dedicado a F-Script) en donde queda de manifiesta la simplicidad de la programación y cuando [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Harrington</title>
		<link>http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/#comment-94</link>
		<dc:creator>Jonathan Harrington</dc:creator>
		<pubDate>Tue, 19 Feb 2008 17:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://pmougin.wordpress.com/?p=140#comment-94</guid>
		<description>The python version is also similar.

pilots = sorted([flight.pilot for flight in flights
                 if flight.arrivalLocation == "Paris" and flight.airplane.model == "B747"],
                key=lambda p: p.salary)

result = [pilot.name for pilot in pilots]

orderby syntax in list comprehensions (instead of sorted) would be nice but it has been ruled out by the BDL unfortunately.</description>
		<content:encoded><![CDATA[<p>The python version is also similar.</p>
<p>pilots = sorted([flight.pilot for flight in flights<br />
                 if flight.arrivalLocation == "Paris" and flight.airplane.model == "B747"],<br />
                key=lambda p: p.salary)</p>
<p>result = [pilot.name for pilot in pilots]</p>
<p>orderby syntax in list comprehensions (instead of sorted) would be nice but it has been ruled out by the BDL unfortunately.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillaume Laforge</title>
		<link>http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/#comment-88</link>
		<dc:creator>Guillaume Laforge</dc:creator>
		<pubDate>Tue, 12 Feb 2008 13:35:02 +0000</pubDate>
		<guid isPermaLink="false">http://pmougin.wordpress.com/?p=140#comment-88</guid>
		<description>The Groovy version is also pretty interesting and concise, and it follows a similar approach to Link and F-Script:

def pilots = flights.findAll { it.arrivalLocation == 'Paris' &#38;&#38; it.airplane.model == 'B747' }.collect { it.pilot }.unique()

def result = pilots.sort { it.salary }.collect { it.name }</description>
		<content:encoded><![CDATA[<p>The Groovy version is also pretty interesting and concise, and it follows a similar approach to Link and F-Script:</p>
<p>def pilots = flights.findAll { it.arrivalLocation == &#8216;Paris&#8217; &amp;&amp; it.airplane.model == &#8216;B747&#8242; }.collect { it.pilot }.unique()</p>
<p>def result = pilots.sort { it.salary }.collect { it.name }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://pmougin.wordpress.com/2008/02/10/linq-f-script-and-speaking-at-the-techdays-2008-conference/#comment-87</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 11 Feb 2008 21:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://pmougin.wordpress.com/?p=140#comment-87</guid>
		<description>Hi,

Thanks for the great post on LINQ and OOPAL. I thought you'd be interested in some free hands-on developer training on LINQ to SQL. It also covers other .NET 3.5 topics: 

* New Features in C# 3.0
* New Features in VB 9.0
* LINQ to SQL

You can check it out here: 
http://www.innerworkings.com/promotions/75d4bd51-4bf1-4d8a-8c47-73135e44837a/visual-studio-2008-promotion

Cheers,

Brian Finnerty
http://blogs.innerworkings.com/brian-finnerty</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the great post on LINQ and OOPAL. I thought you&#8217;d be interested in some free hands-on developer training on LINQ to SQL. It also covers other .NET 3.5 topics: </p>
<p>* New Features in C# 3.0<br />
* New Features in VB 9.0<br />
* LINQ to SQL</p>
<p>You can check it out here:<br />
<a href="http://www.innerworkings.com/promotions/75d4bd51-4bf1-4d8a-8c47-73135e44837a/visual-studio-2008-promotion" rel="nofollow">http://www.innerworkings.com/promotions/75d4bd51-4bf1-4d8a-8c47-73135e44837a/visual-studio-2008-promotion</a></p>
<p>Cheers,</p>
<p>Brian Finnerty<br />
<a href="http://blogs.innerworkings.com/brian-finnerty" rel="nofollow">http://blogs.innerworkings.com/brian-finnerty</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
