-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (149 loc) · 6.09 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
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles/global.css" />
<link rel="stylesheet" href="./styles/index.css" />
<script src="./scripts/header.js" async></script>
<script src="./scripts/nav.js" async></script>
<script src="./scripts/footer.js" async></script>
<meta
name="description"
content="My personal blog where I talk about Linux, Crypto and other thoughts."
/>
<meta
name="keywords"
content="Dante, Robinson, Blog, Crypto, Bitcoin, Linux, BSD"
/>
<title>Dante's Blog</title>
</head>
<div class="page-template">
<header-component></header-component>
<div class="page-center-box">
<div class="page-box">
<div class="page">
<nav-component></nav-component>
<div>
<p class="intro">
Thanks for visiting my Blog. You can find a list of my most recent
posts to the right or below depending on your screen size, The
source code for this blog is fully open-sourced and can be found
on my github page which can be found in the footer or clicking
<a class="link" href="https://github.com/dante-robinson/Blog">
here
</a>
. The entire code base is licensed under BSD-3-Clause which
requires forks to retain the same license however unlike a GPL
License the BSD License does not require you to open source your
code if you don't want to.
</p>
</div>
<div class="two-columns">
<div class="about-me">
<h3>About Me</h3>
<p>
For those interested I am someone who has always been interested
in computers and have used practically everything out there from
MXM Upgradable laptops to Dual Socket CPU builds. I have been
using computers since a very young age and have acquired a lot
of knowledge over this time that I hopefully can share in an
easy to read manner on this blog.
</p>
<p>
I am an altruist at the core and believe in giving back more
than we receive I hope to give back to others with many
different guides on this blog covering a range of topics. I
encourage everyone to give back something to those in need, I
have linked 2 awesome youtube channels below on this topic.
</p>
<div class="recommended-channels">
<a class="link" href="https://www.youtube.com/c/BIPhakathi">
BIPhakathi
</a>
<a
class="link"
href="https://www.youtube.com/channel/UC6lIbuv_ai9ml_B3IVAgxrw"
>
Goodness in People
</a>
</div>
</div>
<div class="link-list">
<h3>Recent Posts</h3>
<ul class="index-posts">
<li style="margin-top: 1vh !important" class="post-list-item">
<a class="page-link" href="./BSD/LightningNodeOpenBSD"
>How to run a Lightning Node on OpenBSD</a
>
<p class="post-date">May 21, 2024</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./BSD/BitcoinNodeOpenBSD"
>How to run a Bitcoin Node on OpenBSD</a
>
<p class="post-date">Jun 19, 2023</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Crypto/WhatMakesShtcoins"
>What makes a sh*tcoin</a
>
<p class="post-date">Mar 09, 2023</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./BSD/4MonthsofBSD"
>4 Months of BSD</a
>
<p class="post-date">Mar 03, 2023</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Crypto/CommunistCBDC"
>Communist CBDCs</a
>
<p class="post-date">Jan 11, 2023</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Crypto/XRPXLMScam"
>XRP & XLM The biggest scams</a
>
<p class="post-date">Oct 7, 2022</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Linux/GentooGlibctomusl"
>Switching Gentoo Glibc to musl</a
>
<p class="post-date">Sept 26, 2022</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Linux/Gentoomusl"
>My experience using Gentoo Musl</a
>
<p class="post-date">Sept 16, 2022</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Linux/SecurityGuide"
>Linux Security Guide</a
>
<p class="post-date">Feb 13, 2022</p>
</li>
<li class="post-list-item">
<a class="page-link" href="./Linux/PerformanceGuide">
Linux Performance Tweaks Guide</a
>
<p class="post-date">Oct 30, 2021</p>
</li>
</ul>
</div>
</div>
<div class="note">
<p>
* All opinions on this blog are my own you are more than welcome
to disagree with anything.
</p>
</div>
</div>
<footer-component></footer-component>
</div>
</div>
</div>
</html>