Posts

Showing posts from April, 2023

New Show Hacker News story: Show HN: DuoBreak: Python emulation of Duo push notifications and HOTP codes

Show HN: DuoBreak: Python emulation of Duo push notifications and HOTP codes 3 by jessenaser | 1 comments on Hacker News. We use Duo at University and usually when I use Duo I am using it on my computer. Sometimes my phone gets out of charge, or is an unusable state (iPhone bricked until iTunes reset because no space left to update however it attempted an iTunes update, not OTA…) or we are in an exam that we should put our phones away… having Duo being tied to a phone is a single point of failure, since Duo keys are not exportable, and the phone call or text methods are disabled for our university or don’t work, one would need multiple phones or security keys to log in without waiting days for a reset from the office. Even resetting your iPhone removes the key. So I created DuoBreak such that it emulates the phones ability to accept push notifications and HOTP codes, which isn’t a feature that is documented, since you are actually supposed to use a phone. However, in DuoBreak you ca...

New Show Hacker News story: Show HN: Dogma: a metalanguage for describing data formats in documentation

Show HN: Dogma: a metalanguage for describing data formats in documentation 2 by kstenerud | 0 comments on Hacker News. Dogma: A human-friendly metalanguage for describing data formats (text or binary) in documentation. Dogma was born out of frustration trying to describe data formats (in particular, binary) using existing BNF and other metalanguages. What I wanted was something that makes it clear to a HUMAN reader how a data format is structured and interpreted. After lots of input from friends and colleagues (as well as testing it out writing numerous examples of existing formats https://ift.tt/6tainKp ), I feel that it's almost ready for a 1.0 release, but I'd like to get some last minute critiques just to make sure :) It's not going to solve 100% of use cases, but if it can solve 80-90%, it has met its goal. Please have a look and let me know what you think! https://ift.tt/c4OY0SP...

New Show Hacker News story: Show HN: ResuLLMe – Enhance Your CV with LLMs

Show HN: ResuLLMe – Enhance Your CV with LLMs 2 by ivaniscoding | 0 comments on Hacker News.

New Show Hacker News story: Show HN: A minimalist net worth tracker for individuals

Show HN: A minimalist net worth tracker for individuals 3 by heavygate | 0 comments on Hacker News. Hi HN, Today I'm launching the Net Worth Tracker by Flow Finance, a beautiful and minimalist Excel template that allows individuals to track their assets, liabilities, income, and spending on a monthly basis. The focus of this template is understanding long-term trends in the incoming and outgoing expenses for an individual—always with a focus on maximising insights while minimising user inputs. This project was created because the alternatives, frankly, are completely overwhelming. A friend of mine introduced me to the FIRE Movement and, after doing deep dives through Reddit, I tried to find templates to help facilitate a financial tracking system of my own. Every template felt like complete overkill: portfolio tracking for shares, mortgage repayment calculators, even a kind of speedometer which moved depending on my savings rate. Clever, no doubt, but unnecessary for my purposes...

New Show Hacker News story: Show HN: GPTCache – Redis for LLMs

Show HN: GPTCache – Redis for LLMs 3 by fzliu | 0 comments on Hacker News. Hey folks, As much as we love GPT-4, it's expensive and can be slow at times. That's why we built GPTCache - a semantic cache for autoregressive LMs - atop the vector database Milvus and SQLite. GPTCache provides several benefits: 1) reduced expenses due to minimizing the number of requests and tokens sent to the LLM service 2) enhanced performance by fetching cached query results directly 3) improved scalability and availability by avoiding rate limits, and 4) a flexible development environment that allows developers to verify their application's features without connecting to LLM APIs or network. Come check it out! https://ift.tt/x5TSc2l

New Show Hacker News story: Show HN: Let's find Pokémon that are the same height and weight as you

Show HN: Let's find Pokémon that are the same height and weight as you 2 by peperoncino | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Twitter API Reverse Engineered

Show HN: Twitter API Reverse Engineered 5 by hobenshield | 0 comments on Hacker News. endpoints: /graphql /1.1 /2 /i

