Skip to main content

Posts

Showing posts from February, 2023

Show HN: Dak – a Lisp-like language that transpiles to JavaScript https://ift.tt/lt61HQv

Show HN: Dak – a Lisp-like language that transpiles to JavaScript Hi HN, author here. Happy to answer any questions. I had an itch to make a lisp like language that was a thin layer on top JavaScript. Something that could leverage the thriving ecosystem that exists around JavaScript. It's brittle, hot off the oven. Besides being a fan of parenthesis, I think macros fill in a gap that the JavaScript ecosystem today fills in with one-off compilers, bundler plugins and such. Macros can't do everything, but for example I think they have the potential to enable things like JSX, Solid and Svelte style libraries. Take the tour to get a feel for what it can do and play with the live code in your browser! https://ift.tt/VRoiwLb February 27, 2023 at 06:08PM

Show HN: Collect and search robotics data with SensorSurf https://ift.tt/NUmVAJH

Show HN: Collect and search robotics data with SensorSurf We've been building SensorSurf and are thrilled to share our beta with the robotics community: https://ift.tt/1ZJ2eAm . SensorSurf is an open source platform that makes it easy for robotics engineers to collect and search data from their fleet. You can define triggers for when to record data (e.g. emergency stop) and capture the moments leading up to the event with rolling buffers. We integrate directly with ROS. Drop our agent into your system, and start collecting data! ================= What prompted me to found this company: > I was a perception engineer working on autonomous boats. > I needed tons of imagery to build computer vision datasets. > It was impossible to offload all this data over satellite. > I interviewed robotics companies, and learned this was a common problem. ================= Our beta enables you to: 1. Trigger recording on arbitrary ROS topic data. 2. Capture the data leading up to the tri...

Show HN: Photovatar – The AI-Powered Avatar Generator https://ift.tt/74yqxr2

Show HN: Photovatar – The AI-Powered Avatar Generator Hey Hacker News community! I'm thrilled to share with you my latest creation - Photovatar, the ultimate avatar generator app powered by state-of-the-art AI models like sczhou/codeformer and pollinations/modnet. With Photovatar, you can easily generate custom avatars with just a few clicks. The app allows you to remove unwanted backgrounds, define custom backgrounds, and even increase photo quality. And the best part? It's completely free, and you can build your own! Our app is perfect for anyone looking to create personalized avatars for their social media profiles, blogs, websites, and more. We've also made it super easy to accept payments and top-up credits with Stripe integration(test mode) Stripe test cards: Card number: 4242 4242 4242 4242 Expiration date: Any future date (1234) CVC: Any 3 digits (567) Give Photovatar a try, and let us know what you think! Feel free the share any feedback and question. Contribute th...

Show HN: We’re open-sourcing Requestly - HTTP debugging proxy for Web and Mobile https://ift.tt/8hOKrXf

