Skip to content

Instantly share code, notes, and snippets.

View simsrw73's full-sized avatar

Randy W. Sims simsrw73

  • Atlanta, GA
View GitHub Profile
@simsrw73
simsrw73 / 00-New setup.md
Created March 4, 2022 17:06 — forked from ericbaranowski/00-New setup.md
New computer setup
# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Eric Baranowski"
git config --global user.email eric@kulado.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
@simsrw73
simsrw73 / library.scss
Created July 11, 2018 04:03 — forked from certainlyakey/library.scss
URL-encode color SASS function / convert color to hex SASS function
//does not work with colors containing alpha
@function encodecolor($string) {
@if type-of($string) == 'color' {
$hex: str-slice(ie-hex-str($string), 4);
$string:unquote("#{$hex}");
}
$string: '%23' + $string;
@return $string;
}