| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>about me</title>
- <link rel="stylesheet" href="./style.css">
- <script src="https://unpkg.com/cursor-effects@latest/dist/browser.js"></script>
- <script>
- window.addEventListener("load", (event) => {
- new cursoreffects.ghostCursor();
- });
- </script>
- </head>
- <body>
- <div class="container bio">
- <h1>✨️ About me ✨️</h1>
- <img src="./pink_guy.gif" class="small-pic">
- <p>Pronouns: He/Him</p>
- <p>I made this website myself. Yes it is very simple, yes i wanted it this way. This page can be run without JS, and I have not used any site generator nor any CMS to make it.</p>
- <p>I am free software proponent and i was a long time FSF and FSFE supporter. I use linux everyday. I distro hopped for a while and right now i have settled on linux mint. I used to use arch linux and gentoo, i was customizing everything until i realized that i want my time back, and switched to something that is good out of the box</p>
- <p>I am working in IT. I have most of the expertise in designing system integrations and network solutions. Network or infrastructure designs and sysadmin stuff are the things that i have most knowledge in. I also have some experience in telecom stuff.</p>
- <p>I love diy electronics. I build a few devices designing my own PCBs and programming microcontrollers for it. My favorite platforms are Arduino and ESP32. I support right to repair. </p>
- <p>I love video games. I really like older retro games, my favorite platforms are GBA and DS. I also like some more recent stuff too. But i think that games are much worst, because of corporate greed nowadays. You can check out my <a class="no-button" href="https://computer.glamour.ovh/blog/video_games.php">video game list</a> I try to update it every now and then with new games that i have played.</p>
- <p>This is not my only website that i host. If you are geeky like me, please reach out and maybe we can get to know one another :3</p>
- </div>
- <footer>
- <p class="center"><img src="./favicon.ico">(c) computer_glamour</p>
-
- <img src="./buttons/-18.gif" class="footer-button">
- <img src="./buttons/xmpp.gif" class="footer-button">
- <img src="./buttons/notread.gif" class="footer-button">
- <img src="./buttons/right2repair.gif" class="footer-button">
- </footer>
- </body>
- </html>
|