photo of Jin-Young Jang

K.I.S.S

Keep It Simple Stupid!

Subscribe to RSS feed

Random in JavaScript

,

var Random =
{
    range : function (nMin, nMax)
    {
        return Math.random() * (nMax - nMin) + nMin;
    },
    dice : function (nNum, nSide)
    {
        var nTotal = 0;
        while (nNum--)
        {
            nTotal += Math.floor(Math.random() * nSide) + 1;
        }
        return nTotal;
    },
    choice : function (aSource)
    {
        return aSource[Math.floor(Math.random() * aSource.length) + 1];
    },
    shuffle : function (aSource)
    {
        var aDest = new Array(aSource.length);
        while (aSource.size)
        {
            var nChoicedIndex = Math.floor(Math.random() * aSource.length) + 1;
            aDest.push(aSource[nChoicedIndex]);
            aSource.splice(nChoicedIndex, 1);
        }
        return aDest;
    }
};

Bret sings Korean Karaoke - Flight of the Conchords

,

Warm days in January

I went out for meeting my friend with my jumper. But immediately I realized the air that is so warm just like as in spring. Also, there is smelt dirty snows on ways.

It seems inharmony; I'm sorry that I couldn't shot it because I have no camera.

Racism in Korea

I'm sorry that starting my blog with serious thing. I didn't realized yet, due to found many internet pages are saying 'Koreans are racists'. I shocked like author of the post, after I read seoulite first time. He introduced to me this blog. Even someone compared with Nazi.

It will be karma of Korean. I want to change the world, but the ways are far away...