Links

Search This Blog

February 13, 2024

Counting Apples v0.33

Text


Substring

Case Insensitive

Counted

0

time(s).

January 24, 2024

ROT-X v0.3333

Custom ROT

Make sure length of character set is of even number and consisted of unique symbols.









Character set:


Text to be encoded/decoded:






It's not usual ROT-13.
It seems it supports unicode too.

More info
https://www.rot13.com/
https://en.wikipedia.org/wiki/ROT13
ROT-13 in BrainFuck (Esoteric Programming Language)

December 12, 2023

Hex to Text Converter v0.03

When transforming ASCII hex values in text it follows this rules:

  1. If finds empty spaces removes them
  2. If not in hex range 0 to F ignores what's not in range.

Might add option just for ASCII

Text:


ASCII




Hex values:


December 02, 2023

Not in list

function includes(item,list){
  for(var i = 0; i < list.length; i++){
    if(list[i] === item){
      return true;
    }
  }
  return false;
}

function Not_In_List(x){
  x = x.split("\n");
  var result = [];
  var i = 0;

  for(; i < x.length; i++){
    if(!includes(x[i],
result)) result.push(x[i]);
  }
  return result.join("\n");
}