This repository is a landing pad for code snippets, theoretical practice,
syntactic examples as well as various markup angles aspects.
Also included will be semantic explanation and documentation in regards to the specific example or excerpt.
Language | Repository | This Document |
---|---|---|
C# |
C# Folder | C# Document |
C++ |
C++ Folder | C++ Document |
CSS |
CSS Folder | CSS Document |
JavaScript |
JS Folder | JavaScript Document |
JS_Libraries |
JS Libraries | JS Libraries Document |
###C Sharp Section
var a = "C# string variable";
a.ToString();
###C++ Section
//TODO: learn C++ so I can place an example here :)
###CSS Section
@media screen and (min-width: 480px) {
body {
background-color: green;
color: yellow;
}
}
###JavaScript Section
let thereBeLight = (function () {
let me = new SuperHero();
let allPowers = ["earth", "rain", "wind", "fire"];
function getPowers(...allPowers) {
for (let aP of allPowers) me.Power += aP; //debug this, might be out of scope
}
})();
###JS Libraries Section