- Client
- GrN.dk — internal build
- Sector
- Personal automation, public-source scraping and AI-assisted filtering
- Period
- Built July 2026 · fetching every morning at 06:45 since 9 July 2026
At a glance
This one has no link on it, and that is the point: jobs.grn.dk answers 401 to the internet and always has. It is an internal tool — a job radar, built for its owner's own search for work. Every morning it reads seven contract and job boards, drops everything that cannot match a written profile, has what survives judged by a language model against that profile, and presents the handful worth reading as one screen with three buttons: applied, draft email, discard.
Because it holds one real person's live job search, nothing of it is published here. The screenshot above is a throwaway demo copy of the same interface, seeded with invented rows — every company, title, location and address in it is a placeholder, and it labels itself "demo data" in the header so it can never be mistaken for the live board.
The challenge
The manual version of this is twenty minutes a day of reading seven boards to find, on a good day, one advertisement worth answering. What makes that hard to automate is not the scraping. It is that the two things which decide whether a listing is relevant are the two things job portals describe worst.
"Remote" on a job board rarely means remote. A listing tagged Poland · Remote or Portugal · Remote means remote from inside that country — local residence, a work permit, local tax presence. The requirement here is the opposite: work that can be done remotely from Denmark, or work that is genuinely open to anywhere in the world. Listings located in Denmark qualify, worldwide listings qualify, EU/EEA/Nordic-wide listings qualify, and so does the Øresund region across the bridge — a country label next to the word "remote" usually disqualifies. No portal has a filter for that distinction, because only the ad's own words can settle it.
The wanted engagement is not the one boards are built for. The target is part-time and delivery-based work — a defined task with an agreed outcome, on a schedule the person sets themselves — not a permanent full-time position. Portals do carry engagement facets, and where they publish one it is gold; but a bare search for freelance or konsulent on a general board returns mostly permanent on-site employment that happens to use the word.
Two further constraints shaped the design. A language model cannot be the filter — judging every one of hundreds of daily listings with a model is slow and expensive, so the model had to be spent only where a machine-readable field genuinely cannot answer the question. And a filter that throws away too much is worse than no filter, because you never see what it discarded: whatever it dropped had to be droppable for a stated reason, and the human had to be able to correct it without touching code.
The solution
Seven sources, each read the cheapest honest way. jobindex.dk through its RSS endpoint — which answers the same query string as its HTML search, so the portal's own facets (Freelance, Deltid, 100% hjemmearbejde) do the first round of filtering for free; emagine and Verama through their public JSON APIs; rightpeoplegroup out of the JSON its own pages ship with; amino.dk through RSS plus its public detail pages; freelancermap through its public facet pages; weworkremotely through the single all-categories feed that is the only one carrying an engagement type, a country list and skills. Every source has a hard politeness cap on how many detail pages one run may fetch, and a runaway-paging stop.
Structured fields are filtered at fetch; only prose is sent to the model. Where a source publishes a real structured country or engagement type, the geography and engagement rules are applied before the advertisement's body is even downloaded. Measured on the probe days: 160 of 173 open Verama assignments, 21 of 35 freelancermap rows and 96 of the 100 newest weworkremotely advertisements were dropped at fetch — unscored, unstored, and never costing a model call. The model is asked only about the listings where the answer genuinely lives in the prose.
One JSON file is the entire tuning surface. Excluded technologies, unwanted language requirements, per-source queries and on/off switches, the geography accept-lists, the engagement preference ranking and the pruning window all live in rules.json next to the script — no code change to retune the radar. The interface edits that file directly and validates as it saves: every pattern is compiled as a regular expression before it is accepted, and the raw JSON editor refuses anything that is not a valid object.
The judge reads a written profile, not a keyword list. Each scoring prompt is assembled from a plain-language candidate profile, the current geography and engagement rules, and the accumulated feedback, and it returns a 1–5 score per listing. Two verdicts are acted on automatically — an advertisement that requires recurring on-site presence, and one whose "remote" is bound to another country — and each auto-discard is written back with the reason it was dropped, so a wrong call is visible rather than silent. Advertisement text reaching the prompt is explicitly framed as untrusted data and not as instructions.
Feedback is durable, and deliberately asymmetric. Asking for an email draft or marking a listing applied is a positive signal; discarding it with a note is a negative one, in the user's own words. Both go into a learnings table that is never pruned and is read into every later scoring prompt, so a correction made once keeps applying. Everything else expires: listings that vanish from their feed or are discarded are deleted after a fortnight — unless they were applied for, which is never removed.
The interface is one screen, and it is locked. Jobs best-first by AI score, source and score chips, contact addresses lifted out of the ad body, and the three actions. It sits behind HTTP basic authentication with a second lock behind that: because browsers replay basic auth automatically on every request, each state-changing POST also has to prove its origin matches the host it was reached on, or it is rejected.
It writes the morning mail, and it feeds an approval loop rather than an applicant robot. A daily digest mails what is new. A separate connector reads the same database and proposes the best one or two candidates as Trello cards for a human to approve or reject — and only an approval releases the expensive half that builds a tailored application. Nothing is ever submitted to an employer automatically: the last step is an email to a human, and that human presses send. The paid lane ships disarmed behind an explicit switch.
The results
What exists, read off the live installation on 26 July 2026: a radar that has been fetching unattended every morning since 9 July, with 522 listings stored and judged in that time across seven sources — 259 from jobindex, 230 from emagine, and the remainder from Verama, freelancermap, rightpeoplegroup, weworkremotely and amino. 474 of them have been scored by the model. 47 are still open in the interface; 388 were discarded, most of them by the rules or the judge with the reason recorded, and 87 disappeared from their own feeds and were retired automatically. Eight application emails have been drafted. Everything dropped at fetch time on geography or engagement — the large majority of what the seven boards actually publish — is not in those numbers at all, because it was never stored.
What it has not proven, stated plainly: this is a sourcing and filtering machine, not a hiring outcome. One listing is marked applied. No engagement has been won through it, and there is no reply-rate or interview-rate figure worth quoting yet — the pipeline that would measure that is built but deliberately switched off, and the lane that spends money on tailored applications only runs for a job a human has explicitly approved on a card. The honest claim is about the funnel: the daily reading is done by the machine, the discards carry their reasons, and a correction taught once keeps holding.
Why there is no link and no real screenshot. The tool is private by design — one person's live job search, complete with which employers were contacted and what was said about them. It answers 401 to every unauthenticated request, so there is nothing to demonstrate publicly and no wish to. The interface shown here is a throwaway copy of the same code fed invented rows; the real board's contents are not published, quoted or described in this case.
"Remote" alone is not enough — the work has to be doable remotely from Denmark, or be genuinely open to anywhere in the world.