<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: sbysb</title><link>https://news.ycombinator.com/user?id=sbysb</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 10 Aug 2026 15:22:25 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=sbysb" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by sbysb in "OpenChamber: An Agentic Development Environment"]]></title><description><![CDATA[
<p>I had another comment in a thread last week about this: <a href="https://news.ycombinator.com/item?id=49111625">https://news.ycombinator.com/item?id=49111625</a><p>I really think that using something like Paseo (I use Ouijit[1] because I think it's actually a step ahead of where most of these multiplexers are) and nono[2] is basically the best coverage you can have, and really lets you go crazy with auto mode or permission skipping withiout having to worry about any security concerns.<p>A lot of people lean into the VMs but realistically it's not actually doing a lot of the security work that you need and leaves you wide open to prompt injection/exfiltration attaacks. The flexibility of a good nono setup (which is easy because they ship a nono skill that claude can consume) actually locks things down significantly better<p>1. <a href="https://ouijit.com/" rel="nofollow">https://ouijit.com/</a>
2. <a href="https://nono.sh/" rel="nofollow">https://nono.sh/</a></p>
]]></description><pubDate>Mon, 10 Aug 2026 04:15:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=49239149</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49239149</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49239149</guid></item><item><title><![CDATA[New comment by sbysb in "Harness Engineering for Self-Improvement"]]></title><description><![CDATA[
<p>There is a really good video by the author of pi.dev (which I have used to build some of my own harnesses): <a href="https://www.youtube.com/watch?v=RjfbvDXpFls" rel="nofollow">https://www.youtube.com/watch?v=RjfbvDXpFls</a><p>The basis of the argument is that the labs are constantly pushing updates to their system prompts that are used in claude code or codex, which are exceptionally bloated and change the sand beneath your feet with every update.<p>By rolling your own harness, as long as you keep up with the latest advances and changes in the ecosystem, you capture a lot of the 'control' that LLM-based development feels like it strips from you.<p>Obvious disclaimer that I use pi.dev when I am aiming for consistency, not absolute quality. Custom harnesses on pi are what I ship, claude code is still my fallback if I need to make sure a PR is the highest absolute quality</p>
]]></description><pubDate>Tue, 04 Aug 2026 13:38:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=49168842</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49168842</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49168842</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (August 2026)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time<p>Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Dependency Management, Endpoint Protection, and Compliance Platform. We recently raised a Series A and are growing at an rapid pace and working on some very exciting projects.<p>What we're looking for:<p>- Strong problem solvers who can work independently in a remote environment<p>- Security-minded professionals passionate about building robust, scalable systems<p>Tech stack: Go, TypeScript, React, Kubernetes<p>We have a huge number of roles open across the organization from Engineering (backend, frontend, fullstack, AI, infra) to Operations.<p>If you're interested in joining our team, please reach out to join<at>oneleet<dot>com with the subject line "HN: <Job Title>" and your resume attached. Alternatively, you can also apply at <a href="https://jobs.ashbyhq.com/oneleet" rel="nofollow">https://jobs.ashbyhq.com/oneleet</a></p>
]]></description><pubDate>Tue, 04 Aug 2026 01:37:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=49163458</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49163458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49163458</guid></item><item><title><![CDATA[New comment by sbysb in "Git worktrees are not an isolation boundary for coding agents"]]></title><description><![CDATA[
<p>> nono is great but you'll still won't be able to run multiple dev servers, dbs or test in the browser...<p>With our profile setup you can do all three of those things - there is a fresh chrome profile that is blocked against the same network firewall. Claude and Playwright can navigate to the dev stack and screenshot/test it (and non-allowlisted websites are blocked at the network level).<p>As long as the developer runs the `task start` command outside the sandbox (because docker is blocked), the agent can then interact with it all that they want, and our devs can run 2-3 of these per machine and work on concurrent projects. (based on memory usage / cpu usage)<p>> a tool to teleport your files, skills, settings, claude/codex subscriptions etc in any of the popular sandboxes<p>FWIW this is _explicitly_ the opposite of our threat model - everything other than your git credentials that you 'teleport' in (code, settings, Claude/Codex subscription tokens) now lives inside the blast radius, on third-party infra, and a prompt-injected agent in the box can send it anywhere unless you're also egress-filtering. A VM isolates the machine - it doesn't protect the data.<p>Much easier to keep it all local and refuse any network or file access to anything you don't explicitly approve</p>
]]></description><pubDate>Thu, 30 Jul 2026 21:34:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49116117</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49116117</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49116117</guid></item><item><title><![CDATA[New comment by sbysb in "Git worktrees are not an isolation boundary for coding agents"]]></title><description><![CDATA[
<p>All git config and hooks are not writable inside the sandbox. This can be somewhat frustrating as you have to run git config commands outside, but the tradeoff is worth it imo. Nono allows for directory level permissioning, so the entire `.git/hooks` directory and `.git/config` / `.git/worktrees/*/config.worktree` are write blocked.<p>Worth calling out that this doesn't close all of these types of attacks, just the ones that are invisible (claude could very well write ./hack.sh and tie that in to your main.go, but at least it would be a diffable change, instead of invisible like a git hook)</p>
]]></description><pubDate>Thu, 30 Jul 2026 16:18:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=49112148</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49112148</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49112148</guid></item><item><title><![CDATA[New comment by sbysb in "Git worktrees are not an isolation boundary for coding agents"]]></title><description><![CDATA[
<p>Git worktrees are a great isolation boundary for _changes_ (especially making changes in parallel on a single machine), but not behavior. If you are trying to actually run autonomous agents securely you need something that lives outside the harness that actually blocks actions in a way that can't be prompted around.<p>We use nono [1] for this internally, essentially blocking any actions we don't want agents to be able to do without human approval. Our developers can just run `task claude` or whatever their harness is) and it pre-wraps it with our profile that enforces:<p>- Filesystem: read/write only the worktree plus dev-tooling dirs (Go, Doppler, Graphite caches, git common dir); explicitly no Docker socket and it can't edit its own Claude settings files (so it can't loosen its own permissions).<p>- Network: outbound only to an allowlist - Anthropic, Doppler, Go module proxies, our dev environments while still allowing binding local dev-server ports.<p>- GitHub: read anything in the org, and create/edit PRs and push branches - but it cannot merge, close, review, or comment on PRs, delete branches, touch repo settings/secrets, manage auth, or use raw gh api. Those are all "human-only". GitHub tokens are never exposed to the agent; they're injected by a proxy so it can't read or exfiltrate them.<p>This is great because it is harness agnostic - any developer can use whatever harness they want as long as they port the nono profile to it, as it will enforce all of the above in a way that is not tied to a specific harness implementation<p>[1] <a href="https://github.com/nolabs-ai/nono" rel="nofollow">https://github.com/nolabs-ai/nono</a></p>
]]></description><pubDate>Thu, 30 Jul 2026 15:45:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=49111625</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=49111625</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49111625</guid></item><item><title><![CDATA[New comment by sbysb in "I'm Begging You to Leave Your AI Note-Taker at Home"]]></title><description><![CDATA[
<p>I mean most of these tools pair the notes/transcript with a video recording of the call. It can be super helpful to search the summaries to find the right recording, and then click the line in the transcript to re-watch the meeting.<p>For work, this is strictly better than not recording the meeting, as it allows for much faster searching, and it is very rarely wrong about the high level topics of a convo. I almost always go "General AI summary search" -> Transcript -> recording when trying to remember a specific item from a call.<p>That being said the parent article is spot on and I can't imagine someone bringing a recording to a conversation they aren't being paid to have.</p>
]]></description><pubDate>Thu, 02 Jul 2026 02:57:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48755950</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=48755950</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48755950</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (July 2026)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time<p>Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Dependency Management, Endpoint Protection, and Compliance Platform. We recently raised a Series A and are growing at an rapid pace and working on some very exciting projects.<p>What we're looking for:<p>- Strong problem solvers who can work independently in a remote environment<p>- Security-minded professionals passionate about building robust, scalable systems<p>Tech stack: Go, TypeScript, React, Kubernetes<p>Open role highlights:<p>- Application Security Engineer: Help drive the design and implementation of bleeding edge security tooling<p>- Application Software Engineer: Contribute to an all-in-one cybersecurity agent for devices, including security alerting and mobile device management<p>- Product Marketing Manager: Build the sales enablement arsenal and thought leadership content that turns technical capabilities into deals won<p>- We are also hiring across the stack (backend, frontend, fullstack, AI, infra) on the engineering team.<p>If you're interested in joining our team, please reach out to join<at>oneleet<dot>com with the subject line "HN: <Job Title>" and your resume attached. Alternatively, you can also apply at <a href="https://jobs.ashbyhq.com/oneleet" rel="nofollow">https://jobs.ashbyhq.com/oneleet</a></p>
]]></description><pubDate>Wed, 01 Jul 2026 20:40:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48752812</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=48752812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48752812</guid></item><item><title><![CDATA[New comment by sbysb in "Gribouille 0.3.0: A Grammar of Graphics for Typst"]]></title><description><![CDATA[
<p>I do not think that is the problem with markdown lol. There are lots of problems with markdown, especially vanilla or the more limited versions of it - but really its super power is that it is readable with a regular text editor (or `cat`) and can be rendered without a compilation step.<p>Markdown is not competing with latex or typst, it is competing with (and has won against) .txt files</p>
]]></description><pubDate>Fri, 19 Jun 2026 06:40:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48595536</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=48595536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48595536</guid></item><item><title><![CDATA[New comment by sbysb in "DeepSeek v4"]]></title><description><![CDATA[
<p>It's difficult because even if the underlying model is very good, not having a pre-built harness like Claude Code makes it very un-sticky for most devs. Even at equal quality, the friction (or at least perceived friction) is higher than the mainstream models.</p>
]]></description><pubDate>Fri, 24 Apr 2026 04:20:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47885461</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47885461</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47885461</guid></item><item><title><![CDATA[New comment by sbysb in "Parallel agents in Zed"]]></title><description><![CDATA[
<p>You should check out Ouijit [1] - I use it regularly for work and it's nice because it focuses on the environment that you want, and just gives you a shell that you can use any tooling in, as well as VM isolation per worktree if needed.<p>[1]: <a href="https://github.com/ouijit/ouijit" rel="nofollow">https://github.com/ouijit/ouijit</a></p>
]]></description><pubDate>Wed, 22 Apr 2026 23:27:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47870555</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47870555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47870555</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: What Are You Working On? (April 2026)"]]></title><description><![CDATA[
<p><a href="https://meza.chat/" rel="nofollow">https://meza.chat/</a><p>Been building an E2EE chat client on the weekends that sits right between Discord (but dis-enshittified) and Matrix (but with good UX around encryption). Still got some rough edges - we are in the second nine of the march of nines in terms of quality.<p><a href="https://github.com/mezalabs/meza" rel="nofollow">https://github.com/mezalabs/meza</a></p>
]]></description><pubDate>Mon, 13 Apr 2026 15:26:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47753395</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47753395</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47753395</guid></item><item><title><![CDATA[New comment by sbysb in "The cult of vibe coding is dogfooding run amok"]]></title><description><![CDATA[
<p>I have used Claude Code in the terminal to the tune of ~20m tokens in the last month and I have very little to complain about. There are definitely quirks that are annoying (as all software has, including vs code or jetbrains IDEs) but broadly speaking it does what it says on the tin ime</p>
]]></description><pubDate>Mon, 06 Apr 2026 19:10:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47665435</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47665435</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47665435</guid></item><item><title><![CDATA[New comment by sbysb in "The cult of vibe coding is insane"]]></title><description><![CDATA[
<p>> some people say that the max AI Level should be 5<p>> of course some people think that you lose touch with the ground if you go above AI Level 2<p>I really think that this framing sometimes causes a loss of granularity. As with most things in life, there is nuance in these approaches.<p>I find that nowadays for my main project I where I am really leaning into the 'autonomous engineering' concept, AI Level 7 is perfect - as long as it is qualified through rigorous QA processes on the output (ie it is not important what the code does if the output looks correct). But even in this project that I am really leaning into the AI 'hands-off' methodology, there are a few areas that dip into Level 5 or 4 depending on how well AI does them (Frontend Design especially) or on the criticality of the feature (in my case E2EE).<p>The most important thing is recognizing when you need to move 'up' or 'down' the scale and having an understanding of the <i>system</i> you are building</p>
]]></description><pubDate>Mon, 06 Apr 2026 19:04:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47665334</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47665334</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47665334</guid></item><item><title><![CDATA[New comment by sbysb in "Cursor 3"]]></title><description><![CDATA[
<p>FWIW I'm not saying Cursor is not capable of this, but that all of the 'Cursor' bits are superfluous, and using tools that bring you closer to the 'bare metal' of the terminal actually give you both more flexibility (I can run Claude Code, Crush, Codex, OpenCode, etc) and remove an entire layer of abstraction that I believe hinders a devs ability to really go all in on agentic engineering.<p>I started using Cursor and it was my daily driver for a year or two, but I haven't looked back once in regret moving more towards a terminal focused workflow. (Not to mention the pricing of Cursor being absolutely abysmal as well, although often comped by employers)</p>
]]></description><pubDate>Fri, 03 Apr 2026 03:03:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47622778</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47622778</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47622778</guid></item><item><title><![CDATA[New comment by sbysb in "Cursor 3"]]></title><description><![CDATA[
<p>> Anyway, you’re right Claude Code is less ergonomic; generally slower.<p>The secret in my experience is parallelization - Cursor might be faster or have better ergo for a single task, but Claude Code really shines when you have 6 tasks that are fairly independent.<p>If you treat CC as just another terminal tool and heavily use git worktrees, the overall productivity shoots through the window. I've been using a tool called Ouijit[1] for this (disclosure: the dev is an old colleague of mine), and I genuinely do not think I could go back to using Cursor or any other traditional IDE+agent. I barely even open the code in an editor anymore, primarily interacting through the term with Vim when I need to pull the wires out.<p>[1]: <a href="https://github.com/ouijit/ouijit" rel="nofollow">https://github.com/ouijit/ouijit</a></p>
]]></description><pubDate>Fri, 03 Apr 2026 02:38:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47622664</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47622664</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47622664</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (April 2026)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time
Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Endpoint Protection, and Compliance Platform. We recently raised a Series A and are growing at an rapid pace and working on some very exciting projects.<p>What we're looking for:<p>- Strong problem solvers who can work independently in a remote environment<p>- Security-minded professionals passionate about building robust, scalable systems<p>- Comfortable working during Eastern Time<p>Tech stack: Go, TypeScript, React, Kubernetes
Open roles<p>* Application Software Engineer, Endpoint Security (macOS experience preferred)<p>* Fullstack Engineer, AI Implementation<p>* Senior Product Designer<p>* GTM Engineer<p>* Customer Support Specialist<p>We offer:
- Competitive salary<p>- Equity in a fast growing cybersecurity startup<p>- 100% remote work<p>- Company offsites yearly (past offsites have been in The Netherlands, Portugal and Italy)<p>If you're interested in joining our team, please reach out to join<at>oneleet<dot>com with the subject line "HN: <Job Title>" and your resume attached.
Alternatively, you can also apply at <a href="https://jobs.ashbyhq.com/oneleet" rel="nofollow">https://jobs.ashbyhq.com/oneleet</a><p>Additional Note:
We are also building out a 'forward deployed' sales team based in San Fransisco - if interested, please reach out to join<at>oneleet<dot>com with the subject line of `HN: SF Sales`</p>
]]></description><pubDate>Wed, 01 Apr 2026 17:16:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47603733</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=47603733</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47603733</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (November 2025)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time<p>Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Device Monitoring, and Compliance Platform. We just raised a Series A and are growing at an rapid pace and working on some very exciting projects.<p>What we're looking for:<p>Strong problem solvers who can work independently in a remote environment - Security-minded professionals passionate about building robust, scalable systems - Comfortable working during Eastern Time<p>Tech stack: Go, TypeScript, React, Kubernetes<p>Open roles<p>* Software Engineer, Cloud Security Posture Management<p>* Application Software Engineer, Endpoint Security (macOS experience preferred)<p>* Fullstack Engineer, AI Implementation<p>* Security Program Manager (US/EU Timezone)<p>We offer:<p>- Competitive salary - Equity in a fast growing cybersecurity startup - 100% remote work - Company offsites every other quarter (past offsites have been in The Netherlands, Portugal and Italy)<p>If you're interested in joining our team, please reach out to samuel<at>oneleet<dot>com with the subject line "HN: <Job Title>" and your resume attached.<p>Alternatively, you can also apply at <a href="https://jobs.ashbyhq.com/oneleet" rel="nofollow">https://jobs.ashbyhq.com/oneleet</a></p>
]]></description><pubDate>Mon, 03 Nov 2025 19:23:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=45803236</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=45803236</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45803236</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (September 2025)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time<p>Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Device Monitoring, and Compliance Platform. We are growing at an unprecedented pace and working on some very exciting projects.<p>What we're looking for:<p>Strong problem solvers who can work independently in a remote environment - Security-minded professionals passionate about building robust, scalable systems - Comfortable working during Eastern Time<p>Tech stack: Go, TypeScript, React, Kubernetes<p>Open roles:<p>* Software Engineer, Backend<p>* Software Engineer, Cloud Security Posture Management<p>* Application Software Engineer, Endpoint Security<p>* Security Program Manager (EU Timezone)<p>* Technical Sales (must have background in Computer Science or Cybersecurity)<p>* Invoicing Coordinator<p>We offer:<p>- Competitive salary - Equity in a fast growing cybersecurity startup - 100% remote work - Company offsites every quarter (past offsites have been in The Netherlands and Italy)<p>If you're interested in joining our team, please reach out to samuel<at>oneleet<dot>com with the subject line "HN: <Job Title>".<p>Alternatively, you can also apply at <a href="https://www.ycombinator.com/companies/oneleet/jobs">https://www.ycombinator.com/companies/oneleet/jobs</a></p>
]]></description><pubDate>Mon, 01 Sep 2025 19:38:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=45095901</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=45095901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45095901</guid></item><item><title><![CDATA[New comment by sbysb in "Ask HN: Who is hiring? (July 2025)"]]></title><description><![CDATA[
<p>Oneleet (YC S22) | Multiple Roles | US & NATO Countries | Remote | Full-time<p>Oneleet is an all-in-one cybersecurity startup that has built its own Attack Surface Monitoring (ASM), Code Scanner, Device Monitoring, and Compliance Platform. We are growing at an unprecedented pace and working on some very exciting projects.<p>What we're looking for:<p>Strong problem solvers who can work independently in a remote environment - Security-minded professionals passionate about building robust, scalable systems - Comfortable working during Eastern Time<p>Tech stack: Go, TypeScript, React, Kubernetes<p>Open roles:<p>* Senior Software Engineer (Backend)<p>* Application Software Engineer (Endpoint Security)<p>* Security Program Manager (EU Timezone)<p>* Internal Security Compliance Auditor<p>* Technical Sales (must have background in Computer Science or Cybersecurity)<p>* Invoicing Coordinator<p>We offer:<p>- Competitive salary - Equity in a fast growing cybersecurity startup - 100% remote work - Company offsites every quarter (past offsites have been in The Netherlands and Italy)<p>If you're interested in joining our team, please reach out to samuel<at>oneleet<dot>com with the subject line "HN: <Job Title>". If you have already applied but haven't heard back, feel free to follow up on the thread, things have been super busy!<p>Alternatively, you can also apply at <a href="https://www.ycombinator.com/companies/oneleet/jobs">https://www.ycombinator.com/companies/oneleet/jobs</a></p>
]]></description><pubDate>Wed, 02 Jul 2025 06:03:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=44440657</link><dc:creator>sbysb</dc:creator><comments>https://news.ycombinator.com/item?id=44440657</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44440657</guid></item></channel></rss>