developer roadmaps -- roadmap.sh // study guides for developers
quickref.me // recommended
devhints.io
shecodes -- frontendcheatsheets.com
softwareByAndi/useful-programming-resources
svelte tutorial
svelte docs
html best practices -- webfx.com
html best practices -- kinsta.com
html caracters reference -- quickref.me
screen resolutions - quickref.me
css-flexbox poster -- css-tricks.com
a complete guide to css grid -- css-tricks.com
css-flexbox ref -- devhints.io
css-grid ref -- devhints.io
flexbox zombies game -- mastery.games
tailwindcss (post compiled micro classes) -- tailwindcss.com
html import tailwindcss cdn:
<script src="https://cdn.tailwindcss.com"></script>
css animation quick reference -- quickref.me
css animation -- w3schools.com
css animation-name property -- w3schools.com
css animation keyframes -- w3schools.com
css animation 24 creative examples -- blog.hubspot.com css timing functions -- w3schools.com
javascript -- shecodes.com
lazy javascript shortcuts -- devhints.io
download Node.js / npm -- nodejs.org
npm -- devhints.io
nvm (node version manager) -- cybertooth.io
python -- devhints.io
python -- pythoncheatsheet.org
numpy -- pdf
pandas -- pdf
pip -- opensource.com
bash -- devhints.io
bash shell -- pdf
a very thorough bash reference -- oit.ua.edu/pdf
bash guide -- mywiki.wooledge.org
markdown best practices -- markdownguide.org
markdown -- quickref.me
unix cmd (thorough reference) -- academy.delmar.edu
cmd stuff -- devhints.io
windows cmd quick reference -- serverspace.us
cmd for cisco, juniper, alcatel, & Huawei systems -- ipcisco.com
type the following into your terminal to create a new application
npm init svelte@next appName
cd appName
npm i
optional : if you want to add tailwind:
npx svelte-add tailwindcss
npm i
to build the source
npm run build
to run the source
npm run dev