Uncategorized

Lazy evaluation in Javascript

By Vlastimil Adamovsky

The same problem solved in Javascript.
A sample code is shown below:
//*********begin lazy implementation************”
function lazy(funToRun)
{
var myRun = function() {
var res = funToRun();
myRun = function() { return res; }
»

Programming challenge - have fun #2

By Vlastimil Adamovsky

If you are tired of  “monkey coding”, try to solve some interesting problems.
Requirement: There is an array of integers  from 1 to n.    1 and only 1 number is missing. It means an array of numbers from 1 to n has size of  n - 1 because one number is missing for sure.
Please, send… »

Changing directions…

By admin
thm_butterfly_cartoon_3

While working on Ironglue, I realized, that really, the software are  many pieces of generic stuff  glued together. Thus, you will find here articles which will be not only the IronGlue project related but also about all other things that make this project possible or the other way around ..
So, don’t be surprised, if you’ll find… »