Skip to content
View doersino's full-sized avatar
🐛
Squashing bugs but sparing the cute ones!
🐛
Squashing bugs but sparing the cute ones!

Sponsoring

@samschott
@mstarke

Highlights

  • Pro
Block or Report

Block or report doersino

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

🏡 To find out more about my projects and me-as-a-person, go and visit my website at noahdoersing.com.

📫 Want to get in touch? Feel free to drop me an email to the address that the following JavaScript snippet evaluates to.

((crypt) => {
    const rot13 = c => {
        c = c.codePointAt(0);
        let d = c + 13;
        if (d > (c <= 90 ? 90 : 122)) {
            d -= 26;
        }
        return String.fromCodePoint(d);
    }
    const backwards = s => s.split("").reverse().join("");
    return backwards(crypt.replace(/[a-z]/gi, rot13));
})("zbp.tavferbqunba@vu");

Pinned

  1. aerialbot aerialbot Public

    A simple yet highly configurable Mastodon/Twitter bot that posts geotagged aerial imagery of a random location in the world.

    Python 216 16

  2. markdeep-slides markdeep-slides Public

    Build presentation slides with Markdeep and present them right in your browser.

    JavaScript 167 12

  3. nyum nyum Public

    A simple Pandoc-powered static site generator for your recipe collection – it effortlessly turns a set of Markdown-formatted recipes into a lightweight, responsive, searchable website.

    HTML 176 42

  4. handwriting handwriting Public

    A SQL implementation of an ancient handwriting recognition algorithm.

    TeX 78 8

  5. uji uji Public

    A minimalist generative art thing – press the buttons and play with the sliders!

    JavaScript 182 8

  6. wikipediastats wikipediastats Public archive

    A Haskell-powered Twitter bot that posts milestones and statistics of various Wikipedias.

    Haskell 2