Skip to content

Instantly share code, notes, and snippets.

View RobertoMachorro's full-sized avatar

Roberto Machorro RobertoMachorro

View GitHub Profile
@RobertoMachorro
RobertoMachorro / startdb.md
Last active September 7, 2022 08:32
Setup New Database with User

Setup New Database with User

MySQL

SHOW DATABASES;

CREATE DATABASE IF NOT EXISTS vapor_database
CHARACTER SET utf8
COLLATE utf8_unicode_ci;
@RobertoMachorro
RobertoMachorro / Issue_Template.md
Created April 28, 2020 15:27
A generic template for Issues

Requirement Description/Specification

As a USER, I want FEATURE, so that PROBLEM RESOLVED.

Details go here about what the stakeholders are requesting, identifying the stakeholders is helpful.

Functional Description/Specification

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.

@RobertoMachorro
RobertoMachorro / context.yaml
Created March 10, 2020 20:40
GitHub Actions Dump Context Snipped
# Source: https://github.community/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"
@RobertoMachorro
RobertoMachorro / .vimrc
Last active September 17, 2019 18:43
Basic VIMRC Config
" Roberto's VIMRC
" http://vimdoc.sourceforge.net/htmldoc/options.html
" :opt
set nobackup
set autoread
set ruler
set showcmd
set ff=unix
@RobertoMachorro
RobertoMachorro / .emacs
Last active September 15, 2020 00:23
My Emacs Config
;; 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