-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (125 loc) · 4.67 KB
/
Copy pathindex.html
File metadata and controls
125 lines (125 loc) · 4.67 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XenonPy's Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
</head>
<body>
<div id="particles-js"></div>
<div class="sidebar">
<h2>Bio</h2>
<img src="./images/profile.png" alt="Profile Picture">
<p>Hi, I'm <span class="bold">@XenonPy</span>, an experienced developer proficient with Python, Node, React, and
more.</p>
<h2>Site Tools/Pages</h2>
<ul>
<a href="judgezeroqueries.html">
<li>Judge0 Query Generator</li>
</a>
<a href="shapemaker.html">
<li>HTML Shape Generator</li>
</a>
<a href="cipher.html">
<li>Ciphers</li>
</a>
<a href="blog.html">
<li>Blog</li>
</a>
<a href="favoritecolors.html">
<li>Design Palettes</li>
</a>
</ul>
<h2>Skills</h2>
<ul>
<li>Python</li>
<li>Node</li>
<li>React</li>
<li>HTML/CSS</li>
<li>Unity3D</li>
<li>Cybersecurity/Ethical Hacking</li>
</ul>
<h2>Contact</h2>
<p>
Email: <span class="bold">xenonpy@wearehackerone.com</span>
</p>
</div>
<h1 class="txt">XenonPy's portfolio</h1>
<div class="content">
<h1>Curated Projects</h1>
<div class="project">
<h3>The Space</h3>
<a href="https://thespace.bluspace.net">thespace.bluspace.net</a>
<p>As cofounder and lead web developer at Bluspace, I worked on The Space, a frontend HTML/CSS/JS code
editor based on top technologies like Monaco.</p>
</div>
<div class="project">
<h3>Discmoji</h3>
<a href="https://github.com/mojidev-py/discmoji">github.com/mojidev-py/discmoji</a>
<p>I made open-source contribuitions to Discmoji, a Python library for creating Discord bots.</p>
</div>
<div class="project">
<h3>Guide</h3>
<a href="https://github.com/XenonPy/guide">github.com/XenonPy/guide</a>
<p>An ongoing project of compiling lots of coding knowledge into a single, simple guide consisting of only
one file.</p>
</div>
<div class="project">
<h3>SimpleMLPlus</h3>
<a href="https://pypi.org/project/simplemlplus/">pypi.org/project/simplemlplus/</a>
<p>Simple machine learning one-liners.</p>
</div>
<div class="project">
<h3>VerySteno</h3>
<a href="https://pypi.org/project/verysteno/1.0.0/">pypi.org/project/verysteno/1.0.0/</a>
<p>A Stenography library written in pure Python.</p>
</div>
<h1>Hardware and Software</h1>
<p>Here are some of the hardware and software I use on a daily basis:</p>
<h2>Laptop</h2>
<h3>Hardware</h3>
<ul>
<li>OS: MacOS</li>
<li>Model: MacBook Pro 2019, 16-inch</li>
<li>RAM: 64GB</li>
<li>Storage: 4TB SSD</li>
<li>Processor: 2.4GHz 8-core Intel i9</li>
<li>Graphics: Intel UHD Graphics 630 (integrated) and AMD Radeon Pro 5500M (PCIe)</li>
</ul>
<h3>Software</h3>
<ul>
<li>IDE: Visual Studio Code</li>
<li>Theme: Dracula at Night</li>
<li>CAD: FreeCAD and Onshape</li>
<li>Modeling: Blender</li>
<li>Editing: Kapwing/Final Cut Pro</li>
<li>Music Production: FL Studio/GarageBand</li>
<li>Game Engine: Unity</li>
<li>Web Browser: Chrome</li>
</ul>
<h2>DIY Server</h2>
<h3>Hardware</h3>
<ul>
<li>OS: Ubuntu Server</li>
<li>Model: Raspberry Pi 4</li>
<li>RAM: 4GB</li>
</ul>
<h3>Software</h3>
<ul>
<li>Text Editor: Nano (built-in)</li>
<li>Database: JSON file</li>
</ul>
</div>
<script>
particlesJS.load('particles-js', 'particlesjs-config.json', function () {
console.log('particles.js loaded - callback');
});
</script>
</body>
</html>