Collection of projects I'm doing while working through the Free Code Camp full stack web developer certifications.
- Build a Tribute Page | Requirements | Demo | Source Code
- Build a Personal Portfolio Page | Requirements | Demo | Source Code
# editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
for /r %x in (*.pack) do .\bin\unpack200 -r "%x" "%~dx%~px%~nx.jar" |
// The cross-browser way to check if the document has loaded in pure JavaScript is using readyState. | |
if (document.readyState === 'complete') { | |
// The page is fully loaded | |
} | |
// You can detect when the document it's ready... | |
let stateCheck = setInterval(() => { | |
if (document.readyState === 'complete') { | |
clearInterval(stateCheck); | |
// document ready |
body { | |
background: #222 !important; | |
color: #969696; | |
} | |
code { | |
padding: 2px 4px !important; | |
} | |
a:hover { | |
color: #999; | |
} |
@-moz-document domain("mediawiki.org"), domain("wikipedia.org"), domain("wikimedia.org"), domain("wikinews.org"), domain("wikibooks.org"), domain("wikiquote.org"), domain("wikiversity.org"), domain("wikisource.org"), domain("wiktionary.org"), domain("wikimediafoundation.org"), domain("toolserver.org"), domain("wikia.com"), domain("wikihow.com"), domain("wikileaks.org"), domain("wikimapia.org") { | |
html, | |
body, | |
div#mw-head, | |
#firstHeading, | |
div#content, | |
div.vectorTabs li.selected a, | |
div.vectorTabs li.selected a:visited, | |
div.vectorTabs span > a, |
body { | |
background-color: #101010 !important; | |
color: #fff !important; | |
} | |
.my-courses .my-courses-header { | |
background-color: #333 !important; | |
color: #ccc; | |
} | |
.curriculum-navigation { | |
background-color: #333 !important; |
body { | |
background-color: #111; | |
color: #efefef; | |
} | |
label, | |
legend { | |
color: white; | |
} | |
.primary-navbar.navbar.navbar-default.navbar-condensed { | |
background-color: #333 !important; |
<?php | |
function create_data_uri( $file, $mime ) { | |
$contents=file_get_contents( $file ); | |
$base64=base64_encode( $contents ); | |
echo "data:$mime;base64,$base64"; | |
} | |
?> |
Collection of projects I'm doing while working through the Free Code Camp full stack web developer certifications.