frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Freephdlabor: Customizable multiagent research automation system

https://freephdlabor.github.io/
1•junyuren•15s ago•1 comments

Show HN: Transmit.dev – A fair, credit-based alternative to CPaaS vendors

1•puches•15m ago•0 comments

How to Harden AI Instances for Privacy and Security

https://techshinobi.org/posts/ai-privacy/
1•techshinobi•15m ago•0 comments

Nvidia Becomes World’s First $5T Company

https://www.ft.com/content/62933c70-261c-4b7a-a045-3f9f9cceccd7
4•sarimkx•20m ago•4 comments

Show HN: NepaliGPT – Open-Source Nepali and English Language Model (MIT

https://huggingface.co/universalml/NepaliGPT-2.0
1•prince_singh•29m ago•0 comments

Jet engine shortages threaten AI data center expansion, wait times into 2030

https://www.tomshardware.com/tech-industry/turbine-shortage-threatens-ai-datacenters-as-wait-time...
1•pabs3•30m ago•0 comments

Show HN: I built a crypto investment platform after losing money guessing

https://investwithclarity.xyz/
1•frukerick•31m ago•0 comments

Trump says South Korea will build a nuclear submarine in the U.S.

https://www.npr.org/2025/10/29/nx-s1-5590230/trump-nuclear-submarine-south-korea
1•bear_with_me•32m ago•0 comments

AI Use Makes Us Overestimate Our Cognitive Performance

https://www.aalto.fi/en/news/ai-use-makes-us-overestimate-our-cognitive-performance
1•jruohonen•36m ago•2 comments

Comparing Claude Code vs. OpenCode

https://www.andreagrandi.it/posts/comparing-claude-code-vs-opencode-testing-different-models/
1•behnamoh•40m ago•0 comments

A Brief History of the Cypherpunk Movement

https://seykhel.org/en/blog/history/
1•suioir•42m ago•1 comments

China's New Influencer Law: Only Degree-Holders Can Discuss Professional Topics

https://www.moroccoworldnews.com/2025/10/265324/chinas-new-influencer-law-says-only-degree-holder...
2•ghssds•48m ago•0 comments

Why is Python's OrderedDict ordered?

https://www.piglei.com/articles/en-why-is-python-ordereddict-ordered/
3•misonic•51m ago•0 comments

Unscreen Pro: Remove Video Background with AI

https://unscreen.pro
1•sparkalpha•54m ago•0 comments

Blank Page Website for Writing

https://focusforge.net
3•chwiho•59m ago•0 comments

Germany examines nationalising Rosneft arm after US sanctions

https://www.reuters.com/business/energy/germany-examines-nationalising-rosneft-arm-after-trump-sa...
3•geox•59m ago•0 comments

Affluent Investors Are Using Options Math to Borrow on the Cheap

https://www.bloomberg.com/news/articles/2025-10-29/trump-and-xi-set-to-formalize-trade-truce-afte...
1•imichael•1h ago•2 comments

Upply – AI that auto-fills any online form

https://goapply.today/
1•longama•1h ago•2 comments

Solving the Character Encoding Issue When Reading DuckDB via ODBC in Excel VBA

https://redraiment.medium.com/solving-the-character-encoding-issue-when-reading-duckdb-via-odbc-i...
1•redraiment•1h ago•1 comments

Show HN: Claim-Detective – Verify Suspicious Tech Claims Collaboratively

https://www.claim-detective.com/
1•stackoversnow•1h ago•0 comments

Trump asks Pentagon to resume testing US nuclear weapons

https://www.reuters.com/world/china/trump-asks-pentagon-immediately-start-testing-us-nuclear-weap...
8•JKCalhoun•1h ago•3 comments

One Year with Next.js App Router – Why We're Moving On

https://paperclover.net/blog/webdev/one-year-next-app-router
4•nnx•1h ago•2 comments

Found a clean subnet cheatsheet website

https://subnetmaskcheatsheet.com
1•chwiho•1h ago•0 comments

Data centers turn to commercial aircraft jet engines as AI power crunch bites

https://www.tomshardware.com/tech-industry/data-centers-turn-to-ex-airliner-engines-as-ai-power-c...
2•pabs3•1h ago•3 comments

Top researchers consider leaving US amid funding cuts:Science world is ending [video]

https://www.youtube.com/watch?v=yLvO070E_dI
5•thelastgallon•1h ago•0 comments

Use the XDG Base Directory Specification

https://xdgbasedirectoryspecification.com/
1•Bogdanp•1h ago•0 comments

GitHub MCP Server now with server instructions, better tools, and more

https://github.blog/changelog/2025-10-29-github-mcp-server-now-comes-with-server-instructions-bet...
2•kordlessagain•1h ago•0 comments

Hello-World iOS App in Assembly

https://gist.github.com/nicolas17/966a03ce49f949dd17b0123415ef2e31
12•pabs3•1h ago•3 comments

No Nvidia Chips Needed Amazon's New AI Data Center for Anthropic [video]

https://www.youtube.com/watch?v=vnGC4YS36gU
1•mgh2•1h ago•0 comments

IRCd service (2024)

https://example.fi/blog/ircd.html
30•pabs3•1h ago•4 comments
Open in hackernews

Show HN: Define, Generate, Parse Sequences

https://v0-sequence-generator-ui.vercel.app/
2•all2•11h ago

Comments

all2•11h ago
Hi. I've had this sequence generator in my head for about 4 or 5 months now. I've been working on a mini-PLM for work projects, and it seemed right to me to be able to spec part numbers using a fixed grammar. The idea is that a part number would be stored in a DB along side its grammar specification. Then, when a part is queried, business logic can ingest the part number spec and parse the part number according to the spec. For companies where information about a part, its attributes, etc. are stored in a part number (category, revision, configuration codes, etc.) having this extra little tool could prove to be useful. At least I hope so.

I hacked together a python implementation, and then used v0 to mock a user interface. There is no backing DB, but there is the ability to import/export. If anyone is interested, I can put the app in a git repo and share it around.

---

A sequence is any list of characters that can be yielded in turn. This is distinct from a regex character class in that a sequence not only matches a set of characters, but it is also, given some input, the specification for which character comes next.

A sequence can be concatenated with another sequence, IE my_seq = Seq([1, 2, 3]) + Seq([a, b, c]). The second sequence is the lowest radix (like in base 10 numbers). If we say next(my_seq), we get 1a, then 1b, and so on.

In the linked app, there are two options that encapsulate this idea: "Range" and "Sequence".

A Literal is a sequence that returns the same one or more characters. We can use this as a separator: sep = Seq("-"). This will always return '-' on next().

A Select is a sequence that returns only the selected Literal.

An Alt is a sequence that bounces back and forth between two options. I'm not convinced this is necessary or even useful.

---

What's next: for this app, probably nothing. The sequence grammar needs to be refined. I'd like to use the 'combinator' approach to allow any sequence to be used in any other sequence. This would work both for parsing and for generating.

I hope you guys enjoy playing with this as much as I enjoyed "building" it. It was fun to watch this come together into something that 1) looks good, and 2) actually works pretty well.