This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Sunday, November 16, 2025
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
Show HN: ShellDash – Browser server dashboard with SSH and globe monitoring https://ift.tt/WzJ0jyQ
Show HN: ShellDash – Browser server dashboard with SSH and globe monitoring Hey all. I built ShellDash, an interactive server admin dashboard with shell scripting and an appealing globe UI. https://shelldash.com The goal is to provide a global monitoring view of your servers, with shell script access, in a way that feels natural and productive, plus a minimal and appealing UI/UX. The technology is fairly interesting. This being a browser app, I built a Go WASM SSH client running in the browser, proxied through my server WebSocket endpoints. This means I can provide you a Web UI to access your servers via SSH, without ever needing to see your credentials. I only see secured packets like OpenSSH sends over the open internet. Inspired by https://ssheasy.com/ Whether you have one server and periodically run a few common commands, or administering many scattered geographically, I hope ShellDash can make your experience more productive and fun. https://shelldash.com November 13, 2025 at 12:36AM
Show HN: JavaScript Engines Zoo https://ift.tt/QeMHDWw
Show HN: JavaScript Engines Zoo https://ift.tt/QVOcaE7 November 12, 2025 at 09:32PM
Tuesday, November 11, 2025
Show HN: Data Formulator 0.5 – interactive AI agents for data visualization https://ift.tt/LQbS3MG
Show HN: Data Formulator 0.5 – interactive AI agents for data visualization Hi everyone, we are excited to share with you our new release of Data Formulator. Starting from a dataset, you can communicate with AI agents with UI + natural language to explore data and create visualizations to discover new insights. Here's a demo video of the experience: https://ift.tt/DsltVbS.... . This is a build-up from our release a year ago ( https://ift.tt/QH3olJE ). We spent a year exploring how to blend agent mode with interactions to allow you more easily "vibe" with your data but still keeping in control. We don't think the future of data analysis is just "agent to do all for you from a high-level prompt" --- you should still be able to drive the open-ended exploration; but we also don't want you to do everything step-by-step. Thus we worked on this "interactive agent mode" for data analysis with some UI innovations. Our new demo features: * We want to let you import (almost) any data easily to get started exploration — either it's a screenshot of a web table, an unnormalized excel table, table in a chunk of text, a csv file, or a table in database, you should be able to load into the tool easily with a little bit of AI assistance. * We want you to easily choose between agent mode (more automation) vs interactive mode (more fine-grained control) yourself as you explore data. We designed an interface of "data threads": both your and agents' explorations are organized as threads so you can jump into any point to decide how you want to follow-up or revise using UI + NL instruction to provide fine-grained control. * The results should be easily interpretable. Data Formulator now presents "concept" behind the code generated by AI agents alongside code/explanation/data. Plus, you can compose a report easily based on your visualizations to share insights. We are sharing the online demo at https://ift.tt/9ptKuse for you to try! If you want more involvement and customization, checkout our source code https://ift.tt/6YqFudn and let's build something together as a community! https://ift.tt/9ptKuse November 11, 2025 at 11:14PM
Monday, November 10, 2025
Show HN: Tracking AI Code with Git AI https://ift.tt/srJ3U4E
Show HN: Tracking AI Code with Git AI Git AI is a side project I created to track AI-generated code in our repos from development, through PRs, and into production. It does not just count lines, it keeps track of them as your code evolves, gets refactored and the git history gets rewritten. Think 'git blame' but for AI code. There's a lot about how it works in the post, but wanted to share how it's been impacting me + my team: - I find I review AI code very differently than human code. Being able to see the prompts my colleagues used, what the AI wrote, and where they stepped in to override has been extraordinarily helpful. This is still very manual today, but hope to build more UI around it soon. - “Why is this here?” — more than once I’ve giving my coding agent access to the past prompts that generated code I’m looking at, which lets the Agent know what my colleague was thinking when they made the change. Engineers talk to AI all day now…their prompts are sort of like a log of thoughts :) - I pay a lot of attention to the lines generated for every 1 accepted ratio. If it gets up over 4 or 5 it means I’m well outside the AI’s distribution or prompting poorly — either way, it’s a good cause for reflection and I’ve learned a lot about collaborating with LLMs. This has been really fun to build, especially because some amazing contributors who were working on similar projects came together and directed their efforts towards Git AI shine. We hope you like it. https://ift.tt/0TG8XSp November 10, 2025 at 10:56PM
Show HN: Dice of Sending – I prefer physical dice but need to roll online https://ift.tt/xC0kLbh
Show HN: Dice of Sending – I prefer physical dice but need to roll online This was a goofy little project I worked on. It's fully open source and you can check it out via the Github link. https://ift.tt/aOTsZAv November 11, 2025 at 01:26AM
Show HN: Tiny Diffusion – A character-level text diffusion model from scratch https://ift.tt/CFHQYU5
Show HN: Tiny Diffusion – A character-level text diffusion model from scratch https://ift.tt/7roB1jJ November 10, 2025 at 08:43PM
Sunday, November 9, 2025
Show HN: DroidDock – A sleek macOS app for browsing Android device files via ADB https://ift.tt/IZjK2Fu
Show HN: DroidDock – A sleek macOS app for browsing Android device files via ADB Hi HN, I’m Rajiv, a software engineer turned Math teacher living in the mountains, where I like to slow down life while still building useful software. I recently built DroidDock, a lightweight and modern macOS desktop app that lets you browse and manage files on your Android device via ADB. After 12 years in software development, I wanted a free, clean, and efficient tool because existing solutions were either paid, clunky, or bloated. Features include multiple view modes, thumbnail previews for images/videos, intuitive file search, file upload/download, and keyboard shortcuts. The backend uses Rust and Tauri for performance. You can download the latest .dmg from the landing page here: https://rajivm1991.github.io/DroidDock/ Source code is available on GitHub: https://ift.tt/h9MlAW6 I’d appreciate your feedback on usability, missing features, or bugs. Thanks for checking it out! — Rajiv https://rajivm1991.github.io/DroidDock/ November 10, 2025 at 06:21AM
Show HN: Trilogy Studio, open-source browser-based SQL editor and visualizer https://ift.tt/YE1Zu3Q
Show HN: Trilogy Studio, open-source browser-based SQL editor and visualizer SQL-first analytic IDE; similar to Redash/Metabase. Aims to solve reuse/composability at the code layer with modified syntax, Trilogy, that includes a semantic layer directly in the SQL-like language. Status: experiment; feedback and contributions welcome! Built to solve 3 problems I have with SQL as my primary iterative analysis language: 1. Adjusting queries/analysis takes a lot of boilerplate. Solve with queries that operate on the semantic layer, not tables. Also eliminates the need for CTEs. 2. Sources of truth change all the time. I hate updating reports to reference new tables. Also solved by the semantic layer, since data bindings can be updated without changing dashboards or queries. 3. Getting from SQL to visuals is too much work in many tools; make it as streamlined as possible. Surprise - solve with the semantic layer; add in more expressive typing to get better defaults;also use it to wire up automatic drilldowns/cross filtering. Supports: bigquery, duckdb, snowflake. Links [1] https://ift.tt/ED8co0r (language info) Git links: [Frontend] https://ift.tt/7qn4mJd [Language] https://ift.tt/6i2RKlT Previously: https://ift.tt/qrGVPRl (significant UX/feature reworks since) https://ift.tt/eZln6L0 https://ift.tt/oB4OWmZ November 10, 2025 at 04:56AM
Show HN: I'm a pastor/dev and built a 200M token generative Bible https://ift.tt/aDOdAQP
Show HN: I'm a pastor/dev and built a 200M token generative Bible https://ift.tt/0E87jsZ November 10, 2025 at 01:41AM
Saturday, November 8, 2025
Show HN: Livestream of a coding agent controlled by public chat https://ift.tt/BwZaOEC
Show HN: Livestream of a coding agent controlled by public chat https://ift.tt/x9ZjoLM November 8, 2025 at 10:40PM
Show HN: I built a website to visualize company financial data https://ift.tt/7OGonhE
Show HN: I built a website to visualize company financial data Hi HN, I built a website myfinsight.com that aims to make complicated company financials easy to understand. The problem: The go-to place for financial data such as revenue, sales, net income is Yahoo finance. However, their data is usually wrong and very limited. The numbers are hard to digest to get insight quickly. There are also numerous websites that provide much better data for a very expensive monthly fee. Solution: a website that provides free diagrams and charts that visualize important financial data, such as income growth rate by date, revenue breakdown etc. It is free because the financial data process is highly automated without manual input and correction. I used to send the finance infographics to friends and family. I found it easier just to make a website and they can grab the data from it. Next steps: there is a long tail of companies that don’t file their reports correctly. I am trying to make it more accurate somehow, and maybe add live stock prices to the website. I am also looking for feedback! Please play around with it and let me know if something is wrong. https://myfinsight.com/ November 9, 2025 at 03:00AM
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...