-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (111 loc) · 4.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF=8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link href="assets/css/styles.css" rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<nav>
<a href="#ref">Cheat sheets and References</a>
<a href="#javascript">Javascript</a>
<a href="#opensource">Opensource</a>
<a href="#api">API's</a>
</nav>
<!-- btn below for tobble options-->
<button class="toggle__btn">
<span class="toggle__bar"></span>
</button>
</header>
<section id="javascript">
<a href="https://javascript.info/operators#increment-decrement">Javascript</a>
</section>
<section id="ref">
<h2>Cheat sheets and References</h2>
<a href="'https://overapi.com/javascript">Cheat Sheets (Javascript, python, bash, etc.)</a>
</section>
<section id="opensource">
<a href="https://docs.tooljet.com/docs/">tooljet</a>
<a href="https://the-algorithms.com/">Open-source algorithm Library</a>
</section>
<section id="api">
<h2>API's</h2>
<a href="https://devdocs.io/">https://devdocs.io/ API searchable interface</a>
<a href="'https://overapi.com/javascript">Cheat Sheets (Javascript, python, bash, etc.)</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Reference#index">MDN Reference</a>
<a href="https://learntocodewith.me/posts/code-for-free/#blogs">Learn to code with me</a>
</section>
<section class="free">
<h2>Free/No-Cost</h2>
<h3 class="title">Schools</h3>
<a href="freecodecamp.com">FreeCodeCamp</a>
<a href="https://www.theodinproject.com/">The Odin Project</a>
<a href="https://www.internetingishard.com/">Interneting is Hard</a>
<a href="https://pll.harvard.edu/course/cs50-introduction-computer-science?delta=0">Harvard CS50</a>
<div>
<h3>Books</h3>
<a href="https://eloquentjavascript.net/">Eloquent Javascript</a>
<a href="https://devfreebooks.github.io/">Free Dev Books</a>
</div>
<div>
<h3>Websites/Tools</h3>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/">CSS Tricks</a>
<a href="https://www.kevinpowell.co/newsletter">Kevin Powell</a>
<a href="https://responsivebreakpoints.com/">Responsive Break points</a>
<a href="https://coolors.co/">Create a color palette</a>
<a href="https://v6.robweychert.com/blog/2018/02/v6-color/">Color theory and contrast</a>
<a href="https://12daysofweb.dev/2021/css-animation/ animation and keyframes">Keyframes</a>
</div>
<div>
<h3>Icons/Stock Photos/Fonts</h3>
<a href="#">CSS Tricks</a>
<a href="https://www.cssfontstack.com/Web-Fonts webfonts">Webfonts</a>
<a href="https://www.fontawesome.com/">Icons - Font Awesome Library</a>
<a href="https://getemoji.com/"> Emoji copy and paste</a>
<a href="https://unsplash.com/">Photos</a>
<a href="https://squoosh.app/">Squoosh</a>
</div>
<div>
<h3>Youtube Channels</h3>
<a href="https://www.youtube.com/c/DorianDevelops">Dorian Develops</a>
<a href="https://www.youtube.com/kepowob">Kevin Powell</a>
<a href="https://www.youtube.com/c/Fireship" >FireShip</a>
</div>
<div>
<h3 class="title">Free Software I Use</h3>
<a href="#">InkScape // SVG Editing</a></p>
<a href="#">DaVinci // Video Editing</a></p>
<a href="https://itsfoss.com/gdebi-default-ubuntu-software-center/">Ubuntu/Linux Help</a>
</div>
</section>
<section class="git">
<div>
<h3>GIT</h3>
<a href="https://gist.github.com/cferdinandi/ef665330286fd5d7127d"> Terminal Cheat Sheet</a>
<a href="https://firstcontributions.github.io/">First Opensource Contributions</a>
<a href=" https://www.npmjs.com/package/license">License generator </a>
</div>
<div>
<h3>Books</h3>
<a href=" https://rwd.education/">Responsive Web Design</a>
</div>
</section>
<section>
<div>
<h3>Job Boards</h3>
<a href="https://authenticjobs.com/">Authenticjobs</a>
<a href="https://www.hireher.co/?ref=producthunt">HireHer</a>
<a href="https://www.commonroom.io/uncommon/jobs/">Common Room</a>
<a href="https://www.breakinto.tech/">Break into Tech</a>
</div>
</section>
<script src="assets/js/scripts.js"></script>
</body>
<!-- FOOTER SECTION -->
<footer>
</footer>
</html>