New Show Hacker News story: Show HN: I’m building an autonomous business run by ChatGPT

Show HN: I’m building an autonomous business run by ChatGPT 4 by subtech | 0 comments on Hacker News. Hey HN!! I just shipped a project called Airfeed: https://airfeed.co/ Here's how it works: 1. You tell it the research topics you're interested in following This can be anything -- LLMs, chatbots, image generation, scaling model inference, small language models, datasets, etc. 2. Every morning, it filters new AI research papers for quality work that is relevant to your configured topics, and sends you an email summary. Here's a sample email: https://ift.tt/lCTEvsn --- As a fun experiment, I've made everything completely autonomous: Every morning, ChatGPT takes care of filtering/processing all research papers & writing each email. --- Why I built this: I think there needs to be a better way for engineers, researchers, and AI product builders to stay up to date on the latest AI research that's relevant to whatever they're working on. For someone building LL...

New Show Hacker News story: Show HN: Good, fast, cheap – editable iron triangle

Show HN: Good, fast, cheap – editable iron triangle 14 by trizoza | 7 comments on Hacker News. If you ever needed to visualise the 3 things that you can’t have all at once, like GOOD, FAST, CHEAP, I made a little tool for you! You can use it whenever you are having a project deadline discussion at work or just for fun. Enjoy.

New Show Hacker News story: Show HN: KrotoDC – gRPC in Kotlin with Dataclasses

