Links

Search This Blog

May 28, 2022

Number Cruncher v0.01

Chrset


Text






May 23, 2022

Emulated this from YouTube Video

Saw some video on YouTube before a year or two? ...and tried to emulate one task from it. It was some old anime. Called something like...Haruko?
Wrote this in Python first then C with help from YouTube, StackOverFlow and knowledge before.
It's a very simple task.
Print some text then print randomly from 1 to 10 same space characters. 1-10 space(s).
Used Linux for compiling C code.

I believe that gcc stands for GNU C Compiler.



If you want to compile C file on Linux and run it, these are commands (in terminal if you are in same directory where's file haruko.c):

"gcc haruko.c -o haruko" - will compile your text file with extension c into haruko binary file
"./haruko" - will run it

gcc haruko.c -o haruko
./haruko


Oh, BTW to close running program use CTRL + c

May 20, 2022

ASCII TO DEC ASCII

ASCII Text:




Dec ASCII:



Thanks to YouTube and Master Boot Record - https://www.youtube.com/watch?v=0GFE0P3PfUU

Most Wanted Letter

Input text in text box and find out which letter is most frequent in given text. This is task from CheckIO. You can run this locally on your computer. Here's the MWL v2.5.1.

May 14, 2022

Filter v0.2

Possible errors have been made. So use with caution.

In order to use 4 buttons:
  1. ASCII Numbers
  2. Capital ASCII Latin Letters
  3. Small ASCII Latin Letters
  4. ASCII Basic Symbols
Click on button that says Enable Buttons then buttons will work once, after that repeat process if necessary.










Chrset to filter








May 03, 2022

Replac0r v0.01

Replac0r goes through given text and replaces all numbers randomly from 0-9.

Text


Any else digit but given digit



Text with replaced digits


May 02, 2022

KeyBoard Shift Code v0.05

Mysterious entity on internet helped me
to make this code work properly. 

This shifts your text for one place in
right/left direction like on QWERTY keyboard.

QWERTYUIOP
ASDFGHJKL
ZXCVBNM
Keyboard structure


Original text




LEFT/RIGHT

Transformed text


If you find that this isn't working properly, please let me know.