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

Organizations

@gomatic @kubematic

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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)

Speaks: go/simply python/rapidly bash/compositely guile/slyly

Pinned Loading

  1. uplang/spec uplang/spec Public

    Unified Properties Specification - Declarative syntax. Better than YAML, TOML, JSON, and definitely HTML/XML

    SCSS 1

  2. gloo-foo/framework gloo-foo/framework Public

    Gloo Foo - The power of shell pipes glue, pure Go

    Go 1

  3. yupsh/.github yupsh/.github Public

    Yup Shell - CLI power and simplicity, Pure Go

  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. 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='' ... ).