-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (66 loc) · 3.09 KB
/
about.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
---
layout: default
title: About
---
<div id="body" class="col-12 col-md-11">
<h1 style="margin-bottom: 2rem">About me</h1>
<h2>Who am I?</h2>
<p>I’m an information-security and cryptography enthusiast from Sweden.<br>
On my spare time I like to write code, play building games (like SimCity, Cities Skylines, Prison
Architect etc) & take apart stuff and see how they work.<br>
I’m a super curious person and so I love learning new things! That is partly how I became interested in
computers to begin with.</p>
<hr>
<h2>My projects</h2>
<p>I'm active on a bunch of open source projects, most of which are on
<a href="https://github.com/Carlgo11/">GitHub</a>.
<br/>Below is a list of active as well as inactive
projects I've created or worked on:</p>
<div class="row" id="project-list">
{% for project_array in site.data.projects %}
{% assign project = project_array[1] %}
{% assign name = project_array[0] %}
<div class="card noselect">
<a href="{{ project.url }}">
<img loading="lazy" class="card-img-top" src="{{ project.img }}">
</a>
<div class="card-body">
<a href="{{ project.url }}"><h5 class="card-title">{{ name }} {% if project.archived %}<i class="bi bi-archive-fill"></i>{% endif %}</h5></a>
<hr>
<p class="card-text">{{ project.description }}</p>
</div>
</div>
{% endfor %}
</div>
<hr>
<h2>Q&A</h2>
<h4>Favorite OS?</h4>
<p>*nix based distributions.<br>
<h4>Favorite Passwords?</h4>
<p>Those that can't be read by humans</p>
<h4>Favorite programming language?</h4>
<p>PHP because of how fast it is to make things in.<br>
I also started coding in Java so the leap from Java to PHP is pretty insignificant.</p>
<h4>Worst vulnerability?</h4>
<p>SQL injection. How is this still a thing?!<br>
Tom Scott did a <a href="https://www.youtube.com/watch?v=_jKylhJtPmI">great video</a> on this.</p>
<hr>
<h2>Memberships</h2>
<p>I spend a large amount of my time on the Internet.<br>I love the dynamics and freeness of the Internet
and therefore I also fight to keep it that way.</p>
<p>I'm a member of the following organizations:</p>
<div class="row col-12 col-md-7" id="membership-logos">
<a href="https://www.eff.org/">
<img src="https://res.cloudinary.com/dbsfyc1ry/image/upload/v1636715662/carlgo11.com/groups/eff.svg" class="membership-logo" alt="EFF">
</a>
<a href="https://www.internetdefenseleague.org/">
<img src="https://res.cloudinary.com/dbsfyc1ry/image/upload/v1636715700/carlgo11.com/groups/idl.svg" class="membership-logo" alt="Internet Defense League">
</a>
<a href="https://www.piratpartiet.se/">
<img src="https://res.cloudinary.com/dbsfyc1ry/image/upload/v1636715708/carlgo11.com/groups/piratpartiet.svg" class="membership-logo" alt="PiratPartiet">
</a>
<a href="https://www.fightforthefuture.org/">
<img src="https://res.cloudinary.com/dbsfyc1ry/image/upload/v1636715691/carlgo11.com/groups/fftf.svg" class="membership-logo" alt="Fight for the Future">
</a>
</div>
</div>