Skip to content
View rdgd's full-sized avatar

Block or report rdgd

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

Pinned Loading

  1. twly Public

    Wanna get DRY? Static analysis tool for detecting repeat code.

    JavaScript 47 1

  2. scryfall-clj Public

    Client for accessing the Scryfall API

    Clojure 1

  3. Clone All GitHub Repos for User
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    RES=$(curl https://api.github.com/users/rdgd/repos | grep ssh_url | awk '{ print $2}')
    4
    STRIPPED=${RES//"\""}
    5
    IFS=', ' read -r -a array <<< $STRIPPED
  4. Toggle switch that doesn't require "...
    1
    input {
    2
      display: none;
    3
    }
    4
    
                  
    5
    .capsule {
  5. trimax Public

    Simple batteries included browser history/navigation solution for Clojurescript SPA's

    Clojure

  6. Babashka version bump utility. Will ...
    1
    #!/usr/bin/env bb
    2
    
                  
    3
    (defn inc-ver
    4
      [ver mode]
    5
      (let [[major minor bugfix] (map #(Integer. %) (clojure.string/split ver #"\."))