Skip to content
View 4i8's full-sized avatar
🚬
Algorithmic
🚬
Algorithmic

Organizations

@blinet
Block or Report

Block or report 4i8

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
4i8/README.md

Algorithmic 🎩🃏

SKILLS

My Skills


#!/bin/bash
binary_string="01000011 01101111 01100100 01100101 00100000 01101001 01110011 00100000 01110100 01101000 01100101 00100000 01100011 01101001 01100111 01100001 01110010 01100101 01110100 01110100 01100101 00100000 01110100 01101000 01100001 01110100 00100000 01101110 01100101 01110110 01100101 01110010 00100000 01101100 01100101 01100001 01110110 01100101 01110011 00100000 01101101 01111001 00100000 01101000 01100001 01101110 01100100 "

# Split the binary string into an array
binary_array=($binary_string)

# Initialize an empty variable for the text
text=""

# Iterate through the binary values and convert to text
for binary_value in "${binary_array[@]}"; do
   # Convert binary to decimal and then to ASCII character
   decimal_value=$((2#$binary_value))
   text+=$(printf "\\$(printf '%03o' "$decimal_value")")
done

# Print
echo -e "\"$text🚬\"\n- Arth\n"

OUTPUT

Code is the cigarette that never leaves my hand🚬
- Arth

Pinned

  1. clinei clinei Public

    clinei is a library that provides a command line interface handler to make it easy to build CLI programs.

    TypeScript 8

  2. QuranBot QuranBot Public

    Quran bot. To play surahs from the Holy Quran in audio channels and remind prayer times with the support of many cities.

    JavaScript 27 28

  3. trymore trymore Public

    This function helps you handle errors in a flexible and customizable way, allowing you to retry operations by passing a new callback to the trymore method.

    TypeScript