Saturday, June 10, 2023

Friday, June 9, 2023

Show HN: Athena, a research paper recommender for overwhelmed AI researchers https://ift.tt/c5knBKM

Show HN: Athena, a research paper recommender for overwhelmed AI researchers Do you have trouble keeping up with the latest advance in AI? I've built a recommender system to bring you the latest research papers in AI. Simply subscribe to the topics you're interested in, and the app will recommend you the latest research in that topic. The app is far from complete, but I'm seriously working to improve it. Please try it out if you have time, and send your feedback to: accsci.athena@gmail.com. https://ift.tt/VAOPEbZ June 10, 2023 at 06:53AM

Show HN: Poser (Posix SERvices C framework) https://ift.tt/JVUBAje

Show HN: Poser (Posix SERvices C framework) https://ift.tt/XpGz7Ai June 10, 2023 at 02:18AM

Show HN: I turned my email automation tool into a full-fledged email platform https://ift.tt/wSnZFVt

Show HN: I turned my email automation tool into a full-fledged email platform Around 10 months ago, I published a tool I made ( https://ift.tt/1WM7wmq ). I was scouring the market for an affordable and easy-to-use email automation tool, to no avail. The solution? I decided to just build it myself. Since then, I've added the ability to send transactional and broadcast emails, threw out the subscription pricing and turned it into a usage-based model, etc. In short, turned it into a full-fledged email platform designed for SaaS. With this post, I would like to share my learnings, findings... Ask any question and I'll answer it to the best of my ability. Thanks to the feedback of the HN community, I was able to turn this into something that I am still proud of every single day. A sincere thank you from my side. https://ift.tt/4RgVnmf June 9, 2023 at 02:20PM

Thursday, June 8, 2023

Show HN: A cross-platform command-line tool to play music https://ift.tt/IHet1DQ

Show HN: A cross-platform command-line tool to play music Can add music from files, YouTube/YT Music links, or Spotify links. Fine-tuned control over looping, shuffling, etc. Built-in audio visualization, stats (yearly and total). Discord integration (status) and Mac integration (works with Siri, touch bar, headphones, any sort of media control on Macs). Honestly think this is a pretty good alternative to tools like ncmpcpp, but lmk what y'all think! https://ift.tt/tCAfFN2 June 9, 2023 at 11:01AM

Show HN: CreatorKit – self-host OSS alternative to Mailchimp and Disqus https://ift.tt/NIuPh5o

Show HN: CreatorKit – self-host OSS alternative to Mailchimp and Disqus https://ift.tt/mKtGqP6 June 9, 2023 at 08:17AM

Show HN: FigMaps, a visual sitemap builder to plan websites and gather content https://ift.tt/6LFXuZr

Show HN: FigMaps, a visual sitemap builder to plan websites and gather content Generate, build, plan and visualize your website structure. Collaborate with your team in real-time to gather content, improve your site architecture, design, UX and SEO. Start prototyping instantly using AI. Please visit https://ift.tt/ZIbUk0F and try it out yourself (Login as guest, no registration required!) https://www.figmaps.com June 8, 2023 at 08:05PM

Show HN: Autodistill – Use big slow foundation models to train small fast models https://ift.tt/YKuSbjF

Show HN: Autodistill – Use big slow foundation models to train small fast models https://ift.tt/e9iR6lE June 9, 2023 at 12:38AM

Show HN: Visibly – More Collaborative and Efficient Code Reviews on GitHub https://ift.tt/u7Y2ka6

Show HN: Visibly – More Collaborative and Efficient Code Reviews on GitHub Hey HN! I’m Nick, the founder of Visibly ( https://visibly.dev ). Visibly is a GitHub App and Chrome extension that makes code review more efficient, collaborative, and visible by enabling you to: - See review comment thread statuses so that you can quickly address each thread and focus your attention on the ones that actually require it - Indicate whether feedback is blocking or non-blocking so only crucial feedback blocks PR merge - Ensure all blocking review threads are addressed before merge via a status check - Track total active review time per reviewer so that you can understand the effort and review time going into each PR - See reviewer presence so that you can see if someone is already reviewing and avoid unnecessary pings. In addition to these workflow improvements, Visibly provides a personalized metrics dashboard so you can understand your real-time performance and better advocate for yourself and advance your career. You can see a demo and a breakdown of all of the current features at https://visibly.dev . I created Visibly after seeing the same pain points across Microsoft, Snap, Headspace, and Brex: - Code review was frequently undervalued and invisible. Developers recognized this and prioritized code production instead, which resulted in knowledge silos, poor code quality, and a culture of rubber stamp reviews. - Engineering performance review was broken. From the manager’s perspective, it was difficult to identify top performers and to provide timely, actionable feedback. From the IC’s perspective, feedback was infrequent and subjective around many aspects of the job. The process was also time-consuming and required everyone to sift through 3-6 months of work to quantify “impact and scope”. Visibly solves these issues by using objective measures to make code review more visible and efficient. Visibly values privacy and security above all else; it does not require source code access and requests the fewest possible permissions to provide these experiences. Visibly is also differentiated in its belief that individuals should know how they’re doing and have personalized metrics so that they can advance in their careers. If you use GitHub, you can try Visibly today for free by heading to https://ift.tt/N6ArPMy . Visibly is currently free, but we plan to introduce paid features and pricing plans soon. Our pricing is still under development, but based on existing customer feedback, we expect to price at $20/seat/month. For those that sign up over the next week, we plan to provide 50% off for the first year once our pricing plans launch. We look forward to your thoughts and feedback! https://visibly.dev June 9, 2023 at 12:06AM

Show HN: Top Podcasts, Summarized by GPT Everyday https://ift.tt/kt5qX3C

Show HN: Top Podcasts, Summarized by GPT Everyday https://ift.tt/3IDxJpd June 8, 2023 at 12:22PM

Show HN: A non-recursive C Quadtree https://ift.tt/XfpwJgt

Show HN: A non-recursive C Quadtree Wazzup Beijing, You might have seen a HSHG written by me the other day (supahero1/hshg, post: https://ift.tt/bzg2EXl ), which I also shared here. Well, I've quickly come to the realization that while grids are really nice, they really suck at handling objects of varying sizes. The HSHG could handle 500k objects of very similar sizes at 60FPS, and this Quadtree handles 100k objects of all sizes (can vastly vary or be similar, doesn't matter) in a similar amount of time. Also, while HSHG was really close to being O(n), this Quadtree is much worse, of course resembling O(log n). The way how I achieve lack of recursivity is doing a modified depth-first search. A modified one, because I first add all child nodes to the stack before descending to the first one of them, so the maximum stack length is depth * 3 + 1 , and I assume no madman will want to go over the depth of 20 (by default, can be changed). For some reason, this time around, running this on my laptop actually results in worse performance than I get on my PC, whereas the situation was the reverse with the HSHG haha. No clue why. Some lack of dirty optimizations I suppose. This time, no JavaScript port. I just wanted to whip out this Quadtree real quick (took me a week in total, from scratch) to use in some other project of mine. However, I do hope some people can make use of it, or maybe learn how non-recursive Quadtrees work, idk. On the other hand, this time I included a nice OpenGL + GLFW display showing exactly what's happening and how the Quadtree divides and merges its nodes. You can move around with your mouse (by dragging), and you can click LMB to warp to the fastest object in your view, which then you can deactivate (stop following the entity) by pressing RMB. Hope you enjoy! ~don_shadaman https://ift.tt/XvhJ34O June 8, 2023 at 05:04PM

Show HN: See Your Future Baby In AI-Generated Photos https://ift.tt/7Q2X3at

Show HN: See Your Future Baby In AI-Generated Photos https://ourbabyai.com June 8, 2023 at 03:05PM

Wednesday, June 7, 2023

Show HN: Run synchronous and asynchronous commands in WebDrivers https://ift.tt/YeybRWp

Show HN: Run synchronous and asynchronous commands in WebDrivers Caqui is intended to command executions against Drivers synchronously and asynchronously. Launch the Driver as a server and send requests to it. The intention is that the user does not worry about which Driver he/she is using. It can be WebDrivers like Selenium, MobileDrivers like Appium, or DesktopDrivers like Winium. https://ift.tt/cgviNaU June 8, 2023 at 09:00AM

Show HN: Ezno, a TypeScript checker written in Rust, is now open source https://ift.tt/LOKICaz

Show HN: Ezno, a TypeScript checker written in Rust, is now open source https://ift.tt/qf1IHsZ June 8, 2023 at 01:08AM

Show HN: we open sourced an IDE for ML data https://ift.tt/tJmFpbA

Show HN: we open sourced an IDE for ML data Hi HN! I’m Farah, co-founder of Dioptra.ai. We just open sourced katiML ( https://ift.tt/MXGsyik ) this week and wanted to get your take. katiML is a vector+data lake to debug, curate and version AI data. With katiML, teams avoid the “garbage in, garbage out” effect by taking control over the quality of their data. They quickly and effectively curate high quality data for training, fine-tuning, and fixing hallucinations and edge cases. Features include: - Data Curation: interactive embedding visualization and similarity search, mislabeling and hallucination scores as well as SOTA Active Learning miners. - GenAI 4 explainability: uncover drift and bias in your data with multi-modal foundational models that describe in human language what’s in your data. - ML Data Lake: zero copy, highly efficient ML data lake to store and query any ML data (vectors, metadata etc). - Data Versioning: to track changes in datasets, prompts, and model performance; and pinpoint the causes behind those changes. Check out our github repo( https://ift.tt/MXGsyik ), documentation( https://ift.tt/CleNhcx ) and new slack community channel. Here is a video to show you how we use GenAi 4 explainability( https://ift.tt/TcUpwXZ ). We'd love to hear about your experiences with iterating on your data to improve models, the challenges you faced, and how katiML could prove useful to your efforts. Let us know what you think we can do better or differently. Looking forward to your comments! https://ift.tt/TcUpwXZ June 7, 2023 at 11:41PM

Show HN: Simple tool for mobile App Store links https://ift.tt/GPTcbgM

Show HN: Simple tool for mobile App Store links https://installit.app June 7, 2023 at 11:35PM

Show HN: Imuengine.io (NYC S23): Easily Process IMU Data in the Cloud https://ift.tt/Nwf8H43

Show HN: Imuengine.io (NYC S23): Easily Process IMU Data in the Cloud Hello HN! I'm Hamid, one of the co-founders of imuengine.io, a Non-YC startup (NYC ;). We make it easy to process IMU data into accurate motion outputs like slope, tilt/inclination angle, or 3D yaw, pitch, roll. If IMU means something to you, go to https://ift.tt/Nm5orUA and try processing a sample dataset. Below is a bit more detail on the problem and our solution. We’d love to hear about projects using IMU sensors and what new things you could do with cloud-based motion processing! Why we Launched imuengine.io Adding motion sensing to projects can take months and is filled with gotchas. Perhaps you've experienced it or seen all the unanswered questions on SO about imus, gyros, ahrs, Madgwick, Kalman filters... We want to change that. We manage the sensor fusion software and make it easily usable. Any application which logs accel, gyro, and/or mag data and has internet can use us. Simply upload data, run the sensor-fusion engines, download results and move on. And later do the same programmatically via API calls. Prior to this you had two options: (A) Buying a specialized high-tech sensor for your application (B) Buying a general purpose sensing imu chip or package and customizing a sensor fusion lib to use it With (A) the cost can be prohibitive. You also pay with time to understand the sensor firmware and how to configure it. And keeping the firmware up to date is painful and rarely done. Case in point: our engineering services company bought $25k of motion/nav sensors in 2017 and 2020. They now run firmware that are 6 and 3 years old, respectively. Option (B) has a much cheaper BOM and you can leverage a paid or open-source software library for sensor fusion. Initially a chunk of time will go into sensor calibration and possibly packaging. If your application has an engine, then add another 2 months to wrestle with vibration. But a larger time investment will go into the sensor fusion lib and tuning it to the application. Without on-going maintenance, the software can suffer the same fate as Option (A) firmware and risks becoming a liability. Banking on the fact that most things (will) have internet connectivity, we're introducing a third option. It is a cloud computing model and will work with data from any of the awesome IMU sensors out there. It could be an Invensense or Bosch breakout from Sparkfun/Adafruit or a fully packaged and calibrated Analog Devices or Xsens sensor from Digi-Key. Better yet, prove things with the former at your desk and transition to the latter for field tests. We enable that and want to be the go-to cloud computing engine for motion sensors. Our goal is for engineers to work confidently with IMU sensors and deliver results faster. Whereas before sensor performance was stagnant (or downhill), with imuengine.io you can come back from the weekend and the accuracy will have improved and additional features added. Here’s the direct link to try it out: imuengine.io/engine/ June 7, 2023 at 11:01PM

Tuesday, June 6, 2023

Show HN: Abide – Prevent employees from leaking API keys/NDA data to AI tools https://ift.tt/qZiw5Ir

Show HN: Abide – Prevent employees from leaking API keys/NDA data to AI tools Hi HN, We’re the founders of Abide — a tool to prevent employees from leaking sensitive data to AI models. Over the past month we’ve spoken to lots of friends at tech companies, law firms, creative agencies, and more. There was a consistent theme: companies aren’t sure how AI tools affect their data privacy and security processes. There are concerns that when employees use LLMs to write code or send emails, there's a security/compliance risk (e.g., accidentally sharing an API key in a prompt) or violation of privacy agreements (e.g., using AI to draft a memo about non-public client work). The companies we spoke with have done one of two things: (a) outright banned use of LLMs until they figure out a plan or (b) sent a memo to employees telling them to be cautious. We want everyone to have the 10x productivity gain of AI, but compliance is important for a business to do right by its customers, its regulators, and keep its name out of the news. For now, we’ve built a straightforward product that does two things: (a) an app for compliance teams to upload words that cannot be sent to AI models and (b) a tool that monitors AI usage on employee laptops to enforce those policies. We’re in beta with a couple of customers, but we’d love for you to checkout the demo on the website! If you’re interested, join the sign up list and we’ll set up an account for you today to poke around. Welcome to any questions, feedback, ideas, etc.! Thanks! Jitesh & Vaibhav https://ift.tt/LGCMbFh June 6, 2023 at 11:18PM

Show HN: I made a ChatGPT powered Chrome extension https://ift.tt/jIGrumc

Show HN: I made a ChatGPT powered Chrome extension https://dashai.xyz June 6, 2023 at 10:51AM

Show HN: Open-source web highlighter for notion and hamsterbase https://ift.tt/YJgZ1Ui

Show HN: Open-source web highlighter for notion and hamsterbase https://ift.tt/jgF9C5Z June 6, 2023 at 05:36PM

Show HN: No-code in the front, Python in the back data apps – Streamsync https://ift.tt/WBcp96E

Show HN: No-code in the front, Python in the back data apps – Streamsync https://ift.tt/YayFu9X June 5, 2023 at 07:33PM

Show HN: Graph Visualization of Financial Correlations https://ift.tt/YLMFa2h

Show HN: Graph Visualization of Financial Correlations An attempt to show which financial products are highly correlated, negatively correlated, or non-correlated in an easily understood visual way. Implemented using D3 force-layout, based on daily financial data generated by Google Sheet GOOGLEFINANCE function. https://ift.tt/bEhteNm June 6, 2023 at 11:50AM

Show HN: Dockerless, Elixir Web Application Using Podman and Plug https://ift.tt/Ws5CjMa

Show HN: Dockerless, Elixir Web Application Using Podman and Plug https://ift.tt/YZPNvko June 6, 2023 at 11:36AM

Monday, June 5, 2023

Show HN: LLMO – An LLM pair programmer in your terminal https://ift.tt/uP6zdoL

Show HN: LLMO – An LLM pair programmer in your terminal Hello HN! LLMO (Elmo) is an AI pair programming tool I created that's become an indispensable part of my workflow. https://ift.tt/ky1IlOR LLMO is designed to meet you where you are – your terminal. It provides real-time, interactive programming assistance. With its "staging area" feature, you can keep files in the context window and update the AI about your ongoing coding tasks without the hassle of copying and pasting every time you make changes to your code. Key features include: - Interactive Chat: Get real-time programming assistance directly in your terminal. - Staging Area: No need to copy and paste updates. Simply add your files to the AI's context. - Model Customization: Choose the OpenAI model that fits your needs. - Personality: By default, Elmo loves to make bodybuilding references. You can turn this off through a CLI flag or environment variable The recommended way to install LLMO is via `pipx install llmo` https://ift.tt/Wp0Juc5 As a sidenote, LLMO uses Textual which runs the terminal in application mode, meaning that you can't simply copy content as you would normally. In iterm2, you can hold down the `option` key to select text. You'll need to refer to the documentation for your own terminal for more information. I hope you find LLMO as useful as I have! June 6, 2023 at 01:37AM

Show HN: Roboduck, a GPT-powered Python debugger https://ift.tt/beknPAy

Show HN: Roboduck, a GPT-powered Python debugger I made a python library that gives GPT4/chatGPT access to both your source code and current program state. If it suits your workflow better, you can also turn all your error messages into (optional) conversations: https://ift.tt/2Mp73Px https://ift.tt/PMFgtse June 5, 2023 at 09:03PM

Show HN: An RSS reader that is curated for you https://ift.tt/75Q2bUF

Show HN: An RSS reader that is curated for you https://ift.tt/f1iMmYQ June 5, 2023 at 08:28PM

Show HN: Made a HN-themed Framer blog template for HN community https://ift.tt/pSUg7rs

Show HN: Made a HN-themed Framer blog template for HN community https://ift.tt/8vr30il June 5, 2023 at 07:41PM

Show HN: SQLPage – Build Dynamic Websites with Just SQL Queries https://ift.tt/C50wJ7G

Show HN: SQLPage – Build Dynamic Websites with Just SQL Queries Hey Hacker News! I wanted to share the open source project I have been working on during the last year: SQLPage, a tool to build small web applications entirely in SQL. Building web applications with just SQL isn't as crazy as it seems. Most simple applications can be expressed declaratively as just data queries that fill pre-defined web components. I'd love to hear your feedback and thoughts on it. Would you potentially use it? How can it be improved? Website: https://sql.ophir.dev/ Github: https://ift.tt/svPyFV9 Example app: https://ift.tt/Em4FY6u https://sql.ophir.dev/ June 5, 2023 at 03:50PM

Show HN: Codespelunker a command line search tool with TUI and HTTP modes https://ift.tt/60ubTg9

Show HN: Codespelunker a command line search tool with TUI and HTTP modes https://ift.tt/yqu1FfL June 5, 2023 at 11:52AM

Sunday, June 4, 2023

Show HN: FemtoGPT – Pure Rust implementation of a GPT language model https://ift.tt/AiFqnzO

Show HN: FemtoGPT – Pure Rust implementation of a GPT language model https://ift.tt/UIQm37Z June 5, 2023 at 05:28AM

Show HN: PuppiesAI https://ift.tt/dlwWN0e

Show HN: PuppiesAI https://ift.tt/yrbRhqn June 4, 2023 at 07:44PM

Show HN: Swissfolio, a free and open source personal template https://ift.tt/QnvVO7P

Show HN: Swissfolio, a free and open source personal template Introducing ⏤ Swissfolio A free and open source personal landing page template with Swiss Design in mind and built with @astrodotbuild & @tailwindcss . Includes: Hero Intro Project Testimonials Featured work Animations with AOS Fancy color palette GitHub ⏤ https://ift.tt/sWhTR9n Live ⏤ https://ift.tt/ZLMyqGa June 4, 2023 at 01:51PM

Saturday, June 3, 2023

Show HN: Google Code Jam Archive https://ift.tt/KrCS6wW

Show HN: Google Code Jam Archive Hi HN, As many of you already know, Google has discontinued their coding competitions and is shutting down the competitions website. Before it's gone forever, I've scraped everything I could from their website and set up my own archive. (Disclaimer: I'm not affiliated with Google besides participating in these contests years ago) While the initial version was ready back in March, today I'm rolling out big and hopefully the final update, so this might be a good time to share it with the HN community. Everything is static HTML and SQLite archives (with a very minimal backend to serve files directly from SQLite), so you can easily grab your own copy. May these 3.5 million source files be a nice training dataset for some fancy future AI! Some useless stats: Tabs or spaces? 28% tabs vs 72% spaces for the whole dataset, but quite unexpectedly, 66% tabs vs 34% spaces if we consider only the final rounds. Most used languages: 63% C/C++, 20% Python, 12% Java, 2% C#, with others less than 1% each. For the final rounds it's 83% C/C++, 13% Java, 2% Python. https://ift.tt/ANZYu2D June 3, 2023 at 02:03PM

Show HN: A collection of games you can play in ChatGPT https://ift.tt/z7R6V9e

Show HN: A collection of games you can play in ChatGPT https://ift.tt/cRXVzWM June 4, 2023 at 07:11AM

Show HN: `npx tailhn` – Tail HN from the console https://ift.tt/TWCdXNZ

Show HN: `npx tailhn` – Tail HN from the console Tiny script to tail (follow) new stories on Hacker News from the command line. Prints titles and urls to the console. For instance, to watch for stories mentioning robots/robotics: `npx tailhn | grep -i robot` https://ift.tt/TyQ7uhs June 4, 2023 at 05:48AM

Show HN: ThinkTask – Unleash the Power of ChatGPT in Task Management https://ift.tt/u5d1bNW

Show HN: ThinkTask – Unleash the Power of ChatGPT in Task Management https://ift.tt/CN8fPja June 4, 2023 at 03:29AM

Show HN: Supreme Court Case Decider Game in ChatGPT https://ift.tt/YU3l5aF

Show HN: Supreme Court Case Decider Game in ChatGPT https://ift.tt/A2oQsXR June 3, 2023 at 10:43PM

Show HN: BEBB4185 – simple hash that passes SMHasher, 2-5GB/s https://ift.tt/bdetiYv

Show HN: BEBB4185 – simple hash that passes SMHasher, 2-5GB/s https://ift.tt/NxEvVdh June 3, 2023 at 05:58PM

Show HN: Lingfo – Foreign function interface for any language https://ift.tt/acM9YKA

Show HN: Lingfo – Foreign function interface for any language https://ift.tt/1vJeBsb June 3, 2023 at 06:29PM

Show HN: ExportGPT,Export ChatGPT Conversation https://ift.tt/areG6pm

Show HN: ExportGPT,Export ChatGPT Conversation All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats https://ift.tt/OHCLhns June 3, 2023 at 02:46PM

Show HN: Triplex – The React Three Fiber Editor. Now in Public Alpha https://ift.tt/IjEMDuW

Show HN: Triplex – The React Three Fiber Editor. Now in Public Alpha https://twitter.com/itsdouges/status/1664874971481382913 June 3, 2023 at 12:12PM

Friday, June 2, 2023

Show HN: Pyrgbd – Python RGBD video library with nice .mkv-based file format https://ift.tt/GgDVHQl

Show HN: Pyrgbd – Python RGBD video library with nice .mkv-based file format https://ift.tt/Vr4u8zt June 3, 2023 at 03:57AM

Thursday, June 1, 2023

Show HN: Pot is a cross-platform translation software https://ift.tt/dDHZnru

Show HN: Pot is a cross-platform translation software Introducing my cross-platform translation software that makes it easier than ever to translate text on the fly. Our software is designed to be user-friendly and intuitive, with a sleek and modern interface that works seamlessly across all major platforms. One of the standout features of our software is its ability to work with multiple translation APIs simultaneously (such as OpenAI,Google and so on), giving you access to a wider range of translations and ensuring that you always get the most accurate and relevant results. Whether you're a student, or a business professional, our software is the perfect tool to help you communicate more effectively and bridge the language gap. With our software, you can translate text in real-time, without ever having to leave your current application or website. So why wait? Download our cross-platform translation software today and experience the smoothest translation experience! https://ift.tt/qco3pui June 2, 2023 at 08:24AM

Show HN: JuxtaCode – native Git diff tool for macOS https://ift.tt/HiQSLC3

Show HN: JuxtaCode – native Git diff tool for macOS I wanted to make a native Git diff tool that works "stand-alone" in the sense that you just need to point it at a repository and then you can select commits to compare and open files in a 3-way-merge tool. I've been finding it useful to have one app I can quickly switch to for comparing branches and sorting out merge conflicts. https://juxtacode.app June 2, 2023 at 05:52AM

Show HN: Minutes – Save up to 20% of salespeople's time https://ift.tt/NKHsPLp

Show HN: Minutes – Save up to 20% of salespeople's time Hey everyone, I wanted to share something I've been working on that I think could be really helpful for sales teams. Minutes is a startup that utilizes OpenAI technology to automate the transcription and summarization of sales calls. What Minutes is doing can be described in 3 steps: 1. Taking your audio or video and transcribing it to text 2. Taking the most important and relevant information and creating a summary, including key points and the next tasks 3. Creating a follow-up email, including the summary points and next steps Story behind it: As an entrepreneur who handles sales and marketing, I noticed a common challenge: the amount of time managers spend on creating call summaries and writing follow-up emails. Not only is it time-consuming, but it's also often a hassle to ensure accuracy. To tackle this issue, I decided to delve deeper and spoke with several sales directors. Turns out, this problem is widespread, and even salespeople themselves dislike the administrative burden it brings. Inspired by these insights, I created Minutes. Call to action: Here's where you come in. Sign up for Minutes using the code "minutes_alpha," and you'll receive 60 free transcription minutes to play with the service. I genuinely value your feedback and insights, as they will help us refine Minutes and tailor it to the specific needs of sales teams everywhere. Thank you for your support, and I'm eagerly looking forward to hearing your thoughts. Warm regards, Bogdan, founder of Minutes https://ift.tt/D3hJGLN June 1, 2023 at 07:37PM

Show HN: Generate Swift unit tests using LLMs https://ift.tt/MbEjLzU

Show HN: Generate Swift unit tests using LLMs Hey everyone! Mukund and Ari here, and we wanted to show you folks what we've built. Our platform ingests your codebase, develops a semantic understanding of classes + functions, and generates unit tests via LLMs. When a developer posts a PR with an untested function, we check out their branch, write and refine test cases, and post them back as a PR comment. This ensures you get to 100% code coverage with minimal dev lift. How is this different from TestPilot? - We support Swift! - Unlike generic solutions like TestPilot, we have a deep understanding of your codebase, so our tests utilize actual semantic structure. This means higher-quality tests that don’t just examine the internals of your function in a vacuum. Because we understand your code, we’re able to test it in the context of related modules. - These generated tests don’t just live in your IDE! Because they’re posted onto GitHub, other engineers are able to review them as well. We’re looking for alpha testers. If you’re working on a Swift side project, we'd love to work with you so we can build better unit tests! Please reach out mukund.tibrewala at gmail dot com https://www.youtube.com/watch?v=gxObXqyp7WM June 2, 2023 at 01:00AM

Show HN: Whisper and ChatGPT and ElevenLabs on Raspberry Pi https://ift.tt/V9IymYW

Show HN: Whisper and ChatGPT and ElevenLabs on Raspberry Pi https://ift.tt/MWwc6Ks June 1, 2023 at 11:59PM

Show HN: StonksGPT – A Natural Language search tool for Stocks and Finance data https://ift.tt/E6NlVP5

Show HN: StonksGPT – A Natural Language search tool for Stocks and Finance data https://stonks.news/gpt June 1, 2023 at 07:38PM

Show HN: TodoBot is an AI coach that helps you write a better todo list https://ift.tt/uTd8QJj

Show HN: TodoBot is an AI coach that helps you write a better todo list I thought I'd be more likely to do the things on my todo list if GPT-4 was watching me (fail to) do them, so I built this. Let me know what you think! https://todobot.ai/ June 1, 2023 at 07:25PM

Show HN: Word2vec Algorithm in ~100sloc with NumPy https://ift.tt/uLEtMbY

Show HN: Word2vec Algorithm in ~100sloc with NumPy Here's a small demonstration of the fundamental aspects of the word-to-vec algorithm. It's implemented in a single python script and depends only on a single text file for training. It's not meant to be blazingly fast or anything, just a toy example to aid my understanding of how word vectors might be learnt from a corpus. https://ift.tt/RdfiZVJ June 1, 2023 at 04:38PM

Show HN: How to get started with trial work with potential cofounder matching? https://ift.tt/lDFXVMc

Show HN: How to get started with trial work with potential cofounder matching? Hey HN, This is Bhargav and i just went throught the user manual on "Co-founder Matching User Manual" https://ift.tt/4jniMOT so could you guys please help me on What type of trial work should I get with my potential cofounder? June 1, 2023 at 03:53PM

Show HN: I made CSS Pro, a re-imagined Devtools for web design https://ift.tt/TLWt1oP

Show HN: I made CSS Pro, a re-imagined Devtools for web design https://csspro.com June 1, 2023 at 02:17PM

Show HN: Git credential helper using OAuth in browser https://ift.tt/dSraXQp

Show HN: Git credential helper using OAuth in browser I authenticate to many Git hosts from many machines and got tired of generating and copying personal access tokens. With credential helper git-credential-oauth, there are no personal access tokens or SSH keys to configure. Instead you authenticate in browser using OAuth. Git Credential Manager (included with Git for Windows) has a similar feature but it's awkward for Linux users to install. git-credential-oauth is cross platform and packaged in many Linux distributions. https://ift.tt/FoMx3nN June 1, 2023 at 12:15PM

Wednesday, May 31, 2023

Show HN: Find the sickest motorcycle rides in your area with Peg Scraper https://ift.tt/uLmA6zg

Show HN: Find the sickest motorcycle rides in your area with Peg Scraper Dear HN, This is a little weekend project I put together for a good friend of mine who loves to ride. It shows you the best, twistiest roads in your area and then randomly selects a few of them until you see a "loop" that you like—then it shoots you straight to Google Maps with the route pre-loaded. Thought I would drop it here because why not. https://ift.tt/4urby7I May 31, 2023 at 06:32PM

Show HN: To support my 3 micro SaaS, I created another one https://ift.tt/Jz2RwOG

Show HN: To support my 3 micro SaaS, I created another one https://help.center May 31, 2023 at 05:29PM

Show HN: Dreaming about content.revenue(); https://ift.tt/U7YAsqh

Show HN: Dreaming about content.revenue(); https://ift.tt/lyGiVtE May 31, 2023 at 09:29AM

Show HN: Jitar, a runtime that automates all end-to-end communication for TS https://ift.tt/3RD9Cmx

Show HN: Jitar, a runtime that automates all end-to-end communication for TS Do you know where you will end at the start of a new application? Me neither. Change is the only constant, and it haunts me for decades. I think that applications should be able to change without making extensive modifications and regression testing. That is my goal. In the ideal world, a simple monolithic application can grow and transition into microservices without any refactoring. Defining what runs where should be a matter of configuration, and be changed any time. And this is exactly what Jitar brings to the table. https://ift.tt/XKNbh2f May 31, 2023 at 05:25PM

Show HN: Travel website fully generated by AI https://ift.tt/sBdxoz1

Show HN: Travel website fully generated by AI https://ift.tt/h87OzJj May 31, 2023 at 12:55PM

Tuesday, May 30, 2023

Show HN: I open sourced the CLI of my API Testing Framework https://ift.tt/0mNVXoC

Show HN: I open sourced the CLI of my API Testing Framework https://ift.tt/c9UNpTI May 31, 2023 at 03:05AM

Show HN: A powerful, compact home server for self-hosting https://ift.tt/gJl1UcH

Show HN: A powerful, compact home server for self-hosting https://umbrel.com/?v=1 May 30, 2023 at 06:58PM

Show HN: Metabase and Forest Admin Integration https://ift.tt/8yTULgm

Show HN: Metabase and Forest Admin Integration https://ift.tt/bhrCWif May 30, 2023 at 01:18PM

Show HN: Opinionated Web Framework for Converting Jupyter Notebooks to Web Apps https://ift.tt/GWZJHbI

Show HN: Opinionated Web Framework for Converting Jupyter Notebooks to Web Apps https://RunMercury.com May 30, 2023 at 04:09PM

Show HN: iOS iCal Helper https://ift.tt/gENb52o

Show HN: iOS iCal Helper Hello HN! Long time lurker and Apple user here. I made this simple tool to load .ics files client-side and open it in-browser so Apple's iCal integration enables adding it to their calendar. To say the app is barebones is an understatement: I made it in 2 minutes. Visual enhancements might come. Source: https://ift.tt/agM3TPC Useful context: https://ift.tt/jIXnKNG https://ift.tt/upjniaB May 30, 2023 at 01:14PM

Monday, May 29, 2023

Show HN: Plus AI Market Research https://ift.tt/mlPfaAq

Show HN: Plus AI Market Research Hi Team! Please add my app to your directory. Here's more info: App name: Plus AI Market Research Description: Give Plus AI a topic, and it will create a market or strategy report. Plus AI uses the latest AI technologies to create an easy-to-digest presentation. After creating the report, we send you the link to a slide deck, so you can customize it and share with your coworkers Link: https://ift.tt/jORd7c1 My best, Daniel Li https://ift.tt/jORd7c1 May 30, 2023 at 02:22AM

Show HN: Tiny – A 2D Game Engine in Kotlin Working with Lua https://ift.tt/vUHgkyR

Show HN: Tiny – A 2D Game Engine in Kotlin Working with Lua I created a small 2D game engine named Tiny. The engine was created using Kotlin Multiplatform and can run on a JVM and JS. Funny things: Games can be created using the programming language Lua. Tiny is designed to help you create and test your ideas quickly and effectively. Not only can you run your games on your desktop computer, but you can also export them for the web, making it easy to share your creations with others. You can create games easily with the hot reload, small API and Lua, which is very easy to learn. If you want to test a game idea, to try to create your first game or just have fun, give it a try to Tiny. https://ift.tt/m8tTDKU May 30, 2023 at 12:49AM

Show HN: Candydate – TikTok Meets Tinder but for Recruitment https://ift.tt/JBOv2Ul

Show HN: Candydate – TikTok Meets Tinder but for Recruitment HB here, sharing my first post ; ) I run a tech lab in the UK, and after several costly, poor hires over the years, we decided to build our own hiring tool with a focus on personality over skills. Here's the thing: resumes suck at showcasing personality! We've been using video and AI successfully and for quite some time to solve this problem. Now, we thought, why not spread the love? Especially if we can make it FREE for small businesses like ours? https://candydate.app , has the following goals: 1. Highlight true personalities using short videos, instead of relying on CVs or forms. 2. Employ AI to help rank applicants for each role, based on human factors and company culture. 3. Transform the selection process into something akin to scrolling through TikTok or using Tinder. Job seekers won't need to fill out forms, attach resumes, create an account or download anything. They just scan a QR code, record a short video, and they're done. It's truly simple! The aim was never to build an ATS (too complex for our needs) or a job listing site (there are many already). Instead, something simpler, to use wherever we already advertise vacancies, be it online or in print. We believe small businesses that lack recruitment tools (like we did) might appreciate it, although Candydate can certainly help businesses of all sizes. I have no idea how to launch or promote this type of tool, so any feedback or tips on spreading the word or improving the app would be immensely appreciated. Many thanks, HN! https://candydate.app May 29, 2023 at 08:04PM

Show HN: A weekly newsletter that explain tech terms in plain, everyday language https://ift.tt/xl2z0we

Show HN: A weekly newsletter that explain tech terms in plain, everyday language Hey there! As a software developer, I've always wished that my clients, managers, directors, and stakeholders could get a better grasp of programming. I know they can't become coding gurus overnight, but wouldn't it be awesome if they could at least understand terms like APIs, caching, and variables? I think it would make communication a whole lot smoother and help us have more meaningful conversations. I decided to create a newsletter that explains all these tech terms in super simple language! At first, I tried to make a newsletter just for my clients. I wanted to bridge the gap between tech-savvy folks like me and those who aren't as familiar with the ins and outs of programming. But then it hit me—why not make it available to everyone who wants to understand the tech world without having to learn how to code? So, I revamped it to cater to anyone who's curious about technology. Each edition of the newsletter focuses on a specific tech term or concept. We'll break it down, ditch the complicated jargon, and give you real-life examples that make it all crystal clear. My goal isn't to teach you programming (that's a whole different ball game). Instead, I want to give you the knowledge you need to have better conversations and a deeper understanding of the tech that shapes our world. So, whether you're an entrepreneur who wants to connect better with your tech team, a project manager looking to understand what the developers are talking about, or simply a tech enthusiast who wants to dive into the digital world, hop on board and let's make tech simple together! https://ift.tt/ALQTlCY May 29, 2023 at 06:36PM

Show HN: ProductLogz-Bridging the Feedback Gap with Rewards https://ift.tt/rmpfy2u

Show HN: ProductLogz-Bridging the Feedback Gap with Rewards Encourage and incentivize your users to provide valuable feedback. By rewarding their input, you create a win-win situation, where users feel appreciated while you gain valuable insights. https://ift.tt/jzGNFEc May 29, 2023 at 01:31PM

Sunday, May 28, 2023

Show HN: Cloud Agnostic AI Platform https://ift.tt/FVXRYtq

Show HN: Cloud Agnostic AI Platform Hi HN, I'm currently working on an AI platform for training and deployment. I'm working on early access with the early users. It would be great if people with AI/ML experience who are interested in a way to reduce their costs and increase their performance check it out! Thanks! https://inferent.io/ May 29, 2023 at 06:34AM

Show HN: A CLI for quickly generating 3D device mockups https://ift.tt/yZMzvHB

Show HN: A CLI for quickly generating 3D device mockups Device mockups usually require expensive and manual tools like Photoshop to generate. I was willing to sacrifice absolute quality for a tool that could do the job much faster. Mockupgen [0] generates a 3D perspective mockup from a screenshot. Using premade templates (from the amazing work of Anthony Boyd [1]) and opencv, it masks, warps and composites the provided image onto a device rendering. I'm working on expanding the selection of devices offered (mostly MacBook and iPhone at the moment), which is a matter of finding more sources of free to use PSD mockups. Currently, it doesn't do any handling of reflections and shadows, but this is in the works. Install with: pip install mockupgen And run with: mockupgen screenshot.png [0] https://ift.tt/W9ivlQC [1] https://ift.tt/zLcpuKJ https://ift.tt/W9ivlQC May 29, 2023 at 01:06AM

Show HN: Build your own ChatGPT with Mersei https://ift.tt/WXvz9x7

Show HN: Build your own ChatGPT with Mersei https://mersei.com May 28, 2023 at 11:39AM

Show HN: fastgron: A JSON to GRON Converter That's 40 Times Faster Than Gron https://ift.tt/ptiUPz8

Show HN: fastgron: A JSON to GRON Converter That's 40 Times Faster Than Gron Hello HN! I want to introduce fastgron, my new project. fastgron is a JSON to GRON converter, built to be incredibly fast – it's 40 times faster than Gron. GRON is a tool for making JSON greppable, but it can slow down with larger files. With fastgron, even a 200MB JSON file can be converted in just 1 second. Key features include streaming conversion for memory efficiency and an optimized path reconstruction for faster operations. It leverages C++ and the simdjson and fast_io libraries for speed. I welcome all feedback, suggestions, or questions. Thank you! https://ift.tt/bIQ2w0B May 28, 2023 at 05:36PM

Show HN: HNRelevant – Show related HN submissions in an integrated sidebar https://ift.tt/3GtQxgu

Show HN: HNRelevant – Show related HN submissions in an integrated sidebar While browsing Hacker News, I wished for an easier way to find related submissions (instead of googling and going back and forth). So I made this small chrome extension that automatically shows relevant submissions on page load. It's intergrated as a sidebar right in the page (for ease & native look), with customization options for fine control. It's based on HN algolia search API[1] and uses the submission title as its initial query with the ability to customize the query if you're not satisfied with the initial results. Originally, I took it as an opportunity to try my hands at creating a browser extension, but I was quite satisfied with the result and so I decided to release it. [1] HN algolia search API: https://ift.tt/PYHQsXl https://ift.tt/H6NrcoR May 28, 2023 at 03:23PM

Saturday, May 27, 2023

Show HN: No more copy-pasting – a ChatGPT plugin to read code from your computer https://ift.tt/kNQGc8O

Show HN: No more copy-pasting – a ChatGPT plugin to read code from your computer Introducing the Code ChatGPT Plugin - a new era of seamless interaction between ChatGPT and your codebase. This TypeScript Code Analyzer furnishes a suite of utilities to analyze TypeScript code, enabling ChatGPT to "talk" with YOUR code. Fetch a list of all the files in your project, list of every function in a TypeScript or JavaScript file, or even get the content of a specific function, all while staying in your conversation with ChatGPT. With accessible API endpoints, you can effortlessly navigate your codebase and ask ChatGPT anything you can think of about it. Say goodbye to the days of incessant copy-pasting and welcome a more streamlined code discussion experience . I'd love to hear your thoughts, experiences, and suggestions for improvement. Let's discuss and evolve this tool together! https://ift.tt/YeT75kG May 28, 2023 at 05:03AM

Show HN: MicroSCOPE https://ift.tt/mLrtAQG

Show HN: MicroSCOPE https://ift.tt/U2BrjqZ May 27, 2023 at 07:36PM

Show HN: RASCII, an advanced ASCII art generator made using Rust https://ift.tt/dUZANCT

Show HN: RASCII, an advanced ASCII art generator made using Rust https://ift.tt/zVhqJsn May 28, 2023 at 12:36AM

Friday, May 26, 2023

Show HN: Hacker News profile text can be used for prompt injection https://ift.tt/7DpPAIt

Show HN: Hacker News profile text can be used for prompt injection https://ift.tt/ndEsPum May 27, 2023 at 09:10AM

Show HN: Eludris, A free and open source, federated and E2EE chat platform https://ift.tt/ANmrtWK

Show HN: Eludris, A free and open source, federated and E2EE chat platform https://ift.tt/bYkw7hV May 27, 2023 at 01:38AM

Show HN: dotnet-console-games (40+ beginner-level coding project ideas) https://ift.tt/1B86z5H

Show HN: dotnet-console-games (40+ beginner-level coding project ideas) https://ift.tt/3L5hOV6 May 27, 2023 at 01:43AM

Show HN: Python Recursion: A Trampoline from the Mutual Head to the... https://ift.tt/BNsIvZK

Show HN: Python Recursion: A Trampoline from the Mutual Head to the... https://ift.tt/bDThJmc May 27, 2023 at 01:15AM

Show HN: I made an in-browser code editor with code replay and REPL https://ift.tt/GltUJbI

Show HN: I made an in-browser code editor with code replay and REPL I made a Logicboard.com — A collaborative code editor with code-replay feature. Code-replay lets you run the coding session like a movie, I wrote a blog post on how I implemented this: https://ift.tt/8RAEiGX You can try out the demo here: https://ift.tt/0oDPGRL And play around with the code editor here: https://ift.tt/byOUWQK Logicboard also has an REPL shell, just type "start()" and hit enter in the output area. https://ift.tt/CAk4m8t May 27, 2023 at 12:36AM

Thursday, May 25, 2023

Show HN: Find alternatives to a GH repo by replaceing “github” with “libhunt” https://ift.tt/ZrclEu2

Show HN: Find alternatives to a GH repo by replaceing “github” with “libhunt” https://ift.tt/jkLgiDE May 26, 2023 at 07:11AM

Show HN: Search Engine for Family Activities https://ift.tt/8xaAQu4

Show HN: Search Engine for Family Activities https://www.twkids.app May 26, 2023 at 05:59AM

Show HN: Tweets Sentiment Analysis with LLM https://ift.tt/huHqMTL

Show HN: Tweets Sentiment Analysis with LLM https://twitter.com/mikebb100/status/1661873548703715329 May 26, 2023 at 05:21AM

Show HN: Private instances are the secret sauce for Unleash https://ift.tt/nVPMx2K

Show HN: Private instances are the secret sauce for Unleash Hi HN, I want to share how important Private instances are for us, and how we build at Unleash. Hope you find this helpful and if you have any questions, ask away! In case you don't know - Unleash is an open source, enterprise-ready feature management solution built with privacy in mind. I would love to know your thoughts about this, and share your thoughts about Unleash or the way we build software. Questions about the setup are also welcome, if you would like to build something like this yourself! https://ift.tt/KRHnsBD May 25, 2023 at 11:30PM

Show HN: Searchable Astronomy Picture of the Day https://ift.tt/F9G68Ax

Show HN: Searchable Astronomy Picture of the Day Discover the cosmos by searching the APOD collection, powered by OpenAI text embedding based on the original image descriptions by NASA. https://ift.tt/cY4Ni2z May 26, 2023 at 02:02AM

Show HN: Hacker News in Slow Italian - AI-generated podcast (with code) https://ift.tt/bjpyRmA

Show HN: Hacker News in Slow Italian - AI-generated podcast (with code) There are plenty of podcasts to listen to some slow basic Italian, but often they just talk about random things I'm not that interested in. Nothing a few hours of tinkering with Python cannot solve these days! Introducing Hacker News in Slow Italian. Each episode is generated automatically, using GPT4 API to summarise the top articles on Hacker News and then fed to Play.ht for text-to-speech. The (very short) code is available on Github: https://ift.tt/7vC5ptr https://hn.lingually.ai May 25, 2023 at 10:28PM

Show HN: One-paragraph summaries of the most important news happenings on Earth https://ift.tt/1hLM8PH

Show HN: One-paragraph summaries of the most important news happenings on Earth https://ift.tt/drsAwLP May 26, 2023 at 01:02AM

Show HN: Collaborative recipe manager for iOS, built with SwiftUI and Firebase https://ift.tt/V7KhjFR

Show HN: Collaborative recipe manager for iOS, built with SwiftUI and Firebase I initially created Umami for my family. We'd been using a giant google sheet of recipes that my wife made (one recipe per tab plus a table of contents at the front), but the UX of that left much to be desired, especially on mobile. We also tried a bunch of other recipe apps like Paprika, Whisk, Mela, etc., but most of them don't let you create a shared collection of recipes without using the same login credentials, which we didn't want to share with extended family members. Anyways, I've steadily been working on Umami as a solo side project for about 3 years. At first, just my family and a few friends were using it, but now it's starting to get downloaded by other people. I'd love to get feedback here on what kinds of features would be helpful to y'all. Also happy to answer any questions about the tech stack. Thanks friends! https://ift.tt/BF6c3Rd May 25, 2023 at 11:07PM

Show HN: Course: What Is Outbound Sales Why Is It Important? https://ift.tt/Zr1slRI

Show HN: Course: What Is Outbound Sales Why Is It Important? https://ift.tt/SBfAwXv May 25, 2023 at 02:26PM

Wednesday, May 24, 2023

Show HN: Create a talent/services marketplace without code https://ift.tt/fiIUwyW

Show HN: Create a talent/services marketplace without code Hi HN We are building a platform that allows anyone to create a custom talent marketplace inside your network. Think of it as Shopify but for talent : ) You can create your own board (store) in minutes, customise and invite your talent. Everything else works our of the box: profiles, matching requests and talent, support, payments, collaboration. The best part is that you make 3-10% every time someone is hired inside your board. You can use it with a link or embed inside your product/community/website. We already have YC startups like Memberstack - https://ift.tt/Of1mtDB among early users. The short backstory: we have originally started Heep as a marketplace for webflow/bubble developers and quickly realised that there are ton of new, niche, emerging professions. So instead of building another talent marketplace we decided to pivot and build a platform to for others to build on top. Our vision is to support any (even the most crazy) emerging talent/services use-cases: if there is a supply and demand for it we wan to help support it. It's currently in early beta and we are looking for feedback and community leaders interested in trying Heep (I will personally onboard you to the product and help you launch your board). Also here for any AMA https://heep.so/?b=yes May 25, 2023 at 04:31AM

Show HN: My word game now has GPT-4 generated poetry https://ift.tt/SW8vGMh

Show HN: My word game now has GPT-4 generated poetry Hi! I just added a new feature to my daily word game https://squareword.org that I though you may find interesting. The game consists of a puzzle of 5x5 letters containing 10 words, that need to be revealed by guessing 5 letter words. Now, once the player has solved the puzzle, they are presented with a poem containing some of these words, generated by GPT-4. Here is an example from a few days ago: https://twitter.com/SquareWordOrg/status/1660702885154377730 While the poems do not always make complete sense and are somewhat whimsical, I am quite impressed by the ability of the model to create an often coherent, rhyming poem from the disparate words. It gives me some extra motivation to solve the daily puzzle! https://squareword.org May 25, 2023 at 03:05AM

Show HN: FarProbe – Access Logic Analyzers from the Browser https://ift.tt/noyERb2

Show HN: FarProbe – Access Logic Analyzers from the Browser FarProbe is a web application that connects to some of the most popular logic analyzers (Saleae, USBee, and their clones) from the browser and streams data to the cloud. Open a Chromium-based browser (even on an Android or ChromeBook), plug in the analyzer, and its data can be streamed over USB to the browser for analysis. After generating a link, the data can be stored on our server or live-streamed to another user. If you don't have the hardware, check out the demo video we prepared for YC over a month ago, we're now live: https://youtu.be/QVoLbB5LAr4 Why did we start it? Often enough I worked on my hardware projects while on the go. Traveling to clients, staying in hotel rooms, I missed a simple tool that allowed me to see what is going on, diagnose it and iterate on the go. I have also seen that problem in the other direction - most recently, I was hybrid-working on electric aircraft avionics, sometimes with the aircraft on the other side of the US. Frequently I had to call some on-site engineers to connect some instruments and screen-share, file-share, send screenshots, etc., to give me a glimpse of the elusive GPS-related bug I was hunting down. What can FarProbe do today? Bare minimum - we like to build in public and want to see where the community needs lead us! You can use a logic analyzer locally, send a link to someone else to capture data for you remotely, you can run long-term acquisitions on our cloud - and export to PulseView for further analysis. You can also invite your colleagues to look at your issue without installing anything new. How does it work? It's a data-intensive WebUSB application written in Rust, both client and server-side. On Linux (Android, Chrome OS) and OSX, we are able to stream ~24MB/s, compress it (most of the time, the signal doesn't change) and send over to our servers. On Windows, we are limited to ~8MB/s, there is a bug in Chromium's WebUSB windows stack that we're thinking about a good way to resolve. What do we want to do in the future? Support more hardware (Oscilloscopes? Any favorite devices you really wished for had better software support?); Implement protocol decoders (also in the cloud); Implement device emulators and test fixtures. Overall - we want to be the software company that gets hardware - and implements the companion software well. https://farprobe.com May 25, 2023 at 02:07AM

Show HN: Mount Unix system into Common Lisp image https://ift.tt/ilhPYD6

Show HN: Mount Unix system into Common Lisp image https://ift.tt/ZTtCSNy May 25, 2023 at 02:04AM

Show HN: I made a Chrome extension to hide history in ChatGPT https://ift.tt/9luZKE1

Show HN: I made a Chrome extension to hide history in ChatGPT https://ift.tt/DVx2gX5 May 24, 2023 at 04:45PM

Show HN: iCal RSVP Helper https://ift.tt/O3n4C6U

Show HN: iCal RSVP Helper Hi HN, We use HEY for Work at my startup, which doesn't have a calendar integration. This is mostly fine, as we can simply use our private calendars, but has a major drawback: We can't reply to invitations in an easy way. I made this microsite to help with this problem until they implement simple Yes/No/Tentative buttons in HEY. It's fully client-side, and gives you the ICS-file you need to attach in an email, and the correct address it needs to be sent to as well - just select your file and RSVP. Hope it's useful for someone else too! https://rsvp.klungo.no/ May 24, 2023 at 12:49PM

Show HN: Defguard – open-source security army knife (Identity,MFA,VPN,Yubikey) https://ift.tt/7zM8cYa

Show HN: Defguard – open-source security army knife (Identity,MFA,VPN,Yubikey) https://ift.tt/FIOm3s5 May 24, 2023 at 03:57PM

Show HN: Dark Mode for HN https://ift.tt/hrVaD3z

Show HN: Dark Mode for HN https://ift.tt/UMjsl8S May 24, 2023 at 02:11PM

Show HN: C.O.R.E – Opensource, user owned, shareable memory for Claude, Cursor https://ift.tt/VogWu3E

Show HN: C.O.R.E – Opensource, user owned, shareable memory for Claude, Cursor Hi HN, I keep running in the same problem of each AI app “rem...