diff --git a/.gitignore b/.gitignore index a547bf3..b02a1ff 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ node_modules dist dist-ssr *.local +package-lock.json # Editor directories and files .vscode/* diff --git a/src/components/sections/Projects.jsx b/src/components/sections/Projects.jsx index fe69129..0f8315f 100644 --- a/src/components/sections/Projects.jsx +++ b/src/components/sections/Projects.jsx @@ -76,7 +76,46 @@ function Projects() { "description": "This is the report for a school project. The project was to make a security audit on a machine (Basic Pentesting 1 on VulnHub). This was a really fun project to make, as it helped me learn how to do a penetration test as well as write a report for it. This repo is private, since this project is still made by new students. Therefore, you can request access if you want to read it!", "visibility": "Private", "link": "https://github.com/Ploc300/ProjetCyber" - } + }, + { + "name": "Pylint Disable Analyzer V2", + "tech": [ + "C" + ], + "description": "This is a rewrite of my older project \"Pylint Disable Analyzer\" to learn and improve my C skills. I have decided to make this since I wanted to learn C but I needed some project that could be usefull in the futur. Since the python version work but can be pretty slow on really big projects, I have decided to remake it entirely in C (which makes it way faster).", + "visibility": "Public", + "link": "https://gitlab.plocserv.fr/ploc300/pylintanalyzerv2" + }, { + "name": "Own-Os", + "tech": [ + "Assembly", + "C" + ], + "description": "As the title say, I'm trying to make my own os. The goal is not to make a fully functional os but more to learn about low-level programming, kernel, and everything related. It is based on the amazing repository: https://github.com/cfenollosa/os-tutorial", + "visibility": "Private", + "link": "https://gitlab.plocserv.fr/ploc300/own-os" + }, { + "name": "dCodeAbuser", + "tech": [ + "Python", + "Website Scrapping" + ], + "description": "While doing some CTF challenges, some friends of mine showed me an amazing website \"dcode.fr\". I have used it a lot but always thought it is missing something, a public API / a way to automate request. So I decided to make this tool to automate scrapping the result.", + "visibility": "Public", + "link": "https://gitlab.plocserv.fr/ploc300/dcodeabuser" + }, { + "name": "Arch Config", + "tech": [ + "Python", + "Lua", + "Shell", + "CSS", + "Config Files" + ], + "description": "After re-installing Arch Linux on my laptop, I wanted to synchronize my config with my desktop. Therefore, one of the easiest way to do that for me was to create a git repository. So here we are!", + "visibility": "Private", + "link": "https://gitlab.plocserv.fr/plocserv/arch_config" + } ] return ( @@ -110,4 +149,4 @@ function Projects() { ) } -export default Projects; \ No newline at end of file +export default Projects;