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

Block or report pinealan

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. dotfiles dotfiles Public

    Dotfiles of a vim + tmux + bash setup. Managed with GNU Stow.

    Vim Script 6 2

  2. niddle niddle Public

    nREPL middleware that prints "eval"-ed forms on server stdout

    Clojure 5 2

  3. PixelMap compression contest submission PixelMap compression contest submission
    1
    /* Pair of compress/decompress functions for hex-triplet encoded web safe 16x16 image.
    2
     *
    3
     * Uses max Brotli quality for max compression ratio, trading off computation
    4
     * time. Assumes lower case image string input and produces lower case output.
    5
     *
  4. Diff installed packages between nix ... Diff installed packages between nix generations
    1
    #!/usr/bin/env bash
    2
    # From https://github.com/pinealan/dotfiles
    3
    
    
    4
    nix-list() {
    5
        nix-env --list-generations
  5. Direnv hook with summary on exported... Direnv hook with summary on exported env variables
    1
    direnv_hook() {
    2
        local previous_exit_status=$?;
    3
        # eval "$(direnv export bash)";
    4
        eval "$(direnv export bash 2> >( \
    5
            awk '
  6. Parse git log stats and give an over... Parse git log stats and give an overview of daily repo changes
    1
    #!/bin/bash
    2
    
    
    3
    OPT=""
    4
    AUTHOR=""
    5