Added a new blog post fixed some footer issue

This commit is contained in:
Purplebored
2024-05-07 20:32:20 +02:00
parent d50c7d94a8
commit fdaa36f36a
6 changed files with 46 additions and 5 deletions

View File

@@ -25,6 +25,7 @@ So for now this is a simple HTML blog. If i start caring about this i migth do t
So far there aint a search feature. So to search just use F3.
<a href="/blogs/1.html/">Welcome to my blog.</a>
<a href="/blogs/2.html/">My small idea.</a>
<a href="/blogs/3.html/">Why you shoudl not use Github.</a>
</div>
<footer>
<a class="clean">Purplebored &copy; 2023-2024 </a> | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>

View File

@@ -13,7 +13,7 @@ As you can see for now this is VERY basic for now. If it gets any popular i migh
If you got any recomandations for this website or blog u can just send me the recomandations <a href="/contact.html/" target="_blank">Here</a>. So yeah very simple.
</div>
<footer>
<a class="clean">Purplebored &copy; 2023-2024 | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>
<a class="clean">Purplebored &copy; 2023-2024 </a> | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>
</footer>
</body>
</html>

View File

@@ -14,7 +14,7 @@ I will probably start the work on this soon. I should have it done this year (ex
But anyways if u got any idea for some other SIMPLE games i could do on here just send me the idea <a href="/contact.html/" target="_blank">Here</a>. and i will credit you for the idea or some shit like that.
</div>
<footer>
<a class="clean">Purplebored &copy; 2023-2024 | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>
<a class="clean">Purplebored &copy; 2023-2024 </a> | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>
</footer>
</body>
</html>

36
blogs/3.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>=Github a nono=</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="content-blog-2">
So yeah i am bored once again so i deped deepr into the GIT provider rabbit hole. And i found quite a lot of some intresting stuff!
</br>
Many of you probably use or used Github at some point in time but as it turns out ever since MS bought Github they aint the best regarding privacy and ethics wise. In this post i gonna maybe try and explain why you shouldn't use github and give some alternatives too!</br>
</br>
Most of the probelms with Github can be linked to thier AI assitant Copilot.</br>
</br>
As it turns out thier AI assitant is trained on Open source code. And open source code is not always under the Public Domain. A lot of github repos are licensed using copyleft licenses like <a href="https://www.gnu.org/licenses/gpl-3.0.html" target="_blank">GPL</a>.</br>
And those licenes require any modification of the source code to be redistributed under the same license as the original.</br> So for example if you want to create a fork using the source code of a project licensed under the GPL (Or any other copyleft license) you have to redistribute it under the same license as the original.
</br>
</br>
But Copilot doesnt include any mention of the original author or does it mention anything about the license and this can lead to some issues. This is a violation of both the license terms and the intellectual property of the authors of the original code.
</br>
</br>
The even bigger issue is the fact that you can just use a github alternative to publish your code but other people have the legal right to have thier fork of your project on Github. Which means Copilot gonna be able to scan ur code and then use it.
</br>
</br>
But then the question might arise of what to use instead of Github. And there a are quite a few options but here i just gonna give 3. 2 Normal ones and one techinly paid.
</br>
</br>
1. My number one alternative would be <a href="https://codeberg.org/" target="_blank">Codeberg</a> it's probably the most popular privacy respecing Github alternative. It's also run by a Noprofit unlike github.</br>
2. My number two would be <a href="https://gitlab.com/" target="_blank">Gitlab</a> it's also a quite good alternative but it's more centered for team work then just storing ur code. Still a good option tough.</br>
3. And the last option would be just self hosting ur own Gitea or Forgejo instance. <a href="https://about.gitea.com/" target="_blank">Link to Gitea</a>. It's quite easy to setup if you have basic linux expireince.</br>
<a href="https://nogithub.codeberg.page"><img src="https://nogithub.codeberg.page/badge.svg" alt="Learn more here."></a>
<footer>
<a class="clean">Purplebored &copy; 2023-2024 </a> | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>
</footer>
</body>
</html>

View File

@@ -2,6 +2,7 @@ body {
background-color: #000;
margin:0;
height: 100;
overflow-x: hidden
}
/* Ascii logo */
.ascii-logo {
@@ -86,13 +87,15 @@ a {
}
/* End of the Blog content thingy */
/*Blog Content 2 (This is mostly for the content of the blogs like the blog posts themself */
.content-blog-2{
.content-blog-2 {
font-family: monospace;
white-space: pre;
color: #a57ae9;
top: 25px;
font-size: large;
overflow-x: hidden;
margin: 0;
width: 100%;
}
/* End of the Blog content 2thingy */
/* That sick badge / banner thing */

View File

@@ -14,6 +14,7 @@ So Yeah this is a list of services and software i use this are just my personal
<a href="https://mullvad.net/en" target="_blank">Mullvad VPN - In my opinion the best VPN on the market.</a>
<a href="https://airvpn.org/?referred_by=699005" target="_blank">Airvpn - In my opinion the best VPN for torrenting.(This link HAS a reff link. If you want no reff link go to airvpn.org)</a>
<a href="https://www.qbittorrent.org/" target="_blank">qBittorrent - My Favorite torrent client it's fast and efficent prob the best one out there!</a>
<a href="https://small.pl/" target="_blank">Small.pl - My go to simple website hosting provider based in Poland. I personaly use them for this site.</a>
</div>
<footer>
<a class="clean">Purplebored &copy; 2023-2024 </a> | <a href="https://codeberg.org/Purplebored" target="_blank">My Codeberg</a> | <a href="https://github.com/PurpleBored" target="_blank">My Github</a> | <a href="/contact.html/" target="_blank">Contact Me</a> | </pre>