Skip to content
View kemalelmizan's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@sarangidea

Block or report kemalelmizan

Report abuse

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

Report abuse
kemalelmizan/README.md

I code outside of work.

  • 🔭 I’m currently working on Svelte, Typescript and Deno projects.
  • 🌱 I’m currently learning Ruby and Clojure.
  • 👯 I’m looking to collaborate on interesting js/ts and golang projects.
  • 🤔 I’m looking for help dealing with benign impostor syndrome.
  • 💬 Ask me about my day.
  • 📫 How to reach me: send email to kemal@elmizan.com
  • 😄 Pronouns: he/him/his
  • ⚡ Fun fact: updating this README.md is counted in contribution activity.

Pinned Loading

  1. CORS Test CORS Test
    1
    x = new XMLHttpRequest()
    2
    x.onerror = (e) => console.log(e, x)
    3
    x.open('GET', 'https://jsonplaceholder.typicode.com/todos/1')
    4
    x.setRequestHeader('Accept', 'application/json')
    5
    x.send()
  2. Extract all URLs Extract all URLs
    1
    urls = []
    2
    $$('*').forEach(e => { urls.push(e?.src, e?.href, e?.url) })
    3
    console.log(...new Set(urls))
  3. Setup go in ~ Setup go in ~
    1
    VER="1.16.5"
    2
    PREV_VER="1.16.3"
    3
    
                  
    4
    sudo rm /usr/bin/go
    5
    curl -O https://dl.google.com/go/go1.16.5.linux-amd64.tar.gz
  4. golang/go golang/go Public

    The Go programming language

    Go 132k 18.8k

  5. denoland/deno denoland/deno Public

    A modern runtime for JavaScript and TypeScript.

    Rust 106k 5.9k

  6. mock mock Public

    no-dependency API server with 1 file configuration; live-reloads on API config changes

    TypeScript