Skip to content
View GLMeece's full-sized avatar

Sponsoring

@robotcodedev

Highlights

  • Pro

Block or report GLMeece

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 Loading

  1. nice_title_case_func.py nice_title_case_func.py
    1
    """Nice Title Case Function plus quick demo"""
    2
    
                  
    3
    
                  
    4
    def nice_title_case(str_in: str) -> str:
    5
        """Converts a string to Title Case, with conventional exceptions which
  2. NANO on macOS and Windows NANO on macOS and Windows
    1
    # NANO on macOS and Windows
    2
    
                  
    3
    This should get you up and running with the installation and basic configuration of GNU Nano on both macOS and Windows. In the case of macOS, this will install a newer version of Nano that includes syntax highlighting.
    4
    
                  
    5
    ## macOS Installation
  3. Unicode for Keyboard Symbols Unicode for Keyboard Symbols
    1
    # Unicode for Keyboard Symbols
    2
    
                  
    3
    - ⎋ (escape): `U+238B`
    4
    - ⇥ (tab): `U+21E5`
    5
    - ⇪ (caps lock): `U+21EA`
  4. Docker Cheat Sheet Docker Cheat Sheet
    1
    # Useful Docker Cheat Sheet
    2
    
                  
    3
    ## Random Tips
    4
    
                  
    5
    * If needed, create a `.dockerignore` file to exclude files/paths you don't want. Matching rules are from [Golang's filepath rules](https://golang.org/pkg/path/filepath/#Match), as well as [some unique exceptions](https://docs.docker.com/engine/reference/builder/#dockerignore-file).
  5. Setting up a Virtual Environment for... Setting up a Virtual Environment for Python using VirtualEnvWrapper
    1
    # Virtual Environments
    2
    
                  
    3
    1. Before beginning, you should have a version of **pip** installed. If you don't, it is recommended you install it universally via the Terminal: **`sudo easy_install pip`**
    4
    2. Once you do, install [**virtualenvwrapper**](https://virtualenvwrapper.readthedocs.io/en/latest/index.html): **`sudo pip install virtualenvwrapper`**. More information can be found in [Read the Docs](https://virtualenvwrapper.readthedocs.io/en/latest/)
    5
    3. Change into the directory where your new project is; e.g., **`cd ~/Documents/Repos/my_new_project`**
  6. Leveraging Robot Framework's Documen... Leveraging Robot Framework's Documentation Support
    1
    # Leveraging Robot Framework's Documentation Support
    2
    
                  
    3
    ## Introduction
    4
    
                  
    5
    This is a short tutorial on how to leverage Robot Framework's built-in support for documentation. This documentation can be embedded in test suites, libraries, and other resource files. The markup is fairly simple, and most closely resembles [AsciiDoc syntax](https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/).