CR: 8
XP: 4,800
Race: Vampire
Class: Wizard 8
Alignment: Lawful Evil
Environment: Any urban
Organization: Solitary or with 1d4 minions (skeletons or zombies)
This document is a condensed version of this page: https://rubydoc.info/gems/yard/file/docs/Tags.md
YARD is compatible with all RDoc sytax. YARD's power comes from its meta-data syntax, "tags".
Full tag list here: https://rubydoc.info/gems/yard/file/docs/Tags.md#Tag_List
This is a condensed version of this page: https://docs.ruby-lang.org/en/2.1.0/RDoc/Markup.html
=== Headers
outputs: <h3 id="label-Headers">Headers</h3>
download chrome .deb file from https://www.google.com/chrome/
sudo dpkg -i /tmp/mozilla_rubydev0/google-chrome-stable_current_amd64.deb
This was tested on a Mac running 10.13.6 High Sierra.
Why? I wanted to be able to stop a system spec mid-run if I was having issues with it.
On the mac host:
Install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
git log --merges --first-parent master \ | |
--pretty=format:"%h %<(10,trunc)%aN %C(white)%<(15)%ar%Creset %C(red bold)%<(15)%D%Creset %s" | |
Explaining each argument: | |
--merges: only "merge" commits (more than 1 parent); | |
--first-parent master: only merges applied to master. This removes the entries where someone merged master into their branches; | |
--pretty-format: applies the following formatting: | |
%h: the commit short hash; | |
%<(10,trunc)%aN: author name, truncated at 10 chars; | |
%<(15)%ar: the relative commit time, padded to 15 chars; |
There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore
is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules
directory) as well as files that are generated (and regenerated) as artifacts of a build process.
All other files should be in your own global gitignore file. Create a file called .gitignore
in your home directory and add anything you want to ignore. You then need to tell git where your global gitignore file is.
git config --global core.excludesfile ~/.gitignore
git config --global core.excludesfile %USERPROFILE%\.gitignore