frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: OrioleDB Beta12 Features and Benchmarks

https://www.orioledb.com/blog/orioledb-beta12-benchmarks
23•akorotkov•3d ago•3 comments

Show HN: Molab, a cloud-hosted Marimo notebook workspace

https://molab.marimo.io/notebooks
88•akshayka•11h ago•12 comments

Show HN: I built library management app for those who outgrew spreadsheets

https://www.librari.io/
72•hmkoyan•11h ago•37 comments

Show HN: Simulating autonomous drone formations

https://github.com/sushrut141/ketu
15•wanderinglight•3d ago•3 comments

Show HN: Medici, a minimal, open-source, dead-simple Splitwise alternative

https://github.com/mrkaye97/medici
2•mrkaye97•3h ago•0 comments

Show HN: Interactive Bash tutorial that runs in the browser

https://sandbox.bio/tutorials/bash-script
5•raboukhalil•7h ago•0 comments

Show HN: PlutoFilter- A single-header, zero-allocation image filter library in C

https://github.com/sammycage/plutofilter
76•sammycage•5d ago•16 comments

Show HN: Improving search ranking with chess Elo scores

https://www.zeroentropy.dev/blog/improving-rag-with-elo-scores
190•ghita_•2d ago•64 comments

Show HN: Tech docs → video explainers in seconds

https://symvol.io/
2•feliks22•8h ago•0 comments

Show HN: Numbl – A daily number puzzle inspired by Wordle and Sudoku

https://henryjburg.github.io/numbl/
2•henryjburg•8h ago•1 comments

Show HN: AI File Sorter: Organize Files and Folders with AI (Local LLMs)

https://github.com/hyperfield/ai-file-sorter
3•hyperfield•8h ago•0 comments

Show HN: Benchstreet – the stock prediction AI benchmark

https://github.com/puffinsoft/benchstreet
4•ColonelParrot•8h ago•0 comments

Show HN: 0xDEAD//TYPE – A fast-paced typing shooter with retro vibes

https://0xdeadtype.theden.sh/
112•theden•6d ago•27 comments

Show HN: Brainfork – Create a personal RAG MCP server in seconds

https://brainfork.is
11•softwareiseasy•19h ago•1 comments

Show HN: RateMyPrompt – share and rate prompts with auto AI evals

https://www.josh.ing/ratemyprompt
8•jshchnz•10h ago•4 comments

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
593•cataPhil•3d ago•107 comments

Show HN: Mock FedCM Integrations

https://mockfedcm.com/
11•portaouflop•16h ago•0 comments

Show HN: I built this to talk Danish to my girlfriend – works with any language

https://menerdu.vercel.app/
204•lil_csom•5d ago•107 comments

Show HN: BloomSearch – Keyword search with hierarchical Bloom filters

https://github.com/danthegoodman1/bloomsearch
65•dangoodmanUT•5d ago•12 comments

Show HN: We made our own inference engine for Apple Silicon

https://github.com/trymirai/uzu
180•darkolorin•3d ago•46 comments

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
100•akunzler•3d ago•26 comments

Show HN: The HTML Maze – Escape an eerie labyrinth built with HTML pages

https://htmlmaze.com/
62•kyrylo•4d ago•19 comments

Show HN: A 'Choose Your Own Adventure' written in Emacs Org Mode

https://tendollaradventure.com/sample/
153•dskhatri•2d ago•25 comments

Show HN: Tips for getting great Text2Cypher outputs from LLMs for Graph RAG

https://blog.kuzudb.com/post/improving-text2cypher-for-graphrag-via-schema-pruning/
4•laminarflow027•16h ago•0 comments

Show HN: Mark 1.0, a notation that unifies JSON, HTML, JSX, XML, YAML, and more

https://marknotation.org/
7•henryluo•17h ago•10 comments

Show HN: Child Affordability Index

https://childaffordabilityindex.com/
4•simplekindofman•17h ago•3 comments

Show HN: ArchGW – An intelligent edge and service proxy for agents

https://github.com/katanemo/archgw/
116•honorable_coder•6d ago•15 comments

Show HN: An MCP server that gives LLMs temporal awareness and time calculation

https://github.com/jlumbroso/passage-of-time-mcp
91•lumbroso•2d ago•53 comments

Show HN: DataRamen, a Fast SQL Explorer with Automatic Joins and Data Navigation