Show HN: KrotoDC – gRPC in Kotlin with Dataclasses 2 by mscheong | 0 comments on Hacker News. - A protoc plugin data class generator that can be used as a substitute for existing Java protobuf classes that need to be constructed by a builder (which isn't very kotlin-ish). - generates coroutine service base and stubs that use the generated classes as request/response types, allowing you to completely avoid using Java classes. - Since it also generates converter extension functions between the generated types and Java types, you can still easily use protobuf-specific features such as serialization. - Additionally provides Kotlin-specific features (optional fields as nullable, oneof fields as sealed classes).

New Show Hacker News story: Show HN: Web Browser enforced by JavaScript and shellscript(termux)

Show HN: Web Browser enforced by JavaScript and shellscript(termux) 2 by puutaro | 0 comments on Hacker News. ・Web browser powerd by javascript and shellscript(termux) Javascript engine. ・Easily turn javascript and shellscript into a GUI application in android. ・Not only web browser but also termux gui client.

New Show Hacker News story: Show HN: Blind.sh – Control macOS with Just Your Voice

Show HN: Blind.sh – Control macOS with Just Your Voice 1 by rasengan | 0 comments on Hacker News. I thought it was pretty cool that Apple has built automation with osascript across their entire OS and I wanted to see what the possibilities were by linking it up with OpenAI Whisper and OpenAI ChatGPT. It's pretty cool! Be careful since it could do something you don't want it to do. I wouldn't run this on a computer you have anything important on yet! Edit: It's entirely in bash and osascript ~_~

New Show Hacker News story: Show HN: GPT–LLM native macOS app with time travel, versioning, search

Show HN: GPT–LLM native macOS app with time travel, versioning, search 4 by wll | 4 comments on Hacker News. Hey everyone! I made a Mac app for exploring large language models. It’s fast, small, has a tiny memory footprint. It’s immutable by design with both immediate time travel and automatic versioning as foundational elements. The app is written in Swift and a bit of Rust for the tokenizer. I used SwiftUI for structure and animations and Cocoa for advanced behavior. All storage is SQLite and local-only. You can go through the database as needed and backup it as well. The app has support for variants, which is the `n` parameter in the OpenAI chat completion API—equivalent to the drafts feature in Bard. It shows model- and ChatML-aware tokens and cost, and it dynamically adjusts response length in function of prompt length and context length. It supports hiding runs that are not useful, marking the ones that are notable, and going through the ancestry of the current run. It also ha...

New Show Hacker News story: Show HN: Oasis AI – Craft Emails, Essays and Notes, Just by Talking

Show HN: Oasis AI – Craft Emails, Essays and Notes, Just by Talking 16 by yousifa | 6 comments on Hacker News. I’m Yousif, founder/CTO of OASIS AI, a new iOS app to elevate your communication skills. https://ift.tt/vRfgMqe OASIS AI transforms natural speech into polished writing—college essays, business emails, social media posts, journals, and more. Everything is instant, automatic and efficient. and efficiency. It’s very simple. Let’s face it: humans communicate constantly, but we suck at it. We want to use LLMs to go beyond Grammarly's error correction and Google Translate's word-for-word translation. Instead, OASIS refines your thoughts and intentions, choosing the perfect words to express your ideas in any format or language. The app gives you a first draft, a starting place, and then you’re in control from there. OASIS started off as English–to-English, and we are now in the process of rolling out language translation and speech transcription for over 30 languages, inc...

New Show Hacker News story: Show HN: Profile Writer for Dating Apps

Show HN: Profile Writer for Dating Apps 2 by ScientiSalarian | 0 comments on Hacker News. Hi folks. We built a fun app that asks a few questions and spins them into a dating app profile. Would love to hear what you think.

New Show Hacker News story: Show HN: Local-first secret manager for developers

Show HN: Local-first secret manager for developers 3 by dantelex | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Wolverine: Give your Python scripts regenerative healing abilities

Show HN: Wolverine: Give your Python scripts regenerative healing abilities 21 by biobootloader | 9 comments on Hacker News. Run your scripts with Wolverine and when they crash, GPT-4 edits them and explains what went wrong. Even if you have many bugs it will repeatedly rerun until it's fixed. Demo video on twitter: https://twitter.com/bio_bootloader/status/163688020830443110...

New Show Hacker News story: Show HN: Rust Guideposts – 100+ topics to help learn about Rust

Show HN: Rust Guideposts – 100+ topics to help learn about Rust 2 by jph | 0 comments on Hacker News. I'm teaching Rust to compsci students and recent grads who are joining tech teams. I'm creating a guide of many Rust topics and their summaries. https://ift.tt/Vi6k2p8 The guide is free and open source. I'm seeking ideas for improvements, to help newcomers to Rust and its ecosystem. In addition to the repo, the guide is available as an ebook PDF, with pay-what-you-wish pricing. https://ift.tt/7k1tdWL My goal is to help many people learn about Rust, so I greatly appreciate your advice and you sharing the guide if you wish. Thanks!

New Show Hacker News story: Show HN: Skip the SSO Tax, access your user data with OSS

Show HN: Skip the SSO Tax, access your user data with OSS 3 by mathiasn | 0 comments on Hacker News. As the former CTO of an Insurtech and Fintech startup I always had the “pleasure” to keep regulators and auditors happy. Think of documenting who has access to what, quarterly access reviews, yearly audits and so on… Like many others we couldn’t justify the Enterprise-plan for every SaaS tool to simply get access to SSO and SCIM/SAML APIs. For Notion alone the cost would have nearly doubled to $14 per user per month. That’s insane! Mostly unknown to people, SSO Tax also limits access to APIs that are used for managing user access (SCIM/SAML). This has proven to be an incredibly annoying roadblock that prevented me from doing anything useful with our user data: - You want to download the current list of users and their permissions? Forget about it! - You want to centrally assign user roles and permissions? Good luck with that! - You want to delete user accounts immediately? Yeah right...

New Show Hacker News story: Show HN: Chappy, a friendly, privacy first chatbot

Show HN: Chappy, a friendly, privacy first chatbot 2 by wswoodruff | 0 comments on Hacker News. Introducing Chappy, a friendly, privacy-first chatbot that's here to brighten your day and spark intriguing conversations! With Chappy, you can chat about anything from cosmic wonders to random fun facts, all while enjoying a colorful and exciting user interface. We prioritize your privacy, so you can chat with Chappy without worrying about your data. As a bonus, Chappy is capable of generating vibrant images using AI, making your conversations even more engaging and visually appealing. Come join the adventure and give Chappy a try at chappyai.com! We can't wait to chat with you and explore the universe together!

New Show Hacker News story: Show HN: The Hardware Lottery

Show HN: The Hardware Lottery 2 by ratanpremji | 0 comments on Hacker News.

New Show Hacker News story: Show HN: The Coolest advancements in AI this week

Show HN: The Coolest advancements in AI this week 2 by jmiran15 | 1 comments on Hacker News. I hope you find these AI breakthroughs and projects as exciting as I do! I'd love to hear your thoughts, opinions, and predictions about these advancements in the comments below. Let's have a lively discussion! I'm also excited to announce that I've started a free daily newsletter called "The AI Revolution" to help you stay updated on the latest AI advancements, all in one place. Today's post is just the first issue, and I'm completely open to suggestions for improving tomorrow's newsletter. Your feedback will be invaluable in shaping this resource. Subscribe to "The AI Revolution" and never miss an update: https://ift.tt/3zsRTQH And feel free to follow us on Twitter for more recent updates: https://twitter.com/TheAIRevolu Looking forward to your thoughts and ideas!

New Show Hacker News story: Show HN: Bridging the Gap Between Generative AI and Human Intelligence

Show HN: Bridging the Gap Between Generative AI and Human Intelligence 3 by slowmotarget | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Nudge: A command line tool for sending notifications via pushover

Show HN: Nudge: A command line tool for sending notifications via pushover 3 by bayindirh | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Secretsfly – a minimalist self-hosted secrets manager

Show HN: Secretsfly – a minimalist self-hosted secrets manager 5 by martinlev | 0 comments on Hacker News.

New Show Hacker News story: Show HN: ThoughtCoach: Helping to improve mental health with AI

Show HN: ThoughtCoach: Helping to improve mental health with AI 3 by mtharrison | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Supavisor – a Postgres connection pooler written in Elixir

Show HN: Supavisor – a Postgres connection pooler written in Elixir 32 by kiwicopple | 8 comments on Hacker News.

New Show Hacker News story: Show HN: Standup automation with automatic Timesheet generation

Show HN: Standup automation with automatic Timesheet generation 2 by user7878 | 1 comments on Hacker News.

New Show Hacker News story: Show HN: Shell-maker, a maker of Emacs shells

Show HN: Shell-maker, a maker of Emacs shells 3 by xenodium | 0 comments on Hacker News.

New Show Hacker News story: Show HN: GPT-4 powered vegetable growing advice

Show HN: GPT-4 powered vegetable growing advice 2 by thip | 1 comments on Hacker News.

New Show Hacker News story: Show HN: AI ChatBot to Facilitate Self-Help for Long Covid

Show HN: AI ChatBot to Facilitate Self-Help for Long Covid 3 by stephaniecovell | 0 comments on Hacker News. https://ift.tt/5kuv1nc is an LLM designed to provide Long COVID patients with doctor-approved low-cost self-care practices for symptom management. S/O BerriAI YC W23

New Show Hacker News story: Show HN: Hacker News from Alternate Dimension (With Everything LLM-Generated)

Show HN: Hacker News from Alternate Dimension (With Everything LLM-Generated) 3 by xpl | 0 comments on Hacker News. I recently discovered that LLMs can generate hilarious tech article titles, so I took it to the next level by generating coherent and entertaining comment threads, article content, and images. It will be automatically updated, so you'll never get bored. Enjoy! P.S. I've added robots.txt so I hope it doesn't get indexed.

New Show Hacker News story: Show HN: Learn Rust 101 – A guide to aid your journey of becoming a Rustacean

Show HN: Learn Rust 101 – A guide to aid your journey of becoming a Rustacean 2 by gdcbe | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Compress GPT-4 Prompts

Show HN: Compress GPT-4 Prompts 22 by jeanmayer | 7 comments on Hacker News. Hey HN! I recently built Prompt Reducer, an app that makes it easier to compress GPT-4 prompts. The main goal is to reduce the number of tokens in each prompt, thereby reducing the cost of running GPT-4. I figured since @gfodor tweeted about compressing GPT-4. It’s still early, and it does not work perfectly, but I’d love to hear any feedback or suggestions for how to make it faster or more efficient.

New Show Hacker News story: Show HN: A toy bootloader written in C++

Show HN: A toy bootloader written in C++ 2 by st_goliath | 0 comments on Hacker News. Yes, this includes the MBR and partition boot sector. The partition table is modeled as a class hierarchy. Second stage loads a kernel from a FAT32 file. I'm normally a C programmer, but for a work project, I recently revisited C++, a language that I had an on-again-off-again relationship over the years. I did this as a fun training exercise on the side to get familiar with the language again, but obsessed a bit and kind of overshot the target. I thought the result might be of interest to someone.

New Show Hacker News story: Show HN: Askbend – SQL-Based Knowledge Base Search and Completion

Show HN: Askbend – SQL-Based Knowledge Base Search and Completion 2 by repsiace | 1 comments on Hacker News. AskBend is a Rust project that utilizes the power of Databend and OpenAI to create a SQL-based knowledge base from Markdown files. You can easily use blogs or documents as data sources and host your own instances.

New Show Hacker News story: Show HN: ChatGDB – GPT-Powered GDB Assistant

Show HN: ChatGDB – GPT-Powered GDB Assistant 11 by pgosar0514 | 1 comments on Hacker News. ChatGDB is a tool designed to superpower your debugging experience with GDB, a debugger for compiled languages. Use it to accelerate your debugging workflow by leveraging the power of ChatGPT to assist you while using GDB! It allows you to explain in natural language what you want to do, and then automatically execute the relevant command. Optionally, you can ask ChatGPT to explain the command it just ran or even pass in any question for it to answer. Focus on what's important - figuring out that nasty bug instead of chasing down GDB commands at the tip of your tongue. See it here: https://ift.tt/79BpYer

New Show Hacker News story: Show HN: Find Perfect App for Self Hosting

Show HN: Find Perfect App for Self Hosting 2 by quaintdev | 0 comments on Hacker News. The website is just another interface to awesome-selfhosted[0] list. I am no front-end developer so please bear with me as I improve the design and add more capabilities like filter and sort. The website looks good on desktop and on mobile in landscape mode. [0]: https://ift.tt/rOsRDaF

New Show Hacker News story: Show HN: Chrome extension to improve productivity with ChatGPT

Show HN: Chrome extension to improve productivity with ChatGPT 4 by jakeprins | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Scan your blog for broken outgoing links

Show HN: Scan your blog for broken outgoing links 2 by RojerGS | 0 comments on Hacker News. I built this small proof-of-concept interface that lets you scan a URL or the pages in a .XML sitemap for broken outgoing links. I use this to find issues with links in my own blog and I'm wondering if this is useful for others! I also have some cases of false positives showing up and I'd be interested in knowing if you have suggestions to better handle those cases.

New Show Hacker News story: Show HN: I built a Hackable Hacker News (reprogrammable in-browser)

Show HN: I built a Hackable Hacker News (reprogrammable in-browser) 2 by spronket_news | 0 comments on Hacker News. Explanation/How to use: https://www.youtube.com/watch?v=-LsnmoSEEjI It works as a general-purpose news reader too! Feel free to give me your thoughts and suggestions. Hope it's something you all find fun!

New Show Hacker News story: Show HN: Chatbot for Your Online Documentation

Show HN: Chatbot for Your Online Documentation 4 by ClemDev2000 | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Machato — A native macOS client for ChatGPT

Show HN: Machato — A native macOS client for ChatGPT 9 by fliife | 1 comments on Hacker News. Machato is a tiny ChatGPT client that supports all basic features, and more ! I was frustrated with other native implementations that focused on quick access but didn't give easy access to a history of what has been said. Since ChatGPT is a learning tool for me, I'm always ruffling through past conversations. The client supports markdown rendering as well as LaTeX. Feel free to try it out ! For those who see this thread early, you can use the promo code EARLY_BIRD to get a free lifetime license. Let me know if some aspects can be improved or if there are features you'd like to see implemented in native clients.

New Show Hacker News story: Show HN: Search engine for your personalized network of high-quality websites

Show HN: Search engine for your personalized network of high-quality websites 3 by v_warar | 0 comments on Hacker News. Hello Hackers! I am Vignesh. As you all know, the current search engines are inundated with low-quality, SEO-spammed results (which will soon be AI-generated). At Grep, I have developed a new kind of search engine where you can choose to follow a minimum of 7 websites that you like. Grep will build a network of 4-degree connections by considering the websites you follow and the websites that those websites link to, and so on. If the minimum requirement of 70,000 websites in your personalized network is not met, Grep will expand the network up to 7 degrees of connection. Of course, Grep is still in its early development stage. Please leave your feedback in the comments section. :)

