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

Highlights

  • Pro

Block or report doersino

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 Loading

  1. aerialbot aerialbot Public

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

    Python 228 18

  2. markdeep-slides markdeep-slides Public

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

    JavaScript 182 13

  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 203 51

  4. handwriting handwriting Public

    A SQL implementation of an ancient handwriting recognition algorithm.

    TeX 79 8

  5. uji uji Public

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

    JavaScript 208 7

  6. wikipediastats wikipediastats Public archive

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

    Haskell 2