Jaakuuta's Contributions
Below are the tutorials, code snippets, and resources Jaakuuta has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Fun with J in Other Language Tutorials (Last Comment: Jaakuuta, Views: 1,329)
J tutorial II in Other Language Tutorials (Last Comment: Jaakuuta, Views: 7,116)
Code Snippets
Submitted: September 26, 2009        Views: 842
Composes one function into another function.
Fork Combinator in Scheme by Jaakuuta
Submitted: September 26, 2009        Views: 557
This combinator takes three functions. The first function takes two arguments, and the second and third functions each take one argument. This combinator then generates a new function that applies the first function to the result of the application of the second and third function on the following argument.
Submitted: September 26, 2009        Views: 544
Generates a partially completed function that can be used to apply some functionality to other arguments
Submitted: September 26, 2009        Views: 611
This combinator will generate a quadratic expression of the form ax^2 + bx + c without using any bound variables.
Submitted: July 18, 2009        Views: 634
Defines a function that applies a function to each element of a list, then constructs a new list containing the results.
Swap Combinator in Scheme by Jaakuuta
Submitted: September 26, 2009        Views: 894
Takes a function to be applied to two arguments that follow it, then swaps those arguments.
Submitted: September 14, 2009        Views: 539
creates a tacit monadic factorial function