New Show Hacker News story: Show HN: I feed all my daily entries to an AI (ChatGPT)

Show HN: I feed all my daily entries to an AI (ChatGPT) 5 by drsmog | 1 comments on Hacker News. Hello there! I hope you're doing well today! I wanted to share something with you. Recently I was on the hunt for the best way to journal daily. Well, I had this idea - what if I could feed all my daily entries to an AI (ChatGPT), and create a friendly, supportive character like Socrates or Simon Sinek? This way, I could ask any questions about my life and mental health, and get some amazing advice on how to improve myself! The results have been absolutely mind-blowing ! I even made a short GIF to show you how it works - check it out! - https://ift.tt/2CfqInv I've shared this with my friends, and they loved it so much that they've been asking me to create a full-featured journalling app with an AI assistant! What do you think? Would you be interested in using an app like this? I'd love to hear your feedback and thoughts on this. Please feel free to drop a comment and let ...

New Show Hacker News story: Show HN: I made a site builder powered by GPT-4 and DALL-E 2

Show HN: I made a site builder powered by GPT-4 and DALL-E 2 2 by marclou | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Create AI Art with your phone (Android app, Stable Diffusion)

Show HN: Create AI Art with your phone (Android app, Stable Diffusion) 2 by liuxiaopai | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Efficient Data Formats for GPT

