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

Block or report danielcarr

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. hashapass-widget hashapass-widget Public

    A cross-platform GUI implementation of the hashapass password generator, with extensions for more complex passwords

    Python

  2. Mac bash profile Mac bash profile
    1
    # This file would be identical to .profile and isn't needed in addition, it just makes the gist more findable
    2
    # .profile is called if bash will be invoked with the name `sh`, so it's more portable
    3
    # The same or a similar file might also be named .bashrc (for a non-login interactive shell invocation)
    4
    # See the section INVOCATION of `man bash` for the technical nuances of when to use which filename
  3. passwordgenerator passwordgenerator
    1
    #! /usr/bin/env bash
    2
    
                  
    3
    # hashapass.com method for generating passwords
    4
    # based on the script by Simon Elmir at http://hashapass.com/en/cmd.html
    5
    
                  
  4. ANSI Codes for exporting in bash scr... ANSI Codes for exporting in bash scripts
    1
    export CLEAR=`printf '\033[0m'`
    2
    
                  
    3
    # EFFECTS / FORMATTING
    4
    export BOLD=`printf '\033[1m'`
    5
    export DIM=`printf '\033[2m'`
  5. Vim config file Vim config file
    1
    
                  
    2
    colorscheme slate
    3
    
                  
    4
    syntax on "syntax highlighting
    5
    set number "line numbers
  6. PasswordGeneratorApplet PasswordGeneratorApplet Public

    A MATE panel applet for generating pseudo random passwords

    Python