-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
43 lines (42 loc) · 2 KB
/
data.js
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
export const projects = [
{
"name": "Zathura",
"link": "https://Zathura-app.github.io/",
"description": "The best visual debugger for assembly that is cross platform, supports all major architectures and doesn't suck."
},
{
"name": "OptimistOS",
"link": "https://github.com/HACKE-RC/OptimistOS",
"description": "A hobby Operating System for fun and improving my understanding of Low-Level Computer Science topics."
},
{
"name": "mallocx",
"link": "https://github.com/HACKE-RC/mallocx",
"description": "A freestanding buddy heap allocator for embedded systems or Operating Systems."
},
{
"name": "Compiler",
"link": "https://github.com/HACKE-RC/Jack-Compiler",
"description": "I wrote this compiler for the Jack Programming Language (from Nand2Tetris) without using Compiler Theory just for the fun of it. It took me around 3 months and resulted in ~2000 lines of C++ code. I jokingly tell my friends that this gave me an unofficial PhD in string parsing."
},
{
"name": "VM Translator & Assembler",
"link": "https://github.com/HACKE-RC/vm-translator",
"description": "As a part of the Nand2Tetris Course, I also wrote this Assembler for the Jack Assembly as well as this VM Translator for the HACK VM language used in the course."
},
{
"name": "PEritux",
"link": "https://github.com/HACKE-RC/peritux",
"description": "One of my first projects written in C++. It is a simple parser that parses the Portable Executable File Format used in Windows."
},
{
"name": "Webdork",
"link": "https://github.com/HACKE-RC/webdork",
"description": "A simple tool for doing OSINT on companies with bug bounty programs. Mostly just a scraper in Python, nothing fancy."
},
{
"name": "Awesome Reversing",
"link": "https://github.com/HACKE-RC/awesome-reversing",
"description": "An awesome list of free resources for learning Reverse Engineering."
}
]