- Install Git: https://git-scm.com/
- Install Git Large File Storage: https://git-lfs.github.com/
- Create a Github account: https://github.com/
- Install the Github desktop app (not required if using command line): https://desktop.github.com/
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
/* | |
Extension to convert hex color to color that can be used with SwiftUI | |
Usage example: | |
let myColor = "#F8CC45" | |
RoundedRectangle(cornerRadius: 10) | |
.fill(Color(hex: myColor)) | |
*/ | |
extension Color { |
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
aluminium | |
kerfuffle | |
shenanigans |
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
gee-off | |
geff | |
goff | |
george | |
jiff | |
joff | |
greg |
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
Show hidden characters
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"trim_trailing_white_space_on_save": true, | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true, | |
"detect_indentation": false, | |
"use_tab_stops": true |
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
# uncomment this if your display has a black border of unused pixels visible | |
# and your display can output without overscan | |
disable_overscan=1 | |
# uncomment the following to adjust overscan. Use positive numbers if console | |
# goes off screen, and negative if there is too much border | |
overscan_left=22 | |
overscan_right=38 | |
overscan_top=-22 | |
overscan_bottom=-24 |
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
.button { color: black; } |
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
<div class="box"> | |
<div class="box-top"></div> | |
<div class="box-body"> | |
<div class="heading"> | |
<h1>Introduction</h1> | |
</div> | |
<div class="content"> | |
<p>The passion for play is probably as old, and will be as enduring, as the race of man. Some of us are too timid to risk a dollar, but the percentage of people in this feverish nation who would not enjoy winning one is very small. The passion culminates in the professional. He would rather play than eat. Winning is not his sole delight. Some one has remarked that there is but one pleasure in life greater than winning, that is, in making the hazard.</p> | |
</div> | |
</div> |
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
#Nashville Weather in 1981 | |
weather1981 <- read.csv('wunder-data-1981.txt', sep=',', header=TRUE) | |
high_colors <- c() | |
for (i in 1:length(weather1981$tmax)) { | |
if (weather1981$tmax[i] > 80) { | |
high_colors <- c(high_colors, '#CC0000') | |
} else { | |
high_colors <- c(high_colors, '#9ACC78') |
NewerOlder