Skip to content

Instantly share code, notes, and snippets.

View GLMeece's full-sized avatar

Greg Meece GLMeece

View GitHub Profile
@GLMeece
GLMeece / robocop_rules.txt
Created September 20, 2023 15:53
Robocop Rules List
Rule - 0201 [W]: missing-doc-keyword: Missing documentation in '{{ name }}' keyword
Rule - 0202 [W]: missing-doc-test-case: Missing documentation in '{{ name }}' test case
Rule - 0203 [W]: missing-doc-suite: Missing documentation in suite
Rule - 0204 [W]: missing-doc-resource-file: Missing documentation in resource file
Rule - 0301 [W]: not-allowed-char-in-name: Not allowed character '{{ character }}' found in {{ block_name }} name
Rule - 0302 [W]: wrong-case-in-keyword-name: Keyword name '{{ keyword_name }}' does not follow case convention
Rule - 0303 [E]: keyword-name-is-reserved-word: '{{ keyword_name }}' is a reserved keyword{{ error_msg }}
Rule - 0305 [W]: underscore-in-keyword-name: Underscores in keyword name '{{ keyword_name }}' can be replaced with spaces
Rule - 0306 [W]: setting-name-not-in-title-case: Setting name '{{ setting_name }}' should use title or upper case
Rule - 0307 [W]: section-name-invalid: Section name should be in format '{{ section_title_case }}' or '{{ section_upper_case }}'
@GLMeece
GLMeece / remove_personal_onedrive_listing.md
Last active August 9, 2023 00:55
Remove Personal OneDrive Listing from Windows 10/11

Summary

If you have a company-managed OneDrive account like I do, you probably will never need or want to access a personal OneDrive account. It clutters up the Explorer menu and it's likely that you would prefer not to see it.

How to Stop Personal OneDrive from Being Pinned in Explorer

  1. Open RegEdit (RegistryEditor): type regedit in the start menu and it should come up (select it)
  2. At the top, where it says Computer paste the following to the right of it (i.e., don't delete Computer):

\HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}

@GLMeece
GLMeece / robotframework.code-snippets
Last active August 19, 2023 10:50
Robot Framework VS Code snippets; place in your .vscode directory
{
"Test Suite": {
"prefix": "suite",
"body": [
"*** Settings ***",
"Documentation ${1:What does this testing suite cover?}\n",
"Library String # just an example",
"Library \\${EXECDIR\\}/path/to/CUSTOM_LIBRARY.py",
"Resource \\${EXECDIR\\}/path/to/NAME_OF_ANOTHER.resource\n",
"Suite Setup SETUP_HERE",
@GLMeece
GLMeece / launch.json
Last active March 2, 2023 14:56
Example Launch.json for Robot Framework
{
"version": "0.2.0",
"configurations": [
{
"name": "Robot Framework: Launch Template",
"type": "robotframework-lsp",
"request": "launch",
"terminal": "integrated",
"env": {
"SOME_KEY": "Some value",
@GLMeece
GLMeece / typora_language_support.md
Last active January 4, 2023 22:58
Typora Language Support in Code Fences - Alpha Sorted

Typora Language Support in Code Fences

Typora supports syntax coloring for code fences, and lists those languages on one of its support pages.

However, the list is not alpha sorted, so it's difficult to discover what languages are there unless one tries a ⌘-f/⌃-f to search for it.

I decided to help myself out and sort the list and post it in this Gist.

Sorted List

@GLMeece
GLMeece / nano_install_and_config.md
Last active March 7, 2024 18:02
NANO on macOS and Windows

NANO on macOS and Windows

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.

macOS Installation

Homebrew

It is assumed you already have Homebrew installed. If not, then Verify or Install Apple's Command-line Tools and then proceed with the installation of Homebrew. 🍺

@GLMeece
GLMeece / unicode_for_kbd_symbols.md
Created December 7, 2022 21:07
Unicode for Keyboard Symbols

Unicode for Keyboard Symbols

  • ⎋ (escape): U+238B
  • ⇥ (tab): U+21E5
  • ⇪ (caps lock): U+21EA
  • ⇧ (shift): U+21E7
  • ⌃ (control): U+2303
  • ⌥ (option): U+2325
  •  (Apple): U+F8FF (in some Apple-provided fonts only)
  • ⌘ (command): U+2318
@GLMeece
GLMeece / brew.md
Created September 9, 2022 20:34 — forked from pudquick/brew.md
Lightly "sandboxed" homebrew on macOS

brew is a bad neighbor

This isn't a guide about locking down homebrew so that it can't touch the rest of your system security-wise.

This guide doesn't fix the inherent security issues of a package management system that will literally yell at you if you try to do something about "huh, maybe it's not great my executables are writeable by my account without requiring authorization first".

But it absolutely is a guide about shoving it into its own little corner so that you can take it or leave it as you see fit, instead of just letting the project do what it likes like completely taking over permissions and ownership of a directory that might be in use by other software on your Mac and stomping all over their contents.

By following this guide you will:

  • Never have to run sudo to forcefully change permissions of some directory to be owned by your account
@GLMeece
GLMeece / how_to_import_yaml_variables_into_rf.md
Last active December 9, 2022 15:51
How to Import YAML Variables into Robot Framework

How to Import YAML Variables into Robot Framework

I recently answered this question on the Robot Framework forum.

For switching between runtime environments, my go-to is to create YAML files that encapsulate essential differences between environments. If you focus on just the things that change, then your maintenance load will be lower.

I like YAML because you can represent the 3 primitive data types supported:

  • Scalar
  • List
  • Dictionary
@GLMeece
GLMeece / Robot_Framework_Generate_Documentation_Tutorial.md
Last active December 16, 2022 17:10
Leveraging Robot Framework's Documentation Support

Leveraging Robot Framework's Documentation Support

Introduction

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.

Official Documentation

The official documentation explains the use of the Library documentation tool (Libdoc), its correspondent for Test data documentation (Testdoc), as well as the Documentation formatting syntax. Please use these references as the official word on how to