Links

Search This Blog

November 14, 2020

Shifting by X v0.1

Text:




November 08, 2020

October 25, 2020

Character filter

Chrset:


Case Insensitive:



Give me some text:


Text without chrset letters:




September 04, 2020

Word Triangle v0.3

Text:


Reverse string:
Upside:
Spaces:



This is little different version
I have took step back with this version to fix initial conflict.

August 23, 2020

Rock Paper Scissors Game v0.7








Inspired by www.thonky.com

August 05, 2020

Round Brackets Checker

Math expression




June 22, 2020

Rice

var i = 0;
var j = 1;
var h = 0;
for(;i<64;i++){
  h += j;
  j *= 2;
}
console.log(h);

Is this the right answer? 18446744073709552000
How is this number even even number?

May 29, 2020

Get Numbers (JavaScript)


Goes through text and extracts only numbers.
 
Input text:




Output text:


May 10, 2020

May 01, 2020

Binary Code - Interface Sound Effects | Sci-Fi Computer Beeps & Data Pro...

I found this video on YouTube.
It has some really cool sound effects and it suits/matches my blog colors.
For more information about this video watch it on youtube. To do that play video and go to right down corner of the video and click YouTube.

Green River - New God (1985)

February 06, 2020

Random Case TeXt v0.13

Text:




Random Case Text:


January 30, 2020

Getting the extension of a file

#last extension

filename = "google.com.py.txt.exe.zip.html"
filename2 = "www.google.com/index.phps"

def get_last_ext(filename):
    filenameb = filename[::-1]
    try:
        only_last_ext = (filenameb[:filenameb.index('.')])[::-1]
    except:
        only_last_ext = ""
    return only_last_ext

def get_last_ext2(filename):
    if '.' in filename:
        return filename[filename.index('.')+1:].split('.')[-1]
    return ""

print get_last_ext(filename)
print get_last_ext2(filename2)

January 14, 2020

MMBN3B - My Fldr1

MMBN3B

Legend:
I - ID
M - MegaChip
S - Selected
T - Type: [F]ire, [W]ater, [G]rass, Neutral[.]
-||- - Same as previous

----------------------------------------------

Fldr1

No. ChipName T I MB   Times

01. HiCannon . J 24MB
02. -||-     . K -||-
03. -||-     . L -||-
04. Sword    . L 10MB
05. WideSwrd . L 16MB
06. LongSwrd . L 24MB
07. RndmMetr F V 28MB X2
08. MetaGel1 W B 18MB
09. -||-     W C -||-
10. -||-     W D -||-
11. Mine     . R 16MB X3
12. Snake    G R 20MB
13. AreaGrab . L 15MB X2
14. -||-     . * -||-
15. Recov200 . V 65MB
16. Geddon1  . * 10MB
17. CopyDmg  . * 18MB
18. Invis    . * 11MB X4
19. AntiDmg  . M 45MB S
20. FullCust . * 10MB M
21. Atk+30   . * 50MB M
22. RollV3   . R 34MB M
23. GutsManV2. G 41MB M


[Update March 20 2024 15:48]