DEV Community

Cover image for Shelved Projects #2: Talent by UnitBuilds (TUB) - Escaping the Tech Deadzones
UnitBuilds for UnitBuilds CC

Posted on

Shelved Projects #2: Talent by UnitBuilds (TUB) - Escaping the Tech Deadzones

Welcome back to "Shelved Projects", a series where I open up the archives to share systems that were technically functional and highly optimized, but ended up shelved.

Today’s project is personal. It’s called Talent by UnitBuilds (TUB)—a high-concurrency, Go-native sourcing and compliance engine. It wasn't built as a vanity project or to chase a tech trend. It was built to solve a systemic barrier: the invisible wall that bins your resume simply because of the country listed in your address.

TUB - Logo


The Root Problem: The "Not from the USA" Bin


If you are a software developer born in a tech "deadzone"—like my home country of Namibia—finding a remote international job is an exercise in futility.

You can send 1,500+ CVs. You can build bespoke demo apps for target roles to prove your worth. Yet, you won't get a single shortlist. Why? Because the moment a Western HR department reads "Namibia" (or India, or Brazil, or Romania), they see administrative risk, compliance overhead, and tax complications. So, they bin the resume.

Meanwhile, I am stuck writing Blazor daily for $1,000 a month, knowing that overseas companies were paying entry-level developers five times that amount for work I could do in my sleep.

The divide is tragic. Opportunities are lost not because of a lack of capability, but because of HR bureaucracy. That is why I built TUB.


How TUB Works: The 1-to-1 Match & Sourcing Swarm

Unlike massive talent platforms that spam employers with hundreds of resumes, TUB operates on a strict 1-Candidate-to-1-Job matching philosophy.

The engine works in five distinct stages:

  1. The AI Onboarding Interview: The candidate talks to an AI agent (powered by Gemini 3.1 Flash-Lite) to carve out their specific niche. The AI structures their raw resume into a validated JSON schema, focusing on: $$\text{Experience} \rightarrow \text{Education} \rightarrow \text{Skills}$$
  2. Deep Sourcing Swarms: The platform seeds background crawler tasks (simulated, awaiting full MCP-Lite integration). These crawlers scan LinkedIn and job boards looking for roles that fit the candidate like a glove. It doesn't just match keywords; it reads the target company's core specialty, what the candidate focused their assignments on at university, and the specific architecture of apps they are used to building.
  3. The Target HR Pitch: The system selects exactly one candidate for one job and fires a highly personalized outreach email to the company's HR department explaining exactly why this candidate fits their exact codebase, along with a 1 page summary of why they shouldn't just bin it.
  4. Interactive Validation: The link in the email leads HR to a custom client-side profile showing the candidate's verified capability—not just credentials or locality.
  5. Inverted Sourcing: If an employer posts a job, the system runs the swarm in reverse. It crawls the web for matching candidates (whether they are registered on TUB or not) and reaches out to them with a personalized description of why they were chosen.

The Business Model: Disrupting Recruiter Fees

Normally, recruitment agencies charge companies 15% to 25% of a candidate's annual salary as an upfront placement fee. On a $100k job, that’s $25,000 just to get the developer in the door. In addition, recruiters often collect a $500 kickback from EOR (Employer of Record) providers if the developer is hired internationally.

TUB eliminates the recruiter cut entirely:

  • Neither the employer nor the employee pays a penny to the platform upfront.
  • Instead, TUB partners with an EOR provider and takes a recurring 10% referral kickback from the EOR's monthly management fee.

To hire a remote candidate legally, an employer needs an EOR to act as the local legal employer, handling local tax withholding and labor laws. Legacy EORs (like Remote) charge around $600 a month per employee and require a steep 3-month security deposit. For an employer testing a new remote candidate, putting down thousands in deposits is a massive friction point.

By partnering with RemoFirst ($200/month, no deposit), the compliance cost would drop to $200/month, and TUB takes a recurring $20/month cut, till we can negotiate bulk discounts, eg. $150 a month, dropping TUB's recurring cut to $15. It's not about making money, it's about creating a platform where people like me don't have to struggle for a job.

The "Self-Funded" Mode

To make the decision a absolute zero-risk "yes" for Western employers, I built a Self-Funded EOR mode:

[Employer Pays: $2,000]
        │
        ▼
[RemoFirst EOR: $200] ─── (10% Kickback) ───> [TUB Platform: $20]
        │
        ▼
[Employee Receives: $1,800]
Enter fullscreen mode Exit fullscreen mode

If a candidate toggles "Self-Funded" mode, the $200 EOR fee is absorbed into their gross asking rate. The employer pays exactly $2,000, RemoFirst takes $200 ($20 goes to TUB), and the candidate receives $1,800.

To someone in a high-cost country, losing $200 seems like a raw deal. But to a developer in a tech deadzone where $1,800/month is a life-changing, high-tier salary, it is an incredible deal. It turns the candidate into a $0 acquisition cost option for the employer.


The Technical Implementation

To keep operations running on a shoestring budget, I engineered the entire backend in Go with two primary optimization focus areas:

1. Zero-Overhead Client-Side EOR Merging (pdf-lib.js)

Instead of parsing, templating, and generating PDFs on the server (which bottlenecks CPU usage and forces temporary storage of sensitive draft agreements), I shifted the contract builder to the client's browser.

The employer uploads their standard agreement, the frontend fetches the template remofirst_addendum.pdf, merges the two locally, and renders it in an iframe. The server only receives the final metadata and signed hash.

// Fetch the EOR Addendum and merge locally in the browser
const addendumRes = await fetch('/static/remofirst_addendum.pdf');
const addendumBytes = await addendumRes.arrayBuffer();
const userPdfBytes = await file.arrayBuffer();

const pdfDoc = await PDFLib.PDFDocument.load(userPdfBytes);
const addendumDoc = await PDFLib.PDFDocument.load(addendumBytes);

const copiedPages = await pdfDoc.copyPages(addendumDoc, addendumDoc.getPageIndices());
copiedPages.forEach((page) => pdfDoc.addPage(page));

const mergedPdfBytes = await pdfDoc.save();
Enter fullscreen mode Exit fullscreen mode

2. High-Concurrency SQLite WAL Tuning

To handle simulated sourcing swarms writing status updates while employers read candidate data, I configured SQLite with Write-Ahead Logging (WAL) and a busy timeout:

dsn := fmt.Sprintf("%s?_journal_mode=WAL&_busy_timeout=5000&_foreign_keys=ON", filepath)
db, err := sql.Open("sqlite3", dsn)
db.SetMaxOpenConns(1) // Mitigate concurrent write locks
Enter fullscreen mode Exit fullscreen mode

Why I Shelved It: The payment divide

If the software works, the monetization is sound, and the need is desperate, why is this project shelved?

Because life gets busy. Between managing my day job, buying a house, moving, taking on a second job, and juggling side-projects, the sheer amount of administrative paperwork required to launch a compliance startup became a wall.

But the real, tragic bottleneck is systemic: Namibia does not support PayPal withdrawals.

To wire in RemoFirst's API and set up recurring referral payouts, I need a global commercial banking pipeline that connects to my local accounts. The key to my salvation is locked behind the very financial and geographic walls I am trying to break down. The project sits on the shelf, fully operational, waiting for the day I have the time and capital to solve the corporate registry logistics.


Lessons Learned

  • Build for Zero Friction: Shifting EOR fees to the candidate and automating the contract merge on the client removes every excuse an employer has to say no.
  • Architecture is Easy, Logistics are Hard: As developers, we focus on code quality, JIT compilers, and database tuning. But the hardest part of any real-world startup is always banking, legal entities, and regional bureaucracy.
  • Keep Shoveling: The code remains ready. The design patterns are validated. The fight for remote talent equity goes on.

Let me know in the comments: Have you ever had to shelve a project not because of code limitations, but because of real-world...

Top comments (2)

Collapse
 
unitbuilds profile image
UnitBuilds UnitBuilds CC

@xulingfeng Just FYI, incase they're a scam, I have no affiliation at all with that Sam Tech guy. Had to make that clear, cuz it's a bit odd that he talked about hiring for a US company, when I'm about to make a post on exactly that 🫠 and now I caught you with the click-bait red flag 😁

Collapse
 
xulingfeng profile image
xulingfeng

🤣🤣🤣