PlushForums

  • Forum
  • Blog
  • Members

  • How an Economy Grows and Why It Crashes: Two Tales of the Economy
    Usually economics bores me to tears but this sounds interesting. I'll give it a shot this weekend.
  • This month's movie reviews
    The Wolf of Wall Street demystifies Bergman-esque assertions of the nature of humanity through its strategic use of narrative ellipses.
  • This month's movie reviews
    Through the juxtaposition of poverty and nature, The Wolf of Wall Street hybridizes the containment of visual pleasure.
  • This month's movie reviews
    ↪Michelle Armstrong
    The expressionistic play between sound and history in The Wolf of Wall Street launches visual salvos against Bergman-esque assertions of the nature of humanity.

    These comments are generated using the excellent Film School Thesis Generator.
  • Javascript and PHP source code examples
    Generic asynchronous cache

    It is also possible to make the code completely generic and build a cache factory that will abstract out the actual task to be performed when a key isn't in the cache yet:

    $.createCache = function( requestFunction ) {
        var cache = {};
        return function( key, callback ) {
            if ( !cache[ key ] ) {
                cache[ key ] = $.Deferred(function( defer ) {
                    requestFunction( defer, key );
                }).promise();
            }
            return cache[ key ].done( callback );
        };
    }
    
  • Share your Thought for the Day
Home » Douglas Torres

Douglas Torres

Start FollowingSend a Message
  • About
  • Comments
  • Discussions
  • Uploads
  • Terms of Service
  • Useful Hints and Tips
  • Sign In
  • Created with PlushForums
  • © 2025 PlushForums