https://dataramen.xyz/
47•oleksandr_dem•2d ago•55 comments

Show HN: Ten years of running every day, visualized

https://nodaysoff.run
948•friggeri•1w ago•485 comments
Open in hackernews

Show HN: Molab, a cloud-hosted Marimo notebook workspace

https://molab.marimo.io/notebooks
88•akshayka•11h ago
We launched marimo [1], an open-source reactive Python notebook, last year on HackerNews. Today, the most popular recent feature request in Google Colab’s issue tracker asks for marimo support in Colab [2].

Rather than try to convince Google to replace their notebook with marimo, we decided to just build our own cloud-hosted notebook service instead. We're calling this molab (mo for marimo), and we're launching it today.

You can try it at https://molab.marimo.io

Some features:

- Persistent storage

- Link sharing (notebooks are public but undiscoverable, like secret GitHub Gists)

- Download notebooks to your machine, reuse them as Python scripts or apps

- Upload local notebooks to the cloud from our CLI (coming soon)

- Real-time collaboration (coming soon)

- Configure computational resources to obtain more CPU or GPU (coming soon)

marimo is a modern notebook for modern data workflows; we also built molab on a modern tech stack:

- Notebook dependencies are managed by uv, enabling lighting-fast package installation (thanks to uv’s cache and more generally its performant implementation). uv makes it easy to run molab notebooks locally, too: uvx marimo edit <notebook-url> brings the notebook down to your machine.

- Persistent storage is powered by R2, Cloudflare’s zero-egress object store.

- We use Pydantic logfire to monitor our deployment.

- While our implementation is agnostic to the compute backend (stay tuned!), we’re currently running on Modal for fast startups (not to mention a slick developer experience). Modal sandboxes make it easy for us define containers at runtime, containing notebook code and their dependencies. (Shout out to Eric Zhang from Modal for helping us get started.)

molab is free to use, as long as usage is reasonable. Our goal is to make is as easy as possible for our community to use marimo notebooks.

Finally, learn more at our announcement blog: https://marimo.io/blog/announcing-molab

If this interests you, please give molab a shot and please share feedback — here or on Discord (https://marimo.io/discord).

P.S. This is not our commercial product, this is really just for our community.

[1] https://github.com/marimo-team/marimo [2] https://github.com/googlecolab/colabtools/issues?q=is%3Aissu...

Comments

cantdutchthis•11h ago
Everyone: don't push live on a Friday. marimo: ... hold my beer
dmadisetti•11h ago
Everyone knows prod doesn't break on the weekends
hmartin•7h ago
Its completely failed several times in the course of an hour for me :'(
akshayka•7h ago
Sorry! Did the notebook not connect to the runtime? Notebooks usually start quickly but there is variance, which we are working to tighten. If you have a notebook link/ID, we can look into it.
matsonj•7h ago
I was hopeful for Wasm to make this work better but it just didn't. really cool to see this available - i was wondering what the next step was.
lahuard•7h ago
Marimo is the future of notebooks! This solves so many problems with collaboration using notebooks. Rooting for you guys!
elashri•7h ago
This sounds like a good tool that would help ease the usage of adopting marimo for some of the tasks that people usually use colab for. It can be used for teaching and tutorials to share.

I just want to ask about Privacy Policy of the cloud version because I couldn't find it.

akshayka•7h ago
Thanks! Notebooks on molab are public (but undiscoverable, like public GitHub gists), and can be shared with links. This is described here: https://marimo.io/blog/announcing-molab.
VoidWhisperer•5h ago
Is there anything you are doing to prevent these notebooks from being indexed by Google/etc? Gists will show up in google search results if they've been linked from anywhere that google happens to find. The robots.txt just has 'Allow: /'.

I have no experience with Marimo so I guess I don't know the security model here.

dmadisetti•4h ago
I just turned off /notebooks in robots.txt

Our thoughts are the same as gists- Molab is built to share your work and give you a place to tinker. Please don't put your api keys in there

akshayka•4h ago
If your notebooks need keys, use mo.ui.text(kind=“password”), similar to the example from Hugging Face: https://molab.marimo.io/notebooks/nb_jpcTRt2jckij9iujuZ6NuZ
anilgulecha•4h ago
Hi Akshay, it isn't clear from above writeup - is this open for self-hosting (I have an education usecase)? Couldn't find anything on this in the repo.