Show HN: Efficient Data Formats for GPT 4 by nikaspran | 3 comments on Hacker News.

New Show Hacker News story: Show HN: AI Bartender – The multi-personality GPT bartender

Show HN: AI Bartender – The multi-personality GPT bartender 2 by shon | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Want something better than k-means? Try BanditPAM

Show HN: Want something better than k-means? Try BanditPAM 20 by motiwari | 0 comments on Hacker News. Want something better than k-means? I'm happy to announce our SOTA k-medoids algorithm from NeurIPS 2020, BanditPAM, is now publicly available! `pip install banditpam` or `install.packages("banditpam")` and you're good to go! k-means is one of the most widely-used algorithms to cluster data. However, it has several limitations: a) it requires the use of L2 distance for efficient clustering, which also b) restricts the data you're clustering to be vectors, and c) doesn't require the means to be datapoints in the dataset. Unlike in k-means, the k-medoids problem requires cluster centers to be actual datapoints, which permits greater interpretability of your cluster centers. k-medoids also works better with arbitrary distance metrics, so your clustering can be more robust to outliers if you're using metrics like L1. Despite these advantages, most people d...

New Show Hacker News story: Show HN: I built a real life version of Her

Show HN: I built a real life version of Her 8 by justasking7000 | 5 comments on Hacker News.

