Postingan

Super Bowl LX Week in SF: Transportation Goes the Distance

Super Bowl LX Week in SF: Transportation Goes the Distance By Michael Roccaforte The week of Super Bowl LX brought an estimated 1.3 million visitors to San Francisco. With so much activity, it took a team effort by the SFMTA to make sure people could get around town and enjoy themselves. We want to take a moment to thank our staff and highlight their work. Their efforts made exploring our city a great experience for everyone. Creating the game plan for smooth travel San Francisco was host to a number of special events across town. This required some streets to be closed to welcome crowds of visitors. SFMTA staff created the game plan and issued 20 event permits and a Muni... Published February 13, 2026 at 07:00AM https://ift.tt/ARbySgf

Show HN: My agent started its own online store https://ift.tt/vVScjD0

Show HN: My agent started its own online store I built Clawver (beta), infrastructure for AI agents to generate reliable income and run an online business end-to-end. Agents can handle listing, checkout, fulfillment, and post-purchase flows via API (digital + POD), with Stripe payouts and webhooks for automation. Minimal human intervention, only where required (Stripe onboarding). I wanted to see if OpenClaw could use it, so I gave it the docs and told my agent to post a store. After I linked my Stripe account, I came back five minutes later and it has posted 2 products. Crazy what's possible now with a smart agent and API access. Check it out at https://clawver.store . Feel free to build your own agent and lmk what you think. https://clawver.store February 14, 2026 at 12:39AM

Show HN: Toil, a go library for simple parallelism https://ift.tt/5BuK3dh

Show HN: Toil, a go library for simple parallelism I was tired of having to write the same basic primitive over and over again: A channel, some control logic, etc. So I wrote toil -- A port of two of my favorite Python functions over into the Go world. It's very simple. There's optimizations to be made for sure, but this is the result of a couple of hours of wanting something that felt Go-Like in the right way. https://ift.tt/5m8SMnt February 13, 2026 at 11:26PM

Show HN: ClawDeploy – OpenClaw deployment for non-technical users https://ift.tt/R7GV4pX

Show HN: ClawDeploy – OpenClaw deployment for non-technical users Hi HN, I’m building ClawDeploy for people who want to use OpenClaw but don’t have a technical background. The goal is simple: remove the setup friction and make deployment approachable. With ClawDeploy, users can: - get a server ready - deploy OpenClaw through a guided flow - communicate with the bot via Telegram Target users are solo operators, creators, and small teams who need a dedicated OpenClaw bot but don’t want to deal with infrastructure complexity. Would love your feedbacks :) https://clawdeploy.com February 12, 2026 at 11:10PM

Show HN: Yet another music player but written in Rust https://ift.tt/iHsbnPt

Show HN: Yet another music player but written in Rust Hey i made a music player which support both local music files and jellyfin server, and it has embedded discord rpc support!!! it is still under development, i would really appreciate for feedback and contributions!! https://ift.tt/EHGJlk5 February 12, 2026 at 02:59AM

Show HN: NOOR – A Sovereign AI developed on a smartphone under siege in Yemen https://ift.tt/d1teKHC

Show HN: NOOR – A Sovereign AI developed on a smartphone under siege in Yemen "I am a software developer from Yemen, coding on a smartphone while living under siege. I have successfully built and encrypted the core logic for NOOR—a decentralized and unbiased AI system. Execution Proof: My core node is verified and running locally via Termux using encrypted truth protocols. However, I am trapped in a 6-inch screen 'prison' with 10% processing capacity. My Goal: To secure $400 for a laptop development station to transition from mobile coding to building the full 'Seventh Node'. This is my bridge to freedom. Codes from the heart of hell are calling for your rescue. Wallet: 0x4fd3729a4fEdf54a74b73d93F7f775A1EF520CEC" https://ift.tt/sC0PVbD February 12, 2026 at 01:23AM

Show HN: MOL – A programming language where pipelines trace themselves https://ift.tt/Sy169DP

Show HN: MOL – A programming language where pipelines trace themselves Hi HN, I built MOL, a domain-specific language for AI pipelines. The main idea: the pipe operator |> automatically generates execution traces — showing timing, types, and data at each step. No logging, no print debugging. Example: let index be doc |> chunk(512) |> embed("model-v1") |> store("kb") This auto-prints a trace table with each step's execution time and output type. Elixir and F# have |> but neither auto-traces. Other features: - 12 built-in domain types (Document, Chunk, Embedding, VectorStore, Thought, Memory, Node) - Guard assertions: `guard answer.confidence > 0.5 : "Too low"` - 90+ stdlib functions - Transpiles to Python and JavaScript - LALR parser using Lark The interpreter is written in Python (~3,500 lines). 68 tests passing. On PyPI: `pip install mol-lang`. Online playground (no install needed): http://135.235.138.217:8000 We're building this...