Snippets created by nicolas2

  • Automatic install of Nuget with a script

    When versioning a solution, I like to just version the packages.config and not the binaries themselves. that means upon checkout, one has to install the referenced Nugets. This is the purpose of this script. [For some reason you have to press 'enter' between commands..]

    5 people like this

    Posted: 11 years ago by Nicolas2

  • BatchedDeque

    A batched Deque

    2 people like this

    Posted: 11 years ago by Nicolas2

  • Successive fold functions

    fold by applying a list of function to a list of arg, last one behaving as usual

    1 people like this

    Posted: 11 years ago by nicolas2

  • file1.fsx

    A snippet exported from Try F#.

    0 people like this

    Posted: 11 years ago by nicolas2

  • recursive to dynamic programming with ycombinator

    Dynamic programming is equivalent to recursion + some way to remember the results (as far as I undertand) The y combinator allows to "tie" a previously "untied" recursion, which itself allows to compositionally inject additional steps in the recursion. This allows to go from recursion to dynamic programming in a structured way. This exemple is a bit contrived, as there are no overlapping subproblems, which would be the case in more interesting problem (dtw etc..)

    3 people like this

    Posted: 11 years ago by Nicolas2