Skip to content

Instantly share code, notes, and snippets.

View jasonleewilson's full-sized avatar
🎯
Focusing

Jason Lee Wilson jasonleewilson

🎯
Focusing
View GitHub Profile
@jasonleewilson
jasonleewilson / .bash_profile
Created February 10, 2017 21:24 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@jasonleewilson
jasonleewilson / README.md
Last active November 20, 2021 08:38 — forked from hofmannsven/README.md
Cheatsheet - Git
@jasonleewilson
jasonleewilson / youtube-iframe-crossbrowser.html
Last active November 20, 2021 08:39
HTML - YouTube-iFrame-Crossbrowser
<iframe width="560" height="315" src="https://www.youtube.com/embed/ZfmklyN_mlw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen">
</iframe>
@jasonleewilson
jasonleewilson / reset-2022.css
Last active November 20, 2021 08:01
CSS - Reset 2021
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
Brew Help:
Display the version of Homebrew.
$ brew --version
Print Help Information
$ brew help
Print Help Info for a brew command
$ brew help <command>
*, *::before, *::after {
box-sizing: inherit;
padding: 0;
margin: 0;
}
html {
box-sizing: border-box;
}
/*
####################################################
M E D I A Q U E R I E S
####################################################
*/
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 4 breakpoints
*/
/*
####################################################
M E D I A Q U E R I E S
####################################################
*/
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 5 breakpoints
*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
position: absolute;
top: 50%;
transform: translateY(-50%);