frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Jeeves – TUI for browsing and resuming AI agent sessions

https://github.com/robinovitch61/jeeves
7•lrobinovitch•58m ago•0 comments

Show HN: Libretto – Making AI browser automations deterministic

https://github.com/saffron-health/libretto
55•muchael•4h ago•17 comments

Show HN: GNU Grep as a PHP Extension

https://github.com/hparadiz/ext-gnu-grep
18•hparadiz•5d ago•4 comments

Show HN: Every CEO and CFO change at US public companies, live from SEC

https://tracksuccession.com/explore
161•porsche959•7h ago•61 comments

Show HN: Tier – Adaptive tool routing that makes small LLMs 10pt more accurate

https://github.com/yantrikos/tier
4•pranabsarkar•3h ago•4 comments

Show HN: Fakecloud – Free, open-source AWS emulator

https://github.com/faiscadev/fakecloud
6•lucas_vieira•2h ago•3 comments

Show HN: Monadic Networking Library for Go

https://github.com/philip-peterson/fp-go-net
3•ironmagma•2h ago•0 comments

Show HN: Tine – Drive Wayland Around with Agents

https://github.com/smythp/tine
4•tarboreus•3h ago•4 comments

Show HN: Dependicus, a dashboard for your monorepo's dependencies

https://descriptinc.github.io/dependicus/
6•irskep•3h ago•1 comments

Show HN: Cush – curl your shell, an HTTP tunnel for AI agents

https://github.com/statespace-tech/cush
2•esafranchik•4h ago•1 comments

Show HN: LangAlpha – what if Claude Code was built for Wall Street?

https://github.com/ginlix-ai/langalpha
144•zc2610•1d ago•51 comments

Show HN: MCP server gives your agent a budget (save tokens, get smarter results)

https://l6e.ai
4•bennettdixon•4h ago•0 comments

Show HN: Plain – The full-stack Python framework designed for humans and agents

https://github.com/dropseed/plain
89•focom•1d ago•49 comments

Show HN: Avec – iOS email app that lets you handle your Gmail inbox in seconds

https://apps.apple.com/us/app/avec-email-app-for-gmail/id6742199038
14•jnnnthnn•5h ago•2 comments

Show HN: CD-Deluxe for the Command Line

https://github.com/m6z/cd-deluxe
2•m6z•5h ago•1 comments

Show HN: Pseudonymizing sensitive data for LLMs without losing context

https://atticsecurity.com/en/blog/why-llms-hate-fake-data-token-proxy/
4•n00pn00p•8h ago•3 comments

Show HN: Compile English specs into 22 MB neural functions that run locally

7•yuntian•5h ago•0 comments

Show HN: Skillgrab – scan any project, auto-install matching AI skills

https://briascoi.github.io/skillgrab/
5•ismaelb•8h ago•1 comments

Show HN: Scope-structured arena memory for C, O(1) cleanup, no GC/borrow checker

https://github.com/hollow-arena/ariandel
3•theperezident•5h ago•0 comments

Show HN: Ithihāsas – a character explorer for Hindu epics, built in a few hours

https://www.ithihasas.in
174•cvrajeesh•2d ago•44 comments

Show HN: Kelet – Root Cause Analysis agent for your LLM apps

https://kelet.ai/
47•almogbaku•1d ago•23 comments

Show HN: SynapseKit – Async-native Python framework for LLM pipelines and agents

https://github.com/SynapseKit/SynapseKit
4•aminau•8h ago•2 comments

Show HN: Xit – a Git-compatible VCS written in Zig

https://github.com/xit-vcs/xit
9•xeubie•8h ago•1 comments

Show HN: StegoForge – Open-source suite for steganography and ML forensics

https://github.com/Nour833/StegoForge
3•nour833•10h ago•0 comments

Show HN: Helix – open-source self-healing back end for production crashes

https://88hours.github.io/helix-community/
2•NomiJ•11h ago•3 comments

Show HN: Run GUIs as Scripts

https://github.com/skinnyjames/hokusai-pocket
22•zero-st4rs•5d ago•7 comments

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
515•a-ve•3d ago•298 comments

Show HN: My favorite local-feeling remotely accessible Claude Code setup

https://gist.github.com/Reebz/99db98ad4d3c45ebed84989a13710788
4•Reebz•14h ago•1 comments

Show HN: Astrial – Spherical Go on a Snub Dodecahedron

https://astrial.app
3•mingli_yuan•15h ago•1 comments

Show HN: Uninum – All elementary functions from a single operator, in Python

https://github.com/Brumbelow/uninum
6•brumbelow•22h ago•1 comments
Open in hackernews

Show HN: GNU Grep as a PHP Extension

https://github.com/hparadiz/ext-gnu-grep
18•hparadiz•5d ago

Comments

cynicalsecurity•1h ago
Interesting project, writing a useful PHP extension is an every web developer's dream.

However, the licence choice is weird. It's really asking to be MIT. Any company bigger than 2 people pays attention to that. Most web projects are proprietary. GPL‑v3-or-later is not appropriate for proprietary/closed-source.

Also, the README is lacking a nicely looking comparison chart, motivating people why they should use your project instead of just running grep in shell_exec. I'm very unlikely to run the benchmarking scripts myself. You have to convince me why your project is better than the established industry practice.

cdcarter•59m ago
The plugin directly adapts code from GNU Grep, so they MUST release it under the GPL, as far as I understand.
fishgoesblub•57m ago
> GPL‑v3-or-later is not appropriate for proprietary/closed-source.

Perhaps that's the intent of the author. Not everyone is a fan of allowing companies to use your project for their closed source, proprietary garbage.

It's refreshing to see a project that isn't MIT.

hparadiz•8m ago
Thank you for your thoughts.

I made this as a joke with AI in about two hours because I kept seeing this pattern where code bases were grepping for classes because it was faster than anything else available to PHP userspace.

This is a runtime extension so it doesn't preclude you from using it as it would not be considered part of your proprietary code. Similar to how running grep through shell_exec is not the same as incorporating GPL code in your code. I suppose that is a matter of philosophical and legal opinion but I believe my interpretation is the de facto reality.

As for benchmarks there is a thing in the docs folder talking about that. I spend some time on it. The tldr is the PHP runtime is slower to startup so the overall slowness for PHP was 20% slower compared to the grep CLI but that's an apples to oranges comparison because if you already have a php thread running doing an extra ggrep call in userspace is going to be faster then grep because the binary doesn't need time to load into memory.

I just wanted to throw this code out there in case it's useful to anyone but I was considering write a new one for ripgrep or ag because they are both faster than GNU/Grep.