The best Hacker News stories from Show from the past day
Latest posts:
Show HN: Get your entire ChatGPT history in Markdown files
This is just a small thing I coded to help me see my entire convo history in beautiful markdown, in Obsidian (my note-taking app).<p>[Link to Github repo](<a href="https://github.com/mohamed-chs/chatgpt-history-export-to-md">https://github.com/mohamed-chs/chatgpt-history-export-to-md</a>).<p>The Python script helps you to convert conversations extracted from ChatGPT (ZIP export all your data, sent by Openai) into neatly formatted Markdown files.<p>Also adds YAML metadata headers and includes Code interpreter (Advanced data analysis) intput / output code.<p>Feel free to fork the repo and implement your own improvements, I feel like there's alot more to be extracted from the data. Any feedback or contributions are welcome !<p>I found chrome extensions to be a bit slow and sometimes overkill for this, although I did enjoy the folder system in some of them.<p>[Link to first post](<a href="https://www.reddit.com/r/ChatGPT/comments/16k1ub5/i_made_a_simple_chatgpt_history_to_markdown/" rel="nofollow noreferrer">https://www.reddit.com/r/ChatGPT/comments/16k1ub5/i_made_a_s...</a>)
Show HN: Get your entire ChatGPT history in Markdown files
This is just a small thing I coded to help me see my entire convo history in beautiful markdown, in Obsidian (my note-taking app).<p>[Link to Github repo](<a href="https://github.com/mohamed-chs/chatgpt-history-export-to-md">https://github.com/mohamed-chs/chatgpt-history-export-to-md</a>).<p>The Python script helps you to convert conversations extracted from ChatGPT (ZIP export all your data, sent by Openai) into neatly formatted Markdown files.<p>Also adds YAML metadata headers and includes Code interpreter (Advanced data analysis) intput / output code.<p>Feel free to fork the repo and implement your own improvements, I feel like there's alot more to be extracted from the data. Any feedback or contributions are welcome !<p>I found chrome extensions to be a bit slow and sometimes overkill for this, although I did enjoy the folder system in some of them.<p>[Link to first post](<a href="https://www.reddit.com/r/ChatGPT/comments/16k1ub5/i_made_a_simple_chatgpt_history_to_markdown/" rel="nofollow noreferrer">https://www.reddit.com/r/ChatGPT/comments/16k1ub5/i_made_a_s...</a>)
Show HN: ChatGPT for Med-School and Healthcare
LLM Agent Paper List
The most comprehensive repo out there with all the updated must-read papers for LLM Agents<p>From the repo - "We start by the general conceptual framework for LLM-based agents: comprising three main components: brain, perception, and action, and the framework can be tailored to suit different applications."
Show HN: A “CRM” for personal relationships
Android: <a href="https://play.google.com/store/apps/details?id=com.spreadvk.elim">https://play.google.com/store/apps/details?id=com.spreadvk.e...</a><p>iOS: <a href="https://apps.apple.com/us/app/the-new-elim/id6463781107" rel="nofollow noreferrer">https://apps.apple.com/us/app/the-new-elim/id6463781107</a><p>We know life can be busy. And we often struggle to make time for the people that matter most to us.<p>According to a Harvard study from 2021, "36% of all Americans [...] feel “serious loneliness.”" [1]<p>We created an app to help people focus on their most personal relationships and guide them through forming more meaningful connections with them, in the hopes to combat the "Loneliness Epidemic".<p>We just launched the first iteration - call it an MVP if you like - something to validate our ideas and get the conversation started.<p>We are looking for people to try out what we have built and share their thoughts. The functionality is very basic for now, but we are planning to expand based on our users' feedback.<p>Here is what you can do today:<p>* Tell us who the people are that matter most to you<p>* Get daily reminders to reach out to them<p>* Send them virtual postcards with over 50 handcrafted designs<p>[1] <a href="https://mcc.gse.harvard.edu/reports/loneliness-in-america" rel="nofollow noreferrer">https://mcc.gse.harvard.edu/reports/loneliness-in-america</a>
Show HN: A “CRM” for personal relationships
Android: <a href="https://play.google.com/store/apps/details?id=com.spreadvk.elim">https://play.google.com/store/apps/details?id=com.spreadvk.e...</a><p>iOS: <a href="https://apps.apple.com/us/app/the-new-elim/id6463781107" rel="nofollow noreferrer">https://apps.apple.com/us/app/the-new-elim/id6463781107</a><p>We know life can be busy. And we often struggle to make time for the people that matter most to us.<p>According to a Harvard study from 2021, "36% of all Americans [...] feel “serious loneliness.”" [1]<p>We created an app to help people focus on their most personal relationships and guide them through forming more meaningful connections with them, in the hopes to combat the "Loneliness Epidemic".<p>We just launched the first iteration - call it an MVP if you like - something to validate our ideas and get the conversation started.<p>We are looking for people to try out what we have built and share their thoughts. The functionality is very basic for now, but we are planning to expand based on our users' feedback.<p>Here is what you can do today:<p>* Tell us who the people are that matter most to you<p>* Get daily reminders to reach out to them<p>* Send them virtual postcards with over 50 handcrafted designs<p>[1] <a href="https://mcc.gse.harvard.edu/reports/loneliness-in-america" rel="nofollow noreferrer">https://mcc.gse.harvard.edu/reports/loneliness-in-america</a>
Show HN: TG – Fast geometry library for C
Show HN: TG – Fast geometry library for C
Show HN: I rewrote the 1990's LambdaMOO server
I got my start on the Internet in the very early 90s playing with, authoring in, and programming on LambdaMOO (<a href="https://en.wikipedia.org/wiki/LambdaMOO" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/LambdaMOO</a>) and similar systems. Shared virtual social spaces, with a persistent object oriented authoring / scripting language. They can be classified as MUDs (depending on who you talk to) but the focus is social, creative / authoring, and shared programming not RPG gaming.<p>I've always wanted to see this kind of thing modernized and further developed. Over the last 25 years or so I've worked on similar but novel & improved things, but never finished.<p>So I decided to just re-implement LambdaMOO and use that as a base, instead and keep compatibility as a goal, but build it out on a more modern foundation that takes advantage of multiple core machines, newer network protocols, newer connectivity methods, uses MVCC transactions for the shared database etc.<p>LambdaMOO is a somewhat extensive system in that it is composed of compiler, a virtual machine, an object database, user permissions system, network runtime. In some ways it's kind of like a shared, text-based Smalltalk image/runtime... So quite a bit to implement and get right before it all works together.<p>The big challenge throughout has been slavishly maintaining backwards compatibility so existing "cores" (databases) work.<p>It's not done, but it's darn close. Would like for people who are into this kind of thing to check it out, and maybe even help.<p>Many of the technical aspects here are still provisional, but this is the start. Constructive assistance welcome.<p>(Yes, it's a rewrite in Rust, but that's not really the point, even though that's a cliche that's fun.)
Show HN: I rewrote the 1990's LambdaMOO server
I got my start on the Internet in the very early 90s playing with, authoring in, and programming on LambdaMOO (<a href="https://en.wikipedia.org/wiki/LambdaMOO" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/LambdaMOO</a>) and similar systems. Shared virtual social spaces, with a persistent object oriented authoring / scripting language. They can be classified as MUDs (depending on who you talk to) but the focus is social, creative / authoring, and shared programming not RPG gaming.<p>I've always wanted to see this kind of thing modernized and further developed. Over the last 25 years or so I've worked on similar but novel & improved things, but never finished.<p>So I decided to just re-implement LambdaMOO and use that as a base, instead and keep compatibility as a goal, but build it out on a more modern foundation that takes advantage of multiple core machines, newer network protocols, newer connectivity methods, uses MVCC transactions for the shared database etc.<p>LambdaMOO is a somewhat extensive system in that it is composed of compiler, a virtual machine, an object database, user permissions system, network runtime. In some ways it's kind of like a shared, text-based Smalltalk image/runtime... So quite a bit to implement and get right before it all works together.<p>The big challenge throughout has been slavishly maintaining backwards compatibility so existing "cores" (databases) work.<p>It's not done, but it's darn close. Would like for people who are into this kind of thing to check it out, and maybe even help.<p>Many of the technical aspects here are still provisional, but this is the start. Constructive assistance welcome.<p>(Yes, it's a rewrite in Rust, but that's not really the point, even though that's a cliche that's fun.)
Show HN: I rewrote the 1990's LambdaMOO server
I got my start on the Internet in the very early 90s playing with, authoring in, and programming on LambdaMOO (<a href="https://en.wikipedia.org/wiki/LambdaMOO" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/LambdaMOO</a>) and similar systems. Shared virtual social spaces, with a persistent object oriented authoring / scripting language. They can be classified as MUDs (depending on who you talk to) but the focus is social, creative / authoring, and shared programming not RPG gaming.<p>I've always wanted to see this kind of thing modernized and further developed. Over the last 25 years or so I've worked on similar but novel & improved things, but never finished.<p>So I decided to just re-implement LambdaMOO and use that as a base, instead and keep compatibility as a goal, but build it out on a more modern foundation that takes advantage of multiple core machines, newer network protocols, newer connectivity methods, uses MVCC transactions for the shared database etc.<p>LambdaMOO is a somewhat extensive system in that it is composed of compiler, a virtual machine, an object database, user permissions system, network runtime. In some ways it's kind of like a shared, text-based Smalltalk image/runtime... So quite a bit to implement and get right before it all works together.<p>The big challenge throughout has been slavishly maintaining backwards compatibility so existing "cores" (databases) work.<p>It's not done, but it's darn close. Would like for people who are into this kind of thing to check it out, and maybe even help.<p>Many of the technical aspects here are still provisional, but this is the start. Constructive assistance welcome.<p>(Yes, it's a rewrite in Rust, but that's not really the point, even though that's a cliche that's fun.)
Show HN: Tome, aka Tom's Editor – a new command-line text editor
Show HN: Tome, aka Tom's Editor – a new command-line text editor
Show HN: Rapidpages – OSS alternative to vercel's v0
Hey everyone,<p>Really excited to share what I've been working on. Rapidpages is a prompt-first online IDE, think midjourney for front-end developers. I've been working on this for a while and it's great to see some interest from companies like Vercel in this space.<p>All you need for self-hosting is an OpenAI key and a GitHub oauth app. Simply clone the repo and play with it. It's also available on the cloud at www.rapidpages.io<p>Please give it a try and let me know if you have any feedback, and if you like what I'm doing with Rapidpages, please give it a star on GitHub.<p>Thanks!
Show HN: Rapidpages – OSS alternative to vercel's v0
Hey everyone,<p>Really excited to share what I've been working on. Rapidpages is a prompt-first online IDE, think midjourney for front-end developers. I've been working on this for a while and it's great to see some interest from companies like Vercel in this space.<p>All you need for self-hosting is an OpenAI key and a GitHub oauth app. Simply clone the repo and play with it. It's also available on the cloud at www.rapidpages.io<p>Please give it a try and let me know if you have any feedback, and if you like what I'm doing with Rapidpages, please give it a star on GitHub.<p>Thanks!
Show HN: Rapidpages – OSS alternative to vercel's v0
Hey everyone,<p>Really excited to share what I've been working on. Rapidpages is a prompt-first online IDE, think midjourney for front-end developers. I've been working on this for a while and it's great to see some interest from companies like Vercel in this space.<p>All you need for self-hosting is an OpenAI key and a GitHub oauth app. Simply clone the repo and play with it. It's also available on the cloud at www.rapidpages.io<p>Please give it a try and let me know if you have any feedback, and if you like what I'm doing with Rapidpages, please give it a star on GitHub.<p>Thanks!
Show HN: Learn piano without sheet music
I always found sheet music way too hard to read - and I literally spent a year at a company building a sheet music rendering engine. I wanted an app that would display music like the tutorials on YouTube, but not be focused on upselling lessons etc. like most current apps, and also would let me import my own files<p>This works on MIDI files. If it’s a valid midi it probably plays.<p>Since releasing, I did add a subscription for classical music - on a theory that most normal users don’t know what a midi file is. It changed about a month ago from an up front price to in app purchases and/or a subscription - which has absolutely tanked revenue so far - but maybe it will pick up<p>Would love to hear your thoughts and if you have any suggestions!
Show HN: Learn piano without sheet music
I always found sheet music way too hard to read - and I literally spent a year at a company building a sheet music rendering engine. I wanted an app that would display music like the tutorials on YouTube, but not be focused on upselling lessons etc. like most current apps, and also would let me import my own files<p>This works on MIDI files. If it’s a valid midi it probably plays.<p>Since releasing, I did add a subscription for classical music - on a theory that most normal users don’t know what a midi file is. It changed about a month ago from an up front price to in app purchases and/or a subscription - which has absolutely tanked revenue so far - but maybe it will pick up<p>Would love to hear your thoughts and if you have any suggestions!
Show HN: Learn piano without sheet music
I always found sheet music way too hard to read - and I literally spent a year at a company building a sheet music rendering engine. I wanted an app that would display music like the tutorials on YouTube, but not be focused on upselling lessons etc. like most current apps, and also would let me import my own files<p>This works on MIDI files. If it’s a valid midi it probably plays.<p>Since releasing, I did add a subscription for classical music - on a theory that most normal users don’t know what a midi file is. It changed about a month ago from an up front price to in app purchases and/or a subscription - which has absolutely tanked revenue so far - but maybe it will pick up<p>Would love to hear your thoughts and if you have any suggestions!
Show HN: Paisa – Open-Source Personal Finance Manager
I have been using plaintext accounting for some time and had a duct-taped together reporting system. Paisa is my latest attempt at making it usable for others.<p>I am interested in knowing what people normally want to understand about their finances<p>PS: Please avoid editing the demo data. Download and run locally if you want to edit.