This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Friday, November 21, 2025
Show HN: City2Graph – Python Open Source for Geospatial Graph Neural Networks https://ift.tt/VXu7owK
Show HN: City2Graph – Python Open Source for Geospatial Graph Neural Networks https://ift.tt/tDWfBEP November 22, 2025 at 12:10AM
Thursday, November 20, 2025
Show HN: A game where you invest into startups from history https://ift.tt/HrZQYcd
Show HN: A game where you invest into startups from history https://ift.tt/Vlob4cW November 16, 2025 at 02:35AM
Show HN: MCP Traffic Analysis Tool https://ift.tt/PdTQLkN
Show HN: MCP Traffic Analysis Tool https://ift.tt/fN2obpw November 17, 2025 at 11:36PM
Wednesday, November 19, 2025
Show HN: F32 – An Extremely Small ESP32 Board https://ift.tt/OVtShs6
Show HN: F32 – An Extremely Small ESP32 Board As part of a little research and also some fun I decided to try my hand at seeing how small of an ESP32 board I can make with functioning WiFi. https://ift.tt/XwQ51ef November 20, 2025 at 01:39AM
Show HN: PgEdge Control Plane, a declarative API for multi-region Postgres mgmt https://ift.tt/7kfnXL3
Show HN: PgEdge Control Plane, a declarative API for multi-region Postgres mgmt https://ift.tt/Pz0nSyp November 20, 2025 at 02:45AM
Show HN: I made a down detector for down detector https://ift.tt/n78T2LK
Show HN: I made a down detector for down detector After down detector went down with the rest of the internet during the Cloudflare outage today I decided to build a robust, independent tool which checks if down detector is down. Enjoy!! https://ift.tt/WJGhdpt November 19, 2025 at 05:35AM
Tuesday, November 18, 2025
Show HN: I am self-hosting a time-sorted list of top STEM, Arts and Design posts https://ift.tt/VoORIXW
Show HN: I am self-hosting a time-sorted list of top STEM, Arts and Design posts I built Lime Reader, a minimal site which displays time-sorted top posts from Hacker News, Tildes, Lobsters, Slashdot, Bear, and some science, tech & programming related subreddits. You can read more about the site by clicking the slogan at the top of my site "your daily compass for the STEAMD web": https://ift.tt/nr1voCx Previously, I have always used Rust or NodeJS for my backend and Postgres for database. This time, I used Swift for my backend to build a Website for the first time, used SQLite for Database, used only a single third party dependency: Vapor for web server in the Swift app, and am self-hosting it all on an old Mac mini. I really hate huge bloated sites and also hate adding third-party frameworks unless absolutely needed. Therefore, I have engineered Lime Reader to be as small in size as possible so that it loads instantly. Both PageSpeed Insights and Pingdom rate my site's performance as Excellent. It's server side rendered, so it works even with JavaScript disabled (though enabling it gives you a few extra features like quick access to archive.org for each link). Kind of works even with CSS disabled. The site doesn't have any ads (I hate them and have installed ad-blockers everywhere!), no trackers, or analytics. CloudFlare automatically enables Real User Monitoring (RUM) on sites. The very first thing I did was disable this thing. I am self-hosting the site on an old Mac mini. It's a 2020 Intel model which has a 2018 chip (Intel's 3 GHz 6-core Core i5) and 32gb ram. Qwen model takes about 5.5GB of ram usage and does my headline classification in about 2 seconds each. The Swift app talks to a locally running Qwen3 8b LLM for classifying whether a headline is political or not. This is done over a REST API by Ollama. This seems to work pretty well and far better than Apple's Foundation Models. Originally, I tried using Apple's Foundation Models for this classification. When it worked, it worked decently well. However, many headlines (and even pretty bland headlines) would somehow trigger its guardrails. I asked Stack Overflow for help on this but as usual, they closed the question for lack of details: https://ift.tt/X8lQ6Am... For example, this headline: > SEC approves Texas Stock Exchange, first new US integrated exchange in decades Would hits the Apple's guardrails and throw an error saying `refusal: May contain sensitive content`. Apple does provide a "permissive guardrail mode" as per: https://ift.tt/Uqo0MRy... This does end up allowing some texts to work. However, it still failed for some other ones. That's when I gave up on using Apple's foundation models and switched to the Qwen3 8b model which had no such issues. It's pretty sad how the Foundation Models have so much potential but Apple has severely neutered them. I originally tried the apple foundation models on my newer mac with m4 chip and once I had the issue with their guardrails, I decided to just switch to Qwen model which runs on Intel and used my old Mac mini for it. An issue I ran into was that my Swift app was intermittently crashing. Root cause were two issues: 1. First one had to do with accessing the SQLite database from multiple threads. Apparently, for multi-threading use, SQLite needed to be initialized with a `SQLITE_OPEN_FULLMUTEX` flag. 2. Second one was a "Bad file descriptor" error from the macOS operating system itself. Had to do with a possible bug in Process.run() which would cause it to crash after some time: https://ift.tt/n9KbAXt Was able to fix it using the above workaround/solution of "fileHandleForReading.close()". Lets see how long the site stays alive now without crashing :) Feel free to ask questions. https://limereader.com/ November 18, 2025 at 10:48PM
Show HN: We built a generator for Vue+Laravel that gives you a clean codebase https://ift.tt/lJnkRgG
Show HN: We built a generator for Vue+Laravel that gives you a clean codebase Hey HN, My team and I built a tool to scratch our own itch. We were tired of spending the first few days of every new project setting up the same Vue + Laravel boilerplate: writing migrations, models, basic CRUD controllers, and wiring up forms and tables on the frontend. So we built Codecannon. It’s a web app where you define your data models, columns, and relationships, and it generates a full-stack application for you. To be clear, the code isn't AI-generated. It's produced deterministically by our own code generators, so the output is always predictable, clean, and follows conventional best practices. The key difference from other tools is that it’s not a no-code platform you get locked into. When you're done, it pushes a well-structured codebase to your GitHub repo (or you can download a .zip file). You own it completely and can start building your real features on top of it right away. What it generates: - Laravel Backend: Migrations, models with relationships, factories, seeders, and basic CRUD API endpoints. - Vue Frontend: A SPA with PrimeVue components. It includes auth pages, data tables, and create/edit forms for each of your models, with all the state management wired up. - Dev Stuff: Docker configs, a CI/CD pipeline starter, linters, and formatters are all included. The idea is to skip the repetitive work and get straight to the interesting parts of a project. It's free to use the builder, see a live preview, and download the full codebase for apps up to 5 modules. For larger apps, you only pay if you decide you want the source code. We’re in an early alpha and would love to get some honest feedback from the community. Does the generated code look sensible? Are we missing any obvious features? Is this something you would find useful or know anyone who might? Let me know what you think. https://codecannon.dev/ November 19, 2025 at 12:28AM
Show HN: Copus – Internet gem marketplace for bookmark collectors (x402-powered) https://ift.tt/KfFiYzn
Show HN: Copus – Internet gem marketplace for bookmark collectors (x402-powered) Hey HN! We’re a small team of artists, developers, and coffee lovers who’ve watched a lot of websites we love shut down over the years. We’ve been looking for a way to support them with income and exposure. We see that more people are interacting with the web through AI instead of visiting sites directly, so the ad-based model is breaking. The open web needs a new business model. Our take is to incentivize people (and, in the future, AI agents) to find and share valuable content (links), with both the finder and the original creator rewarded. Along the way we were inspired by discussions like: Pocket shut down: https://ift.tt/pDeVW5o x402 protocol: https://ift.tt/IoKEb6P “To survive the AI age, the web needs a new business model”: https://ift.tt/8vLFVZX Key features Social bookmarking It’s like a decentralized Digg or a Pinterest-for-websites. You can share (curate) any URI (URL) through the site or the browser extension. Others can collect and build on your collections. Pay-to-visit Finding valuable content is valuable. You can set a stablecoin price for visiting a link you shared. Payments are powered by the x402 protocol. Support sites/content you love Half of the pay-to-visit revenue goes to the author of the original content, claimable after they opt into x402 or register a Copus account. Permanent storage Your collections (bookmarks) are automatically stored on the Arweave blockchain. We pay the storage fees so you’ll never lose them. Other features we have in mind Spaces Like Pinterest boards, to organize your collections and collaborate with others. Weave If a link reminds you of another link, you can “weave” them together in a “you may also like” section. It’s a bit like a collective Obsidian graph where standalone websites become a connected map and every site is a rabbit hole. AI agent support You can train agents to curate and purchase for you. Social features Follow accounts with great taste. Who we imagine this is for If you’ve been bookmarking over the years, you already have tons of internet gems in hand! Please pick the best ones to share with the world. They’re valuable for both readers and original creators. Were you a Pocket user? Save your best bookmarks here and never lose them. (We plan to support putting a copy of the whole website on-chain once the project scales. Right now we put the link, category info, and your recommendation notes on-chain for free.) Some other things Copus is open source, with the frontend built using Claude Code. We plan to launch a governance token to put ownership of the project into the hands of the people who use it. We don’t mess with rights and privacy. Aside from some essential terms needed to keep the project running, your rights remain yours. Copus has a Chinese version (Copus.io), which is a haven for around 150k Chinese fan-fiction lovers rn. We might merge the two sites once the English content reaches scale or we might not. How we plan to make money We’re still figuring it out. The first idea is: Take a 10% fee on each payment. Put unclaimed creator earnings into low-risk investments (similar to how stablecoins earn yield). Hope you enjoy Copus, and thank you in advance for trying it out early! https://ift.tt/6uyDYBC November 18, 2025 at 11:48PM
Monday, November 17, 2025
Show HN: ESPectre – Motion Detection Using Wi-Fi and Math https://ift.tt/DQ4TKJa
Show HN: ESPectre – Motion Detection Using Wi-Fi and Math Hi everyone, I'm the author of ESPectre. This is an open-source (GPLv3) project that uses Wi-Fi signal analysis to detect motion using CSI data, and it has already garnered almost 2,000 stars in two weeks. Key technical details: - The system does NOT use Machine Learning, it relies purely on Math. — Runs in real-time on a super affordable chip like the ESP32. - It integrates seamlessly with Home Assistant via MQTT. https://ift.tt/y5dIbOC November 17, 2025 at 08:10PM
Sunday, November 16, 2025
Show HN: My Side project a free email template builder for CRM, or any website https://ift.tt/FWk5H3L
Show HN: My Side project a free email template builder for CRM, or any website Hi Everyone, I built an email template builder embeddable plugin for CRM, Marketplace, or any website. Free and paid plans are included. Add a complete email builder to any SaaS app using a single script. What's included: - Easy Integration - AI Content & Template Generation - Add external image libraries - Add Merge Tags - Display Conditions - Custom Blocks - Choose your storage server - Dedicated support during integration Check it out, and please let us know if you have any feedback for me. TIA https://ift.tt/YIPLw6z November 17, 2025 at 03:56AM
Show HN: ResendForward – OS server and UI for use with Resend.com inbound https://ift.tt/SAsZKoP
Show HN: ResendForward – OS server and UI for use with Resend.com inbound With Resend's new inbound feature I wanted to build a simple application that handles processing webhook events and forwarding emails for multiple applications. Right now Resend requires you to implement that logic in each new application. repo - https://ift.tt/h5QOBIA live - https://ift.tt/LASkDh2 Built with react + pocketbase, extremely simple to self host. https://ift.tt/h5QOBIA November 17, 2025 at 12:57AM
Saturday, November 15, 2025
Show HN: Socratic, a knowledge-base builder for agents where YOU stay in control https://ift.tt/BSP4xfs
Show HN: Socratic, a knowledge-base builder for agents where YOU stay in control https://ift.tt/T4BQyxJ November 16, 2025 at 01:40AM
Show HN: An Apache Beam batch processing clone in Rust https://ift.tt/38bLDXN
Show HN: An Apache Beam batch processing clone in Rust I've been experimenting with Apache Beam as of late at work and found that it can be slow in Python, and more complicated to use in Java where performance is better. I decided to experiment with JetBrains' AI Assistant and build an Apache Beam clone in Rust. I appreciate any commentary or feedback! https://ift.tt/OqSDEQs November 16, 2025 at 12:16AM
Friday, November 14, 2025
Show HN: ByteSync – Open-source hybrid file sync (LAN and remote, E2EE) https://ift.tt/shqbM93
Show HN: ByteSync – Open-source hybrid file sync (LAN and remote, E2EE) Hi everyone, I've been developing ByteSync, an open-source file synchronization, backup and deduplication tool designed to bridge the gap between local and remote sync. In spirit, it's somewhat closer to FreeFileSync, but with an integrated networking layer and end-to-end encryption — which means you can synchronize files between computers on the same LAN or across the internet without VPNs or firewall setup. Everything works transparently through the same interface. The synchronization model is based on DataNodes (which represent repositories, such as servers or NAS devices) and DataSources (the folders or files inside them). A session can include multiple participants, each with one or several DataNodes, and ByteSync handles all comparisons and transfers automatically. To optimize performance, the engine uses a two-stage inventory process: an initial indexation followed by comparisons limited to items that actually changed. This keeps synchronization fast even with large datasets. There's also a flat mode, useful when structure doesn't matter and you just want to compare or align files by name. Currently, ByteSync is focused on interactive synchronization — it's not yet automated or daemon-based (CLI integration is planned). But it's already fully functional for discovering and managing differences between repositories, both local and remote. ByteSync runs on Windows, macOS, and Linux, and the entire codebase is available on GitHub: https://ift.tt/Hi9UwdT You can also download binaries and read the documentation here: https://ift.tt/dn9YZm0 I'd really appreciate feedback and contributors — whether on usability, architecture, or ideas for future features. The goal is to make a solid, privacy-respectful alternative for hybrid file synchronization that remains simple to use and open for everyone. November 14, 2025 at 07:32PM
Thursday, November 13, 2025
Show HN: US Publicly Traded Companies probabilities of default with public data https://ift.tt/27AOfBs
Show HN: US Publicly Traded Companies probabilities of default with public data https://ift.tt/x7yQ9BR November 14, 2025 at 03:51AM
Show HN: DBOS Java – Postgres-Backed Durable Workflows https://ift.tt/AJ2lDvc
Show HN: DBOS Java – Postgres-Backed Durable Workflows Hi HN - I’m Peter, here with Harry (devhawk), and we’re building DBOS Java, an open-source Java library for durable workflows, backed by Postgres. https://ift.tt/fF32KTS Essentially, DBOS helps you write long-lived, reliable code that can survive failures, restarts, and crashes without losing state or duplicating work. As your workflows run, it checkpoints each step they take in a Postgres database. When a process stops (fails, restarts, or crashes), your program can recover from those checkpoints to restore its exact state and continue from where it left off, as if nothing happened. In practice, this makes it easier to build reliable systems for use cases like AI agents, payments, data synchronization, or anything that takes hours, days, or weeks to complete. Rather than bolting on ad-hoc retry logic and database checkpoints, durable workflows give you one consistent model for ensuring your programs can recover from any failure from exactly where they left off. This library contains all you need to add durable workflows to your program: there's no separate service or orchestrator or any external dependencies except Postgres. Because it's just a library, you can incrementally add it to your projects, and it works out of the box with frameworks like Spring. And because it's built on Postgres, it natively supports all the tooling you're familiar with (backups, GUIs, CLI tools) and works with any Postgres provider. If you want to try it out, check out the quickstart: https://ift.tt/Ue4ZwcJ We'd love to hear what you think! We’ll be in the comments for the rest of the day to answer any questions. https://ift.tt/fF32KTS November 14, 2025 at 02:03AM
Show HN: Fine-tune open-source LLMs quickly and easily (early access) https://ift.tt/YJ2KAMw
Show HN: Fine-tune open-source LLMs quickly and easily (early access) https://www.tinytune.xyz/ November 14, 2025 at 12:33AM
Wednesday, November 12, 2025
Show HN: Built a tiny interpreter from scratch in C to understand how they work https://ift.tt/c4raNHn
Show HN: Built a tiny interpreter from scratch in C to understand how they work Hi HN, I'm the author. I built this project for two simple reasons: I've always used higher-level languages and wanted to finally understand what's happening "under the hood" of an interpreter. I also wanted a real project to force me to "power up" my C skills, especially with manual memory management and reference counting. The result is ToyForth, a minimal interpreter for a Forth-like language, written from scratch in C, stack-based. I focused on making the code clean and understandable. It's broken down into a few simple parts: A parser that turns source text into a list of objects (parser.c). A small stack-based virtual machine (main.c). A manual reference counting system (incRef/decRef) to manage object memory (mem.c) and so on. My main goal was learning, but I've tried to document it well in the README.md so it could be a "starter kit" for anyone else who wants to learn by reading a small, complete implementation. It's easy to try out. I'd genuinely appreciate any feedback on my approach or my C code. Here's the link: https://ift.tt/VrQwzvG https://ift.tt/VrQwzvG November 13, 2025 at 01:53AM
Subscribe to:
Posts (Atom)
Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code https://ift.tt/GQauRgE
Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code Hi All, Recently I've been using Claude Code a lot for de...
-
Show HN: A directory of 800 free APIs, no auth required Explore reliable free APIs for developers — ideal for web and software development, ...
-
Show HN: I built Dirac, Hash Anchored AST native coding agent, costs -64.8 pct Fully open source, a hard fork of cline. Full evals on the gi...
-
Show HN: I built a FOSS tool to run your Steam games in the Cloud I wanted to play my Steam games but my aging PC couldn’t keep up, so I bui...