-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
110 lines (103 loc) · 5.1 KB
/
resources.html
File metadata and controls
110 lines (103 loc) · 5.1 KB
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
<html>
<head>
<title>Zig Stuff Online</title>
<meta name="author" content="%AUTHOR">
<meta name="keywords" content="ZIG, Programming, Blog">
<meta name="description" content="A Blog on Programming in ZIG">
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/atom-one-dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/languages/zig.min.js"></script>
<script>hljs.highlightAll();</script>
<style>
body {
background-color: #222831;
color: #DFD0B8;
a:link {color:#948979;}
a:visited {color:#948979;}
a:hover {color:#948979;}
a:active {color:#948979;}
}
h3, h2, h1 {
font-weight: 800;
}
h1 {
text-decoration: underline;
text-align: center;
font-size: 2.5rem;
padding-bottom: 3rem;
}
h2 {
text-decoration: underline;
font-size: 2rem;
}
h3 {
text-decoration: underline;
font-size: 1.5rem;
}
h4 {
text-decoration: underline;
font-size: 1rem;
}
pre {
padding-top:1rem;
padding-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row h-100">
<div class="col-2" id="sidebar" style="background-color: #393E46;padding-top: 1%; border-right: 1px solid #948979;">
<p style="text-align: center;"><a href="/" ><img class="rounded-circle" src="/images/angryface.jpg" width="150" height="150"></a><h2 style="text-align: center;">Zig Stuff Online</h2><hr></p>
<nav class="class=flex-column flex-grow-1 w-100 ps-0" style="font-weight: 800;">
<a class="nav-link active" aria-current="page" href="/"><i class="bi bi-house-heart-fill" style="padding-right:2%;"></i> Home</a>
<a class="nav-link" href="/blog/"><i class="bi bi-cup-hot-fill" style="padding-right:2%;"></i> Blog</a>
<a class="nav-link" href="/snippets/"><i class="bi bi-clipboard-heart-fill" style="padding-right:2%;"></i> Code Snippets</a>
<a class="nav-link" href="/resources.html"><i class="bi bi-box2-heart-fill" style="padding-right:2%;"></i> Resources</a>
<a class="nav-link" href="/about.html"><i class="bi bi-info-circle-fill" style="padding-right:2%;"></i> About</a>
</nav>
</div>
<div class="col-10" style="padding-top: 2%;">
<div class="container-fluid h-100" style="width:75%">
<!-- %BODY_HEADER% -->
<div class="row">
<h1>Zig Links</h1>
<h2>'Official' Links</h2>
<ul>
<li><a href="https://ziglang.org/">Zig Language Homepage</a></li>
<li><a href="https://ziglang.org/documentation/master/">Zig Documentation</a></li>
<li><a href="https://ziglang.org/documentation/master/std/">Zig Standard Library Documentation</a></li>
<li><a href="https://github.com/ziglang/zig/wiki/Community">Zig Community Links</a></li>
</ul>
<h2>Other Learning Resources</h2>
<ul>
<li><a href="https://zigbyexample.github.io/">Zig by Example</a> - Nice examples for how to do specific things</li>
<li><a href="https://ziglearn.org/">learnzig.org</a> - A good introduction to programming in zig</li>
<li><a href="https://zig.guide/">zig.guide</a></li>
<li><a href="https://codeberg.org/ziglings/exercises/">ziglings</a> - Learn zig by fixing tiny programs with errors</li>
<li><a href="https://github.com/WWelna/zig-stuff">Zig Stuff</a> - Zig programs I wrote to learn how to program in zig</li>
<li><a href="https://pedropark99.github.io/zig-book/">Introduction to Zig by Pedro Duarte Faria</a></li>
<li><a href="https://github.com/zigcc/awesome-zig">Awesome Zig</a></li>
</ul>
<h2>Things I Like</h2>
<ul>
<li><a href="https://github.com/jedisct1/zig-minisign">Zig Minisign</a></li>
<li><a href="https://github.com/zigzap/zap">Zap</a></li>
<li><a href="https://github.com/Hejsil/zig-clap">zig-clap</a></li>
<li><a href="https://github.com/zigcc/zig-msgpack">zig-msgpack</a></li>
<li><a href="https://github.com/raylib-zig/raylib-zig">raylib-zig</a></li>
<li><a href="https://github.com/zig-gamedev">zig-gamedev</a></li>
<li><a href="https://github.com/marlersoft/zigwin32">zigwin32</a></li>
<li><a href="https://github.com/CX330Blake/Black-Hat-Zig">Black-Hat-Zig</a></li>
</ul>
</div>
</div><!-- container fluid -->
</div><!-- col-10 -->
</div> <!-- Row -->
</div><!-- container-fluid -->
</body>
</html>