New Show Hacker News story: Show HN: GPT-4 powered brand name generator

Show HN: GPT-4 powered brand name generator 2 by carlos-menezes | 0 comments on Hacker News. 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.

New Show Hacker News story: Show HN: Live coaching app for remote SWE interviews, uses Whisper and GPT-4

Show HN: Live coaching app for remote SWE interviews, uses Whisper and GPT-4 39 by leetcode-mafia | 6 comments on Hacker News. 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 b...

New Show Hacker News story: Show HN: CartoSVG – create beautiful map visualizations easily

Show HN: CartoSVG – create beautiful map visualizations easily 3 by kymikz | 0 comments on Hacker News. 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.

New Show Hacker News story: Show HN: Deno SaaSKit

Show HN: Deno SaaSKit 2 by lambtron | 0 comments on Hacker News. Hey all, Our community wanted to learn how to do more with Fresh, adding auth, databases, logins, billing, etc., so while we were creating educational resources, we also decided to build and open source a SaaS template written in Fresh/Supabase. Note this is in beta and our SaaS features are limited, but we have a roadmap to 1.0 and welcome any contributions/feedback/etc. We'd love to get your thoughts on this project!

New Show Hacker News story: Show HN: NanoApp.dev – Turn JSON into Native Mobile App

Show HN: NanoApp.dev – Turn JSON into Native Mobile App 3 by sandeshnaroju | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Codemusings.nl – Share your .plan with others

