Skip to content
View TheBooker66's full-sized avatar
💭
Vibin'
💭
Vibin'

Highlights

  • Pro

Block or report TheBooker66

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
TheBooker66/README.md

Hi there 👋

A tad bit about me

I am, first and foremost, a Chemist and Materials Scientist. I also like coding, and I know Js (& Html, css) and Python well. I used to program in C#, Matlab and Java quite a bit, though not anymore, and I have some knowledge of other languages (ASM, C, bash, powershell, AHK), but I'm not proficient in them.

Publicly, I've coded a number of basic websites (checkers, minesweeper, etc.), a Whatsapp bot with a friend (which during its peak was used by more than a thousand concurrent users) and as of now am the sole maintainer of Technion Plus Plus (Technion++, for short). I was also part of a robotics team competing in the FTC league of FIRST Robotics: Everglow#19000.

libera manifesto

Languages I code with (on github, at least)

Top Langs

Have a look around, and if you like what you see, be sure to tell me!

Pinned Loading

  1. Technion-Plus-Plus Public

    Get the Technion's web-experience out of the stone age.

    JavaScript 3 1

  2. ArielYat/Whatsapp-bot-Project Public

    WhatsApp Bot 🌟 - for groups and individuals

    TypeScript 10 3

  3. Translate sentences or words and hea...
    1
    const nodeFetch = require("node-fetch"), request = require("request"), say = require("say");
    2
    
                  
    3
    async function translate(text) {
    4
        text = text.replace(/^Translate to/i).trim();
    5
        //Extracts the text to translated from the text inputted
  4. Copy all text from a pdf file (usefu...
    1
    import pathlib
    2
    import pypdf
    3
    
                  
    4
    # get file, start page, end page from user
    5
    source_file = pathlib.Path(input("Enter the path to the PDF file (without quotes): "))