- This bootcamp is a guide for self-directed learning and critical thinking.
- It's not a step-by-step instruction course.
- Topics highlight key concepts and best practices.
- Take notes and explore topics further on your own.
- Focus on building skills for quality software development.
- Collaboration and teamwork are encouraged.
This file contains hidden or 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
// Color customisation complemetry to monokai, and window colors | |
"workbench.colorCustomizations": { | |
"activityBar.inactiveForeground": "#f3fef252", | |
"diffEditor.insertedTextBackground": "#a6e22e2c", | |
"diffEditor.removedTextBackground": "#f926735d", | |
"editor.background": "#1c1d18", | |
}, | |
// VSCode window | |
"window.title": "${dirty}${rootName}$${separator}${activeEditorShort}", |
This file contains hidden or 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
[merge] | |
tool = kdiff3 | |
[diff] | |
guitool = kdiff3 | |
[core] | |
editor = notepad | |
autocrlf = true | |
[user] | |
name = username | |
email = [email protected] |
This file contains hidden or 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
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
syntax on |