Tuesday, February 28, 2023
Show HN: Dak – a Lisp-like language that transpiles to JavaScript https://ift.tt/BPXg1Co
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/pWy6Q7A February 27, 2023 at 06:38PM
Show HN: Collect and search robotics data with SensorSurf https://ift.tt/LQlAscM
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/jWT1R9e . 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 trigger (rolling buffer). 3. Offload over a poor connection (set max upload rate). 4. Search imagery with natural language. ================= Open source announcement: https://ift.tt/LlnyV1q https://ift.tt/uoTRld6 March 1, 2023 at 12:32AM
Show HN: Crul – Query Any Webpage or API https://ift.tt/FBKfDPn
Show HN: Crul – Query Any Webpage or API Hi HN, we’re Carl and Nic, the creators of crul ( https://www.crul.com ), and we’ve been hard at work for the last year and a half building our dream of turning the web into a dataset. In a nutshell crul is a tool for querying and building web and api data feeds from anywhere to anywhere. With crul you can crawl and transform web pages into csv tables, explore and dynamically query APIs, filter and organize data, and push data sets to third party data lakes and analytics tools. Here’s a demo video, we’ve been told Nic sounds like John Mayer (lol) ( https://ift.tt/upV8KFb ) We’ve personally struggled wrangling data from the web using puppeteer/playwright/selenium, jq or cobbling together python scripts, client libraries, and schedulers to consume APIs. The reality is that shit is hard, doesn’t scale (classic blocking for-loop or async saturation), and comes with thorny maintenance/security issues. The tools we love to hate. Crul’s value prop is simple: Query any Webpage or API for free. At its core, crul is based on the foundational linked nature of Web/API content. It consists of a purpose built map/expand/reduce engine for hierarchical Web/API content (kind of like postman but with a membership to Gold's Gym) with a familiar parser expression grammar that naturally gets the job done (and layered caching to make it quick to fix when it doesn’t on the first try). There’s a boatload of other features like domain policies, scheduler, checkpoints, templates, REST API, Web UI, vault, OAuth for third parties and 20+ stores to send your data to. Our goal is to open source crul as time and resources permit. At the end of the day it’s just the two of us trying to figure things out as we go! We’re just getting started. Crul is one bad mother#^@%*& and the web is finally yours! Download crul for free as a Mac OS desktop application or as a Docker image ( https://www.crul.com ) and let us know if you love it or hate it. ( https://ift.tt/YrB2ypc ) And come say hello to us on our slack channel - we’re a friendly bunch! ( https://ift.tt/nwiOH0D ) Nic and Carl ( https://ift.tt/hAerxg4 ) https://www.crul.com/ February 28, 2023 at 09:42PM
Show HN: Drai – AI Art Engine https://ift.tt/D1gRZCf
Show HN: Drai – AI Art Engine https://ift.tt/BQs4HoA February 28, 2023 at 06:28PM
Monday, February 27, 2023
Show HN: An automated code review tool using GPT3 https://ift.tt/sEcjAVu
Show HN: An automated code review tool using GPT3 https://ift.tt/7zPjhWH February 28, 2023 at 08:44AM
Show HN: Collection of 2k+ Startup Incubators and Accelerators (global) https://ift.tt/8RyhQuk
Show HN: Collection of 2k+ Startup Incubators and Accelerators (global) https://ift.tt/Bcl0w87 February 27, 2023 at 09:43PM
Show HN: AI Email Summaries https://ift.tt/dqmp8DB
Show HN: AI Email Summaries Harness the magic of AI built directly into your inbox with Smart Summaries. Summaries save you precious time by using AI to intelligently capture the main points of an email in just a few sentences. https://ift.tt/DWEUkHC February 27, 2023 at 10:46PM
Show HN: Codesearch, a command-line tool for searching your codebase https://ift.tt/QTSdF6G
Show HN: Codesearch, a command-line tool for searching your codebase https://ift.tt/LdbNoVe February 27, 2023 at 10:01PM
Show HN: DbDeclare – A Python declarative layer for your database https://ift.tt/gx94YQb
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 sure there are plenty of mistakes. Please feel free to provide feedback, I'd love to make it better. For what it's worth, I'm aware that you can do some of this at the infrastructure-as-code layer using a tool like Terraform/Pulumi. My personal preference is to have all this sit closer to my tables rather than my infrastructure, so here we are. Anyway, let me know what y'all think. Thanks! https://ift.tt/7ZMTjS8 February 27, 2023 at 09:34PM
Show HN: Sup – one liners to distribute binaries https://ift.tt/EbjiAYo
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/tZonjXv February 27, 2023 at 01:16PM
Show HN: General information from data easy to use https://ift.tt/nQy7EvH
Show HN: General information from data easy to use https://ift.tt/59hYFHM February 27, 2023 at 11:33AM
Sunday, February 26, 2023
Show HN: Visualization of Catmull-ROM Spline Generation https://ift.tt/T7WByIs
Show HN: Visualization of Catmull-ROM Spline Generation https://ift.tt/wEz0jDy February 27, 2023 at 02:56AM
Show HN: Step through Stack Overflow's system architecture circa 2016 https://ift.tt/NGK42Iu
Show HN: Step through Stack Overflow's system architecture circa 2016 https://ift.tt/3z2eJCL February 26, 2023 at 05:29PM
Saturday, February 25, 2023
Show HN: Rent Engineers – Freelance professional engineers directory https://ift.tt/mbZQ1rF
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/zny0NRD February 26, 2023 at 06:12AM
Show HN: AI Files – manage and organize your files with AI https://ift.tt/1er8lDt
Show HN: AI Files – manage and organize your files with AI https://ift.tt/t6jq7wW February 26, 2023 at 07:19AM
Show HN: Interviewing Ronald Reagan in 2023 Using AI (ChatGPT and ElevenLabs) https://ift.tt/feOb3YA
Show HN: Interviewing Ronald Reagan in 2023 Using AI (ChatGPT and ElevenLabs) https://twitter.com/ammaar/status/1627729711081345024 February 26, 2023 at 06:32AM
Show HN: Bearclaw – tiny static site generator with RSS https://ift.tt/N4HRvFx
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/B0cFvyU https://ift.tt/76t9xUJ February 25, 2023 at 08:40PM
Show HN: 138 Generative AI tools for images, text, videos, code, audio, and 3D https://ift.tt/DLFU04I
Show HN: 138 Generative AI tools for images, text, videos, code, audio, and 3D https://aigen.tools/ February 26, 2023 at 12:14AM
Show HN: LeanCreator – a stripped-down QtCreator for C/C++, LeanQt and BUSY https://ift.tt/jVGT52M
Show HN: LeanCreator – a stripped-down QtCreator for C/C++, LeanQt and BUSY https://ift.tt/G4X1kCU February 25, 2023 at 07:19PM
Show HN: Cross-Prompt Scripting https://ift.tt/bpOdhI0
Show HN: Cross-Prompt Scripting https://ift.tt/86ygNKw February 25, 2023 at 03:22PM
Show HN: Lotus Reader: A Hacker News Client https://ift.tt/1odlVxg
Show HN: Lotus Reader: A Hacker News Client https://ift.tt/lkMY06a February 25, 2023 at 11:40AM
Show HN: I built a map of countries where Google Analytics is declared illegal https://ift.tt/DWU8l1M
Show HN: I built a map of countries where Google Analytics is declared illegal https://ift.tt/PlmRpgz February 25, 2023 at 03:29PM
Friday, February 24, 2023
Show HN: Atlantis workflow without a backend https://ift.tt/bdE8vID
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 directly from the action - it can even be the same DB that is used by Terraform for state locks! So we’ve built a proof-of-concept that does just that: it stores higher-level locks in DynamoDB, so there’s no need for any backend. It works like this : - create a PR - this will create a lock - comment digger plan - terraform plan output will be added as comment - create another PR - plan or apply won’t work in this PR until the first lock is released - you will get Locked by PR #1 comment This proof-of-concept is very much a WIP - for example, there’s no support for apply and then there are things like one PR applied making plans from other PRs thinking new resources need to be deleted; so you need to merge main before re-running plan - and other things like that. Would love to hear what the HN community thinks! https://ift.tt/lIqE8zM February 25, 2023 at 02:32AM
Show HN: CloudNative Linux – A shell experience for the cloud https://ift.tt/YwVIAnM
Show HN: CloudNative Linux – A shell experience for the cloud https://ift.tt/sdH3ukj February 25, 2023 at 12:45AM
Thursday, February 23, 2023
Show HN: Days Since Last Elon https://ift.tt/uYM1nSr
Show HN: Days Since Last Elon A toy project I created to track the appearance of the text "Elon" on the front pages of various news sites. Stack: Elixir, Phoenix, Postgres, Prerender, Fly.io https://ift.tt/iZPuEgV February 24, 2023 at 02:04AM
Show HN: SMS to Slack streamlines receiving 2FA codes for teams who share logins https://ift.tt/wFKCBsR
Show HN: SMS to Slack streamlines receiving 2FA codes for teams who share logins https://smstoslack.app February 23, 2023 at 11:50PM
Show HN: Parallax wallpaper engine for Linux and Windows https://ift.tt/A1MYxX6
Show HN: Parallax wallpaper engine for Linux and Windows https://ift.tt/adHVnjb February 23, 2023 at 10:52PM
Show HN: Infinite Logo Maker https://ift.tt/lm9yknI
Show HN: Infinite Logo Maker https://ift.tt/FXjeSiz February 23, 2023 at 04:20PM
Show HN: IngestAI – NoCode ChatGPT-bot creator from your knowledge base in Slack https://ift.tt/y8d7WUo
Show HN: IngestAI – NoCode ChatGPT-bot creator from your knowledge base in Slack https://ingestai.io February 23, 2023 at 06:30PM
Show HN: Mox - Modern full-featured low-maintenance self-hosted mail server https://ift.tt/bNB9zwV
Show HN: Mox - Modern full-featured low-maintenance self-hosted mail server https://ift.tt/CLPapHo February 23, 2023 at 02:50PM
Wednesday, February 22, 2023
Show HN: IaSQL beta – cloud infra as data in PostgreSQL https://ift.tt/HXIGL7d
Show HN: IaSQL beta – cloud infra as data in PostgreSQL https://ift.tt/Lhlac6D February 22, 2023 at 11:33PM
Show HN: Write – a distraction-free text editor to improve your writing skills https://ift.tt/4EVP5Ty
Show HN: Write – a distraction-free text editor to improve your writing skills https://ift.tt/WwDNiRg February 22, 2023 at 11:11PM
Show HN: Vector icons, but for viral memes https://ift.tt/sifOWd9
Show HN: Vector icons, but for viral memes https://ift.tt/l2qAEBD February 22, 2023 at 02:24PM
Show HN: Starter.place – Gumroad for Starter Repos https://ift.tt/vXhndx2
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 do to change that. Oh and as for the app's own stack, it uses Remix, EdgeDB, and Tailwind deployed on Vercel and AWS Fargate. https://ift.tt/7KbuVrk February 22, 2023 at 01:40PM
Show HN: Lost Pixel Platform – visual regression testing for your front end https://ift.tt/iXn54HA
Show HN: Lost Pixel Platform – visual regression testing for your front end https://lost-pixel.com February 22, 2023 at 05:02PM
Show HN: Experiences with Stripe in Small Hotels https://ift.tt/jJSrkNw
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:45PM
Tuesday, February 21, 2023
Show HN: Strada – Embed accounting automation with one API https://ift.tt/m4bqsSo
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/9qylASW February 22, 2023 at 03:58AM
Show HN: Phind.com – Generative AI search engine for developers https://ift.tt/1qQ5i64
Show HN: Phind.com – Generative AI search engine for developers Hi HN, Today we're launching phind.com, a developer-focused search engine that uses generative AI to browse the web and answer technical questions, complete with code examples and detailed explanations. It's version 1.0 of what was previously known as Hello (beta.sayhello.so) and has been completely reworked to be more accurate and reliable. Because it's connected to the internet, Phind is always up-to-date and has access to docs, issues, and bugs that ChatGPT hasn't seen. Like ChatGPT, you can ask followup questions. Phind is smart enough to perform a new search and join it with the existing conversation context. We're merging the best of ChatGPT with the best of Google. You're probably wondering how it's different from the new Bing. For one, we don't dumb down a user's query the way that the new Bing does. We feed your question into the model exactly as it was asked, and are laser-focused on providing developers the most detailed and comprehensive explanations to code-related questions. Secondly, we've focused the model on providing answers instead of chatbot small talk. This is one of the major improvements we've made since exiting beta. Phind has the creative abilities to generate code, write essays, and even compose some poems/raps but isn't interested in having a conversation for conversation's sake. It should refuse to state its own opinion and rather provide a comprehensive summary of what it found online. When it isn't sure, it's designed to say so. It's not perfect yet, and misinterprets answers ~5% of the time. An example of Phind's adversarial question answering ability is https://ift.tt/QAzbTXv... . ChatGPT became useful by learning to generate answers it thinks humans will find helpful, via a technique called Reinforcement Learning from Human Feedback (RLHF). In RLHF, a model generates multiple candidate answers for a given question and a human rates which one is better. The comparison data is then fed back into the model through an algorithm such as PPO. To improve answer quality, we're deploying RLAIF — an improvement over RLHF where the AI itself generates comparison data instead of humans. Generative LLMs have already reached the point where they can review the quality of their own answers as good or better than an average human rater tasked with annotating data for RLHF. We still have a long way to go, but Phind is state-of-the-art at answering complex technical questions and writing intricate guides all while citing its sources. We'd love to hear your feedback. Examples: https://ift.tt/zTvhSJi... https://ift.tt/WXE2z5G... https://ift.tt/6qucmnC https://ift.tt/K4JzTU7... https://ift.tt/Tn6vuYJ... Discord: https://ift.tt/GutincR https://phind.com February 21, 2023 at 11:26PM
Planlike.pro – New Estimating Tool https://ift.tt/opCKshf
Planlike.pro – New Estimating Tool https://planlike.pro/ February 21, 2023 at 05:24PM
Monday, February 20, 2023
Show HN: Small TypeScript library to work with quadkeys in a fast way https://ift.tt/X5qcaAP
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/ft19G2M ). 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/0MecJ7W February 21, 2023 at 06:51AM
Show HN: My50sTV – Nostalgic TV Simulator https://ift.tt/lezIZBf
Show HN: My50sTV – Nostalgic TV Simulator https://www.my50stv.com February 21, 2023 at 09:10AM
Show HN: I'm building ProductHunt for Actual Products: Would love feedback https://ift.tt/VN1niUF
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 decisions. The MVP is a little rough around the edges and is missing a few pages(top influencers, Product Categories,etc) and the ability to search by product. Any feedback about the idea or website is highly appreciated. styrate.vercel.app is the correct page, can't edit the url. https://ift.tt/P1EnAJG February 21, 2023 at 09:12AM
Show HN: Forte, an open-source self-hosted music platform with lots of features https://ift.tt/xoKmy4h
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/BFcTx7W Web Player: https://forte.buzl.uk/ https://ift.tt/BFcTx7W February 21, 2023 at 01:21AM
Show HN: The SaaS 2.0 Manifesto https://ift.tt/nqpgPZ5
Show HN: The SaaS 2.0 Manifesto https://ift.tt/HpQV5D1 February 20, 2023 at 11:16PM
Show HN: Whisper.cpp and YAKE to Analyse Voice Reflections [iOS] https://ift.tt/VyFTXiL
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, lead to many others, as I now felt too little of the app's code was mine. e.g.: - Added automatic mood analysis. First using sentiment analysis, then changed to a statistical approach - Show trends: First implemented TextRank to provide a summary for an individual day, then changed it to extract keywords to spot trends over weeks and months. Replaced TextRank with KeyBERT for speed and n-grams, then BERT-SQuAD, and ended on a modified YAKE [1] for subjectively better results. (Do you know of a better approach?) As a result, this tiny app took me over a month, but it still has its flaws: - Transcription is not live but performed on recordings, so if you immediately want the transcript of your most recent answer, you have to wait. - Mood and keyphrase extraction are optimized for my languages and way of speaking, so they might not generalize well. - Music in the background can result in nearly empty transcripts. Nevertheless, after using the app regularly and enjoying it, I feel ready to release. Hope you will find the app useful too. [0] Show HN: Whisper.cpp https://ift.tt/7tWuS6d [1] YAKE: https://ift.tt/ij40lsB https://ift.tt/xq5O6Cs February 20, 2023 at 08:38PM
Show HN: Replbuilder, quickly build a Python REPL CLI prompt https://ift.tt/KSAPGUd
Show HN: Replbuilder, quickly build a Python REPL CLI prompt `pip install replbuilder` Making a small tool for easier repl building, no more manual argument parsing. Perfect for creating ops tools and other context heavy cli operations. https://ift.tt/DbSaTPu February 20, 2023 at 11:34AM
Show HN: Visualize Wikipedia on an Interactive Map https://ift.tt/2JnPVhO
Show HN: Visualize Wikipedia on an Interactive Map https://ift.tt/jm7fsdF February 20, 2023 at 12:48PM
Sunday, February 19, 2023
Show HN: AllyDB – An in-memory database similar to Redis, built using Elixir https://ift.tt/4t2UrnL
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 client for the project, so yeah, that kind of sums it up. Feel free to check the project and the roadmap out, and let me know what I could improve or give feature or optimization ideas! Thanks, and have a nice one! https://ift.tt/S246vfc February 20, 2023 at 05:34AM
Saturday, February 18, 2023
Show HN: I made a Reddit-like way to browse Twitter's top content https://ift.tt/N6JFZSQ
Show HN: I made a Reddit-like way to browse Twitter's top content https://esplora.io/ February 19, 2023 at 06:26AM
Show HN: A tool that turns unstructured transcripts into queryable SQL and JSON https://ift.tt/gF8nRWz
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/5lpR1e3 February 19, 2023 at 12:24AM
Show HN: I built an app to search the APOD database by color https://ift.tt/yF84LhN
Show HN: I built an app to search the APOD database by color https://ift.tt/yNQq1oc February 19, 2023 at 04:35AM
Show HN: Sora, Personal Publishing Platform https://ift.tt/UrQj3PF
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/JiGjgvu ), 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 04:11AM
Show HN: I made an interview platform for hardware engineers in Verilog https://ift.tt/PyXChA6
Show HN: I made an interview platform for hardware engineers in Verilog https://ift.tt/rXwGPYI February 18, 2023 at 08:55AM
Show HN: 4 yrs ago, I secretly wrote an AI novel, now I published & made it free https://ift.tt/Lrk5ivs
Show HN: 4 yrs ago, I secretly wrote an AI novel, now I published & made it free https://ift.tt/xTw3sIf February 18, 2023 at 02:06PM
Friday, February 17, 2023
Show HN: TCP-based dynamic reverse proxy https://ift.tt/UQhfI5r
Show HN: TCP-based dynamic reverse proxy https://ift.tt/2Y5SoGs February 18, 2023 at 09:17AM
Show HN: BrokeAF allows you to review costs before making OpenAI calls https://ift.tt/KMsbvgP
Show HN: BrokeAF allows you to review costs before making OpenAI calls https://ift.tt/fZjatxy February 18, 2023 at 06:46AM
Show HN: An open-source API built on top of OpenAI Embeddings and Pinecone https://ift.tt/9JCSdbo
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:59PM
Show HN: Bella Coven, A GPT-3 powered tarot reader Discord bot https://ift.tt/J3XAp5o
Show HN: Bella Coven, A GPT-3 powered tarot reader Discord bot Presenting Bella Coven, a GPT-3 powered tarot reader Discord bot. Pulls cards from an AI-generated tarot deck, and answers your question based on the pulled cards' energy. Code: https://ift.tt/Xt6fUFZ https://ift.tt/OQuGAeW February 18, 2023 at 02:26AM
Show HN: Runlength Encoding For Kids (card puzzle game) https://ift.tt/dWubRLH
Show HN: Runlength Encoding For Kids (card puzzle game) https://ift.tt/JF2v5UO February 17, 2023 at 01:33PM
Show HN: FreeRSS – RSS Viewer Portal https://ift.tt/53leJaB
Show HN: FreeRSS – RSS Viewer Portal FreeRSS was inspired by the former Google Personalized Homepage (iGoogle). Auto-detect RSS feeds from a url, drag to arrange widgets, add a new account (free) to remember your settings. https://freerss.robdelacruz.xyz/ February 17, 2023 at 02:10PM
Thursday, February 16, 2023
Show HN: Convert Jupyter Notebook to Web Apps with Mercury and Python https://ift.tt/yhBvYdq
Show HN: Convert Jupyter Notebook to Web Apps with Mercury and Python https://runmercury.com February 17, 2023 at 12:31PM
Show HN: I made an early 2000s-inspired internet forum https://ift.tt/eIlua0w
Show HN: I made an early 2000s-inspired internet forum https://ift.tt/LXovAmw February 17, 2023 at 02:32AM
Show HN: SheetKeys – The Hacker's Spreadsheet https://ift.tt/uyhaXTc
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/kjhEybF February 17, 2023 at 02:06AM
Show HN: Favird – A listing with listings of interesting things https://ift.tt/NaOUto0
Show HN: Favird – A listing with listings of interesting things https://favird.com February 17, 2023 at 01:26AM
Wednesday, February 15, 2023
Show HN: Camome UI – A lightweight React and CSS framework https://ift.tt/GyeZ6zC
Show HN: Camome UI – A lightweight React and CSS framework https://camome.net February 16, 2023 at 10:13AM
Show HN: Helium – a headless, open-source LMS https://ift.tt/qc9Rleo
Show HN: Helium – a headless, open-source LMS https://ift.tt/HS75lba February 16, 2023 at 08:51AM
Show HN: Stream Arrow into Postgres https://ift.tt/Y7C9ORK
Show HN: Stream Arrow into Postgres Small, simple, sans IO and fast. No more dumping to CSVs! https://ift.tt/bZjwygs February 16, 2023 at 06:31AM
Show HN: Ractor – a Rust-based actor framework with clusters and supervisors https://ift.tt/vxrWpfw
Show HN: Ractor – a Rust-based actor framework with clusters and supervisors SOME HIGHLIGHTS. * We have a full supervision tree so actors can monitor other actors for exits and unhandled panic!s (at least the ones that can be caught) * The actor lifecycle is handled for you in a simple single-threaded, message handler primitive * You have a mutable state with each message handling call, so you have an easy way to create stateful actors and update that state as messages are processed * Actors talk to other actors by message passing, but there are remote-procedure-calls (RPCs) so actors can "ask a question" to another actor and wait on the reply. * A lot of the concurrency primitives are handled by the framework, such as cancellation/termination of actors (both graceful and forceful) * A Factory primitive in order to formulate distributed processing pools with multiple job routing options * Early but stable support for a distributed epmd-like cluster environment, where you can talk to actors over a network link. It's an additional crate (ractor_cluster) that builds on ractor to facilitate the inter-connection between nodes and support remote casts and calls to actors on a remote node. We're openly seeking feedback, so please feel free to utilize the library and let us know if there's anything you find missing or doesn't work as expected! https://ift.tt/L2yK1Ts February 16, 2023 at 06:32AM
Show HN: We built open-source alerting CLI – better alternative to Alertmanager https://ift.tt/CWYqAUD
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/oEjFcra ). 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 insights. 3. Freedom from vendor lock-in, making it easier to switch to a different observability tool if needed. Some of the features we plan to add in the future include: - Integration with CI/CD processes to simplify alerts maintenance and testing. - Scoring system to assess the alert's urgency and provide relevant information. - Slack integration to keep track of alerts over time. - More providers, conditions, and other enhancements. We invite you to give Keep a try ( https://ift.tt/oEjFcra ) and share your thoughts with us. Your feedback will help us make Keep the best it can be. https://ift.tt/oEjFcra February 15, 2023 at 10:13PM
Show HN: A/B test your GPT3 prompts https://ift.tt/8n2UcAQ
Show HN: A/B test your GPT3 prompts https://ift.tt/w0narXm February 15, 2023 at 11:48PM
Show HN: Explore careers that you don't know even exist https://ift.tt/EUx03D6
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. Thanks. https://careergpt.ai February 15, 2023 at 03:09PM
Tuesday, February 14, 2023
Show HN: Openapi.security, a fast security checker for REST-based API https://ift.tt/qMvRYl0
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/A1E28lX 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't it work? We often organise internal hackathons. So this time, we focused on this experiment, adapting our algorithm to REST and ending up creating our last side project: OpenAPI.security. It is a very simple tool: anybody can enter an OpenAPI / Swagger spec, and openapi.security will run a bunch of security tests on it and give back a report. It's designed to be fast and smart in the way it analyzes input specs. https://ift.tt/A1E28lX February 15, 2023 at 12:28AM
Show HN: I built a little online drum machine using 808 style samples https://ift.tt/7dHi8x6
Show HN: I built a little online drum machine using 808 style samples https://peel.fm February 15, 2023 at 01:34AM
Show HN: I made an extension for browser bookmarks https://ift.tt/vcJVe6t
Show HN: I made an extension for browser bookmarks Hello HN! I have just released my browser extension. FavBox - is a bookmark management tool with a clean and modern UI. Absolutely compatible with default browser bookmarks has no third-party services, and still syncs with the browser profile. Free and open source. Chrome Web Store https://ift.tt/Ky2FM9O... https://ift.tt/cSg1uH6 February 14, 2023 at 05:01PM
Show HN: JSON Parser in C https://ift.tt/FGVtSIW
Show HN: JSON Parser in C A JSON parser in c with some SIMD optimisation for skipping whitespace. The numerical and string parsing functions split out so they are independantly runnable. They were for me the 2 most difficult to understand how they work and to show how the parser was composed of lots of smaller parsers. https://ift.tt/k4KNqda February 14, 2023 at 11:53PM
Show HN: First Steps: Making your own voice activated virtual assistant https://ift.tt/Lb2rdCz
Show HN: First Steps: Making your own voice activated virtual assistant This is some hacked together python for the beginnings of a voice -> text -> ML -> voice cycle I put together in the last couple of days as a base for building completely local virtual assistants. https://ift.tt/P8ocQVs February 14, 2023 at 12:03PM
Monday, February 13, 2023
Show HN: I made Hacker News but for research papers https://ift.tt/oi7gMfm
Show HN: I made Hacker News but for research papers https://paperlist.io/ February 14, 2023 at 02:41AM
Show HN: Sign-up flows from 100s of websites made publicly available https://ift.tt/2lLk5Ig
Show HN: Sign-up flows from 100s of websites made publicly available Hi HN! Fil here from Formsort ( https://formsort.com/ ). We just launched Fineflows, a design gallery that showcases leading sign-up flows from around the web. Why? My team has been building sign-up flows for close to a decade across mortgages and healthcare. We’ve spent a lot of time working through the technical and design aspects of this problem, such as state management (getting that pesky back button to work), design flexibility, and data enrichment. Time and again, we’ve seen product teams who don’t know what to build even though they can . Often times, builders of forms start their process by looking at what other people are doing, answering questions like: What are different ways error validations are done? Should I use photos of people, or is text enough? Is it appropriate to use emojis in forms? How can I decline a user in a polite yet firm way? To that end, we set out to capture as many different form flows as we could and make them available. We’ve found it to be an invaluable resource ourselves, and many of our customers have used it to improve their own designs. I’m always shocked by how often people reinvent the wheel instead of using a tried-and-true technique, and I hope that we’re helping address that problem. Take a look at the gallery at ( https://ift.tt/avTQY01 ), or head to Formsort’s homepage to start building yourself! Would love to hear any feedback, inspiration, or thoughts, as we are just getting this off the ground :) https://fineflows.com February 13, 2023 at 11:21PM
Show HN: (Repost) A Chrome extension to help you improve website performance https://ift.tt/AVMOT3D
Show HN: (Repost) A Chrome extension to help you improve website performance https://ift.tt/D9EXqUu February 13, 2023 at 04:15PM
Show HN: Meta peddling unsecured business credits to users in India https://ift.tt/sZCIEy2
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 04:03PM
Show HN: I made a community-based writing application https://ift.tt/weH31b8
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 are always sorted by date, with the latest ones on top. This way if you open Tavern three times this week you'll be able to scroll until the last answers you've read and leave, they won't get shuffled. Tavern's not a technical wonder by no means - you can probably put it together in a hackathon. But I put a lot of effort into the design and its simplicity, so people can focus on the content. I have more plans for it in terms of features but I wanted to launch the bare-bones build as soon as possible. Hope you like it! https://ift.tt/vm0jYqQ February 13, 2023 at 01:37PM
Sunday, February 12, 2023
Show HN: Self-host Whisper As a Service with GUI and queueing https://ift.tt/m75L6hD
Show HN: Self-host Whisper As a Service with GUI and queueing Schibsted created a transcription service for our journalists to transcribe audio interviews and podcasts really quick. https://ift.tt/9pLMqiZ February 13, 2023 at 12:30PM
Show HN: Forever-Time Multi-player- Play with your loved ones after you're gone https://ift.tt/pDd4jNW
Show HN: Forever-Time Multi-player- Play with your loved ones after you're gone Summer Friends Don't Stick Around is a "forever-time" multiplayer game created to immortalize players and give others a chance to play with them "in spirit" even after they are no longer with us. In the "Remember Me" mode, players can train a neural network to capture their play style. The output is a data model that can be shared with friends and family. Your playstyle is essentially encoded in the data model. In the "Remember Them" mode, players can load a data model file and play with them. I'm still learning more about neural networks and tweaking them to capture more of how any particular player approaches the game. There is room for improvement. https://ift.tt/gB1xVP6 February 13, 2023 at 01:05AM
Show HN: Nix-init – Generate Nix packages from URLs with dependency inference https://ift.tt/pIxrgQh
Show HN: Nix-init – Generate Nix packages from URLs with dependency inference https://ift.tt/gnz1G3S February 13, 2023 at 12:04AM
Show HN: HN Pop-Up – Hover on HN Username to See Their Profile https://ift.tt/Dz0pFLx
Show HN: HN Pop-Up – Hover on HN Username to See Their Profile https://ift.tt/4klpCcK February 12, 2023 at 11:55PM
Show HN: Link Book – Quickly save links from around the web to GitHub https://ift.tt/RdJkneq
Show HN: Link Book – Quickly save links from around the web to GitHub Save and sync your web bookmarks using Link Book and GitHub while retaining full control of your data https://ift.tt/MGszmeE February 12, 2023 at 03:29PM
Saturday, February 11, 2023
Show HN: Channel 784, infinite AI generated fake news https://ift.tt/0iMvaBD
Show HN: Channel 784, infinite AI generated fake news I was inspired by Nothing Forever to make something while it's off air - Channel 784. It's a parody of evening news. How it works: I have a Node server that generates headlines, then expands each one and creates an intro and outro based on them, and then passes the headlines to DALL-E to generate pictures for each story and the stories to Google Cloud to generate speech. Then I save that as a JSON and load it into Unreal Engine. I'm not sure it's as funny as Nothing Forever, it's a bit more structured. If anyone's got any suggestions I'd love to hear them. https://ift.tt/YrvXmuG February 12, 2023 at 10:35AM
Show HN: PyCirclize – Circular Visualization in Python https://ift.tt/xPGcRmX
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/ImBvwyC https://ift.tt/vmNIhUZ February 12, 2023 at 09:46AM
Show HN: For Product Managers – curated collection of tools https://ift.tt/ODMbBLf
Show HN: For Product Managers – curated collection of tools Curated collection of tools and frameworks for product managers, startup founders and delivery managers. https://ift.tt/qDs7C0p February 11, 2023 at 10:44PM
Show HN: C64 and Plus/4 compared. Justice to a forgotten 8-bit home computer https://ift.tt/x8te6CM
Show HN: C64 and Plus/4 compared. Justice to a forgotten 8-bit home computer https://www.youtube.com/watch?v=fcZiDn3fxh8 February 11, 2023 at 10:57PM
Show HN: I’m an introvert – made an app to help maintain connections with people https://ift.tt/DLpsJRm
Show HN: I’m an introvert – made an app to help maintain connections with people https://ift.tt/ZivK2cT February 11, 2023 at 10:12PM
Show HN: Experimenting with GPT-3: Building an Investment Analyst https://ift.tt/OZ5Y1dg
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/hi1KDER https://ift.tt/wGtW4bD https://ift.tt/hdJev9L https://ift.tt/vwS5n1o 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 potential move to $167. The company is also facing an investigation by the Pomerantz Law Firm on behalf of iPhone 7 owners who experienced performance degradation following a device update. Apple's latest iPhones are being sold at discounts in China and the company is expected to rollout a high-end iPhone 'Ultra' in 2024. Additionally, two top market watchers discussed tech's wild run this year." For Microsoft, the Bull-case made more sense than the Bear-case Bull-case "Microsoft Corporation is a technology leader in the industry and is well-positioned to benefit from the increasing demand for cloud computing and artificial intelligence. The company's strong balance sheet, competitive advantages, and focus on innovation make it an attractive long-term investment Bear-case "Microsoft Corporation is a large, mature company with limited growth potential. The company is facing increasing competition from smaller, more nimble competitors and is struggling to keep up with the rapid pace of technological change. Investors should b e wary of investing in Microsoft due to its lack of innovation and potential for declining market share." Negatives: GPT3 is only guessing the next best word. Which might sometimes provide strange results. For example, considering the News Summary for Uber "Uber Technologies, Inc. reported a surge in fourth-quarter revenues and a strong outlook for 2021." We are not in 2021 anymore for a long while. Clearly, GPT3's knowledge of the Yahoo finance dataset has been cut off in 2021 and applied the provided news effectively. For AAPL, GPT3 did not identify any competitors. While we could argue that HP, MSFT, or similar hardware+software companies are in fact, competitors. In conclusion, we need to further investigate if the actual reasoning of GPT3 is mature enough to provide a useful analysis of the stock. Especially under liability considerations. Yet, if it works it could be a really powerful game-changer. Clearly, that is only an experiment and shouldn't be used as an investment recommendation nor seen as investment advice in any way. February 11, 2023 at 08:06PM
Show HN: Sharrr – Pretty secure file transfer https://ift.tt/4e8Ln7u
Show HN: Sharrr – Pretty secure file transfer End-to-encrypted file transfer. https://www.sharrr.com/ February 11, 2023 at 02:36PM
Friday, February 10, 2023
Show HN: Get notified in Slack for each GitHub star https://ift.tt/V8rmR43
Show HN: Get notified in Slack for each GitHub star I wrote a Zap on Zapier to get notified when someone stars your repo. I use it on our open-source repo and it's helpful. Fern: https://ift.tt/vSmsCk2 https://ift.tt/sqzbKlo February 11, 2023 at 04:55AM
Show HN: S.cr – send encrypted, disposable notes https://ift.tt/fijo3Un
Show HN: S.cr – send encrypted, disposable notes https://s.cr February 11, 2023 at 02:13AM
Show HN: GoodQuestion: A job interview note taking and collaboration tool https://ift.tt/Fokt4WA
Show HN: GoodQuestion: A job interview note taking and collaboration tool https://ift.tt/TYr6jWU February 11, 2023 at 01:48AM
Show HN: A Chrome extension to improve your website performance https://ift.tt/cnXfK6v
Show HN: A Chrome extension to improve your website performance https://ift.tt/vkIuEwX February 10, 2023 at 03:39PM
Show HN: MrScraper – A visual web-scraping tool https://ift.tt/lRy0oYC
Show HN: MrScraper – A visual web-scraping tool Two months ago, I started building this side-project in the morning, before my full-time job. A visual and easy-to-use web scraping app. Please, roast it a bit so I can work on improving it. Thanks. https://mrscraper.com February 10, 2023 at 12:49PM
Thursday, February 9, 2023
Show HN: Verified-GPT on your files and videos https://ift.tt/0WpwtBo
Show HN: Verified-GPT on your files and videos https://ift.tt/wK9yHil February 10, 2023 at 01:20AM
Show HN: Noya (YC W21) – A wireframing tool that generates designs and code https://ift.tt/VdiqsaM
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, since there’s a lot more that I want to add, but I’ve personally been finding it useful even with its limited feature set. I’d be very interested in any early feedback if you have a chance to play with it! PS: We’ve open sourced most of Noya at https://ift.tt/9YxpOZH . Let us know if you’re interested in collaborating. https://www.noya.io February 10, 2023 at 03:52AM
Show HN: boxxy – Control where Linux programs put files, without symlinks https://ift.tt/z7ZpBCW
Show HN: boxxy – Control where Linux programs put files, without symlinks https://ift.tt/PaA0DSF February 10, 2023 at 01:34AM
Show HN: I made a tool that turns screenshots into dramatically angled photos https://ift.tt/KHrFmcI
Show HN: I made a tool that turns screenshots into dramatically angled photos https://ift.tt/xFTNRDo February 10, 2023 at 12:58AM
Show HN: PodText.ai – Search anything said on a podcast, highlight text to play https://ift.tt/9iTKDWh
Show HN: PodText.ai – Search anything said on a podcast, highlight text to play Hi HN, wanted to share a project that I’ve been working on recently. PodText allows users to find anything said on a podcast. You can also listen and share clips to a specific part of the podcast audio, simply by highlighting the text of that part. Currently there are just over 25k podcast episodes and I’m adding a lot more in the coming weeks (yes my GPU bill is painful). In order to monetize it, I’m building a sponsorship database to help sponsors find podcasts and vice versa. This will be sold in the form of a $99/month “PodText Business” subscription. I bet I could charge a lot more to large sponsors but I’ll tweak that as I talk to potential customers. Right now the UI is very bare bones (doesn’t even have pagination) but I’ll polish it once the data pipeline is working well. Please let me know if you run into any bugs or have any questions about the site or business model. https://podtext.ai February 9, 2023 at 11:03PM
Wednesday, February 8, 2023
Show HN: ListLang – Learn Languages to Fluency https://ift.tt/Q5DeiH2
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/UzwHSfk February 8, 2023 at 08:34PM
Show HN: Use Apple's Vision APIs and OpenAI to Automate Nutrition Label Reading https://ift.tt/nCfBtMS
Show HN: Use Apple's Vision APIs and OpenAI to Automate Nutrition Label Reading https://ift.tt/Rga4Upz February 9, 2023 at 05:07AM
Show HN: Free newsletter signup service (because I'm sick of Mailchimp) https://ift.tt/9sdVQiz
Show HN: Free newsletter signup service (because I'm sick of Mailchimp) https://ift.tt/MUBVjNa February 9, 2023 at 03:57AM
Show HN: Filmbox, physically accurate film emulation, now on Linux and Windows https://ift.tt/cDAQLVt
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/NLGdiua February 9, 2023 at 12:43AM
Show HN: Au: A C++14-compatible units library, by Aurora https://ift.tt/QAG5c4N
Show HN: Au: A C++14-compatible units library, by Aurora Aurora's C++ units library called "Au" (rhymes with "hey you!") has been a small but critical tool in Aurora's software development toolbox. Today, we're sharing it with the world[1]: Au is now open source for all to use. Feel free to ask me any questions! [1] https://ift.tt/sZ1QeX6... https://ift.tt/56Ya7QP February 8, 2023 at 11:59PM
Show HN: My article on idea validation on HN (Hackernoon) https://ift.tt/cKkTv6h
Show HN: My article on idea validation on HN (Hackernoon) It's been doing relatively well for a first story ever! Any feedback from this HN? https://ift.tt/T1Zu2O7 February 8, 2023 at 02:20PM
Tuesday, February 7, 2023
Show HN: We built an open-source LaunchDarkly alternative for B2Bs https://ift.tt/cLBE3P1
Show HN: We built an open-source LaunchDarkly alternative for B2Bs Hey HN, Nir, Gal and Tomer here. Last week, we open-sourced Enrolla ( https://ift.tt/alSY71y ) - feature management for SaaS companies. It makes it easy for developers to control how their product behaves for customers in different pricing tiers. So things like which features are enabled for whom, rate limits and seat limits, but also your customer secrets (with end-to-end encryption), and other configurations. After 15 years of working together at various companies, where we rebuilt the same SaaS foundation layer again and again - we wanted to create something reliable and feature-rich that will be available for everyone. We now have a backoffice UI, a backend and SDKs for managing customer features and a way to manage pricing tiers on top of it. We plan to add more features around metering and integration with Stripe, so that ideally Enrolla can be used to bootstrap any new SaaS software in minutes. We’ve launched this repo under the MIT license so any developer can use it. The goal is not to charge individual developers. We make money by charging a license fee for enterprise features like Salesforce/Hubspot and SSO integrations. Give it a try ( https://ift.tt/alSY71y ), and let us know what you think! Main website: https://www.enrolla.io https://www.enrolla.io February 7, 2023 at 06:34PM
Show HN: Embra – A fast, Chat-GPT like assistant for your Mac. App integrated https://ift.tt/yOkFw8j
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 twitter launch thread: https://twitter.com/zachtratar/status/1623015294569713665 We're also looking for the following feedback: 1) What do you think about OS-level integration vs VSCode extension? Both have filesystem access, but do you perceive them differently security or capability wise? 2) What do you use ChatGPT for today primarily, and would desktop access improve those workflows meaningfully? 3) What context would you like to pull into the AI, as an engineer? Thanks! And feel free to poke at the idea. We've been around the block and welcome the classic, ruthless HN constructive criticism. February 8, 2023 at 12:10AM
Show HN: Anansi – a Ruby Set using mem and disk (SQLite) for large sized tasks https://ift.tt/1skDeri
Show HN: Anansi – a Ruby Set using mem and disk (SQLite) for large sized tasks https://ift.tt/pubBy3Q February 7, 2023 at 09:59PM
Show HN: SQRL – Anti-spam rules language Twitter acquired in 2018, open-sourced https://ift.tt/lEZen4L
Show HN: SQRL – Anti-spam rules language Twitter acquired in 2018, open-sourced https://ift.tt/1dc06lI February 6, 2023 at 10:24PM
Show HN: We've built ChatGPT for your pdf files https://ift.tt/8bL2vja
Show HN: We've built ChatGPT for your pdf files My friends and I were really excited to try out ChatGPT when it was released. We were amazed by its power and capabilities. We were thinking how great it would be if people could use ChatGPT to ask questions from their own data. So me and my friends had decided to build such a tool. We are delighted to announce that we are releasing a public beta of our tool> After you upload all your pdf files into it. It can search for relevant documents without perfect keyword match, summarize takeaways from the document specific to your question, and extract key information from the document. It can help with brainstorming and summarization. We would love if you try it out and let us know what you think about it. We look forward to hearing your feedback on comments section below :) https://ift.tt/vSVo3Wp February 7, 2023 at 11:35PM
Show HN: Utm.zone – Bulk UTM link builder https://ift.tt/n6OkSRr
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:52PM
Monday, February 6, 2023
Show HN: Iwf – A new “workflow as code” execution engine https://ift.tt/413HRQ9
Show HN: Iwf – A new “workflow as code” execution engine It's built on top of Cadence Temporal(Similar to AWS SWF, Microsoft Azure Durable Function) by expert of Cadence/Temporal to provide clean and simple API/interface for development. * Easy to understand and get started * Easy to make changes -- no non deterministic errors and no need to write versioning code. * Easy to write and maintain unit tests * Easy to monitor and operate * Provide all power of Cadence/Temporal(scalability/reliability) Look at the samples for how easy it is, and try it out! https://ift.tt/wgvBJM0 February 7, 2023 at 05:08AM
Show HN: Elaborate AI – Generate Slides and Speaker Notes from Your Outline https://ift.tt/U9qyiuc
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 09:07AM
Show HN: Flappy Bird and Wordle https://ift.tt/siuMgcv
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/zjdDYAR February 7, 2023 at 03:31AM
Sunday, February 5, 2023
Show HN: Userdoc – My new startup after selling my development agency https://ift.tt/S6NCgoj
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:58AM
Show HN: Reading Planner for ePub Files https://ift.tt/Mvr37A9
Show HN: Reading Planner for ePub Files A cli tool for the people who read epubs a lot.This app lets me break down epub books I read on the regular into manageable pieces, in a events.ics file. I then import the events file in my main calendar so I always find time to read and actually finish the books I'm reading. https://ift.tt/snBClT9 February 6, 2023 at 03:30AM
Show HN: Visualize ResNet Embeddings with UMAP https://ift.tt/k0npbFf
Show HN: Visualize ResNet Embeddings with UMAP I took my personal backup (mostly family photos, some random scans, etc), extracted the embeddings from ResNet (pen-ultimate layer activations), and then plotted them with the UMAP algorithm and bokeh library This was a one-afternoon learning exercise while doing the awesome Fast AI course. The results are quite fun. ResNet returns 512 feature and UMAP maps those features into 2D plane, preserving distances as much as possible. The outliers show that the embeddings "make sense", clustering the images that are similar to other ones in the cluster, and different from those outside the cluster. https://ift.tt/D9drLu7 February 6, 2023 at 04:15AM
Show HN: Harvester – Shop small stores near you https://ift.tt/5PGYwQe
Show HN: Harvester – Shop small stores near you https://ift.tt/3Jt8bkl February 6, 2023 at 04:33AM
Show HN: WordPies – guess the word before time runs out https://ift.tt/8udhR9g
Show HN: WordPies – guess the word before time runs out https://wordpies.com February 5, 2023 at 10:14PM
Show HN: Indie World – Discover and follow creators across all platforms https://ift.tt/2NTXx34
Show HN: Indie World – Discover and follow creators across all platforms https://indieworld.io/ February 6, 2023 at 03:34AM
Show HN: Fast VHDL language server written in Rust https://ift.tt/CTQxbV3
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/T98KOIM February 5, 2023 at 03:10AM
Show HN: Run untrusted code in a Web Worker for data transformation https://ift.tt/QnaxgP7
Show HN: Run untrusted code in a Web Worker for data transformation https://ift.tt/bDJ6ih2 February 5, 2023 at 01:38PM
Saturday, February 4, 2023
Show HN: Are You Drowsy? Twilio and OpenCV https://ift.tt/6Myhipa
Show HN: Are You Drowsy? Twilio and OpenCV https://ift.tt/V6Kbi2g February 5, 2023 at 12:10PM
Show HN: GPTBanker – map/reduce over documents of any length with OpenAI https://ift.tt/ZuUX9Sr
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/CvD8kdM February 5, 2023 at 10:37AM
Show HN: Hacker News, but Just ChatGPT https://ift.tt/bsRPZdo
Show HN: Hacker News, but Just ChatGPT https://ift.tt/WDnvEyU February 5, 2023 at 08:44AM
Show HN: Integrate ChatGPT with Google Sheets in 3 Minutes https://ift.tt/LuN6IET
Show HN: Integrate ChatGPT with Google Sheets in 3 Minutes https://ift.tt/MZXadjq February 4, 2023 at 10:19PM
Show HN: FlingUp – Have Your Say https://ift.tt/5ZM4hVL
Show HN: FlingUp – Have Your Say https://flingup.com February 4, 2023 at 08:43PM
Friday, February 3, 2023
Show HN: Webapp.io - Free firecracker-based full-stack hosting https://ift.tt/kDIleC1
Show HN: Webapp.io - Free firecracker-based full-stack hosting https://ift.tt/jrVIXDs February 4, 2023 at 04:05AM
Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries https://ift.tt/Ua3GF0x
Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries Hi, This is a very early preview of a new project, I think it could be very useful. Would love to hear some feedback/comments https://ift.tt/IzGEUFh February 4, 2023 at 03:24AM
Show HN: Amazon Product Recommendations Using ChatGPT https://ift.tt/DrVqcht
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/DFQmjeL February 4, 2023 at 12:59AM
Show HN: Emoji generator using Chat-GPT https://ift.tt/brBNemZ
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 4, 2023 at 12:15AM
Show HN: IHaveNoIdeasForAClockName – A “accurate” clock https://ift.tt/yAfPb4q
Show HN: IHaveNoIdeasForAClockName – A “accurate” clock https://ift.tt/Nc8LPJ2 February 3, 2023 at 11:21PM
Show HN: Generate user interview notes with GPT https://ift.tt/zIphD2b
Show HN: Generate user interview notes with GPT Next time doing user/hiring interviews, let Rina Chrome extension take notes so you can focus on the chat. Rina records, transcribes and summarizes your call saving you 15 min each call. https://www.rinahq.com/ February 3, 2023 at 10:50PM
Thursday, February 2, 2023
Show HN: I turned my microeconomics textbook into a chatbot with GPT-3 https://ift.tt/u3RCzXk
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:49AM
Show HN: Trigger Webhooks from Postgres https://ift.tt/406TbXG
Show HN: Trigger Webhooks from Postgres We just released a small open-source tool which enables you to fire HTTP requests from Postgres triggers. One of the things we’re using it for now is to send Slack messages when a new user is created and wanted to see what the community thinks as we explore more use cases! https://ift.tt/8e3TUXm February 3, 2023 at 03:34AM
Show HN: Mux Meet – open-source Zoom alternative https://ift.tt/S8CEdrt
Show HN: Mux Meet – open-source Zoom alternative https://ift.tt/R2Fprju February 3, 2023 at 02:04AM
Show HN: AI model on a $3 chip (esp32) https://ift.tt/lTj6X2r
Show HN: AI model on a $3 chip (esp32) We finished a design that allows a plug-and-play solution with TensorFlow Lite and a web server with the UI on ESP32. Here is a video of the process: https://youtu.be/aEZX3JMzwTo I wanted to share the design in case anyone is interested as the camera is aimed at developers who want to play with AI models on the embedded side. https://ift.tt/xE1YUZn February 3, 2023 at 02:03AM
Wednesday, February 1, 2023
Show HN: Validate, Launch and Grow 3-5x Faster with No BS Startup Guide https://ift.tt/gnWwMZ8
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/8QMB1zS... ) 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/tuLA4gl February 2, 2023 at 02:51AM
Show HN: AI Cover Letter Writer https://ift.tt/zAMUu1y
Show HN: AI Cover Letter Writer Uniquely, our AI cover letter generator creates a cover letter from your resume and a job description. Use the finished product as an outline you can polish on your own. https://tally.work/ February 2, 2023 at 08:36AM
Show HN: PromptLayer – Track, debug, and maintain GPT prompts in prod https://ift.tt/NpFUsIM
Show HN: PromptLayer – Track, debug, and maintain GPT prompts in prod https://ift.tt/z5YQHTV February 2, 2023 at 05:27AM
Show HN: Go Feature Flag OSS self-hosted feature flag solution launch v1.0.0 https://ift.tt/4dRVsXJ
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/3QolBfG v1.0.0 blog post: https://ift.tt/VuUigxn https://ift.tt/VuUigxn February 2, 2023 at 02:22AM
Show HN: BSManager | Manage multiple BeatSaber versions, install Maps, Mods ... https://ift.tt/AwTkeMI
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/EQ7GiMq - Twitter : https://twitter.com/BSManager_ - Nexusmod : https://ift.tt/E3uBnxo (All sharing is obviously welcome) https://ift.tt/EQ7GiMq February 2, 2023 at 04:53AM
Show HN: 3 Clicks, 3 Seconds, 3 Steps – The Future of Process Management https://ift.tt/adEL9vB
Show HN: 3 Clicks, 3 Seconds, 3 Steps – The Future of Process Management Hello HN, Do you want to streamline your business processes and boost productivity? Look no further than Jackrabbit Ops! Our AI-powered platform is changing the game for process management. With just 3 clicks, you can create processes that are tailored to your unique needs. Get answers to your questions in just 3 seconds with our knowledge base feature. And making updates has never been easier - just 3 simple steps! Say goodbye to manual processes and hello to a more efficient, effective, and intelligent way of managing your business. Jackrabbit Ops has already onboarded 70 companies in just 2 weeks, and with its promising growth potential, it's the perfect solution for your business too! Links: https://ift.tt/0fv49kT Try Jackrabbit Ops today and experience the future of process management for yourself. Thanks for taking a look! February 2, 2023 at 03:05AM
Show HN: You Should Watch https://ift.tt/gKIoOFw
Show HN: You Should Watch I built a to-do list for movies and TV shows. Built on NextJS, deployed in Vercel, storage in Google Firebase, QA'ed with Playwright, designed with Pico.css, backed by The Movie DB, free and fun. https://ift.tt/zbMwB6i February 2, 2023 at 12:34AM
Show HN: Using Google Sheets to manage localization strings across platforms https://ift.tt/pZkLEMb
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/czB5dQV February 1, 2023 at 06:11PM
Show HN: 1Daily – Do email 90% faster https://ift.tt/R5uKtZP
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 custom daily newsletter. We look forward to everybody’s comments! February 1, 2023 at 07:21AM
Subscribe to:
Posts (Atom)
Show HN: A "Buy Me a Coffee" Button for Crypto Donations https://ift.tt/uz1lAaM
Show HN: A "Buy Me a Coffee" Button for Crypto Donations I am building a simple donation platform where creators can accept tips i...
-
Show HN: High school robotics code/CAD/design binder release Hello HN! My name is Patrick, and I am a junior at my High School’s FRC robotic...
-
Show HN: D&D meets Siri – Interactive voice adventure Hey HN! I've been building tooling for voice-driven apps over the past few mon...
-
Show HN: I Made an AI Social Media Manager to Automate Content Creation Hey HN, I am a Solopreneur, and I love building apps to automate bor...