frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
101•radius89•8h ago•40 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
33•codetiger•10h ago•8 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
70•4815162342•1d ago•33 comments

Show HN: Lightspeed, build real time apps the Laravel way (+asteroids demo)

6•jv22222•2h ago•2 comments

Show HN: jevals – replacing LLM judges with typed Jev decisions

https://github.com/openlayer-ai/jevals
6•gbayomi•2h ago•0 comments

Show HN: AgentTrace–Observability and runtime self-healing engine for AI agents

https://github.com/mohitkumar188/AgentTrace
4•mohitkumar18•4h ago•0 comments

Show HN: Jevlang: Python with a Smart "If"

https://github.com/sumanmichael/jevlang
2•sumanmichael•4h ago•0 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
2378•arnemunthekaas•5d ago•261 comments

Show HN: CUA-S1 – A System One Model for Computer Use

https://github.com/trycua/cua
89•frabonacci•1d ago•10 comments

Show HN: Ifso.io – Personal finance simulator with no sign up required

https://ifso.io/try
7•timer_interrupt•9h ago•0 comments

Show HN: Try Omarchy for Windows – Full Omarchy Desktop on Windows

https://github.com/omacom/try-omarchy-windows
3•tsouth2•2h ago•2 comments

Show HN: Judge Jev – Can you convince Jev of your innocence?

https://judge-jev.com/
4•theRealestAEP•7h ago•2 comments

Show HN: Testing a non-generative decision model on 5,500 CLINC150 inputs

https://github.com/chr-kelly/jev-cookbook
3•tgdhtdujeytd•7h ago•0 comments

Show HN: I inadvertently built an English to Bash transpiler

https://github.com/gioblu/NPC-Forge/blob/main/npcs/termy/README.md
3•gioscarab•7h ago•3 comments

Show HN: TetherPHP – a small PHP framework designed for agents and humans

https://tetherphp.com/
2•dillonsmartdev•7h ago•0 comments

Show HN: Scrolling Text Generator – marquee, ticker and credits in the browser

https://scrollingtextgenerator.space
3•liweipt•7h ago•1 comments

Show HN: MidiSlayer, a desktop sight-reading trainer for MIDI keyboards

https://midislayer.com/
3•monoglyph•8h ago•0 comments

Show HN: Jev filters large HN discussions

https://www.hazumi.news/best
3•jrhey•8h ago•0 comments

Show HN: OpensourceDB Tamper-evident,checksum-backed decision and session replay

https://github.com/ZIZKA-AI-SL/ZizkaDB
2•Arshad-Talpur•9h ago•1 comments

Show HN: Swarm, an offline family tree app for macOS

https://github.com/samoilev/swarm
7•samoilev•9h ago•5 comments

Show HN: jevc – compile policy prompts into deterministic verdict programs

https://github.com/doronp/jevc
2•doronp•9h ago•1 comments

Show HN: AI Hack Watch - timeline and dataset of hacking incidents(JSON/RSS)

https://aihackwatch.com
3•Satinel•10h ago•0 comments

Show HN: A 3D Mac window switcher with browser tab support and search

https://betterwindowswitcher.com
2•julien_dev•10h ago•0 comments

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

https://cactuscompute.com/needle
231•HenryNdubuaku•3d ago•91 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
245•steveybrown•3d ago•138 comments

Show HN: Scry, programmable internet search w/ congestion pricing

https://scry.io/
60•Xyra•3d ago•25 comments

Show HN: Airmash – HTML5 Multiplayer Missile Warfare

https://airma.sh/
6•fivesigma•12h ago•2 comments

Show HN: Snapdrop: Instantly share files between devices. No setup, no signup

https://snapdrop.me
108•Capira•3d ago•49 comments

Show HN: Frost – frosted-glass Linux icons where file types say what they are

https://github.com/thissayantan/frost-icon-theme
13•thissayantan•1d ago•1 comments

Show HN: Rubrol – Sub-10ms PDF engine using Typst instead of Headless Chrome

https://rubrol.com/
14•halfradaition•1d ago•3 comments
Open in hackernews

Show HN: Lightspeed, build real time apps the Laravel way (+asteroids demo)

6•jv22222•2h ago
Hi HN!

Laravel has worked with websockets for years but generally speaking it's a one way push architecture (i.e. http in, sockets out).

Lightspeed is kind of like node in that it's a single server that serves your http and your websockets all under one roof. Auth runs in 0.03ms (a Redis read, no database). Your Laravel handler runs inside the full container and the reply comes back down the same socket. I think this could be really cool for creating new ways of working with Laravel.

Anyway, I put together a live demo to show it in action. Basically a cross between slither.io and Asteroids.

Game here:

https://innerloop.works/lightspeed

Repo here:

https://github.com/innerloop-dev/lightspeed

Note: This is 0.1.0, the API may change before 1.0. It needs the Swoole extension and Redis. MIT.

Comments

AlchemistCamp•1h ago
How does this relate to Laravel LiveWire?
jv22222•1h ago
It doesn't! Livewire is a way to build UI/form interactions over http/js.

Lightspeed is a websocket server.

Livewire talks to the server over normal HTTP requests and for anything pushed from the server it uses Laravel Echo. Lightspeed is a Pusher-compatible server so you'd point Echo at it like you would Reverb.

The thing Lightspeed adds is letting the browser send messages back into Laravel over that same socket, with auth on each one. Livewire doesn't do that its actions are still HTTP.

For most applications Livewire would be the goto. Lightspeed is kind of a high speed specialist option for building real time apps like you might do with node.js for exmaple.