| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>my PC</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>✨️ My PC setup ✨️</h1>
- <img src="./computer-pixel.gif">
- </div>
- <div class="interests">
- <h2>Home PC</h2>
- <ul>
- <li>Brand name: T-Bao MN58U</li>
- <li>CPU: AMD Ryzen 7 5800U</li>
- <li>GPU: Radeon Vega integrated graphics</li>
- <li>RAM: 32GB DDR4-3200</li>
- <li>Storage: 1TB ssd (system), 2TB hdd (data)</li>
- <li>Software</li>
- <ul>
- <li>OS: Linux Mint</li>
- <li>DE: Cinnamon</li>
- </ul>
- <li>Accessories:</li>
- <ul>
- <li>Mouse: Logitech Marathon M705</li>
- <li>Keyboard: Logitech MX keys S black</li>
- </ul>
- </ul>
- </div>
- <div class="interests">
- <h2>Main Laptop</h2>
- <ul>
- <li>Brand name: Dell Vostro 15 5590</li>
- <li>CPU: Intel Core i5-10210U</li>
- <li>GPU: Intel UHD Graphics 620</li>
- <li>RAM: 16GB</li>
- <li>Storage: 256GB ssd (system), 256GB ssd (data)</li>
- <li>Software</li>
- <ul>
- <li>OS: Linux Mint</li>
- <li>DE: Cinnamon</li>
- </ul>
- </ul>
- </div>
- <div class="interests">
- <h2>Other curiosities in my collection</h2>
- <ul>
- <li>3gen intel PC that runs as rdp server in my living room<br>Regrettably it is running windows, because i need it sometimes to test things in windows environment for my sysadmin job</li>
- <li>Thinkpad X61</li>
- <li>Macbook pro 2011</li>
- <li>Thinkpad L440</li>
- <li>Thinkpad 11e</li>
- <li>Chuwi Minibook X</li>
- <li>Giada mini industrial pc 3gen intel</li>
- <li>3 Big rack servers. I do not know what to do with them X3</li>
- <li>Some network equipment like old cisco and zyxel switches, mikrotik routers etc.</li>
- <li>oscilloscope, signal generators and some other lab equipment</li>
- <li>Commodore 64</li>
- <li>Nintendo DS lite</li>
- <li>Nintendo 2DS</li>
- <li>Linux Emulation handheld R36S</li>
- <li>and multiple different computer and electronic parts laying all around :3</li>
- </ul>
- <p>If you want to read more about how I do my computing <a href="https://computer.glamour.ovh/blog/blog.php?b=software" class="no-button">press here</a></p>
- </div>
- </div>
- </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>
|