Show HN: We’re open-sourcing Requestly - HTTP debugging proxy for Web and Mobile Hey HN! We’ve open-sourced Requestly ( https://ift.tt/qp2BmJI ) - A network debugging proxy for web & mobile apps. Requestly intercepts all HTTP(s) requests & responses and provides full control to developers to modify the request/response like rewriting request URL to hit different environment or returning different response for APIs/scripts. In addition to HTTP(s) interception & modification capabilities, Requestly also offers Mock Server [0] & recording the browser sessions [1] with video, console logs, & network logs stitched together. We use rrweb[2] for this. Requestly is available as browser extension [3] with 175K+ downloads on Chrome Store & as a desktop app [4] on all platforms. Browser extension is written in javascript (slowly migrating to typescript now) and use chrome APIs for interception & modification. Desktop app is written in JS (slowly moving to typescript he...

Show HN: DbDeclare – A Python declarative layer for your database https://ift.tt/P2tLMmb

Show HN: DbDeclare – A Python declarative layer for your database Hi HN! I made and just published v0.0.1 of DbDeclare. I use Python a lot, and interact with Postgres a lot. I like using SQLAlchemy, and I love Alembic. Those wonderful tools primarily operate on tables, though, and I often find myself writing custom code to declare what databases, roles, schemas, privileges, etc. I want, and I have a hard time updating them reliably and in a repeatable fashion. That's where DbDeclare aims to help: declare what you want in your cluster (in addition to SQLAlchemy-defined tables and columns) in-code, alongside your tables. There is a lot this can't do yet (thus the v0.0.1), but I think there's a decent foundation here to build on and eventually have really nice features like autogenerating change statements between your in-code definition and what is actually in your database cluster (like Alembic). This is also my first attempt at building an open-source project, so I'm su...

Show HN: Sup – one liners to distribute binaries https://ift.tt/pVNYD4q

Show HN: Sup – one liners to distribute binaries Hello all, I found myself rewriting the same shell scripts to distribute my binaries over and again, so I decided to put them in a repository and serve them with a prettier URL - to have nicer READMEs for my projects. I'll add some other tasks like installing/uninstalling on Windows, but in general ideas are welcome. Maybe somebody else finds them useful! https://ift.tt/RxWNvLJ February 27, 2023 at 12:46PM

Show HN: Rent Engineers – Freelance professional engineers directory https://ift.tt/E729zJV

Show HN: Rent Engineers – Freelance professional engineers directory RentEngineers is a freelance professional engineers directory. It helps engineers to monetize their free time and businesses to find the best engineers in the world to solve their problems. Its a simple app, no bells & whistles. If the app finds enough traction then i will rent a designer to improve the UI. Pros: Desktop view is good, not SPA & lite Con: mobile view is not good at the momment Suggestions/feedback/advices/feature requests are welcome Thanks for your time. https://ift.tt/iB3Q0pg February 26, 2023 at 05:42AM

Show HN: Bearclaw – tiny static site generator with RSS https://ift.tt/IM4PuXr

Show HN: Bearclaw – tiny static site generator with RSS hey yall, I made bearclaw because I just wanted an unopinionated static site generator with no toolchain and fancy stuff going on; it'd be my pleasure to show it to you today and answer any questions you might have. If you do end up trying out bearclaw, you can use nginx or your favorite webserver. Earlier this week I made eclaire - a static site webserver with compression, caching, and automatic HTTPS through letsencrypt. https://ift.tt/IDa3etw https://ift.tt/ScZzrdf February 25, 2023 at 08:10PM

Show HN: Atlantis workflow without a backend https://ift.tt/4LceUYr

Show HN: Atlantis workflow without a backend Last week we created a TF cloud alternative that could just run in GH actions and got an overwhelming response on Reddit. A lot of people recommended Atlantis as a way to run terraform plan and apply jobs in your CI. It is used by many great teams (Lyft for example) - however, we see the following issues: - You need to deploy and maintain an Atlantis backend in your infrastructure - It runs terraform commands locally on the same server it is installed in. This makes it tricky to achieve high levels of isolation and repeatability that is typically needed in CI/CD scenarios So we thought: does this really need a backend? Can we somehow make it work without a need to deploy a dedicated service and with terraform jobs running natively in Github Actions with proper isolation? Actually, the only need that makes Atlantis backend irreplaceable is code-level locks (not to be confused with state locks). But these can be stored in a database, accessed ...

Show HN: We’re open-sourcing our session replay tool https://ift.tt/Ko10QBA

Show HN: We’re open-sourcing our session replay tool Hey HN! We’re open-sourcing highlight.io ( https://ift.tt/vdcnRLT ), a session replay and error monitoring tool. Highlight.io gives you a high-precision video-like replay of what users are doing when an error or exception occurs in your web app, along with a full-fledged error monitoring experience (similar to bugsnag, rollbar, etc..). The main value prop of highlight.io is that we help you understand the full context surrounding an error and allow you to drill down to the code path that a user invoked (i.e user clicked button X, sent network request Y, and backend code Z was executed). Some of our customers compare this to a “web debugger” of sorts. A picture of what this looks like in our app is here [1]. For some background, when we worked at our previous companies as engineers, we encountered hard-to-reproduce issues spanning across both the frontend and backend. The main issues were (1) if a customer complained about a problem, ...

Show HN: Starter.place – Gumroad for Starter Repos https://ift.tt/5G2tRZK

Show HN: Starter.place – Gumroad for Starter Repos Hey HN! Starting a new project is so hard because before you actually get to building the idea itself, you have to search for tools and figure out how to piece them together. With starter.place, you can find proven starter templates/boilerplates/stacks that use the technologies you want and get to building right away. If you’ve made a starter repo you think others would find useful, you can immediately reach a wide audience without having to make your own site/app to sell it and advertise it by posting on starter.place. Just focus on building the starter all while earning from it if you so choose. starter.place is so helpful to buyers and sellers because buyers are added as view-only collaborators to the repo on GitHub, where they get continuous updates. Buyers can help drive the project by submitting issues and PRs too. Let me know what you think! And if you have a starter template but are hesitant to list it, let me know what I could...

Show HN: Experiences with Stripe in Small Hotels https://ift.tt/AbMoZUz

Show HN: Experiences with Stripe in Small Hotels First of all our service is not prohibited by Stripe, we are a small hotel. We sell our rooms in booking and booking sends us a virtual credit card to be used to bill each customer for the room. We withdrew the funds from the virtual credit card in the stripe platform and after two months of using it, my Stripe account was closed. The stripe account manager told me that we had a higher than normal percentage of prepaid cards and that we may be suspected of money laundering. Stripe has now refunded all the funds in my account (automatically) February 22, 2023 at 02:15PM

Show HN: Strada – Embed accounting automation with one API https://ift.tt/aov4UrY

Show HN: Strada – Embed accounting automation with one API Hi HN, we’ve been working on an API that makes it easy to add a full set of accounting tools to your product. If you’re building fintech or payments software for businesses, your customers often ask for integrations to their accounting system (Quickbooks, NetSuite, etc). There’s plenty of options for solving the integration problem, but they leave lots of manual work. Customers still need to review each transaction to assign a category, vendor, department, and tax code. With the Strada API, you can offer accounting integrations, cleanse your transaction data, and automatically map transaction details based on each customer’s accounting setup. We’d love any feedback you have. If you want to chat in more detail please reach out through our website. Thanks! https://ift.tt/DPBrfk5 February 22, 2023 at 03:28AM

Show HN: Small TypeScript library to work with quadkeys in a fast way https://ift.tt/6rGzA5Z

Show HN: Small TypeScript library to work with quadkeys in a fast way I am developing a website called Geocode Map Viewer( https://ift.tt/5sxaM8K ). I was looking for a suitable TypeScript library to visualize Quadkeys on the map, but unfortunately I couldn't find one. So I decided to develop my own library, using the sample code available on the Microsoft Tile Maps page as a reference. https://ift.tt/CLBW9Sy February 21, 2023 at 06:21AM

Show HN: I'm building ProductHunt for Actual Products: Would love feedback https://ift.tt/8ebIsGJ

Show HN: I'm building ProductHunt for Actual Products: Would love feedback The product discovery process is totally broken, and this is where Styrate comes in. With so many products available online, it's becoming increasingly difficult for consumers to differentiate between genuine and fake reviews. Amazon and other e-commerce platforms are full of fake reviews that can mislead consumers into buying substandard products. This means that consumers can end up wasting their time and money on products that don't meet their needs, and this problem is only getting worse. Styrate solves this problem by connecting consumers with trusted influencers who provide honest reviews and recommendations. With video reviews, upvoting, and sorting/search by type of product, users can easily discover the most highly rated reviews for their needs. Fake reviews cost Americans 0.12 cents on every dollar they spend online, making it crucial to have a platform like Styrate for informed purchasing ...

Show HN: Forte, an open-source self-hosted music platform with lots of features https://ift.tt/n2sH6zg

Show HN: Forte, an open-source self-hosted music platform with lots of features Hey everyone, I've made a project to make your own music archive streamable and turn it into a complete music platform. The reason I've been working on this project for a while was to stream the CD's I've had at home without any cost and also make a nice looking system to manage and listen to these albums. You can host your own server and use the web player to connect. Also, it is possible to create users and give them access to your own server. Some features of the current release are group sessions, endless listening with radio, fuzzy searches, showing lyrics and specialized context menus. This was the first biggest project I've made using Vue.js and I am open to any suggestions. Feel free to leave a comment. I really appreciate your support! GitHub Repo: https://ift.tt/BlMFXCx Web Player: https://forte.buzl.uk/ https://ift.tt/BlMFXCx February 21, 2023 at 12:51AM

Show HN: Whisper.cpp and YAKE to Analyse Voice Reflections [iOS] https://ift.tt/OUdTQHS

Show HN: Whisper.cpp and YAKE to Analyse Voice Reflections [iOS] Six months ago, I went full-time indie, but I haven't released anything so far. The products just never felt good enough for me to publicly say this is what I'm doing now. To get out of this mindset, I decided to make an app for myself in a week, add monetization, release it and move on. The app idea was simple: Reflect on your day by answering the same four questions out loud. The answers are transcribed and with regular use you can see what influences you the most and take action. All on-device, as otherwise I wouldn't feel comfortable sharing my thoughts. I had all core features working within a day by simply modifying an existing example app. However I was dissatisfied with iOS's built-in offline transcription due to a lack of punctuation and the speech recognition permission prompt that made it seem like data would leave the device. Decided to use whisper.cpp [0] (small model) instead. This change, le...

Show HN: AllyDB – An in-memory database similar to Redis, built using Elixir https://ift.tt/FTRiG1M

Show HN: AllyDB – An in-memory database similar to Redis, built using Elixir Hey, everyone. I am currently working on AllyDB, which is basically my own Redis, which I am writing in Elixir. Currently, the database is nowhere close to being ready, as you can see in the roadmap, but I am doing my best to add stuff as fast as possible. Currently the implementation is very simple, with an in memory table, an append log persistence system, as well as an interval persistence system as a backup. The database could definitely be optimized further, especially when it comes to persistence, which I am planning to do in the future. I'm also planning to use Rust NIFs for specific tasks for the performance gains over Elixir and BEAM. Writes and deletes are currently asynchronous, but I will add blocking versions of them soon. I am trying to make the system as fault tolerant as possible, and currently everything except the TCP connections are fault tolerant. I'm also working on a TypeScript cl...

Show HN: A tool that turns unstructured transcripts into queryable SQL and JSON https://ift.tt/XYiFmHa

Show HN: A tool that turns unstructured transcripts into queryable SQL and JSON We built Summ, a tool that provides intelligent search and question-answering across large sets of transcripts. We turn your unstructured transcripts into queryable SQL and JSON! Try it out and read how we did it. https://ift.tt/QAtu3V0 February 18, 2023 at 11:54PM

Show HN: Sora, Personal Publishing Platform https://ift.tt/pfP8Hjy

Show HN: Sora, Personal Publishing Platform We wanted to create, to express ourselves without being judged either by strangers or some algorithm. We wanted our own space on the internet, where our photos and words would matter. So we started to build an app that can showcase our content, without having to pick a platform. You can use Sora to publish a few different content types. - Blog - Polaroid - Poster - Microblog You can either display them all on your Sora profile as a summary (like mine https://ift.tt/X3uY9Gc ), or put any of them forward for the world to see. We plan to run this app for a long time and looking for feedback, so let us know what you think! (feedback@sora.city, or link on website) --- Our stack today is Node, Typescript, NextJS, atomic CSS, with everything stored on Supabase. https://sora.city/ February 19, 2023 at 03:41AM

Show HN: Font Awesome Icon Picker Using AI https://ift.tt/aCsVckF

Show HN: Font Awesome Icon Picker Using AI I am a big fan and user of Font Awesome icons. Although their search function is pretty neat, sometimes I find it difficult to search for icons related to a particular concept or topic. As a solution, I have created an app where you can enter any concept or topic and receive the corresponding Font Awesome icon code. Here is an example for the word "prediction": When I searched for "prediction" using Font Awesome's search, no icons were returned: https://ift.tt/DvPK8am However, the app suggested that I should use the "chart-line" icon, which was accurate: https://ift.tt/jfHKiI5... Please try it out and let me know your feedback. https://ift.tt/TKB6Iyg February 18, 2023 at 04:28AM

Show HN: An open-source API built on top of OpenAI Embeddings and Pinecone https://ift.tt/eCymYgS

Show HN: An open-source API built on top of OpenAI Embeddings and Pinecone Hi, I'm Ben, the co-creator of Embedbase. Embedbase lets you use OpenAI Embeddings and Pinecone seamlessly. For example, you can add Embedbase to your app and pair it with GPT3 to allow people to search using natural language (e.g. How many workouts did I complete last week?), or simply expanding your current search experience beyond full-text search (e.g. looking for "similar" documents in Notion to find other related information) Managing embeddings is uncharted territory, we needed to discover the best practices ourselves. Now we're happy to share our learnings with Embedbase. Shoot if you have any questions https://www.embedbase.xyz/ February 17, 2023 at 10:29PM

Show HN: SheetKeys – The Hacker's Spreadsheet https://ift.tt/hrs5wBb

Show HN: SheetKeys – The Hacker's Spreadsheet Hey folks, over the years my job role has skewed to using a code editor less and using spreadsheets more. Coming from Emacs and Vim, I wanted my Google Sheets usage to be more keyboard driven, so I made this extension. I've used it for several years and it's been a great quality of life improvement, so I'm releasing it today. Enjoy! https://ift.tt/WJCN86F February 17, 2023 at 01:36AM

Show HN: Vircon32 – A virtual, simplified 32-bit game console https://ift.tt/LGPmaNg

Show HN: Vircon32 – A virtual, simplified 32-bit game console Vircon32 is a virtual game console designed from scratch to be as simple and portable as possible. Its main focus is to actually have interesting games to play, rather than just being a programmer sandbox. Console features are in line with the 32-bit generation (PSX/Saturn): true color, transparencies, CD-quality audio, memory card... But to keep simplicity, this is a 2D machine only. http://www.vircon32.com February 16, 2023 at 05:40PM

Show HN: I made a super simple iOS app to track expenses https://ift.tt/AlJyMSe

Show HN: I made a super simple iOS app to track expenses My Expenses is a very simple app to track expenses for one-time budgets. Let's say you're going on vacations in Italy and you want to allocate $1.500 to this trip. You create a budget "Italy" in 30 seconds and you're ready to go. Each time you make an expense in Italy, you add it to the app in a few seconds and you instantly know you're remaining budget. I'm bored of super complex apps. Yes, they do a lot of things, but it often takes a while to get used to the app and understand all its features. That's why I created this app. I want people to be able to track their expenses in seconds, as quickly and simply as possible. It's available on iPhone, iPad and Mac. https://ift.tt/TV4OGJk February 16, 2023 at 02:17PM

Show HN: We built open-source alerting CLI – better alternative to Alertmanager https://ift.tt/7zhgmnU

Show HN: We built open-source alerting CLI – better alternative to Alertmanager Hi Hacker News! Shahar and Tal from Keep here. We're thrilled to announce that we're open-sourcing our alerting CLI tool, Keep ( https://ift.tt/jX6aAcN ). Designed by developers for developers, Keep streamlines and simplifies alerting, making it a first-class citizen within the development process. Think of Keep as Prometheus Alertmanager but for all observability tools, with a simple and intuitive (GitHub actions-like) syntax. We believe that alerting has historically been neglected in existing monitoring platforms, leading to subpar alerting practices. With Keep, we aim to change that. Although it's still in its early stages, we would love to get your feedback on our project. Keep provides the following key features: 1. Declarative alerting that can be easily managed and versioned in your version control and service repository. 2. Alerts from multiple data sources for added context and insight...

Show HN: Impact of using 1 or 2 sticks of DDR5 on a 6800HX with 680M IG https://ift.tt/snrObqB

Show HN: Impact of using 1 or 2 sticks of DDR5 on a 6800HX with 680M IG A few months ago, I ordered a Minisforum UM690 for work. For less than 500 bucks, this little beast is equipped with the incredibly powerful 8 cores / 16 threads Ryzen 9 6900HX (4.9GHz) and an integrated RDN2 680M graphics card (the single thread performance of this mobile CPU is just 10% lower than my home 5800X desktop PC). I do some light gaming on my lunch break, and I was pretty impressed by the gaming performance of the 680M. Because of budget constraints at the time of ordering, I could only afford a single stick of Gskill - RipJaws 16 Go DDR5 4800 MHz CL34. I made a few benchmarks on multiple games, but most games I play do not come with a proper benchmark loop, so I used Unigine Superposition Benchmark to make a proper benchmark. Single 16 GB stick, 1080p, medium settings: 3022 (18.85 min fps, 22.61 avg fps, 31.85 max fps) Those results were good for an IGPU, but I saw a few articles saying that having two...

Show HN: Explore careers that you don't know even exist https://ift.tt/VbD3aRt

Show HN: Explore careers that you don't know even exist "Excited to launch CareerGPT.ai on Hacker news today! We're on a mission to help people ..yada...yada" No, that's ChatGPT's writing, not mine :) Folks, I was a PhD student once, in a non-home country, and just wished to know what was it like to go and work in the industry, being a programmer, or started a company. Torn apart between choices, I just wished there was a totally unbiased counselor to talk to. I couldn't do that with my supervisor since he always encouraged me to finish the thesis (of course). Heck, had ChatGPT exist back then, I would have had more infos and made decision easier. So why not launching one, on the back of the collective "intelligence" and "creativity" of large language model. About building the product: Yes, I call OpenAI's API, but need to do some 'prompt engineering', updating temperature along the conversation. Just tell me what you think....

Show HN: Openapi.security, a fast security checker for REST-based API https://ift.tt/Q2MlCsP

Show HN: Openapi.security, a fast security checker for REST-based API tl;dr we released openapi.security, an online tool that performs a dozen of security tests on any given openapi/swagger-based API, with no signup or email required. You can try it here: https://ift.tt/bOgN8Ma My team at Escape (YC W23) is mainly focused on securing GraphQL APIs. For this, we developed a new approach called Feedback driven API Exploration. Basically, we infer the right security tests cases to run using the specification and a carefully crafted in house graph traversal algorithm. (It's a bit long to describe here but we published a more in depth explanation of how this algorithm works in our blog!) We recently wondered if this Feedback Driven Exploration approach could be efficiently applied to good old REST APIs as well. From our experience, well designed GraphQL and REST APIs are quite equivalent: both have an organized data structure and explicit relationships between objects. So why wouldn'...

Show HN: Lockval Engine – a distributed back end KV engine that can run scripts https://ift.tt/oxVKIBg

Show HN: Lockval Engine – a distributed back end KV engine that can run scripts I've been developing game backends for several years, using and designing a lot of code. They all about calculations, synchronization with front-end data, and database data, and try to ensure consistency, atomicity, and high response, etc. However, these codes and frameworks have always had problems such as very complicated APIs, incomplete or non-existent ACID, multiple calls to RPC, and non-real-time full or semi-full data landing. So, we created Lockval Engine. An easy-to-use, ACID, distributed, DOP, multi-language support backend engine. Here are some online demos that will give you a quicker understanding of Lockval Engine: [APIdemo] https://ift.tt/Yy8PrKA [playground] https://ift.tt/SX5tzac... https://lockval.com February 13, 2023 at 05:12PM

Show HN: My personal medical knowledge system https://ift.tt/ljszqwI

Show HN: My personal medical knowledge system Since medical school years ago, I have been trying to find way for long term knowledge management and retention. I finally ended up with Obsidian on the desktop, but it's still difficult to access my knowledge anywhere online, until I made my own online wiki. Things that helped me get to this step: 1. "How to Take Smart Notes" 2. Evergreen notes by Andy: https://ift.tt/C78mnZB . This website shows the culmination of my personal knowledge with search bar. The idea is that I should be able to find what I'm looking for within seconds, otherwise the title of my notes are not specific enough or the web of knowledge is not good enough. Most of the notes still have short title style and walls of texts, but the newer notes that I added are in evergreen note style. I'm slowly converting them to permanent notes. Good example pages of permanent notes: https://ift.tt/UnkaL7B https://ift.tt/AuzIVNQ The website is made with Astro fo...

Show HN: I made a game, Tippy Coco https://ift.tt/6Kq94xS

Show HN: I made a game, Tippy Coco Tippy Coco is a volleyball game in the browser. You can play with a friend at the same keyboard, or solo challenge the built-in opponents. As for the tech: it's all TypeScript + HTML5. I did not use a game engine; I just made a game loop with setTimeout and the artwork is all just png's drawn on the canvas. The sound is played through the HTML audio API. Input is watching keyboard events and the Gamepad API. One thing: I know this is 2023 but it's not a game for phones. It's for a laptop or desktop PC with a physical keyboard. It also works ok on an iPad with a physical keyboard. Tippy Coco is free and without ads. The code is available (MIT license) at https://ift.tt/Y0u6ynD https://tippycoco.com February 14, 2023 at 02:53AM

Show HN: Generate User Interface Components with GPT-3 https://ift.tt/sh6xDMa

Show HN: Generate User Interface Components with GPT-3 I’m building an experimental tool that can generate a UI component from a high-level text description, i.e. “Design a card for viewing goals in a goal tracking application”. Basically, stable diffusion but for user interface components instead of images. This tool is at best a proof of concept. It currently only generates a single type of component (small cards that have basic info about an object), but the goal is to be able to design entire applications (either in one fell swoop or by piecing together components that the tool generates). The components it generates can be exported as react code. You can also have it modify an existing design. The tool isn't useful yet but it's somewhat fun to play around with. Having it generate a component rather than an entire screen made the problem easier but I'm not sure if there are any users that this would appeal to. I could see it appealing to developers who lack design and C...

Show HN: Meta peddling unsecured business credits to users in India https://ift.tt/uqTJK2m

Show HN: Meta peddling unsecured business credits to users in India I have a friend who owns a business and they got a really weird email from meta. Apparently meta has teamed with "Indifi and FlexiLoans" to give unsecured business loans. 1. They are sharing details of "this user is a small business owner" with third parties and that they are directly emailing about "helping businesses in need". What the hell is wrong with these people. If I wanted a loan,i would approach my bank and not some fincorp who would fleece me with 18% interests. Banks have much less interest rates February 13, 2023 at 03:33PM

Show HN: I made a community-based writing application https://ift.tt/yEtHVR2

Show HN: I made a community-based writing application Hi HN! Writing has been a big part of my life for the last few years. It's helped me make sense of the world around me through journaling, and my blog and technical books have made wonders for my career as an engineer. Something I've always been missing is an online community where I can practice my skills and learn from other aspiring writers. I built Tavern, hoping to solve my own problem. Its main concept is that every Monday everyone in the app gets asked the same writing prompt and you have seven days to submit your answer. You can look at what others have posted, but only after you've submitted your answer. My hope is that this way I will reduce lurking and encourage more people to actually write rather than think about it. There is a concept of giving likes (ales, since the whole app is tavern-themed), but I've given it a twist by not showing the number of likes an answer has until you like it. Also, answers a...

Show HN: PyCirclize – Circular Visualization in Python https://ift.tt/VkQwHjX

Show HN: PyCirclize – Circular Visualization in Python pyCirclize is a circular visualization python package implemented based on matplotlib. This package was developed for the purpose of easily and beautifully plotting circular figure such as Circos Plot and Chord Diagram in Python. I'd love to hear your feedback. Document: https://ift.tt/jUeQhST https://ift.tt/Tj1Jm2X February 12, 2023 at 09:16AM

Show HN: G-Script – Visual Scripting for the Web https://ift.tt/rb5LV2Z

Show HN: G-Script – Visual Scripting for the Web Hi all, I'm a PM by day who taught themselves to code over COVID. One of the things I enjoyed during that process was learning how to make basic games in Unreal Engine using Blueprints. I found visual scripting was such an intuitive way to express what I call "mid-tier complexity" logic and I felt there really wasn't a great equivalent for the web - so I built one over the last few months and this is my MVP. Tools like Zapier etc are great and easy to use, but they're heavily limited when it comes to expressing any kind of complex logic or trying to follow coding principles like DRY. On the other end of the spectrum, serverless setups like Cloudflare workers or Firebase functions give you all the power of code, but there's atleast 20-30 minutes of additional overhead involved in just getting the things live. G-Script is designed to land exactly in the middle of these two options. It's "Lower level"...

Show HN: Polymath: Convert any music-library into a sample-library with ML https://ift.tt/P4OzflU

Show HN: Polymath: Convert any music-library into a sample-library with ML Polymath is a open-source tool that converts any music-library into a sample-library with machine learning. It separates songs into stems, quantizes to same BPM, detects key and much more. A game-changing workflow for music producers & DJ https://ift.tt/PhVsz0M February 12, 2023 at 03:13AM

Show HN: Log collector that runs on a $4 VPS https://ift.tt/Adg1nzu

Show HN: Log collector that runs on a $4 VPS Hey guys, I'm building erlog to try and solve problems with logging. While trying to add logs to my application, I couldn't find any lightweight log platform which was easy to set up without adding tons of dependencies to my code, or configuring 10,000 files. ErLog is just a simple go web server which batch inserts json logs into an sqlite3 server. Through tuning sqlite3 and batching inserts, I find I can get around 8k log insertions/sec which is fast enough for small projects. This is just an MVP, and I plan to add more features once I talk to users. If anyone has any problems with logging, feel free to leave a comment and I'd love to help you out. https://ift.tt/WuLgHIx February 12, 2023 at 01:44AM

Show HN: Experimenting with GPT-3: Building an Investment Analyst https://ift.tt/hoeXqJv

Show HN: Experimenting with GPT-3: Building an Investment Analyst We have been experimenting with using GPT3's reasoning capabilities to build an investment analyst that does this : (1) Summarize relevant news of the last 30 days, (2) Write a SWOT analysis, (3) Identify competitors, (4) Identify Key Risks, and (5) Write three investment theses (bull, neutral, bear) Here is an example how this can look like: https://ift.tt/IKfqStT https://ift.tt/vmjF45f https://ift.tt/QfOyEM2 https://ift.tt/osAdmJC So far, the results of getting reliable data back through well-engineered prompts through the API is quite promising. Yet, from an operational perspective, the biggest problem is that even though we are not using the free service but pay for it frequently run into rate limits. Positives: For Apple, the News Summary provided a useful result. "Apple Inc. is launching Apple Pay Later soon to revolutionize the buy now, pay later (BNPL) industry. Its stock is currently indicating a potent...

Show HN: Noya (YC W21) – A wireframing tool that generates designs and code https://ift.tt/4kyVbjO

Show HN: Noya (YC W21) – A wireframing tool that generates designs and code Hi HN! We’ve been building a new browser-based design tool that’s ready for you to play with! My cofounder David and I were previously on the Design Tools team at Airbnb, where we built lots of innovative tools to improve the design process internally. Now we’re trying to bring this caliber of tools to everyone. The first problem we’re trying to solve is the age-old problem of working in low fidelity vs. high fidelity when designing UI. Low fidelity wireframes are great for quick iteration while hashing out the main idea, while high fidelity mockups and prototypes are often better for conveying the idea to teammates or pitching the idea to customers. With Noya, you get to work in low fidelity, while still getting a high fidelity output you can share. Noya does this by converting your low fidelity blocks into high fidelity design system & React components. I think of the current version as an MVP still, sinc...

Show HN: ListLang – Learn Languages to Fluency https://ift.tt/w1xNbrY

Show HN: ListLang – Learn Languages to Fluency Depending on the language, the top 1,000 most frequently used words account for ~85% of all speech and text, and the top 5,000 account for ~95%. It’s really important to learn these words. Learning words in context helps you naturally understand their meaning and use cases, while avoiding the rote memorization of definitions. ListLang helps you achieve fluency by learning the 5,000 most frequently used words in context. Most language learning apps never move past beginner level content. This method requires some basic knowledge, but otherwise it should rapidly increase your level past the intermediate level and into the advanced level. I built this app because I studied Spanish and Russian for many years in school, but when I traveled to Argentina and Russia, I realized I didn’t know enough vocabulary to meaningfully communicate with the people there. I hope it will be helpful for you. https://ift.tt/YP4QswF February 8, 2023 at 08:04PM

Show HN: NextBase Lite – Next.js 13, TypeScript, Supabase Starter https://ift.tt/S176Icx

Show HN: NextBase Lite – Next.js 13, TypeScript, Supabase Starter Nextbase Lite is a boilerplate featuring Next.js 13 with Typescript, Supabase, Tailwind CSS and features async components, data fetching examples, React query setup, hot Toast component, unit/integration testing, Eslint, prettier, automatic sitemap generation, SEO optimization, semantic release, and easy-to-read codebase with minimal styling. https://ift.tt/MLIqyd7 February 9, 2023 at 12:44AM

Show HN: Filmbox, physically accurate film emulation, now on Linux and Windows https://ift.tt/oRDxqu1

Show HN: Filmbox, physically accurate film emulation, now on Linux and Windows We released Filmbox two years ago, and it has gotten a great response. It's been used in huge movies like "Everything Everywhere All At Once". It's been a huge rewrite to get this working on Linux and Windows from our original Mac and Metal code. We also have some interesting uses of cross-platform Swift + Electron in our plugin manager app, and cross-platform Swift generally in the plugin. Hopefully we can detail that in a blog post at some point. There's a free Filmbox Lite version to try, if you're interested. https://ift.tt/jFMJ2ta February 9, 2023 at 12:13AM

Show HN: Embra – A fast, Chat-GPT like assistant for your Mac. App integrated https://ift.tt/EfPlAdz

Show HN: Embra – A fast, Chat-GPT like assistant for your Mac. App integrated Hey HN! We're building Embra, an always-one-second away GPT assistant that integrates into your OS, apps, and workflows. Everyone is talking about the "context problem" as it relates to GPT, in that the answers you get out are only as good as the information you put in. And, well, a lot of users don't want to type in a bunch of text. With Embra, you can pick and choose which context to feed the AI within the interface itself. And that context can be anywhere on your computer -- text in a PDF document, any tabs within Chrome, etc. One of the primary use cases is improved coding, debugging, and software workflows. We especially want to gather feedback in this direction, as engineers engage in Q&A workflows and code creation 15+ times a day. Really awesome. :) Just launching our closed beta signup page today, and rolling out first invites to broader community. https://embra.app/ And the twi...

Show HN: One API Key – Third-Party API Integrations with Zero Setup https://ift.tt/juOaLTv

Show HN: One API Key – Third-Party API Integrations with Zero Setup Hey HN, we’ve been working on a way to simplify authentication with third-party APIs. This started because my co-founder andreterron ( https://ift.tt/wDlQJOz ) and I both built personal dashboards to track different health and productivity metrics, but it’s such an annoying chore to integrate with new APIs. First you read their docs to learn their authentication method, then build and deploy a custom server to receive OAuth callback requests or deal with CORS, register an app with them, then finally you can send the first request to their API. After the initial integration is done, you now have to refresh expired tokens, make sure that you’re respecting rate limits, and update the code if the underlying API changes. The solution we came up with is a proxy server, it forwards requests to the respective API with up to date auth tokens. Because of this: - Devs can use the full range of capabilities of the underlying APIs....

Show HN: Utm.zone – Bulk UTM link builder https://ift.tt/3XVl5HB

Show HN: Utm.zone – Bulk UTM link builder Hey HN! There are many UTM link builder tools out there, but all of them seem to generate one link at a time. Generating links in bulk helps you avoid mistakes. With https://utm.zone/ you can: - generate utm links in bulk - share/save your link sets with your team/client https://utm.zone/ February 7, 2023 at 01:22PM

Show HN: Elaborate AI – Generate Slides and Speaker Notes from Your Outline https://ift.tt/8SKF6vx

Show HN: Elaborate AI – Generate Slides and Speaker Notes from Your Outline We've just unveiled our brand new service, Elaborate AI, and it's a game-changer for anyone who has to create presentations. With this innovative tool, you can turn your simple outlines or even topics into professional slides and speaker notes with ease. Here are just a few examples of who could benefit from using Elaborate AI: - Team leaders: Generate slides for your weekly progress reports with ease. - Project managers or researchers: Present your insights and research on a topic in a polished and professional manner. - Educators: Create educational materials from your content quickly and efficiently. So, if you're tired of spending hours preparing presentation slides, head over to https://elaborate.ai and see if Elaborate AI can help you save time and streamline your presentation-creation process. February 7, 2023 at 08:37AM

Show HN: Flappy Bird and Wordle https://ift.tt/2ROYli0

Show HN: Flappy Bird and Wordle Hey HN! FlappyBirdle combines elements from the game Flappy Bird and the popular word game Wordle. I wanted to see if I could make a game that added urgency to Wordle, while also feeling outragous at the same time. I think I achieved it with FlappyBirdle. Every time you type a letter of the word, the bird flaps its wings and you get closer to the goal. It also has an easy mode that ignores the pipes, so even beginners can get a good score. Let me know if you have any ideas on how I can make it better! https://ift.tt/uAvGkhS February 7, 2023 at 03:01AM

Show HN: I've created a trading journal website https://ift.tt/MCIjUeW

Show HN: I've created a trading journal website Hi all, Been a while since I've posted and in the time since I have created a trading journal website where you can submit and track your trades with the USP of tracking your outgoings too. There has been a huge rise in the number of retail traders (me included) and a lot of people now have the very real possibility of quitting their day jobs and trading full time. I want to help people do that! It's still in very early stages and I'm releasing new updates daily but would be very grateful to get some other peoples feedback! Thanks in advance and hope you're all having a good day! :D https://ift.tt/0YToX1A February 7, 2023 at 02:01AM

Show HN: Userdoc – My new startup after selling my development agency https://ift.tt/geOwcMm

Show HN: Userdoc – My new startup after selling my development agency Hey HN, my wife and I ran a software development agency for 8 years, and sold it recently to work on some products related to our experience, and Userdoc is our first product :) Userdoc is a requirements management tool with AI assistance, allowing you to easily create user stories, personas, and user journeys with AI assistance. We found managing requirements (especially on large systems) was quite tricky, so Userdoc acts as the source of truth for your software requirements, and integrates with your project management tools to sync your stories, but keep them centrally in Userdoc as living documentation. Would love any feedback, there's a quick video on the website! https://userdoc.fyi February 6, 2023 at 08:28AM

Show HN: Surplus – a minimal, easy-to-use and customizable expense tracker app https://ift.tt/eI9xkQ7

Show HN: Surplus – a minimal, easy-to-use and customizable expense tracker app I had trouble finding an expense tracker app that resonated with my spending habits. Apps I tried either enforced specific budgeting methods or were too complicated to customize. So I set out to build Surplus, a simple expense tracker app that can be tailored to your unique spending habits. The app is available on the AppStore for iOS, iPad and M1/M2 macs: https://ift.tt/PF8Bm37 Why you will enjoy using Surplus: - It is super customizable. Enjoy eating out? Prefer to prioritize savings? No matter what your lifestyle - preferences are, Surplus makes it easy to organize your expenses into buckets themed around your spending habits. - It supports recurring transactions such as monthly subscriptions and installments. The dashboard calculates all current and upcoming spend, giving you a complete picture of your monthly expenditure. - Surplus supports both manual and automatic workflows. Quickly add and categorize...

Show HN: No code landing page I made for my startup idea with yep.so https://ift.tt/NOTrxcP

Show HN: No code landing page I made for my startup idea with yep.so I wanted to share a project I've been working on : Styrate, a social rating and review platform for products. I built a landing page for it using a no-code platform, which allowed me to create a professional and functional website without writing any code. As someone who is not very tech-savvy, I was able to easily build a landing page that looks and functions like it was built by a professional. This really showcases the power of no-code platforms, as they allow people with limited technical knowledge(me) to create websites, apps, and other digital products without having to learn how to code. If you guys know any other no-code websites or resources, feel free to chime in. https://ift.tt/v1jDWKi February 5, 2023 at 11:17PM

Show HN: Fast VHDL language server written in Rust https://ift.tt/lCmShqL

Show HN: Fast VHDL language server written in Rust I want to share a VHDL language server I have written in Rust. It is now in a really good state and is ready to be the daily driver for someone working on VHDL. It is completely free and open source, enjoy! The performance is great, it can load 200k lines in 200ms using all 8-cores on my desktop. When loaded it only consumes 220 MB of RAM. It supports goto/find-references as well as type checking for close to all of VHDL-2008. https://ift.tt/Ld8Nkzm February 5, 2023 at 02:40AM

Show HN: GPTBanker – map/reduce over documents of any length with OpenAI https://ift.tt/1qQGS5r

Show HN: GPTBanker – map/reduce over documents of any length with OpenAI Hi all! I created a app that can map/reduce over documents of an arbitrary length with OpenAI completions. You can enter in your OpenAI key and try it out. The backend is built with LangChain, which made it easy to manage the models, workflows (chains), and troubleshoot pipelines with buffer issues. Learnings: - Tokens was the most helpful key for calls rather than characters or words. LangChain also just implemented a token splitter, which made it easier for me to adapt to documents of any type. - Davinci performed much better than Curie for summarizing long documents over multiple chunks - Oftentimes a map step was the only thing needed and the reduce/combine introduced more errors instead of improving context. https://ift.tt/BLG91js February 5, 2023 at 10:07AM

Show HN: Mass Dissent – Easily send a letter to U.S. Congress representatives https://ift.tt/XhOQcLq

Show HN: Mass Dissent – Easily send a letter to U.S. Congress representatives Hi HN! I just launched the MVP of Mass Dissent, a website that provides an easy way to send a short message as physical mail to your representatives in the U.S. Congress. The site reduces the effort required to send a letter to an elected official, hopefully resulting in more people writing to their representatives regarding the issues they care about. Originally, the idea was to allow users to select Tweets to print onto a postcard that would be sent to their representatives. However, last fall the Twitter OAuth API stopped working (for me at least), so I decided to pivot slightly to allowing users to compose a message directly on Mass Dissent. This has a side benefit of allowing users to write longer messages than what would be available using Tweets. Some notes on the technologies used: - The code is written in TypeScript[1], uses Next.js[2] and the MUI[3] React component library for the UI, and the backen...

Show HN: Product Requirement Docs Using AI https://ift.tt/8EYSaOk

Show HN: Product Requirement Docs Using AI As a product manager, I have always wished to automate some of the repetitive tasks. With GPT-3 & ChatGPT being so accessible, I created this app which creates a Product requirement doc. It generates PRD following Lenny's Rachitsky template - https://ift.tt/3Y6F8bA... Do try it out and let me know your feedback :) https://ift.tt/Z6nj2z3 February 4, 2023 at 01:33AM

Show HN: Amazon Product Recommendations Using ChatGPT https://ift.tt/uDq31o4

Show HN: Amazon Product Recommendations Using ChatGPT Hi HN! I built recommendation system using GPT-3 to figure out what product to buy on Amazon. The LLM asks questions to sus out what requirements I have and then also generates 3 recommended products based on the chat. It then searches a third-party Amazon API currently. Let me know what you think! https://ift.tt/MtqABSC February 4, 2023 at 12:29AM

Show HN: Emoji generator using Chat-GPT https://ift.tt/JqyCSjt

Show HN: Emoji generator using Chat-GPT Hi All. Background: You might have had the thought that traditional emoji searches found on Twitter and in iOS really suck. Features: To solve this we came up with Emoji AI using OpenAI API. 1. It handles multiple languages! Type 'frohlich hund' or 'kék elektromos autó' it gets it! 2. Long sequences of different emojis in one search! Yep, got that! 3. Misspellings, yep no problem getting from threee beaars 4. Extract key points from a long sentence, got it! "We went on a journey through winding roads and through mountains to a large goat farm." Feedback: Once you have you desired emoji result copy and paste it immediately in your favorite app. Give it a try and let us know feedback. For example making an extensible API, browser extension or discord bot. https://www.emojai.app/ February 3, 2023 at 11:45PM

Show HN: I turned my microeconomics textbook into a chatbot with GPT-3 https://ift.tt/s6AvrgM

Show HN: I turned my microeconomics textbook into a chatbot with GPT-3 I never really read my micro-econ textbook. Looking up concepts from the book with Google yields SEO-y results. So I used GPT-3 to make a custom chatbot I can query at any time. https://www.konjer.xyz/microeconomics February 3, 2023 at 05:19AM

Show HN: Validate, Launch and Grow 3-5x Faster with No BS Startup Guide https://ift.tt/gnMhjIp

Show HN: Validate, Launch and Grow 3-5x Faster with No BS Startup Guide Launch and grow your startup 3-5x faster with the No BS Startup Guide. Get +400 specific tactical activities that you can start doing today, to save 2,000 hours of research, and know exactly what to do every step of the way. I started the guide initially for myself. I posted on reddit over a year ago ( https://ift.tt/EOaHZ49... ) and it became super popular. I kept using it and adding to it as I've coached and mentored over 200 founders. After thousands of hours of research and field testing, I am ready to release it. Still in early access and lots of things are work in progress. https://ift.tt/t7Rv0HO February 2, 2023 at 02:21AM

Show HN: Go Feature Flag OSS self-hosted feature flag solution launch v1.0.0 https://ift.tt/TN8lwt5

Show HN: Go Feature Flag OSS self-hosted feature flag solution launch v1.0.0 Hey Hackernews! I am the creator and maintainer of GO Feature Flag, a self-hosted OpenSource solution for feature flags (or feature toggles) that requires almost no infrastructure. We store all our flag in a flat file somewhere (S3, github, ...) and we use it directly. Today we have finally released the version v1.0.0 that brings a new flag format that enable you to do even more with your feature flags. The solution offer some capabilities such as: - Targeting specific users - Fancy rollout capabilities (progressive rollout, A/B testing, scheduled rollout). - Exporting your usage in several location. - Compatibility with the new standard Open Feature. All feedback are welcome . Github: https://ift.tt/Z65BzXm v1.0.0 blog post: https://ift.tt/WMiqbok https://ift.tt/WMiqbok February 2, 2023 at 01:52AM

Show HN: BSManager | Manage multiple BeatSaber versions, install Maps, Mods ... https://ift.tt/GCFetdp

Show HN: BSManager | Manage multiple BeatSaber versions, install Maps, Mods ... Introduction BSManager is a fancy all-in-one tool that unifies the two main existing tools for BeatSaber, ModAssistant and BSLegacyLauncher. BSManager allows you to manage multiple versions of BeatSaber, install Mods, download Maps, Playlists, etc. All this quickly, easily and in one place! How to use Obviously this application is intended for BeatSaber players, to use it, you just need to own BeatSaber on Steam or Oculus (PC) and be on Windows. BSManager can be downloaded via the links below. Additional information - GitHub : https://ift.tt/VH29zgI - Twitter : https://twitter.com/BSManager_ - Nexusmod : https://ift.tt/fzBFgHV (All sharing is obviously welcome) https://ift.tt/VH29zgI February 2, 2023 at 04:23AM

Show HN: Using Google Sheets to manage localization strings across platforms https://ift.tt/ewp64t7

Show HN: Using Google Sheets to manage localization strings across platforms As an app developer, I noticed that smaller teams frequently run into the hassles of managing translation strings across iOS, Android and web, and keeping them in sync and up to date. To make this a little easier I've been working on a small utility that allows you to use Google Sheets to manage these translations. Perfect for small teams that do not need any of the advanced features that paid platforms offer, but still want to have an easy to use centralised place to edit these strings. Without creating any account or whatsoever, you can use the Localeasy endpoint to convert your sheet into translations files for multiple platforms: iOS/macOS, Android, Rails, JSON, or YAML. I would love to hear your feedback! https://ift.tt/iqGPF6R February 1, 2023 at 05:41PM

Show HN: 1Daily – Do email 90% faster https://ift.tt/3MBZCyd

Show HN: 1Daily – Do email 90% faster 1Daily is a custom daily digest covering the latest news in your industry. You choose your favorite publications, newsletters, and social media posts, and we’ll summarize it in one simple email. Staying up-to-date with what’s going on in your industry isn’t easy when you’re juggling the day-to-day tasks of building a company. Many of us subscribe to dozens of newsletters and news publications and follow hundreds of social media accounts but don’t actually have the time to consume all of that content. 1Daily gives you the need-to-know information in a simple, digestible format, so you can spend your time serving your customers. Unlike other newsletters, 1Daily is customized to your specific industry and product. You can either add the publications and social accounts that you’d like to be included in your digest or we’ll select a few for you. You can set up your own 1Daily at https://1daily.email We’d love to hear what you care about most in a custo...