Activity
Mon
Wed
Fri
Sun
Jul
Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
What is this?
Less
More

Owned by Karol

EngineeringTech

34 members โ€ข Free

We focus on JS/TS, React, Next.js, Supabase, shadcn/ui, Tailwind CSS, and deployments on Netlify. We focus on fast learning.

Memberships

Home Lab Explorers

1.5k members โ€ข Free

Chemistry Physics Engineering

109 members โ€ข Free

Skool Reviews

49 members โ€ข Free

The Code Zone Skool

471 members โ€ข Free

Synthesizer Scaling

240 members โ€ข $1,700/month

Synthesizer: Free Skool Growth

42.3k members โ€ข Free

Disciples of Christ

870 members โ€ข Free

JavaScript

324 members โ€ข $1

31 contributions to EngineeringTech
I have to admit you something
For a while, one small thing was driving me crazy every time I powered on my Proxmox machine. Not the CPU. Not the storage. Not the software. The fan. It was loud. Constantly loud. Full speed from the moment the machine started. And once I noticed it, I couldnโ€™t ignore it anymore. Thatโ€™s the annoying part about hardware problems like this โ€” they donโ€™t stay in the background. They slowly take over your attention until fixing them becomes the only thing you can think about. So I started digging. I checked the socket type. I removed the motherboard. I measured the mounting holes. I confirmed what I needed. Only then did the search begin. The setup itself was nothing exotic: an Intel Core i5-6500 sitting on a Lenovo ThinkCentre M900 motherboard, model IQ1X0MS (30BC), with an LGA1151 socket. A budget CPU on a budget OEM board โ€” simple on paper, but not so simple when the fan refuses to behave. At that point, the goal was clear. I didnโ€™t need the biggest cooler. I needed the quietest practical solution. So I compared a few options: Noctua NH-D15 - extremely powerful, but probably more cooler than this CPU really needed. be quiet! Dark Rock Pro 5 - premium, silent, and also a bit overkill here. Endorfy Fortis 5 - a strong, balanced option with good value. Endorfy Fera 5 - compact, affordable, and practical. be quiet! Pure Rock 3 - quiet, sensible, and enough for a 65 W processor. And after thinking it through, the choice became obvious. I went with the be quiet! Pure Rock 3. It was reasonably priced was more than enough for the i5-6500.And it solved the problem without turning the build into something unnecessarily expensive or oversized. But the cooler alone was not the whole story. No more background irritation. No more fighting the machine every time I wanted to use it. Just a simple fix that made the whole setup feel right again. And honestly, sometimes thatโ€™s the best kind of upgrade - not the flashy one, but the one that quietly removes a problem you were tired of living with.
I have to admit you something
How I've disabled paid enterprise repositories
The default Proxmox installation includes enterprise repositories. These repositories are paid, and you need a subscription token to access them. Without a token, you'll see errors during updates. These errors are harmless but annoying! :) First image (1) To eliminate these update errors, you need to disable or remove those enterprise repositories. Run these commands:mv /etc/apt/sources.list.d/ceph.sources /root/ceph.sourcesmv /etc/apt/sources.list.d/pve-enterprise /root/sources.list.d/pve-enterprise These commands safely move the enterprise repo files out of the active sources directory. Second image (2) No more error message :)
4
0
How I've disabled paid enterprise repositories
Job-forge
Hey everyone! ๐Ÿ‘‹ I just open-sourced a new project: job-forge โ€” an LLM-powered CV & job-matching assistant that runs entirely in your browser. โœ… Paste a job offer โ†’ get a tailored, ATS-optimized resume in seconds โœ… Matches job requirements against your skill profile automatically โœ… Supports Anthropic Claude, Gemini, Ollama (local), or any OpenAI-compatible proxy โœ… 100% private โ€” all data stays in your browser, nothing stored on any server โœ… Built with TypeScript + React + Vite Whether you're actively job hunting or just want to stay sharp, this tool can save you hours of CV tweaking. Would love your feedback, stars, or contributions! ๐Ÿ”— https://github.com/codemonkey-df/job-forge Let me know what you think! ๐Ÿš€
1 like โ€ข Apr 21
@Pretbc Pretbc I'd be happy to check it if it could run with a single command, without needing to set up extra things like Ollama. Is that possible? Is it possible to create a docker compose file that will contain all needed services all together with an LLM?
How I added additional disks in Proxmox
Hello engineers, I recently configured my Proxmox instance with ZFS RAID1 (I need to test the recovery process :)). I then added three additional SSD disks and partitioned them with this command: mkfs.ext4 -L SSD-256GB /dev/sdX - -L: label flag - SSD-256GB: label (adjust for each disk, e.g., SSD-1TB, SSD-128GB) After that, I mounted them viaย /etc/fstabย like this: UUID=4c1cebaf-8142-4b79-a0ea-45c26253ed75 /media/ssd-1-TB ext4 defaults,noatime,nofail 0 2UUID=b012b34c-bb86-408a-bebf-a91d1a1d3a49 /media/ssd-256-GB ext4 defaults,noatime,nofail 0 2UUID=55c39d33-8665-4ba6-9b45-1c513df36296 /media/ssd-128-GB ext4 defaults,noatime,nofail 0 2 Now I have three extra disks for playing around with :) Let me know how you use additional disks in Proxmox.
1 like โ€ข Apr 20
@Cameron Warech Yes, it might look overwhelming in the beginning :) I configured two additional disks in my home lab server cluster.
0 likes โ€ข Apr 20
@Cameron Warech Sure :) I can explain you this more in depth if you want :) I remember about file synchronization that we talked. I need first to set up a testing environment. This is a step in that direction :)
How I Set Up ZFS RAID1 on Proxmox (Super Simple!)
I recently installed Proxmox on my home lab server. I wanted to start deploying network apps and services on the Proxmox instance, but something didn't feel quite right. I knew everything wasn't fully ready. I wondered what I should do to make it solid. Then it hit me: I needed to ensure all my data and configs were safely backed up and recoverable at any moment. My first thought was RAID1. The challenge? I didn't know how to set it up properly in Proxmox. After some searching and learning, I discovered it's actually super simple :) I just reinstalled Proxmox with the right settings. I pulled two 1TB SSDs out of my laptop (I had four total) and installed them in the home lab server. During installation, on the target harddisk screen I just selected the ZFS RAID1 option, chose the correct disks, and that was it :) Now I've got RAID1 up and running. Of course, I should test the recovery process next, but I'm too excited and want to start playing around right away!
3
0
How I Set Up ZFS RAID1 on Proxmox (Super Simple!)
1-10 of 31
Karol Szykula
3
7points to level up
@karol-szykula-6027
Software engineer who built systems for a Fortune Global 500 company. I'll help you build and deploy web apps using Next.js, Netlify, and Supabase.

Active 2h ago
Joined Aug 10, 2024
INTJ
Poland