This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Wednesday, April 5, 2023
Show HN: AI Bartender – The multi-personality GPT bartender https://ift.tt/2jkHxlJ
Show HN: AI Bartender – The multi-personality GPT bartender https://ift.tt/qxaQcEk April 6, 2023 at 03:43AM
Tuesday, April 4, 2023
Show HN: I built a real life version of Her https://ift.tt/wpejGWF
Show HN: I built a real life version of Her https://ift.tt/JZSO0FU April 5, 2023 at 07:27AM
Show HN: GPT-4 powered brand name generator https://ift.tt/zxIn7vT
Show HN: GPT-4 powered brand name generator As a fun weekend project to take a break from the everyday work-university cycle, I've messed around with OpenAI's GPT-4 API and created a simple name generator with it. In the coming days, I'll be adding more features. https://www.namique.xyz/ April 5, 2023 at 04:49AM
Show HN: Live coaching app for remote SWE interviews, uses Whisper and GPT-4 https://ift.tt/UNuZJxt
Show HN: Live coaching app for remote SWE interviews, uses Whisper and GPT-4 Posting from a throwaway account to maintain privacy. This project is a salvo against leetcode-style interviews that require candidates to study useless topics and confidently write code in front of a live audience, in order to get a job where none of that stuff matters. Cheetah is an AI-powered macOS app designed to assist users during remote software engineering interviews by providing real-time, discreet coaching and integration with CoderPad. It uses Whisper for audio transcription and GPT-4 to generate hints/answers. The UI is intentionally minimal to allow for discreet use during a video call. It was fun dipping into the world of LLMs, prompt chaining, etc. I didn't find a Swift wrapper for whisper.cpp, so in the repo there's also a barebones Swift framework that wraps whisper.cpp and is designed for real-time transcription on M1/M2. I'll be around if anyone has questions or comments! https://ift.tt/wyC09Af April 5, 2023 at 05:06AM
Show HN: CartoSVG – create beautiful map visualizations easily https://ift.tt/Pf2697p
Show HN: CartoSVG – create beautiful map visualizations easily This project aims at making the creation of rich interactive maps easy, with no compromise on the visual quality. A goal is also to export the final SVG as lightweight as possible, with no dependency on external libraries, which are usually needed to have interactive maps on a website. Feel free to explore the examples (the “examples” dropdown at the top-right) to explore what is possible to design with CartoSVG. https://cartosvg.com April 5, 2023 at 12:35AM
Show HN: NanoApp.dev – Turn JSON into Native Mobile App https://ift.tt/4Da8dnb
Show HN: NanoApp.dev – Turn JSON into Native Mobile App https://ift.tt/S8Ynazk April 4, 2023 at 11:04PM
Show HN: I built a simple IPTV player with M3U support and fuzzy finding in bash https://ift.tt/HzomrBC
Show HN: I built a simple IPTV player with M3U support and fuzzy finding in bash https://ift.tt/nyqhSba April 4, 2023 at 11:40PM
Show HN: I made a GPT-powered job board https://ift.tt/onuZPYR
Show HN: I made a GPT-powered job board https://hiring.cafe/ April 4, 2023 at 11:36PM
Monday, April 3, 2023
Show HN: Garson.io helps product people write like a pro https://ift.tt/M8oFuj3
Show HN: Garson.io helps product people write like a pro If you struggle with writing a professional email, blogpost or documentation article or it takes you too much time, Garson is here to help. AI powered concierge that can improve the quality of your write ups. https://garson.io April 4, 2023 at 09:52AM
Show HN: Abstract coding using GPT 4 https://ift.tt/IyGgZ39
Show HN: Abstract coding using GPT 4 https://ift.tt/5TARPJv April 4, 2023 at 09:28AM
Show HN: Generate Textual Descriptions for Images https://ift.tt/cnx10ZS
Show HN: Generate Textual Descriptions for Images https://scenex.jina.ai April 4, 2023 at 05:58AM
Show HN: Daba – Turn your JSON into a database https://ift.tt/k5lb1Ro
Show HN: Daba – Turn your JSON into a database Hi all, I built this tool when I needed a simple LocalStorage-esque database for a client project, and figured others might want something similar. Basically turns your JSON into a query-able, hosted database in seconds. You can read/update/delete JSON files by path, just like you would in Javascript. So, something like get(”users[7].address”) And while we’re at it, I also built a simple file storage service where you upload a file and it gives you the URL back. A lot of my (and other devs friends') side projects will never require more data than a JSON file can handle. Yet we always have to go through the hoops of setting up and using databases meant to handle huge amounts of data. There are many other services that could benefit from the same minimalist philosophy. The idea is to have a bunch of building blocks of different services, and let the developer scale up/down the complexity as they see fit. I'm working on more services for daba (In no particular order: SQLite db?, auth, emails, …) You can use this for any applications where the data can fit in a JSON file. (e.g. Website CMS, blog, portfolio, small mobile apps, internal tools, …). You’ll be surprised at how much data a 20mb JSON file can hold: https://ift.tt/IDtAp3w... Let me know what you think https://www.daba.so April 4, 2023 at 02:24AM
Show HN: Img2irc – convert images to IRC or ANSI, with post-processing filters https://ift.tt/5OS3TJx
Show HN: Img2irc – convert images to IRC or ANSI, with post-processing filters https://ift.tt/2OxcbSJ April 4, 2023 at 02:36AM
Show HN: Ycinterview.ai – Practice the YC Interview with Cloned AI Partners https://ift.tt/ZCz4pkm
Show HN: Ycinterview.ai – Practice the YC Interview with Cloned AI Partners https://ycinterview.ai/ April 4, 2023 at 12:55AM
Show HN: Pubnix.pink, a public-access Void Linux system https://ift.tt/a6XZjxS
Show HN: Pubnix.pink, a public-access Void Linux system This is a hobby project I've been working on, any feedback is greatly appreciated! https://pubnix.pink April 3, 2023 at 11:40PM
Show HN: Goru, an experimental, Go-inspired concurrency library for Ruby https://ift.tt/r2jLgPS
Show HN: Goru, an experimental, Go-inspired concurrency library for Ruby Hey folks, wanted to show this off and get feedback. Still early/experimental but there are quite a few concepts I'm excited about here. This project came about while writing a program in Go and loving its approach to concurrency. Being a long-time Rubyist I immediately started to think about what similar concepts might look like in Ruby. I set out with two main design constraints: 1. Lightweight: I didn't want routines to be backed by fibers or threads. Having been involved some in the async project ( https://ift.tt/lVvM1N3 ), I had some experience using fibers for concurrency but was curious if they could be avoided. 2. Explicitness: Routine behavior must be written to describe exactly how it is to behave. I always felt like concurrent code was hard to fully understand because of the indirection involved. On the spectrum between tedium and magical I wanted to err more on the side of tedium with Goru. Goru routines are just blocks that are called once for every tick of the reactor. It is up to the developer to implement behavior in terms of a state machine, where on each tick the routine takes some action and then updates the state of the routine for the next tick. This fulfills both design constraints: 1. Because routines are just blocks, they weigh in at about ~345 bytes of memory overhead. 2. Routine behavior is explicit because it is written as a state machine inside the block. Couple more features worth noting: * Goru includes channels for buffered reading/writing (similar to channels in Go). * Goru ships with primitives for non-blocking IO to easily build things like http servers. Curious your thoughts! https://ift.tt/peUMHr2 April 3, 2023 at 07:17PM
Sunday, April 2, 2023
Show HN: Resource Forks https://ift.tt/mRDg37W
Show HN: Resource Forks https://ift.tt/ZerRFQ3 April 3, 2023 at 09:03AM
Show HN: Cloud.museum the first SSG coded by ChatGPT https://ift.tt/1v6yMbw
Show HN: Cloud.museum the first SSG coded by ChatGPT ChatGPT can code pretty well but not without some help. After 100+ interactions here is the first ever static site generator coded entirely by ChatGPT. There is a NodeJS and even a Swift version. What do you think ? https://cloud.museum April 3, 2023 at 05:44AM
Show HN: I Got ChatGPT to Write Complete Programs https://ift.tt/uZPhYEl
Show HN: I Got ChatGPT to Write Complete Programs https://ift.tt/bqJ5u0Z April 3, 2023 at 03:42AM
Subscribe to:
Posts (Atom)
Show HN: tltv – Federation protocol for 24/7 TV channels https://ift.tt/KMVr6Ng
Show HN: tltv – Federation protocol for 24/7 TV channels I spent six years trying to build a tv channel server. rewrote it eight times. flas...
-
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...