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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
<!--
* ========================
* ===== ===============
* ====== ================
* ====== ================
* ====== ==== ==== ==
* ====== === == = =
* ====== === = == =
* = === === = == ====
* = === === = == = =
* == ===== ==== ==
* ========================
*
* jozan.org: links.html
* Wed, 19 Oct 2022 13:49:25 +0200
* Joe
*
* The links page
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Joe's links</title>
<meta charset="UTF-8">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Blog and Internet personnal space">
<meta name="keywords" content="developper, dev, sysadmin, sys-admin, blog, articles, tech, tips, UNIX, BSD, FreeBSD, shell, low-level, c, c++, assembly">
<meta name="author" content="Joe Zhan <rrbo@proton.me>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/site.css">
</head>
<body>
<div class="fullpage">
<header>
<h1><a href="index.html">Joe's links</a></h1>
</header>
<div class="sidebar">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="projects.html">projects</a></li>
<li><a href="shit.html">shit</a></li>
<li><a href="thoughts.html">thoughts</a></li>
<li><a href="links.html">links</a></li>
</ul>
<hr>
<ul>
<li><a href="http://gitjoe.xyz/">GitJoe</a></li>
</ul>
</div>
<div class="body-contents">
<h1>My links</h1>
<p>
Here are the links you can use to follow me around:
</p>
<ul style="list-style: none;">
<li>
<span class="fa fa-globe"></span> -
my Chisel page -
<a href="https://chiselapp.com/user/JozanLeClerc/">
chiselapp.com/user/JozanLeClerc
</a>
</li>
<li>
<span class="fa fa-github"></span> -
my GitHub page -
<a href="https://github.com/JozanLeClerc">
github.com/JozanLeClerc
</a>
</li>
<li>
<span class="fa fa-git"></span> -
my GitJoe page -
<a href="https://gitjoe.xyz/">
gitjoe.xyz
</a>
</li>
<li>
<span class="fa fa-bandcamp"></span> -
my Smooth Jazz band's Bandcamp -
<a href="https://towerofsilence.bandcamp.com/">
towerofsilence.bandcamp.com
</a>
</li>
<li>
<span class="fa fa-envelope"></span> -
my email - rrbo@proton.me
</li>
</ul>
<h1>My pals links</h1>
<p>
Also check out my pals links:
<ul style="list-style: none;">
<li>
<span class="fa fa-globe"></span> -
<b>Waterman</b>'s website:
<a href="https://born2die.tk/">
born2die.tk
</a>
</li>
<li>
<span class="fa fa-github"></span> -
his GitHub page:
<a href="https://github.com/salaaad2">
github.com/salaaad2
</a>
</li>
<li>
<span class="fa fa-git"></span> -
his GitJoe page -
<a href="https://gitjoe.xyz/">
gitjoe.xyz
</a>
</li>
<li>
<span class="fa fa-twitter"></span> -
and his fun Twitter account:
<a href="https://twitter.com/felIowNwords">
twitter.com/felIowNwords
</a>
-
<a href="https://nitter.net/felIowNwords">
nitter.net/felIowNwords
</a>
</li>
</ul>
</p>
<h1>Other cool links</h1>
<p>
Consider checking these other links I love:
<ul style="list-style: none;">
<li>
<span class="fa fa-globe"></span> -
<b>unixsheikh</b>'s dev/sysadmin blog:
<a href="https://unixsheikh.com/">
unixsheikh.com
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
<b>vermaden</b>'s sysadmin blog:
<a href="https://vermaden.wordpress.com/">
vermaden.wordpress.com
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
<a href="https://www.unix.com/">
unix.com
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
<a href="https://www.freebsd.org/">
freebsd.org
</a>
</li>
</ul>
</p>
</div>
<footer>
<p>
Copyright © 2020-2022, Joe -
see <a href="license.html">LICENSE</a> -
this website does not use cookies or php or js
</p>
</footer>
</div>
</body>
</html>
|