This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Sunday, June 8, 2025
Show HN: Small tool to query XML data using XPath https://ift.tt/31KZFLx
Show HN: Small tool to query XML data using XPath https://ift.tt/6s0XJWy June 8, 2025 at 02:23AM
Saturday, June 7, 2025
Show HN: AI that extracts brand identity from websites to generate ads https://ift.tt/Tm6LerB
Show HN: AI that extracts brand identity from websites to generate ads I built this because I kept procrastinating on creating ads for my projects. The technical challenge was interesting: how do you teach AI to extract "brand identity" from a website? Turns out websites are messy. Finding the actual logo vs random images, identifying brand colors vs generic link colors, understanding brand voice from homepage copy. The solution: Custom vision models + CSS parsing + GPT-4 for voice analysis. You paste a URL, it extracts brand elements, generates platform-specific ads. Not trying to "disrupt advertising" or anything dramatic. Just solving the specific problem of "I need a Facebook ad but Canva makes me want to cry." Built with Next.js, custom image processing pipeline, OpenAI API. The brand extraction accuracy is around 85% for well-structured sites, lower for sites that are... creative with their CSS. Happy to discuss the technical approach or share code snippets if anyone's curious about the brand extraction pipeline. https://board.ad https://www.board.ad June 8, 2025 at 10:45AM
Show HN: A free, fast, and modern vehicle diagnostics tool https://ift.tt/84TOiRA
Show HN: A free, fast, and modern vehicle diagnostics tool https://ift.tt/udDMmpr June 7, 2025 at 11:57PM
Friday, June 6, 2025
Show HN: Solomon's Agent - a CLI to simplify the web https://ift.tt/dHfP9ZI
Show HN: Solomon's Agent - a CLI to simplify the web https://ift.tt/3RnqKX1 June 6, 2025 at 10:54PM
Show HN: AI game animation sprite generator https://ift.tt/WQYnhAE
Show HN: AI game animation sprite generator I tried to build AI game animation generator last year ( https://ift.tt/VCIAUnG ), a lot of people were interested, but it failed, mainly because the technology was not good enough. 1 year passed, there were a lot of developments in video/image generation. I tried it again, I think it works super well now. Actually beyond my expectation. You can generate all kinds of game character animation sprites with only 1 image. 1, upload your image of your character 2, choose the action you want 3, generate! Support basic actions like Run, Jump, Punch and complicated ones like: Shoryuken, Spinning kick, etc. High quality sprite sheet will be directly generated to use in Unity and any game engine. If you are an indie game developer, you don't need to high an artist or animator to develop you game. For studios, it's 10x cost saving and 10x efficiency as no more creating animations for 100 NPCs 100 times. Please check it out, looking forward to your feedback! https://ift.tt/P5VeI38 June 7, 2025 at 01:00AM
Show HN: Lightweight Durable Workflows Built on Postgres https://ift.tt/yzbElje
Show HN: Lightweight Durable Workflows Built on Postgres Hi HN! This is Qian here with Peter (KraftyOne) and Jeremy (jedberg). We’re building DBOS, an open-source, lightweight durable workflows library that you can add to Python apps in just a few lines of code. It’s comparable to popular open-source workflow and queue libraries like Airflow and Celery, but more lightweight with a greater focus on reliability and automatically recovering from failures. Our goal in building DBOS is to make workflows lightweight and flexible so you can add them to your existing apps with minimal work. Everything you need to run durable workflows and queues is contained in this Python library. You don’t need to manage a separate workflow server: just install the library, connect it to a Postgres database (to store workflow/queue state) and you’re good to go. DBOS workflows make your program durable by checkpointing its state in Postgres. If your program ever fails, when it restarts all your workflows will automatically resume from the last completed step. You add durable workflows to your existing program by annotating ordinary functions as workflows and steps: from dbos import DBOS @DBOS.step() def step_one(): ... @DBOS.step() def step_two(): ... @DBOS.workflow() def workflow(): step_one() step_two() The workflow is just an ordinary Python function. You can call it any way you like–from a FastAPI handler, in response to events, wherever you’d normally call a function. We’ve just released DBOS Python 1.0. This enhances workflows with many powerful features we’ve been building over the last few months, including: - Durable queues. Postgres-backed queues with all the queuing features of BullMQ/Celery (concurrency limits, rate limits, timeouts, priority, deduplication, etc.). Plus, they integrate with durable workflows, so you can write a workflow that enqueues 1K tasks, waits for and processes their results, and automatically recovers from any interruption. - Programmatic workflow management. Your workflows are stored as rows in a Postgres table, so you have full programmatic control over them. Write scripts to query workflow executions, batch pause or resume workflows, or even restart failed workflows from a specific step. This makes it much easier to diagnose and recover from bugs and failures that affect thousands of workflows. - Full support for both sync and async Python–write your workflows and steps as code either synchronously or asynchronously, it all works out of the box. - Improved tooling, including dashboards, workflow graph visualization, workflow management via web UI, and more. We’d love to hear your feedback and hope you can try DBOS out! https://ift.tt/KHtu8Uj June 6, 2025 at 10:39PM
Thursday, June 5, 2025
Show HN: MCP-Cloud – One-click hosting for MCP servers (50 templates) https://ift.tt/SotdEBx
Show HN: MCP-Cloud – One-click hosting for MCP servers (50 templates) https://mcp-cloud.ai/ June 6, 2025 at 01:47AM
Show HN: Create LLM graders and run evals in JavaScript with one file https://ift.tt/0knyjTt
Show HN: Create LLM graders and run evals in JavaScript with one file Hi HN! Run it: OPENROUTER_API_KEY="sk" npx bff-eval --demo We built a tool to help people take LLM outputs and easily grade them / eval them to know how good an assistant response is. We've built a number of LLM apps, and while we could ship decent tech demos, we were disappointed with how they'd perform over time. We worked with a few companies who had the same problem, and found out scientifically building prompts and evals is far from a solved problem... writing these things feels more like directing a play than coding. Inspired by Anthropic's constitutional ai concepts, and amazing software like DSPy, we're setting out to make fine tuning prompts, not models, the default approach to improving quality using actual metrics and structured debugging techniques. Our approach is pretty simple: you feed it a JSONL file with inputs and outputs, pick the models you want to test against (via OpenRouter), and then use an LLM-as-grader file in JS that figures out how well your outputs match the original queries. If you're starting from scratch, we've found TDD is a great approach to prompt creation... start by asking an LLM to generate synthetic data, then you be the first judge creating scores, then create a grader and continue to refine it till its scores match your ground truth scores. If you’re building LLM apps and care about reliability, I hope this will be useful! Would love any feedback. The team and I are lurking here all day and happy to chat. Or hit me up directly on Whatsapp: +1 (646) 670-1291 We have a lot bigger plans long-term, but we wanted to start with this simple (and hopefully useful!) tool. Run it: OPENROUTER_API_KEY="sk" npx bff-eval --demo https://ift.tt/QDwMlVI June 5, 2025 at 09:50PM
Wednesday, June 4, 2025
Show HN: Magix – Chrome extension to add any feature to any website https://ift.tt/pAgtoj9
Show HN: Magix – Chrome extension to add any feature to any website Hey guys! I'm Kishan, I built this chrome extension that lets you add any feature to any website I asked it to do these: a text transcription button(which used deepgram) to lovable using this extension. an auto scrolled for every 5 sec in medium. dark mode to stripe dashboard. Yea did quite a lot. But i wanna know how it works for others and if its truly useful by any chance. So guys feel free to use it. My last show hn post was a flop so decided to try it again after returning from bathroom, so yeah Thx :) and if u run out of credits just let me know, i'll get u sorted -> https://ift.tt/saML08t https://trymagix.com/ June 5, 2025 at 01:24AM
Show HN: Smart Palette – Reimagining AI Art https://ift.tt/HPtOhFQ
Show HN: Smart Palette – Reimagining AI Art Hi HN, I'm Nick. Over the last 6 months I’ve been building Smart Palette – a platform to help anyone create unique, wall-ready art without needing to be a prompt expert. I started this because I wanted to unleash creativity in anyone and help them bring their art ideas onto their wall through a simple, guided and inspiring process. Instead of figuring out the “right” words to use, you just select your interior design style, room, art style, theme, and color palette. You can simply describe what you want to see and add your desired colors — or let Smart Palette handle it for you. Smart Palette uses a streamlined UI that my backend then translates into optimized, detailed prompts. A lot of the work went into this "translation" layer to ensure optimal model selection, settings and generation techniques depending on the user’s creative context. It also has a full print-on-demand (UHD) integration including various cusotmization options and an art preview feature. This is an early version, and I'd be very grateful for any feedback you have on the concept, the UX, or any technical aspects. Happy to answer any questions! You can try it out with a free trial and generate your first artwork. Here’s a quick walkthrough: https://ift.tt/k1xzdOK?... https://ift.tt/kG1A2jo June 5, 2025 at 12:58AM
Show HN: Cloudflare Workers Compatible MCP Boilerplate with OAuth & PostgreSQL https://ift.tt/3wp5y7i
Show HN: Cloudflare Workers Compatible MCP Boilerplate with OAuth & PostgreSQL https://ift.tt/MgfTRd8 June 5, 2025 at 12:26AM
Tuesday, June 3, 2025
Show HN: I'm Building Ahrefs for AI Search Results https://ift.tt/nwHq6SK
Show HN: I'm Building Ahrefs for AI Search Results AI search results are quickly becoming more important than SEO, but as businesses, we have no visibility over it! That's why I'm building "Ahrefs for AI search results". Track keyword performance on AI tools like ChatGPT, Claude, Perplexity & more https://linrush.com/ June 3, 2025 at 11:55PM
Show HN: pgarrow – A SQLAlchemy PostgreSQL dialect for ADBC https://ift.tt/M5EdkyX
Show HN: pgarrow – A SQLAlchemy PostgreSQL dialect for ADBC https://ift.tt/ZNFP5wa June 3, 2025 at 11:40PM
Monday, June 2, 2025
Show HN: I build one absurd web project every month https://ift.tt/KFgY1xD
Show HN: I build one absurd web project every month I’ve been building absurd, mostly useless web projects for fun — and I publish one every month at absurd.website. These are deliberately non-functional, weird, sometimes funny, sometimes philosophical — and usually totally unnecessary. Some examples: Sexy Math — solve math problems to reveal erotic images. Trip to Mars — a real-time simulation that takes 7 months to finish. Add Luck to Your e-Store — add a waving cat widget to boost your conversion via superstition. Microtasks for Meatbags — the future: AI gives prompts, humans execute. Invisible Lingerie — it’s sexy. And invisible. Artist Death Tracker — art prices spike when artists die. We track that. Open Celebrity — one open-source face, shared by all. Together we make her famous. I just enjoy exploring what the web can be when it doesn’t try to be “useful”. Would love to hear what you think — and absurd ideas are always welcome. https://absurd.website June 3, 2025 at 01:22AM
Show HN: GoogLLM – Google search that returns Markdown instead of HTML https://ift.tt/Y2NJZ3e
Show HN: GoogLLM – Google search that returns Markdown instead of HTML As part of my bigger goal to make the web more agent-friendly, this weekend i decided to tackle google. The "AI-native" search APIs like Tavily and Exa exist, but they require setup and don't actually use Google's results. So I built something simple - a proxy that takes Google search URLs and returns the results as clean markdown instead of HTML. You literally just change "google.com" to "googllm.com" in any search URL. ```bash # Returns 500KB of HTML: curl " https://ift.tt/9mkJwB0 " # Returns clean markdown: curl " https://ift.tt/K7pD4ei " ``` *What it does:* - Serves normal HTML to browsers (so humans can use it normally) - Returns markdown to everything else (curl, fetch, LLM agents) - Supports all Google search types: web, images, news, scholar, shopping, etc. - No auth needed for testing (10 requests/hour free) *Technical approach:* - Content negotiation based on Accept headers - Caches results to avoid hammering Google - Simple pricing: 0.5¢ per search after free tier I built this over a long weekend because I was tired of writing HTML parsers for every project. The whole thing is designed around a single principle: make Google search results consumable by LLMs without any complexity. *Questions for HN:* - Is this approach too simplistic? Should search APIs be more complex? - How do you currently handle search in your LLM applications? - Any concerns about the proxy approach vs. building from scratch? The llms.txt documentation is intentionally comprehensive (2500 tokens) so any LLM can understand and use it immediately. Live demo: https://googllm.com API docs: https://ift.tt/UeHYpdo Would love feedback on the approach and any edge cases I might have missed. https://googllm.com June 3, 2025 at 12:37AM
Show HN: Detect leaked asyncio tasks, threads, event loop blocks in Python https://ift.tt/zlQSW8L
Show HN: Detect leaked asyncio tasks, threads, event loop blocks in Python https://ift.tt/qUvk5Cr June 2, 2025 at 10:24PM
Sunday, June 1, 2025
Show HN: MBCompass - Android Compass App https://ift.tt/oFRYALX
Show HN: MBCompass - Android Compass App Hey HN, I built MBCompass, a lightweight, privacy-friendly compass app for Android. It works fully offline, doesn’t ask for unnecessary permissions (no GPS, no internet), and is open source. Most compass apps out there are bloated or ad-heavy. I wanted something clean, fast, and featurish. So I made this! It’s only ~1.7 in size and uses a low-pass filter to smooth sensor readings. I’d love feedback or thoughts – especially from others building simple, privacy-first apps! https://ift.tt/tmN6oqI https://ift.tt/FqtBDvP https://ift.tt/FqtBDvP June 2, 2025 at 09:28AM
Show HN: I built an AI Agent that uses the iPhone https://ift.tt/WvXuin4
Show HN: I built an AI Agent that uses the iPhone It’s powered by OpenAI’s GPT 4.1 model. Uses Xcode UI tests + accessibility tree to look into apps, and performs swipes, taps, etc to get things done. https://ift.tt/Lc5Ftzr June 2, 2025 at 08:07AM
Show HN: Moon Phase Algorithms for C, Lua, Awk, JavaScript, etc. https://ift.tt/1ZykS69
Show HN: Moon Phase Algorithms for C, Lua, Awk, JavaScript, etc. https://ift.tt/JEH5Tst June 2, 2025 at 04:52AM
Show HN: You2Aanki – Turn Videos into Anki Vocabulary Flashcards https://ift.tt/dOjtKGi
Show HN: You2Aanki – Turn Videos into Anki Vocabulary Flashcards Hey HN, this is my first product launch. I built You2Anki along my language learning journey to aid my vocabulary from any content I want. Most tools I tried weren’t particularly made for language acquisition. You2Anki was designed with that focus in mind. Simple, intuitive and distraction-free. I hope it helps you! https://you2anki.com/ June 2, 2025 at 01:02AM
Subscribe to:
Posts (Atom)
Show HN: Tablr – Supabase with AI Features https://ift.tt/ltABMro
Show HN: Tablr – Supabase with AI Features https://www.tablr.dev/ June 30, 2025 at 04:35AM
-
Show HN: Locksmith – detect locks taken by Postgres migrations https://ift.tt/0cBueJt February 10, 2025 at 02:26AM
-
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...
-
Show HN: TNX API – Natural Language Interactions with Your Database Hey HN! I built TNX API to make working with databases as simple as aski...