Sunday, October 1, 2023

Show HN: Stargazers Reloaded – LLM-Powered Analyses of Your GitHub Community https://ift.tt/bGE6v0g

Show HN: Stargazers Reloaded – LLM-Powered Analyses of Your GitHub Community Hey friends! We have built an app for getting insights about your favorite GitHub community using large language models. The app uses LLMs to analyze the GitHub profiles of users who have starred the repository, capturing key details like the topics they are interested in. It takes screenshots of the stargazer's GitHub webpage, extracts text using an OCR model, and extracts insights embedded in the extracted text using LLMs. This app is inspired by the “original” Stargazers app written by Spencer Kimball (CEO of CockroachDB). While the original app exclusively used the GitHub API, this LLM-powered app built using EvaDB additionally extracts insights from unstructured data obtained from the stargazers’ webpages. Our analysis of the fast-growing GPT4All community showed that the majority of the stargazers are proficient in Python and JavaScript, and 43% of them are interested in Web Development. Web developers love open-source LLMs! We found that directly using GPT-4 to generate the “golden” table is super expensive — costing $60 to process the information of 1000 stargazers. To maintain accuracy while also reducing cost, we set up an LLM model cascade in a SQL query, running GPT-3.5 before GPT-4, that lowers the cost to $5.5 for analyzing 1000 GitHub stargazers. We’ve been working on this app for a month now and are excited to open source it today :) Some useful links: * Blog Post - https://ift.tt/VAGmpxN... * GitHub Repository - https://ift.tt/0j1Th6b * EvaDB - https://ift.tt/Ql6sATr Please let us know what you think! September 30, 2023 at 09:15PM

Saturday, September 30, 2023

Show HN: kproximate – A Kubernetes node autoscaler for Proxmox https://ift.tt/2cgGRWe

Show HN: kproximate – A Kubernetes node autoscaler for Proxmox https://ift.tt/kSC2zl9 September 30, 2023 at 02:40PM

Show HN: Integrate Discord with Jira https://ift.tt/KAiIBFf

Show HN: Integrate Discord with Jira Looks like growing number of companies are adopting Discord as their communication platform (instead of Slack or Teams). I've developed this integration between Discord and Jira and it is much more popular than I expected. By the way I continue improving it, so feedback and insights are very welcome! https://ift.tt/M0wL2OD September 30, 2023 at 02:07PM

Show HN: Raiseto – Discover and Share Ideas https://ift.tt/4hONvt6

Show HN: Raiseto – Discover and Share Ideas https://raiseto.com/ September 30, 2023 at 05:46AM

Show HN: A C++ dump func. that can print multi-D vectors, maps, tuples, and all https://ift.tt/lGp2bLN

Show HN: A C++ dump func. that can print multi-D vectors, maps, tuples, and all https://ift.tt/TWcIxDC September 30, 2023 at 09:07AM

Show HN: Dolce – Get notified if something (bad) happens to your containers https://ift.tt/0KsStHJ

Show HN: Dolce – Get notified if something (bad) happens to your containers Hi HN, while I was on vacation this year the shop of my wife was suddenly down and we only noticed once the emails of customers rolled in. After fixing it on my phone I thought there has to be a better way to notice when your docker container die or are in a restart loop for whatever reason. Now I know there are lots of tools like healthcheck.io and monocker, however none seemed to match my simple use case of getting notified _via email_ when the running– or health-status of any docker container changes. So I did what every SE would do in that case and hacked another solution but this one is mine :). I also always wanted to do a project with deno and get up to speed on typescript. This was also a great reason to finally look into using GitHub Actions to automate some of the tedious tasks. Fun fact: After reading on here about Deno Queues, I rewrote the message buffering and backoff completely and could greatly simplify the code. TL;DR - What is this: Get notification via - EMail (BYOSMTP) - Discord - Telegram if any (or only selected) containers on your host die or change their health status. I also tried to handle unexpected restarts of the container the tool is running in gracefully without loosing any events that happened before and even while the service was down. To make sure you are not spammed by notifications if a container goes into a restart loop, there is also a configurable exponential backoff function. I tried to make using the tool as easy as possible (by getting inspired on how monocker is set up). I would love to get some feedback and hear what you think (also if I just missed the perfect tool for the job: let me know, however the journey was quite fun). https://ift.tt/YPVeLzs September 29, 2023 at 11:11PM

Show HN: PDF Debugger – Inspect Structure of PDF Files https://ift.tt/tXOcm50

Show HN: PDF Debugger – Inspect Structure of PDF Files https://pdf.hyzyla.dev/ September 30, 2023 at 02:37AM

Show HN: LookAway, a Mac break reminder that knows when not to interrupt https://ift.tt/wrZbBMy

Show HN: LookAway, a Mac break reminder that knows when not to interrupt Hello, I'm Kushagra and I am the indie developer behind LookAwa...