SHOW DATABASES;
CREATE DATABASE IF NOT EXISTS vapor_database
CHARACTER SET utf8
COLLATE utf8_unicode_ci;
As a USER, I want FEATURE, so that PROBLEM RESOLVED.
Details go here about what the stakeholders are requesting, identifying the stakeholders is helpful.
Explain here how everything is expected to work from a users' perspective, edits can be kept for the record.
Screenshots here are useful. Use sub-headings to split functionality into groups or addendums.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://git.521000.bestmunity/t5/GitHub-Actions/Getting-the-run-id-of-a-run-in-Github-Actions/td-p/36567/page/2 | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: | | |
echo "$GITHUB_CONTEXT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Roberto's VIMRC | |
" http://vimdoc.sourceforge.net/htmldoc/options.html | |
" :opt | |
set nobackup | |
set autoread | |
set ruler | |
set showcmd | |
set ff=unix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Roberto Machorro - Emacs Config File | |
;; PACKAGE ARCHIVES | |
(when (> emacs-major-version 23) | |
(require 'package) | |
(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) | |
(package-initialize) | |
) | |
;; SOURCE CONTROL |