Directory
Companies tracked by Rails Radar
Hiring signals with observed stack evidence. Showing 1105–1152 of 1479 · page 24 of 31.
-
STXT, indentation-based format with schemas and no escape characters 0 open listings
discussion=https://news.ycombinator.com/item?id=49681808, title=Show HN: STXT, indentation-based format with schemas and no escape characters, STXT is a human-first text format for documents: it has very few rules and is designed around simplicity and readability. The goal is a language that people write naturally, and machines parse securely and reliably. Compared with XML, you keep namespaces and schemas, but without closing tags or escape characters. There is no entity expansion or external resource references either. Compared with YAML or TOML, every value is text (no Norway problem), a text block is literal, and schemas are STXT documents too. The combination of STXT and Markdown allows validated and structured documents, with the expressiveness of Markdown. To explain it, I've created the main portal https://stxt.dev , made with STXT itself (add .stxt to any URL to see the source). In the portal you can find all the specifications, the tutorial, VSCode extension, a CLI, parsers in Java, TypeScript, Python, and a playground: https://play.stxt.dev . All available in https://github.com/stxt-lang/ . An example in STXT (extra indentation for HN): Book (com.example.library): Title: Modern Software Architecture Authors: Author: Keyla Brown Author: Joan Costa ISBN: 978-84-123456-7-4 Published: 2026-08-25 Summary >> This book offers a practical view of patterns and best practices for designing distributed, scalable systems. And the template with the structure and cardinality: Template (@stxt.template): com.example.library Structure >> Book: Title: (1) Authors: (1) Author: (+) ISBN: (1) Published: (1) DATE Summary: (?) TEXT Why STXT? I created STXT in the spring of 2013, as a language that preserves the most used of XML, while being able to be written by non-technical people. The first version was finished, different from the current one, but I never announced it. In 2014 my daughter was born; my priorities changed. Time passed, other languages were created, and we arrived at 2025. In those years I didn't find another format with the same balance of characteristics that STXT has, and I decided that was the time to resume the project. Since then, I've been revising the language, using it for personal projects, and I consider it usable and stable. I'd love to have your feedback, impressions and comments.
-
SagaShield 0 open listings
discussion=https://news.ycombinator.com/item?id=49617938, title=Show HN: SagaShield – ACID transactions and security guardrails for AI agents
-
Sahara, a plain-language view of a relative's MyChart record 0 open listings
discussion=https://news.ycombinator.com/item?id=49625518, title=Show HN: Sahara, a plain-language view of a relative's MyChart record
-
Salesforge Hiring 1 open listing
url=https://remoteOK.com/remote-jobs/remote-senior-backend-engineer-build-ai-agents-salesforge-1137114, title=Senior Backend Engineer Build AI Agents
-
Salmon 0 open listings
discussion=https://news.ycombinator.com/item?id=49696552, title=Show HN: Salmon – tray and desktop alerts for systemd services and custom checks
-
Salt 0 open listings
discussion=https://news.ycombinator.com/item?id=49747239, title=Show HN: Salt – Human and AI Economies driven across E2E encrypted chats, Hello, I started building this back in 2022 and it's probably time to launch it. Basically enabling agents and humans to build networks, transact, build economies, etc around identity, work, commerce. It's still in beta, but it's been a dream for a while and it's ready to take on its first users for feedback. I've got plenty more interesting capabilities coming as I refine and distill down how this all fits together in the grand scheme of the future vision.
-
Samsara Hiring 1 open listing
url=https://weworkremotely.com/remote-jobs/samsara-staff-software-engineer, title=Staff Software Engineer
-
Sanctum 0 open listings
discussion=https://news.ycombinator.com/item?id=49672405, title=Show HN: Sanctum – A plugin that allows only the sites you need
-
SaneHosts 0 open listings
discussion=https://news.ycombinator.com/item?id=49691234, title=Show HN: SaneHosts – Mac GUI for /etc/hosts with Touch ID before writes
-
Sardine Hiring 3 open listings
-
Sass 0 open listings
discussion=https://news.ycombinator.com/item?id=49717709, title=Show HN: Sass – Rust and WASM
-
SayItFlow 0 open listings
discussion=https://news.ycombinator.com/item?id=49701374, title=Show HN: SayItFlow – On-device Mac dictation that unloads models when idle
-
ScaleUp City Simulator 0 open listings
discussion=https://news.ycombinator.com/item?id=49711306, title=Show HN: ScaleUp City Simulator, I've been experimenting with Fable 5.1 and it's ability to one-shot from a reasonable PRD, and then follow up/evaluate its work and then create/improve via a ticket stack and loops. This is a Friday afternoon prototype and fun to play. Enjoy!
-
Scispot Hiring 1 open listing
employer=Scispot, profile=https://www.ycombinator.com/companies/scispot-io, article=https://thoughtbot.com/blog/48-companies-you-didn-t-know-were-using-rails-in-2026, source=https://www.ycombinator.com/, ruby_jobs=1, titles=Senior Backend & Infrastructure Engineer
-
Scoopkit 0 open listings
discussion=https://news.ycombinator.com/item?id=49715271, title=Show HN: Scoopkit – An AI news API that returns events, not articles
-
Scriptlet 0 open listings
discussion=https://news.ycombinator.com/item?id=49684444, title=Show HN: Scriptlet – a native macOS app for package.json scripts, I built Scriptlet because I kept losing track of dev servers and other processes while working with coding agents. Just easy start/stop controls that I prefer but wanted to build it natively for mac so I did =) https://scriptlet.app .
-
SeaSearch 0 open listings
discussion=https://news.ycombinator.com/item?id=49721546, title=Show HN: SeaSearch – Lightweight, S3-backed multi-tenant search engine, Hi HN, I'm Daniel, co-founder of Seafile. I'm glad to share our open-sourcing project SeaSearch, a search engine written in Go (built on ZincSearch) that we’ve been running in production for over two years for Seafile project. After years of using Elasticsearch, we think there are two main problems with Elasticsearch: It is not lightweight and hard to maintain a cluster All of seafile tenants' data was stored in a single index and it is slow to search a file in a single library because the whole index need to be searched Three years ago, we started developing a solution to solve the two problems. Rather than building a search engine from scratch, we built on top of ZincSearch, that is implemented in Go rather than JVM with a smaller runtime footprint and has Elasticsearch API compatibility, but it was still missing something that we get to find out along the way. We have now open-sourced SeaSearch with the pieces we needed: S3-backed Storage: Index data lives in S3. Compute nodes share the same backend, making scaling/failover instant (no data replication needed). Smart Caching: Uses a local disk cache for immutable segments to keep things fast despite the S3 backend. ES API Compatible: Works as a drop-in replacement for most Elasticsearch query endpoints. Lightweight Go Runtime: No JVM overhead. Vector Search: Built-in support for HNSW/IVFPQ for hybrid semantic search. Hope this helps fellow devs who are stuck in this problem when building multi-tenant SaaS applications. Looking forward to your responses.
-
Seamless pane navigation across nested tmux sessions over SSH 0 open listings
discussion=https://news.ycombinator.com/item?id=49717989, title=Show HN: Seamless pane navigation across nested tmux sessions over SSH, Hey, I've got tired of dealing with tmux prefixes so I made a plugin that makes pane switching seamless across SSH/nested tmux boundaries. Now you can just use Alt+↑/↓/←/→ instead of doing mental math calculating the right combination of prefixes to switch panes. Enjoy!
-
Seams handles access, spend caps, and metering on one request path 0 open listings
discussion=https://news.ycombinator.com/item?id=49625739, title=Show HN: Seams handles access, spend caps, and metering on one request path, Seams is the billing infrastructure for AI products, we help you manage end user usage spend for different pricing strategies, usage-based, credit and outcome based. We do helping you spin up a managed gateway under your own domain, model names, routing etc. Would love to hear your feedback on this
-
Search Archive.org with proper AND/OR and full-text book search 0 open listings
discussion=https://news.ycombinator.com/item?id=49710644, title=Show HN: Search Archive.org with proper AND/OR and full-text book search, I built a professional extraction layer for Archive.org. Please try it and if you have any ideas to make it better, let me know.
-
SearchAPI 2 open listings
-
Searchy SEO 0 open listings
discussion=https://news.ycombinator.com/item?id=49633814, title=Show HN: Searchy SEO – feature-rich mobile app for Google Search Console
-
SeasonMap 0 open listings
discussion=https://news.ycombinator.com/item?id=49728781, title=Show HN: SeasonMap – when to travel where? visualized with climate data
-
Security Cards 0 open listings
discussion=https://news.ycombinator.com/item?id=49642340, title=Show HN: Security Cards – Reducing insecure AI-generated code by 72%, AI coding agents often generate functionally correct but insecure code. To address this issue, we have open-sourced Security Cards, targeted security guidance for 80+ widely used libraries across 13 programming languages. Our evaluation shows that the Security Cards reduce the rate of insecure code generation by up to 72.3% in Claude Code with Opus 4.7. You can find these security cards on GitHub ( https://github.com/Reware-Labs/securitycards ) or on our website ( https://securitycards.rewarelabs.com/ ) We are planning to constantly support more languages and libraries, and we’d be glad to hear your feedback, especially on where these cards would be most useful in your workflow, and which libraries we should support next.
-
Sedona Digital Hiring 1 open listing
url=https://weworkremotely.com/remote-jobs/sedona-digital-senior-platform-engineer-devops, title=Senior Platform Engineer(DevOps)
-
See 100 charts while your coffee brews 0 open listings
discussion=https://news.ycombinator.com/item?id=49656639, title=Show HN: See 100 charts while your coffee brews, AutoChart auto-scrolls your TradingView watchlist, hands-free. Set an interval, press Start, and scan 100 charts while your coffee brews. Your drawings and indicators stay untouched.
-
See Sounds on Your Webcam 0 open listings
discussion=https://news.ycombinator.com/item?id=49644603, title=Show HN: See Sounds on Your Webcam
-
See all stocks traded by Donald Trump 0 open listings
discussion=https://news.ycombinator.com/item?id=49614166, title=Show HN: See all stocks traded by Donald Trump, You can also find stocks traded by elected officials on this website. It is updated every day.
-
See how much of your Claude, Codex, or Copilot subscription is left 0 open listings
discussion=https://news.ycombinator.com/item?id=49658615, title=Show HN: See how much of your Claude, Codex, or Copilot subscription is left
-
Self Host Your Own Minecraft Java Server with Ease 0 open listings
discussion=https://news.ycombinator.com/item?id=49653352, title=Show HN: Self Host Your Own Minecraft Java Server with Ease
-
Self-Hosted Code Review Agent for Local LLM 0 open listings
discussion=https://news.ycombinator.com/item?id=49609154, title=Show HN: Self-Hosted Code Review Agent for Local LLM
-
Self-adjusting vLLM at production scale 0 open listings
discussion=https://news.ycombinator.com/item?id=49715865, title=Show HN: Self-adjusting vLLM at production scale
-
Self-host open-source LLMs on AWS with scale-to-zero 0 open listings
discussion=https://news.ycombinator.com/item?id=49620813, title=Show HN: Self-host open-source LLMs on AWS with scale-to-zero
-
Self-hosted business software you can extend with Python modules 0 open listings
discussion=https://news.ycombinator.com/item?id=49610870, title=Show HN: Self-hosted business software you can extend with Python modules
-
Self-hosted coffee app for tracking espresso shots, with AI assistance 0 open listings
discussion=https://news.ycombinator.com/item?id=49696194, title=Show HN: Self-hosted coffee app for tracking espresso shots, with AI assistance
-
Self-hosted company OS, Claude Code and Codex agents in departments 0 open listings
discussion=https://news.ycombinator.com/item?id=49630606, title=Show HN: Self-hosted company OS, Claude Code and Codex agents in departments, Hi HN, I am Dimitris.
-
Serica: Single-binary web search and article extraction in Rust 0 open listings
discussion=https://news.ycombinator.com/item?id=49609767, title=Show HN: Serica: Single-binary web search and article extraction in Rust
-
SerpApi Hiring 1 open listing
url=https://jobs.rubyonrails.org/jobs/40899-senior-fullstack-engineer-serpapi, title=Senior Fullstack Engineer, description=..., and monitor SerpApi's APIs, features, and documentation. Our current stack is Ruby, Rails, MongoDB, and JavaScript. We deploy on Linux servers on AWS. Responsibilities -Design APIs, solutions, and features to incorporate into SerpApi -Ner...
-
Serverside.chat 0 open listings
discussion=https://news.ycombinator.com/item?id=49702084, title=Show HN: Serverside.chat
-
Session-trail 0 open listings
discussion=https://news.ycombinator.com/item?id=49741164, title=Show HN: Session-trail – A timeline of your project, not a graph of your code
-
Share your AI Setup, Learn from others 0 open listings
discussion=https://news.ycombinator.com/item?id=49740105, title=Show HN: Share your AI Setup, Learn from others, I kept seeing engineers share what they were building with AI; however, I was always more curious about how they worked. Which agents did they use? What skills and tools had stuck or been thrown out the window? How did they manage longer-running tasks? So I built this with the hope we could have a dedicated space to share and be open about our setups.
-
Sharpniq 0 open listings
discussion=https://news.ycombinator.com/item?id=49670159, title=Show HN: Sharpniq – AI-powered tool to unblur images online, Sharpniq is an AI-powered unblur image tool that sharpens blurry photos and restores image clarity online in seconds, with no software installation required.
-
Sheet Insights BI 0 open listings
discussion=https://news.ycombinator.com/item?id=49663240, title=Show HN: Sheet Insights BI – Local Excel/CSV Dashboards for Windows
-
Shelf, a local-first open-source tab manager for Chrome 0 open listings
discussion=https://news.ycombinator.com/item?id=49708806, title=Show HN: Shelf, a local-first open-source tab manager for Chrome
-
Shine 0 open listings
discussion=https://news.ycombinator.com/item?id=49649351, title=Show HN: Shine – a terminal Markdown previewer and docs linter
-
ShipCheck 0 open listings
discussion=https://news.ycombinator.com/item?id=49645367, title=Show HN: ShipCheck – Catch when AI breaks old fixes
-
Shiva | Jobs Openings | Hiring Hiring 1 open listing
url=https://x.com/jobs_posting/status/2098311480836055510, title=Moneygram is hiring Solutions Engineer, Payout Rails in India. 4+ years in solutions engineering, integration engineering, technical account management, or plat, matching_tags=Rails, description=Moneygram is hiring Solutions Engineer, Payout Rails in India. 4+ years in solutions engineering, integration engineering, technical account management, or platform engineering, in payments, fintech, or banking. Follow for Job Updates. http..., author=@jobs_posting, author_name=Shiva | Jobs Openings | Hiring
-
Shiva | Jobs Openings | Hiring Alerts Hiring 1 open listing
url=https://x.com/jobs_posting/status/2098311480836055510, title=Moneygram is hiring Solutions Engineer, Payout Rails in India. 4+ years in solutions engineering, integration engineering, technical account management, or plat, matching_tags=Rails, description=Moneygram is hiring Solutions Engineer, Payout Rails in India. 4+ years in solutions engineering, integration engineering, technical account management, or platform engineering, in payments, fintech, or banking. Follow for Job Updates. http..., author=@jobs_posting, author_name=Shiva | Jobs Openings | Hiring Alerts