⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
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
# 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
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
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
aluminium | |
kerfuffle | |
shenanigans |
- 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 { |
OlderNewer