<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><channel rdf:about="https://www.bibsonomy.org/user/draganigajic/tutorial"><title>BibSonomy bookmarks for /user/draganigajic/tutorial</title><link>https://www.bibsonomy.org/user/draganigajic/tutorial</link><description>BibSonomy RSS Feed for /user/draganigajic/tutorial</description><items><rdf:Seq><rdf:li rdf:resource="http://groups.csail.mit.edu/uid/chickenfoot/tutorial/"/><rdf:li rdf:resource="http://lamp.epfl.ch/~phaller/doc/ActorsTutorial.html"/><rdf:li rdf:resource="http://flexonrails.net/?p=103"/><rdf:li rdf:resource="http://www.codecommit.com/blog/category/scala"/><rdf:li rdf:resource="http://stubbisms.wordpress.com/2008/02/22/my-foray-into-the-world-of-scala/"/><rdf:li rdf:resource="http://lamp.epfl.ch/~emir/bqbase/2005/01/20/monad.html"/><rdf:li rdf:resource="http://www.infoq.com/presentations/jaoo-spoon-scala"/><rdf:li rdf:resource="http://burak.emir.googlepages.com/scalaxbook.docbk.html"/><rdf:li rdf:resource="http://liftweb.net/index.php/Hello_Darwin"/><rdf:li rdf:resource="http://www.oreillynet.com/lpt/a/7228"/><rdf:li rdf:resource="http://www.slideshare.net/Adieu/advanced-javascript/"/><rdf:li rdf:resource="http://www.freebase.com/view/tutorial/"/><rdf:li rdf:resource="http://www.slideshare.net/ohmdesign/css-positioning/"/><rdf:li rdf:resource="http://www.masternewmedia.org/online_marketing/attention-profiling-apml/apml-beginners-guide-attention-profile-20071113.htm"/><rdf:li rdf:resource="http://www.visualjquery.com/index.xml"/><rdf:li rdf:resource="http://cocoadevcentral.com/d/learn_objectivec/"/><rdf:li rdf:resource="http://www.codepoetics.com/wiki/index.php?title=Topics:SICP_in_other_languages"/><rdf:li rdf:resource="http://www.supermemo.com/articles/devour.htm#Life%20cycle%20of%20knowledge"/><rdf:li rdf:resource="http://www.cs.ru.nl/~clean/About_Clean/tutorial/body_tutorial.html"/><rdf:li rdf:resource="http://hyperstruct.net/files/mozunit.swf"/></rdf:Seq></items></channel><item rdf:about="http://groups.csail.mit.edu/uid/chickenfoot/tutorial/"><title>Chickenfoot interactive tutorial</title><description>Welcome to the Chickenfoot interactive tutorial. When you see text in a box like the one below, it is a piece of Chickenfoot code (which we call Chickenscratch) that can be executed from the Chickenfoot Script Editor. To introduce you to Chickenfoot, the interactive tutorial consists of a series of sample pages. Each sample page will show a real web site, such as Google, and a snippet of Chickenscratch to run on that web site. This will expose you to the various commands that are available in Chickenfoot. click(&#034;begin interactive tutorial&#034;)</description><link>http://groups.csail.mit.edu/uid/chickenfoot/tutorial/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>chickenfoot csail editor firefox greasemonkey scripting tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Welcome to the Chickenfoot interactive tutorial. When you see text in a box like the one below, it is a piece of Chickenfoot code (which we call Chickenscratch) that can be executed from the Chickenfoot Script Editor. To introduce you to Chickenfoot, the interactive tutorial consists of a series of sample pages. Each sample page will show a real web site, such as Google, and a snippet of Chickenscratch to run on that web site. This will expose you to the various commands that are available in Chickenfoot. click(&amp;#034;begin interactive tutorial&amp;#034;)&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/chickenfoot"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/csail"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/editor"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/firefox"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/greasemonkey"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scripting"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://lamp.epfl.ch/~phaller/doc/ActorsTutorial.html"><title>Scala Actors -- A Short Tutorial</title><description>With the advent of multi-core processors concurrent programming is becoming indispensable. Scala&#039;s primary concurrency construct is actors. Actors are basically concurrent processes that communicate by exchanging messages. Actors can also be seen as a form of active objects where invoking a method corresponds to sending a message. The Scala Actors library provides both asynchronous and synchronous message sends (the latter are implemented by exchanging several asynchronous messages). Moreover, actors may communicate using futures where requests are handled asynchronously, but return a representation (the future) that allows to await the reply. This tutorial is mainly designed as a walk-through of several complete example programs Our first example consists of two actors that exchange a bunch of messages and then terminate. The first actor sends &#034;ping&#034; messages to the second actor, which in turn sends &#034;pong&#034; messages back (for each received &#034;ping&#034; message one &#034;pong&#034; message).</description><link>http://lamp.epfl.ch/~phaller/doc/ActorsTutorial.html</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>*read 100+ Scala actors concurrency tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;With the advent of multi-core processors concurrent programming is becoming indispensable. Scala&amp;#039;s primary concurrency construct is actors. Actors are basically concurrent processes that communicate by exchanging messages. Actors can also be seen as a form of active objects where invoking a method corresponds to sending a message. The Scala Actors library provides both asynchronous and synchronous message sends (the latter are implemented by exchanging several asynchronous messages). Moreover, actors may communicate using futures where requests are handled asynchronously, but return a representation (the future) that allows to await the reply. This tutorial is mainly designed as a walk-through of several complete example programs Our first example consists of two actors that exchange a bunch of messages and then terminate. The first actor sends &amp;#034;ping&amp;#034; messages to the second actor, which in turn sends &amp;#034;pong&amp;#034; messages back (for each received &amp;#034;ping&amp;#034; message one &amp;#034;pong&amp;#034; message).&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/*read"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/100+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/actors"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/concurrency"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://flexonrails.net/?p=103"><title>flexonrails.net » Integrating Flex, BlazeDS, and Scala/Lift</title><description>That should be it. You now be able to boot up you Lift app, launch the Flex app, click the “Subscribe to ‘notifications’” to start the Notifier Actor and subscribe to the Consumer to the notifications destination. You should then see id number and the time in the text input field get automatically updated every 0.5 seconds. You can the click the “Unsubscribe from ‘notifications’” to stop the Notifier actor and the Consumer to unsubscribe from the notifications destination. Pretty exciting. With these three technologies it’s really easy to automatically push data from the server to the client in real time. This is obviously a trivial example, but I think it should be relatively straight forward to scale this approach up for more sophisticated apps.</description><link>http://flexonrails.net/?p=103</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>blazeds blogpost flex lift scala tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;That should be it. You now be able to boot up you Lift app, launch the Flex app, click the “Subscribe to ‘notifications’” to start the Notifier Actor and subscribe to the Consumer to the notifications destination. You should then see id number and the time in the text input field get automatically updated every 0.5 seconds. You can the click the “Unsubscribe from ‘notifications’” to stop the Notifier actor and the Consumer to unsubscribe from the notifications destination. Pretty exciting. With these three technologies it’s really easy to automatically push data from the server to the client in real time. This is obviously a trivial example, but I think it should be relatively straight forward to scale this approach up for more sophisticated apps.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/blazeds"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/blogpost"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/flex"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/lift"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.codecommit.com/blog/category/scala"><title>Scala - Code Commit</title><description>code commit posts tagged scala</description><link>http://www.codecommit.com/blog/category/scala</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>blog scala tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;code commit posts tagged scala&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/blog"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://stubbisms.wordpress.com/2008/02/22/my-foray-into-the-world-of-scala/"><title>My foray into the world of Scala « Stubbisms - Tony’s Weblog</title><description>For some reason, I suddenly felt like playing around with Scala for a couple of days, and having gotten over my perceived difficulty of the language vs Groovy, and after actually trying to write something in it - I really like it :) At first glance, advanced functional programming in Scala can look a little freaky to someone who’s only been writing Java for the last few years. But if you start slowly, it all slides into place. I started to get into it by reading this is a really good series of articles introducing the language What follows are two examples of Scala. The first, LoveGame is a demonstration of programming a simple algorithm in Scala along with a little comarpison with Java. The second is a little toying around i did with Scala to create a front end for JScience with the “Pimp my library” pattern.</description><link>http://stubbisms.wordpress.com/2008/02/22/my-foray-into-the-world-of-scala/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>blogpost scala tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;For some reason, I suddenly felt like playing around with Scala for a couple of days, and having gotten over my perceived difficulty of the language vs Groovy, and after actually trying to write something in it - I really like it :) At first glance, advanced functional programming in Scala can look a little freaky to someone who’s only been writing Java for the last few years. But if you start slowly, it all slides into place. I started to get into it by reading this is a really good series of articles introducing the language What follows are two examples of Scala. The first, LoveGame is a demonstration of programming a simple algorithm in Scala along with a little comarpison with Java. The second is a little toying around i did with Scala to create a front end for JScience with the “Pimp my library” pattern.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/blogpost"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://lamp.epfl.ch/~emir/bqbase/2005/01/20/monad.html"><title>Monads in Scala tutorial</title><description>emir burak  In Informatics, there are two (related) meanings of the word &#034;monad&#034;:     * A triple (T,eta,mu) following some laws in category theory     * A way of structuring functional programs The first meaning can probably not be described easily in natural language. Michael Arbib and Ernest Manes&#039; &#034;Arrows, Structure, Functors - The Categorical Imperative&#034;. describe them as (generalized monoids) in Section 10.2 and through adjointness to the forgetful functor from algebras to sets. That last connection basically makes everything that we can write down or model using abstract syntax / universal algebra a monad. The second view is described in Wadler&#039;s papers. I mention category theory  because  we can describe things that are not computations as monads. It also reminds us why a monad is a collection of things taken together. With the List example in mind, a potentially more revealing account on monads (aka triples) can be found in the free book Barr, Wells</description><link>http://lamp.epfl.ch/~emir/bqbase/2005/01/20/monad.html</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>*read fp monads scala tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;emir burak  In Informatics, there are two (related) meanings of the word &amp;#034;monad&amp;#034;:     * A triple (T,eta,mu) following some laws in category theory     * A way of structuring functional programs The first meaning can probably not be described easily in natural language. Michael Arbib and Ernest Manes&amp;#039; &amp;#034;Arrows, Structure, Functors - The Categorical Imperative&amp;#034;. describe them as (generalized monoids) in Section 10.2 and through adjointness to the forgetful functor from algebras to sets. That last connection basically makes everything that we can write down or model using abstract syntax / universal algebra a monad. The second view is described in Wadler&amp;#039;s papers. I mention category theory  because  we can describe things that are not computations as monads. It also reminds us why a monad is a collection of things taken together. With the List example in mind, a potentially more revealing account on monads (aka triples) can be found in the free book Barr, Wells&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/*read"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/fp"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/monads"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.infoq.com/presentations/jaoo-spoon-scala"><title>InfoQ: Scala: Bringing Future Languages to the JVM</title><description>Lex Spoon discusses the Scala programming language including the origin of Scala, the philosophy behind Scala, the Scala feature set, Object-Oriented and Functional programming in Scala, examples of Scala code, writing DSLs, how Scala is converted into Java, Scala performance, Abstract Data Types, unapply, actors and partial functions. Lex Spoon divides his time between two posts: he works at EPFL in Switzerland on the Scala team, and at IBM Research in New York on X10.</description><link>http://www.infoq.com/presentations/jaoo-spoon-scala</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>*watch jvm presentation scala tutorial video </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Lex Spoon discusses the Scala programming language including the origin of Scala, the philosophy behind Scala, the Scala feature set, Object-Oriented and Functional programming in Scala, examples of Scala code, writing DSLs, how Scala is converted into Java, Scala performance, Abstract Data Types, unapply, actors and partial functions. Lex Spoon divides his time between two posts: he works at EPFL in Switzerland on the Scala team, and at IBM Research in New York on X10.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/*watch"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/jvm"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/presentation"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/video"/></rdf:Bag></taxo:topics></item><item rdf:about="http://burak.emir.googlepages.com/scalaxbook.docbk.html"><title>scala.xml</title><description>emir burak scala.xml (draft book, updated for Scala 2.6.1) I. Semistructured Syntax and Data     1. Introduction         XML, Types and Objects     2. The scala.xml API         Nodes and Attributes             Elements and Text             Embedded expressions         Other nodes         Matching XML         Updates and Queries         Names and Namespaces             Sharing namespace nodes     3. XPath projection     4. XSLT style transformations     5. XQuery style querying     6. Loading and Saving XML         The native Scala parser         Pull parsing (experimental) II. Library      7. Overview     8. scala.xml runtime classes     9. Scala&#039;s XML syntax, formally     10. Interpretation of XML expressions and patterns</description><link>http://burak.emir.googlepages.com/scalaxbook.docbk.html</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>Scala book documentation reference tutorial xml </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;emir burak scala.xml (draft book, updated for Scala 2.6.1) I. Semistructured Syntax and Data     1. Introduction         XML, Types and Objects     2. The scala.xml API         Nodes and Attributes             Elements and Text             Embedded expressions         Other nodes         Matching XML         Updates and Queries         Names and Namespaces             Sharing namespace nodes     3. XPath projection     4. XSLT style transformations     5. XQuery style querying     6. Loading and Saving XML         The native Scala parser         Pull parsing (experimental) II. Library      7. Overview     8. scala.xml runtime classes     9. Scala&amp;#039;s XML syntax, formally     10. Interpretation of XML expressions and patterns&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/book"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/documentation"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/reference"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xml"/></rdf:Bag></taxo:topics></item><item rdf:about="http://liftweb.net/index.php/Hello_Darwin"><title>Hello Darwin - Lift</title><description></description><link>http://liftweb.net/index.php/Hello_Darwin</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:52+02:00</dc:date><dc:subject>lift scala tutorial webFramework </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:52+02:00&#034; href=&#034;http://liftweb.net/index.php/Hello_Darwin&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://liftweb.net/index.php/Hello_Darwin&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/lift"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/webFramework"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.oreillynet.com/lpt/a/7228"><title>O&#039;Reilly Network: Shoes Meets Merb: Driving a GUI App through Web Services in Ruby</title><description>If Merb is a paragon of professionalism and class, Shoes is a monkey on LSD. Shoes, by why the lucky stiff, is an incredibly compact cross-platform GUI toolkit for Ruby, but it looks nothing like the other cross-platform toolkits out there. For one thing, it is lightweight. Shoes lets you build GUIs in Ruby whose code actually looks like Ruby, not XML or Java. We are going to build a pastebin as a repository for our own code snippets and pieces of text we want to save. We&#039;ll build a GUI frontend using Shoes, and connect it to a Merb backend that will handle the database. In fact, the basic proof of concept took the two of us about an hour to get working, and it took another hour to finish. Without further ado, we present our pastebin application, using Shoes and Merb, Shmerboes. Creating a Simple YAML-Based Web Service with Merb</description><link>http://www.oreillynet.com/lpt/a/7228</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:51+02:00</dc:date><dc:subject>! gui merb ruby tutorial </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;If Merb is a paragon of professionalism and class, Shoes is a monkey on LSD. Shoes, by why the lucky stiff, is an incredibly compact cross-platform GUI toolkit for Ruby, but it looks nothing like the other cross-platform toolkits out there. For one thing, it is lightweight. Shoes lets you build GUIs in Ruby whose code actually looks like Ruby, not XML or Java. We are going to build a pastebin as a repository for our own code snippets and pieces of text we want to save. We&amp;#039;ll build a GUI frontend using Shoes, and connect it to a Merb backend that will handle the database. In fact, the basic proof of concept took the two of us about an hour to get working, and it took another hour to finish. Without further ado, we present our pastebin application, using Shoes and Merb, Shmerboes. Creating a Simple YAML-Based Web Service with Merb&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/!"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/gui"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/merb"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ruby"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.slideshare.net/Adieu/advanced-javascript/"><title>Advanced Javascript » SlideShare</title><description></description><link>http://www.slideshare.net/Adieu/advanced-javascript/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:51+02:00</dc:date><dc:subject>ajax crockford javascript slideshare tutorial yui </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:51+02:00&#034; href=&#034;http://www.slideshare.net/Adieu/advanced-javascript/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.slideshare.net/Adieu/advanced-javascript/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ajax"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/crockford"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/javascript"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/slideshare"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/yui"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.freebase.com/view/tutorial/"><title>Freebase Tutorial</title><description></description><link>http://www.freebase.com/view/tutorial/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:49+02:00</dc:date><dc:subject>freebase semanticWeb tutorial web2.0 </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:49+02:00&#034; href=&#034;http://www.freebase.com/view/tutorial/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.freebase.com/view/tutorial/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/freebase"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/semanticWeb"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/web2.0"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.slideshare.net/ohmdesign/css-positioning/"><title>Css positioning » SlideShare</title><description></description><link>http://www.slideshare.net/ohmdesign/css-positioning/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:49+02:00</dc:date><dc:subject>css html slideshare tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:49+02:00&#034; href=&#034;http://www.slideshare.net/ohmdesign/css-positioning/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.slideshare.net/ohmdesign/css-positioning/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/css"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/slideshare"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.masternewmedia.org/online_marketing/attention-profiling-apml/apml-beginners-guide-attention-profile-20071113.htm"><title>Attention Profiling: APML Beginner&#039;s Guide - Robin Good&#039;s Latest News</title><description></description><link>http://www.masternewmedia.org/online_marketing/attention-profiling-apml/apml-beginners-guide-attention-profile-20071113.htm</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:49+02:00</dc:date><dc:subject>100+ APML attention marketing profiling tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:49+02:00&#034; href=&#034;http://www.masternewmedia.org/online_marketing/attention-profiling-apml/apml-beginners-guide-attention-profile-20071113.htm&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.masternewmedia.org/online_marketing/attention-profiling-apml/apml-beginners-guide-attention-profile-20071113.htm&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/100+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/APML"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/attention"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/marketing"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/profiling"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.visualjquery.com/index.xml"><title>Visual jQuery 1.0 (Automated)</title><description></description><link>http://www.visualjquery.com/index.xml</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:48+02:00</dc:date><dc:subject>100+ 1k+ ajax api cheatsheet framework jQuery jResig javascript library tutorial web2.0 webdev </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:48+02:00&#034; href=&#034;http://www.visualjquery.com/index.xml&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.visualjquery.com/index.xml&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/100+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/1k+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ajax"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/api"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/cheatsheet"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/framework"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/jQuery"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/jResig"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/javascript"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/library"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/web2.0"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/webdev"/></rdf:Bag></taxo:topics></item><item rdf:about="http://cocoadevcentral.com/d/learn_objectivec/"><title>Cocoa Dev Central: Learn Objective-C</title><description></description><link>http://cocoadevcentral.com/d/learn_objectivec/</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:47+02:00</dc:date><dc:subject>100+ Apple C cocoa mac objective-c programConstruction tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:47+02:00&#034; href=&#034;http://cocoadevcentral.com/d/learn_objectivec/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://cocoadevcentral.com/d/learn_objectivec/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/100+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Apple"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/C"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/cocoa"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/mac"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/objective-c"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/programConstruction"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.codepoetics.com/wiki/index.php?title=Topics:SICP_in_other_languages"><title>Topics:SICP in other languages - CTMWiki</title><description></description><link>http://www.codepoetics.com/wiki/index.php?title=Topics:SICP_in_other_languages</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:47+02:00</dc:date><dc:subject>*read 100+ Scala algorithms cs education erlang examples fp haskell javascript lisp lua ocaml pl python qi ruby scheme sicp tutorial wiki </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:47+02:00&#034; href=&#034;http://www.codepoetics.com/wiki/index.php?title=Topics:SICP_in_other_languages&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.codepoetics.com/wiki/index.php?title=Topics:SICP_in_other_languages&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/*read"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/100+"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Scala"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/algorithms"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/cs"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/education"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/erlang"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/fp"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/haskell"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/javascript"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/lisp"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/lua"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ocaml"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/pl"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/python"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/qi"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ruby"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/scheme"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/sicp"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/wiki"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.supermemo.com/articles/devour.htm#Life%20cycle%20of%20knowledge"><title>Devouring knowledge: step by step guide</title><description></description><link>http://www.supermemo.com/articles/devour.htm#Life%20cycle%20of%20knowledge</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:46+02:00</dc:date><dc:subject>learning supermemo tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:46+02:00&#034; href=&#034;http://www.supermemo.com/articles/devour.htm#Life%20cycle%20of%20knowledge&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.supermemo.com/articles/devour.htm#Life%20cycle%20of%20knowledge&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/learning"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/supermemo"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.cs.ru.nl/~clean/About_Clean/tutorial/body_tutorial.html"><title>Language Impression</title><description></description><link>http://www.cs.ru.nl/~clean/About_Clean/tutorial/body_tutorial.html</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:46+02:00</dc:date><dc:subject>FP clean tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:46+02:00&#034; href=&#034;http://www.cs.ru.nl/~clean/About_Clean/tutorial/body_tutorial.html&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.cs.ru.nl/~clean/About_Clean/tutorial/body_tutorial.html&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/FP"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/clean"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item><item rdf:about="http://hyperstruct.net/files/mozunit.swf"><title>Creating and running testcases</title><description></description><link>http://hyperstruct.net/files/mozunit.swf</link><dc:creator>draganigajic</dc:creator><dc:date>2011-07-13T18:13:46+02:00</dc:date><dc:subject>extension firefox screencast tutorial </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2011-07-13T18:13:46+02:00&#034; href=&#034;http://hyperstruct.net/files/mozunit.swf&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://hyperstruct.net/files/mozunit.swf&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/extension"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/firefox"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/screencast"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tutorial"/></rdf:Bag></taxo:topics></item></rdf:RDF>