Skip to content

Latest commit

 

History

History
160 lines (115 loc) · 6.53 KB

File metadata and controls

160 lines (115 loc) · 6.53 KB

links to useful programming reference sheets and websites


useful websites

developer roadmaps -- roadmap.sh // study guides for developers

quickref.me // recommended
devhints.io
shecodes -- frontendcheatsheets.com

softwareByAndi/useful-programming-resources
svelte tutorial
svelte docs

tailwindcss
css-tricks.com/guides

free books and notes for professionals


subject specific reference sheets

vscode

vscode shortcuts -- devhints.io

terminals

powershell download for windows users

html5

html5 -- quickref.me
html5 -- pdf
html5 -- shecodes.com

html best practices -- webfx.com
html best practices -- kinsta.com

html caracters reference -- quickref.me
screen resolutions - quickref.me

css

css guides -- css-tricks.com

css -- quickref.me
css -- shecodes.com

material icons
css system fonts -- devhints.io

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

css media-queries -- .css file

tailwindcss (post compiled micro classes) -- tailwindcss.com
html import tailwindcss cdn:

<script src="https://cdn.tailwindcss.com"></script>

css animation

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

sass

sass -- devhints.io

javascript

javascript -- quickref.me

javascript -- shecodes.com
lazy javascript shortcuts -- devhints.io

download Node.js / npm -- nodejs.org
npm -- devhints.io
nvm (node version manager) -- cybertooth.io

python

python -- quickref.me
numpy -- quickref.me

python -- devhints.io
python -- pythoncheatsheet.org
numpy -- pdf
pandas -- pdf
pip -- opensource.com

bash

bash -- quickref.me

bash -- devhints.io
bash shell -- pdf
a very thorough bash reference -- oit.ua.edu/pdf
bash guide -- mywiki.wooledge.org

c++

c++ -- quickref.me

c++ -- github/mortennobel
c++ -- cheatography.com

rust

rust -- quickref.me
rust -- cheat.rs

sql

sql -- pdf
sql join -- devhints.io

git

git education -- pdf

markdwon

markdown best practices -- markdownguide.org
markdown -- quickref.me

command line

cmd (descriptive reference) -- git-tower.com

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

setting up a svelte-kit project

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