<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>pl patterns - Latest Comments in Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.disqus.com/</link><description>Programming Languages, Patterns, Life Hacking</description><atom:link href="https://plpatterns.disqus.com/programming_concepts_people_just_quotdon039t_getquot/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Mon, 25 Aug 2008 16:16:34 -0000</lastBuildDate><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-1830372</link><description>&lt;p&gt;Yes, I can see how it can be confusing.  Web 2.0 vs. semantic web vs. Semantic Web (capitalized) vs. Web 3.0.&lt;/p&gt;&lt;p&gt;I haven't heard anyone else mention this.  I may have unintentionally excluded some topics though by saying "programming concepts". ... I'll see what I can do, but I think I've accumulated enough topics for one presentation.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jonathan Tran</dc:creator><pubDate>Mon, 25 Aug 2008 16:16:34 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-1829188</link><description>&lt;p&gt;I have no idea what the Semantic Web really means.  I find it more confusing then Web 2.0.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rob Di Marco</dc:creator><pubDate>Mon, 25 Aug 2008 14:47:51 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-1679227</link><description>&lt;p&gt;I haven't forgotten about this.  A few topics I will definitely cover based on feedback: closures, currying, monads, and continuations.  I will also talk about the CSS box model, staging, and aspect-oriented programming.&lt;/p&gt;&lt;p&gt;Please, keep pushing me to do this!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jonathan Tran</dc:creator><pubDate>Wed, 20 Aug 2008 02:54:50 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-991605</link><description>&lt;p&gt;For reference, I &lt;a href="http://www.reddit.com/comments/6t3jf/Ask_Reddit_What_programming_concepts_do_you_not/" rel="nofollow noopener" target="_blank" title="http://www.reddit.com/comments/6t3jf/Ask_Reddit_What_programming_concepts_do_you_not/"&gt;asked Reddit&lt;/a&gt;.  Interesting...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jonathan Tran</dc:creator><pubDate>Thu, 24 Jul 2008 14:39:12 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-981346</link><description>&lt;p&gt;Monads, more useful than HOFs ? That doesn't really make sense since HOF are needed to do Monads.&lt;/p&gt;&lt;p&gt;A lot of computations pattern are in reality monads, once you've understood that, you realize that expressing them like monads often make them easier to understand or manipulate. And in language with a powerful type system like Haskell, you immediately get the benefits of a lot of functions that can be applied to any monad for free. As well as a pretty cool syntax sugar (do-notation).&lt;/p&gt;&lt;p&gt;Nice ! Isn't it ?&lt;/p&gt;&lt;p&gt;(As for the IO question, it is true that with an IO monad the programs are still written in a pure functional style, in fact, rather than do IO, they construct an IO computation, which is an abstract, pure structure. The impure part doesn't appear until the runtime starts translating this IO computation to real Input/Output. Of course to be efficient the IO computation is executed at the same time it is built, but conceptually, we stay pure, which is important to keep the potential for optimisation it give us)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jedai</dc:creator><pubDate>Wed, 23 Jul 2008 17:21:31 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-962357</link><description>&lt;p&gt;I don't understand how monads are more useful than HOFs.  I read that explanation of Monads being like factory machines that move boxes around, and I thought I understood it pretty well, but I don't understand what practical benefit they have.  I have heard that they allow programs to do IO and still be purely functional, but I don't buy that yet, because the non-referentially-transparent IO still has to be somehow absorbed into the program.  I would love to see more examples of them.  Continuations sound really cool, but I don't know what I'd ever use them for.  I would love even more to see some good examples of them.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">josh</dc:creator><pubDate>Mon, 21 Jul 2008 22:02:33 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-952703</link><description>&lt;p&gt;That's fair.  I'm sure I could use some practice, but I think de-normalized, amortized over write storage is something that's still tricky for folks that came into software development over the past few years.  Myself included.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mat Schaffer</dc:creator><pubDate>Sun, 20 Jul 2008 21:31:51 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-951925</link><description>&lt;p&gt;I don't mean to make experts out of people on these topics.  That takes time and experience.&lt;/p&gt;&lt;p&gt;If you (or others?) don't understand the concept of BigTable or column-oriented storage, that's one thing.  And I could try to show it to people so that they grasp it enough to evaluate its use in a given situation.&lt;/p&gt;&lt;p&gt;But if you already know what it is, you're just not that good with it, I would say... practice!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jonathan Tran</dc:creator><pubDate>Sun, 20 Jul 2008 18:49:02 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-951639</link><description>&lt;p&gt;I don't get grasp how to structure application data for de-normalized storage (e.g., BigTable, HBase).  My brain instantly jumps to building entity relationships which I'm sure don't hold up in that model.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mat Schaffer</dc:creator><pubDate>Sun, 20 Jul 2008 18:02:04 -0000</pubDate></item><item><title>Re: Programming Concepts People Just &amp;quot;Don&amp;#039;t Get&amp;quot;</title><link>http://plpatterns.com/post/42929867#comment-951038</link><description>&lt;p&gt;Monads are something that I know I don't yet grok and want to.  Continuations are another.  I have an idea of what they are and how they can be used, but I could not clearly articulate them to someone else.  I'm also looking for the other stuff that I can't see, you're one of the people who is helping me with that.&lt;/p&gt;&lt;p&gt;This was good, make more like this, keep this going.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle Burton</dc:creator><pubDate>Sun, 20 Jul 2008 16:08:49 -0000</pubDate></item></channel></rss>