Links

Search This Blog

June 28, 2022

JS shuffle 2

function shuffle2(a){
  var alen = a.length;
  var i = 0;
  var temp;
  while(alen > i){
     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. If you want to decode Morse to text first click on Translate checkbox input Morse code then untick box.

-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 03, 2022

Free Software

Audacity - Audio Editing
Hydrogen - Drum Machine
Wireshark - Packet Sniffing
FireFox - Web Browser
Python - Programming IDE
Zint - Barcode Software
GnuCash - Accounting software
Notepad++ - Code editor
HexChat - Internet Relay Chat software
FileZilla - FTP Client
VirtualBox - Virtual Machine
GIMP - Image processing
Inkscape - Vector image processing
...

virtually everything here listed is free