Why do so many tech people forget that the whole point of software engineering is to solve problems?

I recently launched a small project designed to solve a simple problem: letting everyday people transfer files directly between two computers with a cable without needing any network setup. The post got a lot of love and reached the top of the community, but the comment section had a handful of advanced users getting genuinely angry that the tool even exists.

Their whole argument came down to: "Why build this? SMB exists, you can just build a router out of a Raspberry Pi, or manually configure static IPs and network sharing policies."

It got me thinking about how disconnected some tech enthusiasts are from reality. The entire purpose of software engineering was always to solve problems and remove friction for human beings, not to force everyone to become a system administrator just to do a basic task.

Just because an advanced user knows how to manage IP subnets, firewall exceptions, and OS sharing permissions doesn't mean a regular person wants to waste 30 minutes figuring that out. Hiding complexity behind a clean, one-click interface is literally the foundation of good software.

It seems like in a lot of tech spaces, people equate complexity with value. If something is simple and convenient, they dismiss it. But the reality is that the people who find your tool useful will quietly use it and appreciate it, while the loud minority will write essays in the comments trying to show off how much they know.

If you are a developer building simple tools that make life easier for ordinary people, do not let the gatekeepers talk you down. Build for the people who value their time, not for the people who want to show off their homelabs.

Would love to hear how other developers deal with this kind of feedback when sharing their work.

reddit.com
u/divyviradiya — 1 day ago

Why do so many tech people forget that the whole point of software engineering is to solve problems?

I recently launched a small project designed to solve a simple problem: letting everyday people transfer files directly between two computers with a cable without needing any network setup. The post got a lot of love and reached the top of the community, but the comment section had a handful of advanced users getting genuinely angry that the tool even exists.

Their whole argument came down to: "Why build this? SMB exists, you can just build a router out of a Raspberry Pi, or manually configure static IPs and network sharing policies."

It got me thinking about how disconnected some tech enthusiasts are from reality. The entire purpose of software engineering was always to solve problems and remove friction for human beings, not to force everyone to become a system administrator just to do a basic task.

Just because an advanced user knows how to manage IP subnets, firewall exceptions, and OS sharing permissions doesn't mean a regular person wants to waste 30 minutes figuring that out. Hiding complexity behind a clean, one-click interface is literally the foundation of good software.

It seems like in a lot of tech spaces, people equate complexity with value. If something is simple and convenient, they dismiss it. But the reality is that the people who find your tool useful will quietly use it and appreciate it, while the loud minority will write essays in the comments trying to show off how much they know.

If you are a developer building simple tools that make life easier for ordinary people, do not let the gatekeepers talk you down. Build for the people who value their time, not for the people who want to show off their homelabs.

Would love to hear how other developers deal with this kind of feedback when sharing their work.

reddit.com
u/divyviradiya — 1 day ago

Why do so many tech people forget that the whole point of software engineering is to solve problems?

I recently launched a small project designed to solve a simple problem: letting everyday people transfer files directly between two computers with a cable without needing any network setup. The post got a lot of love and reached the top of the community, but the comment section had a handful of advanced users getting genuinely angry that the tool even exists.

Their whole argument came down to: "Why build this? SMB exists, you can just build a router out of a Raspberry Pi, or manually configure static IPs and network sharing policies."

It got me thinking about how disconnected some tech enthusiasts are from reality. The entire purpose of software engineering was always to solve problems and remove friction for human beings, not to force everyone to become a system administrator just to do a basic task.

Just because an advanced user knows how to manage IP subnets, firewall exceptions, and OS sharing permissions doesn't mean a regular person wants to waste 30 minutes figuring that out. Hiding complexity behind a clean, one-click interface is literally the foundation of good software.

It seems like in a lot of tech spaces, people equate complexity with value. If something is simple and convenient, they dismiss it. But the reality is that the people who find your tool useful will quietly use it and appreciate it, while the loud minority will write essays in the comments trying to show off how much they know.

If you are a developer building simple tools that make life easier for ordinary people, do not let the gatekeepers talk you down. Build for the people who value their time, not for the people who want to show off their homelabs.

Would love to hear how other developers deal with this kind of feedback when sharing their work.

reddit.com
u/divyviradiya — 1 day ago
▲ 340 r/software

Why do so many tech people forget that the whole point of software engineering is to solve problems?

I recently launched a small project designed to solve a simple problem: letting everyday people transfer files directly between two computers with a cable without needing any network setup. The post got a lot of love and reached the top of the community, but the comment section had a handful of advanced users getting genuinely angry that the tool even exists.

Their whole argument came down to: "Why build this? SMB exists, you can just build a router out of a Raspberry Pi, or manually configure static IPs and network sharing policies."

It got me thinking about how disconnected some tech enthusiasts are from reality. The entire purpose of software engineering was always to solve problems and remove friction for human beings, not to force everyone to become a system administrator just to do a basic task.

Just because an advanced user knows how to manage IP subnets, firewall exceptions, and OS sharing permissions doesn't mean a regular person wants to waste 30 minutes figuring that out. Hiding complexity behind a clean, one-click interface is literally the foundation of good software.

It seems like in a lot of tech spaces, people equate complexity with value. If something is simple and convenient, they dismiss it. But the reality is that the people who find your tool useful will quietly use it and appreciate it, while the loud minority will write essays in the comments trying to show off how much they know.

If you are a developer building simple tools that make life easier for ordinary people, do not let the gatekeepers talk you down. Build for the people who value their time, not for the people who want to show off their homelabs.

Would love to hear how other developers deal with this kind of feedback when sharing their work.

reddit.com
u/divyviradiya — 1 day ago
▲ 189 r/SoftwareTips+4 crossposts

I built an open-source tool to transfer large files directly between two PCs over an Ethernet cable with zero config (EtherTransfer)

Hey everyone,

Whenever I needed to move 100GB+ between two laptops or PCs, the usual options were annoying:

- Wi-Fi/SMB sharing is slow and frequently drops on large directory trees.

- Cloud storage takes hours and caps upload speeds.

- USB flash drives require copying everything twice.

- Direct Ethernet cables usually require configuring static IPs, subnet masks, or running a DHCP server.

I built EtherTransfer to make direct LAN transfers as plug-and-play as possible.

How it works:

  1. Connect a standard Ethernet cable between two PCs (no crossover cable needed, modern NICs handle auto-MDIX).

  2. Launch the app on both machines.

  3. They discover each other automatically over link-local IPv4 (169.254.x.x) via UDP broadcasts.

  4. Drag & drop files or entire folders and stream at full link speed (115MB/s on 1GbE, 1GB/s+ on 10GbE).

Key points:

- 100% offline — zero internet, zero cloud servers, zero telemetry.

- Preserves deep directory structures without needing to zip first.

- Cross-platform support for Windows (10/11) and Linux.

- Built with .NET 10 and Avalonia UI.

- MIT Licensed.

GitHub Repo & Downloads: https://github.com/divyviradiya2/ethertransfer

Live Website: https://divyviradiya2.github.io/ethertransfer/

Would love feedback on transfer stability, edge cases, or features you'd like to see added.

u/divyviradiya — 2 days ago