Skip to content
View abishek's full-sized avatar
Block or Report

Block or report abishek

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

Abishek Goda

Hey there! While you are here, feel free to look around my repos. A good portion of it is unfinished code 😄

Preferred Programming Languages

  • Common Lisp
  • Python
  • Clojure

Useless Stuff About Me

  • Monkey brained. It's sometimes difficult to follow along - even for myself
  • Obsessed with information. Not an info-geek though.
  • Hate the news. I've "detoxed" from news over the last few years
  • Want to be creative. But my motor functions don't agree. So when I draw, I see art - you'll see scribbles
  • Loves earth shades. Hates strong colours
  • Mild mannered. Slow to thank, fast to apologise
  • My strongest opinion is to not have an opinion. What's true today could very well be taboo tomorrow and probably was yesterday.

Pinned

  1. fishbone-diagram-angular fishbone-diagram-angular Public

    Fishbone Diagrams using D3JS in Angular 12

    TypeScript 5 2

  2. notebooks notebooks Public

    All my python notebooks for whatever little ml and nlp I do.

    Jupyter Notebook

  3. cows-and-bulls-web cows-and-bulls-web Public

    Cows and Bulls - a wordle style number game.

    HTML

  4. A simple defun to split a space sepa... A simple defun to split a space separated string into individual word strings. "one two three" into ("one" "two" "three") so to say.
    1
    (defun split-sentence-to-words (sentence)
    2
      (let ((word '()))
    3
        (loop for ch across sentence
    4
              if (member ch '(#\space #\tab #\,))
    5
                collect (coerce (reverse word) 'string) into words and do (setf word '())
  5. A quick piece of code to read .env f... A quick piece of code to read .env files. A line beginning with a # is treated as a comment. When this grows, I plan to make a separate project and push into quicklisp.
    1
    (defun load-env (pathname)
    2
      (with-open-file (stream pathname)
    3
        (read-env stream)))
    4
    
                  
    5
    (defun read-env (stream)