Skip to content
View rdgd's full-sized avatar
Block or Report

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

  1. twly twly Public

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

    JavaScript 47 2

  2. scryfall-clj scryfall-clj Public

    Client for accessing the Scryfall API

    Clojure 1

  3. Clone All GitHub Repos for User 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 "... Toggle switch that doesn't require "for" attribute on label (ideal for many dynamically generated rows)
    1
    input {
    2
      display: none;
    3
    }
    4
    
                  
    5
    .capsule {
  5. trimax trimax Public

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

    Clojure

  6. Babashka version bump utility. Will ... Babashka version bump utility. Will increment semantic version in pom.xml and added a new structured changelog map to changelog file. File extension added for syntax highlighting, can remove.
    1
    #!/usr/bin/env bb
    2
    
                  
    3
    (defn inc-ver
    4
      [ver mode]
    5
      (let [[major minor bugfix] (map #(Integer. %) (clojure.string/split ver #"\."))