Skip to content
View nicerobot's full-sized avatar
๐Ÿค–
โ˜ฏ๏ธ โ˜ฎ๏ธ ๐Ÿถ ๐Ÿพ ๐Ÿ‘พ ๐ŸŽฎ ๐ŸŽผ ๐ŸŽถ ๐Ÿ•บ ๐ŸŽง ๐ŸŒป ๐ŸŒฑ ๐Ÿž ๐ŸŒŠ ๐ŸŒ” ๐ŸŒŽ
๐Ÿค–
โ˜ฏ๏ธ โ˜ฎ๏ธ ๐Ÿถ ๐Ÿพ ๐Ÿ‘พ ๐ŸŽฎ ๐ŸŽผ ๐ŸŽถ ๐Ÿ•บ ๐ŸŽง ๐ŸŒป ๐ŸŒฑ ๐Ÿž ๐ŸŒŠ ๐ŸŒ” ๐ŸŒŽ

Organizations

@gomatic @kubematic
Block or Report

Block or report nicerobot

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
nicerobot/README.md

Nice software for humans (by humans and friends)

Speaks: go/simply julia(and python)/rapidly bash/compositely kotlin/crossly elixir/functionally guile/slyly

Pinned

  1. gomatic/renderizer gomatic/renderizer Public

    CLI to render Go template text files based on command line parameters and/or a YAML

    Go 53 8

  2. Enumerated shellcheck codes https://... Enumerated shellcheck codes https://github.com/koalaman/shellcheck/wiki/Checks
    1
    - [SC1000](https://github.com/koalaman/shellcheck/wiki/SC1000) $ is not used specially and should therefore be escaped.
    2
    - [SC1001](https://github.com/koalaman/shellcheck/wiki/SC1001) This `\o` will be a regular 'o' in this context.
    3
    - [SC1003](https://github.com/koalaman/shellcheck/wiki/SC1003) Want to escape a single quote? echo 'This is how it'\\''s done'.
    4
    - [SC1004](https://github.com/koalaman/shellcheck/wiki/SC1004) This backslash+linefeed is literal. Break outside single quotes if you just want to break the line.
    5
    - [SC1007](https://github.com/koalaman/shellcheck/wiki/SC1007) Remove space after = if trying to assign a value (or for empty string, use var='' ... ).
  3. gomatic/go-kit-phases gomatic/go-kit-phases Public

    Makefile 2

  4. Self-extracting, encrypted tarballs ... Self-extracting, encrypted tarballs using SSH public keys from GitHub. Because https://ssh-vault.com is awesome but it requires an installation.
    1
    #!/bin/bash
    2
    (( ${#} >= 3 )) || { echo "usage: $(basename ${0}) github-username archive-file [files | directories]"; exit 1; }
    3
    
                  
    4
    exec >${2}
    5
    
                  
  5. Mac OS X uninstall script for packag... Mac OS X uninstall script for packaged install of node.js from https://stackoverflow.com/a/9287292/23056
    1
    To run this, you can try:
    2
    
                  
    3
        curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
    4
        chmod +x ./uninstall-node.sh
    5
        ./uninstall-node.sh
  6. Convert Google Chrome sqlite Cookies... Convert Google Chrome sqlite Cookies into cookies.txt. Useful for utilities like curl.
    1
    sqlite3 -separator '  ' ${COOKIES:-Cookies} \
    2
      'select host_key, "TRUE", path, "FALSE", expires_utc, name, value from cookies'