Two days ago I have downloaded and installed new Microsoft Visual C++ 2008 Express. First thing that you see when you start its IDE is the Start Page (close to what you see on the right). I was intrigued how this view is made. That clearly have look and feel of a web page. Some…
Month: November 2007
Talks about HTMLayout
Here is a translation of the interview in Russian I gave to Alexander Sergeev from the HumanoIT. Alexander Sergeev(AS) says: My long time dream – to write a shareware program and sell it through the Internet: cash out, Brazil, Maldives, Tokyo, beaches, skiing, casinos… ahhh. This summer I almost brought it to reality… all thanks…
JavaScript functions, named parameters.
JavaScript does not support named parameters. For example following will not work in JS: var something = foo( one: 1, two: “2” ); As a workaround people use functions that accept single parameter – object reference: var something = foo( { one: 1, two: “2” } ); but I think such notation is not good…