Show HN: Codemusings.nl – Share your .plan with others 2 by jaytaph | 0 comments on Hacker News. Hey everyone, I'm excited to introduce CodeMusings.nl, a blog-site that allows you to share your .plan files and get organized with your tasks and goals. If you're not familiar with .plan files, they are simple text files that can help you keep track of your to-do list, goals, and progress updates. It's a great way to stay organized and focused on your tasks, especially if you're working on multiple projects or have a busy schedule. At CodeMusings.nl, we believe that sharing your .plan files with others can help you stay motivated and inspired. You can upload your daily or weekly plans, update them as you go, and get feedback and support from the community. You can also browse other users' .plan files, give feedback, and connect with like-minded individuals.

New Show Hacker News story: Show HN: I collect domain names to help build them

Show HN: I collect domain names to help build them 2 by franckj | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Generate Textual Descriptions for Images

Show HN: Generate Textual Descriptions for Images 2 by mountainview | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Daba – Turn your JSON into a database

Show HN: Daba – Turn your JSON into a database 12 by zikero | 5 comments on Hacker News. 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 th...

New Show Hacker News story: Show HN: Img2irc – convert images to IRC or ANSI, with post-processing filters

Show HN: Img2irc – convert images to IRC or ANSI, with post-processing filters 3 by ballotechnics | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Ycinterview.ai – Practice the YC Interview with Cloned AI Partners

Show HN: Ycinterview.ai – Practice the YC Interview with Cloned AI Partners 3 by KianHooshmand | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Goru, an experimental, Go-inspired concurrency library for Ruby

Show HN: Goru, an experimental, Go-inspired concurrency library for Ruby 2 by bryanp | 1 comments on Hacker News. 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/i7D3ask ), 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 e...

New Show Hacker News story: Show HN: Unknown Pleasures, a tiny web experiment with WebGL

Show HN: Unknown Pleasures, a tiny web experiment with WebGL 94 by poeti8 | 9 comments on Hacker News.

New Show Hacker News story: Show HN: Practice React's UseState Hook with 8 Interactive Exercises

Show HN: Practice React's UseState Hook with 8 Interactive Exercises 2 by xempes | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Resource Forks

Show HN: Resource Forks 2 by ratanpremji | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Cloud.museum the first SSG coded by ChatGPT

Show HN: Cloud.museum the first SSG coded by ChatGPT 2 by rdevnull | 0 comments on Hacker News. 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 ?

New Show Hacker News story: Show HN: I Got ChatGPT to Write Complete Programs

Show HN: I Got ChatGPT to Write Complete Programs 4 by strnisa | 1 comments on Hacker News.

New Show Hacker News story: Show HN: Shhhbb, an SSH BBS

Show HN: Shhhbb, an SSH BBS 2 by lagniappe | 2 comments on Hacker News. Hello all :) I made this BBS for fun and thought you all would enjoy it. It's not perfect, but it's been a fun exercise! see it: https://ift.tt/dJgAKhy try it: ssh -p 2223 shhhbb.com host it: https://ift.tt/HoyVnkb why? Every year I challenge myself in some new way, this year it is to push one project per week. You might recognize my static site generator [0] or my releaser for go [1] from previous posts as one of these weekly projects. If you want to join me in doing this, it's been a blast and I highly recommend it! Maybe we can chat on the bbs about it :) [0] - bearclaw tiny static generator - https://ift.tt/tqJdhgS [1] - release.sh release builder for go - https://ift.tt/tqJdhgS need: I'd love a few co-conspirators, or even some new friends for the bbs software or the bbs itself. A lofty nice-to-have goal is meeting a few other similarly motivated people to conspire with on a weekly basis. If...

