Links

Search This Blog

June 28, 2022

JS shuffle 2

 function shuffle2(a){
  var alen = a.length;
  var i = 0;
  var temp;
  while(i < alen){
     var c = Math.floor(Math.random()*alen);
     temp = a[c];
     a[c] = a[i];
     a[i] = temp;
     i++;
  }
 return a;
}

June 23, 2022

Morse Encoder - Decoder Translator v0.01



Translate

Notice: When doing conversion back it converts text to lower case. Uncoded morse characters are not coded in morse but rather left in its original state unless it has dots and/or dashes.

-Work on space back to original June 27 2022
-Add custom morse codes

I'll fix these as soon as I find some time for it...

June 21, 2022

Short poem

I am the will of emperor.

I am the light of immortality.

I am carved in stone.

I am sky of blue.

June 04, 2022

Green Classical Digital Counter Images

Since I couldn't make product of it in a way I wanted it to, I am giving this away for free.

There should be total of 128 BitMaP files in ZIP. It weights about 135.9 KB when unzipped.

You can make requests which one colors do you want me to upload.

If you want know more about what I had in mind to do with this please comment or send me an email.

Here's code in python

Examples