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

Highlights

  • Pro

Organizations

@sarangidea
Block or Report

Block or report kemalelmizan

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

  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 120k 17.2k

  5. denoland/deno denoland/deno Public

    A modern runtime for JavaScript and TypeScript.

    Rust 93.1k 5.1k

  6. mock mock Public

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

    TypeScript