New Show Hacker News story: Show HN: Integrating puzzle rush and spaced repetitions for chess training

Show HN: Integrating puzzle rush and spaced repetitions for chess training 3 by danmaz74 | 0 comments on Hacker News. Hi HN! I’m publicly releasing BraiMax Chess, a web app I built during the last three months; it’s based on a training technique which brought me from around 1700/1800 to 2000 rating (superblitz) on lichess. Here it is: https://chess.braimax.com Background story: during lockdown I decided to try and improve at chess, which I was playing online a lot. Bought a few books, tried all the websites and apps I found. This serious study helped a lot in understanding the game better, but didn’t improve my results as much as I hoped. It also was very hard work, and after a few months I stopped having the motivation to continue. Around that time I discovered Puzzle Rush on chess.com; that one was the most enjoyable chess-related thing I could do besides playing games, and it helped with tactics, but I soon plateaued - until I thought about combining that with spaced repetitions....

New Show Hacker News story: Show HN: Build your own no-code editor with Reka.js

Show HN: Build your own no-code editor with Reka.js 4 by prevwong | 1 comments on Hacker News. Much of the complexity surrounding building no-code editors come from architecting the state management system to power such editors: how can we allow end-users to create and edit entire UI components directly from the browser? Reka solves this by providing an AST-powered state system that enables end-users to create UI components that are nearly as complex as ones that developers could write in code; along with an interpreter to efficiently compute an output that could be rendered on the browser. Furthermore, Reka provides additional extensions, such as enabling real-time collaboration via CRDTs; or you could build a custom extension to support additional functionalities such as a commenting system. All that's left is for you to build your own UI abstractions on top of Reka — designing your editor UI/UX and providing easy-to-use buttons/controls for your end-users to mutate the underl...

New Show Hacker News story: Show HN: Sshmgr, simple SSH manager for busy and lazy people

Show HN: Sshmgr, simple SSH manager for busy and lazy people 2 by sonyarianto | 0 comments on Hacker News. Simple SSH manager for busy and lazy people. It's open source.

New Show Hacker News story: Show HN: Modern media captions parsing and rendering library (vtt/srt/ssa)

Show HN: Modern media captions parsing and rendering library (vtt/srt/ssa) 2 by rahim_alwer | 1 comments on Hacker News.

New Show Hacker News story: Show HN: AI Shakespeare

Show HN: AI Shakespeare 2 by radarsat1 | 0 comments on Hacker News. These days thinking of ways to uniquely show off a text to speech model is tough, as there are a lot of them out there. We thought it would be fun for April 1 to show something a bit on the silly end of things -- we trained our TTS model on "Shakespearean" theatrical voices, and used GPT to generate short plays which are then "acted" out. This lets us show the versatility of our model, that we use in more "serious" settings for generating branded voices for particular languages or accents. It should be noted, the dataset is of our own curation; all voice actors were compensated with full knowledge of being used for TTS and were thrilled to be part of a creative project like this. We resample the speaker embedding space to find voices that are different from any one particular actor.

New Show Hacker News story: Show HN: Use cookies from Chrome (CDP) in cURL without copy pasting

Show HN: Use cookies from Chrome (CDP) in cURL without copy pasting 6 by fipso | 0 comments on Hacker News.

New Show Hacker News story: Show HN: Coursemate, connect with other self learners

Show HN: Coursemate, connect with other self learners 5 by collin1 | 0 comments on Hacker News. Hey Hacker News! My name is Collin, 18 years old and doing a gap year after finishing high school last year. This was my first real project after starting to learn web development around 5 months ago. I came up with this idea as it was a real pain for me to find other people from my country and especially my age, learning and taking online courses about the same stuff online. Lots of these online courses include their own discord communities and forums, but I still found it very hard to connect with other people in there. Thats why I built Coursemate. I would love to get your feedback on it! :)