This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Saturday, February 25, 2023
Show HN: Rent Engineers – Freelance professional engineers directory https://ift.tt/rEg2pxo
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/nOUEAZG February 26, 2023 at 06:12AM
Show HN: AI Files – manage and organize your files with AI https://ift.tt/AyKNSca
Show HN: AI Files – manage and organize your files with AI https://ift.tt/GDJdQKE February 26, 2023 at 07:19AM
Show HN: Interviewing Ronald Reagan in 2023 Using AI (ChatGPT and ElevenLabs) https://ift.tt/BXQ6rU8
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/HZ6pPtx
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/oXgG7jd https://ift.tt/cEIM1eV February 25, 2023 at 08:40PM
Show HN: 138 Generative AI tools for images, text, videos, code, audio, and 3D https://ift.tt/g7bV5cd
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: Deon.land – Deno.land? https://ift.tt/GrLdBsT
Show HN: Deon.land – Deno.land? After yesterday's release of Deno with package.json support[0] some discussions about how Deno handles dependencies have been coming up again. Since Deno's inception, I've mostly been watching it from the sidelines, dabbling a bit with it, and mostly been considering it a fad that will die out sooner or later. Ultimately, with the new package.json support nothing really changed regarding the dependency management story of Deno. It's still as awful as ever. Prompted by some discussions, I decided I would try to test how easy it would be to mount a typo-domain supply chain attack. And as expected, it's about as easy as buying a domain and setting up a Cloudflare Worker (which isn't any harder than setting up Deno Deploy). And voila, for importing your favorite dependency, just copy-past the following snippet into your code (which after all is how you include dependencies in Deno): ``` import * as flat from "https://ift.tt/M6bI7SL"; ``` Which is virtually indistinguishable from what you'll find here[1]: ``` import * as flat from "https://ift.tt/vqJF3zr"; ``` (I swear, nothing bad will happen!) ------- Typo supply-chain attack aren't anything new. They are probably the most popular attack type on package managers (and their registries) in the past few years. This one is just slightly different because it is even worse, because unlike a moderated[2] registry like npmjs.com, this can't be easily taken down to reduce the exposure of developers to it. While this is just a fun little gag, the Deno teams stance on security is not so funny. While Deno has a few minimal security options nowadays, such as subresource integrity for a deno.json, you have to actively seek them out, and most project's don't even use a deno.json. Deno is creating a ecosystem with bad security defaults (with a community rejecting efforts towards them), to have a "simpler" system. They prioritize onboarding new developers over the security needs of the users of the services that those developers will build. I don't think that's okay. So, go ahead and have fun: Replace deno.land with deon.land in every import you want. Deno won't stop you! :) [0]: https://ift.tt/Zhi4Dvq [1]: https://ift.tt/vqJF3zr [2]: https://ift.tt/I0sPtiV February 25, 2023 at 08:56PM
Show HN: LeanCreator – a stripped-down QtCreator for C/C++, LeanQt and BUSY https://ift.tt/s5nqVhB
Show HN: LeanCreator – a stripped-down QtCreator for C/C++, LeanQt and BUSY https://ift.tt/SIzJV30 February 25, 2023 at 07:19PM
Show HN: Cross-Prompt Scripting https://ift.tt/1D3tFPu
Show HN: Cross-Prompt Scripting https://ift.tt/JgeifvP February 25, 2023 at 03:22PM
Show HN: Lotus Reader: A Hacker News Client https://ift.tt/oQ4tmLH
Show HN: Lotus Reader: A Hacker News Client https://ift.tt/o3IgjKk February 25, 2023 at 11:40AM
Show HN: I built a map of countries where Google Analytics is declared illegal https://ift.tt/JQ7P6Um
Show HN: I built a map of countries where Google Analytics is declared illegal https://ift.tt/Oum6KwG February 25, 2023 at 03:29PM
Friday, February 24, 2023
Show HN: Atlantis workflow without a backend https://ift.tt/vJrUs62
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/os1Aav7 February 25, 2023 at 02:32AM
Show HN: CloudNative Linux – A shell experience for the cloud https://ift.tt/cWt9o7I
Show HN: CloudNative Linux – A shell experience for the cloud https://ift.tt/aIJKMQ1 February 25, 2023 at 12:45AM
Thursday, February 23, 2023
Show HN: Google's New ML Algorithm for Unlabeled Data https://ift.tt/YcCxTfz
Show HN: Google's New ML Algorithm for Unlabeled Data https://ift.tt/wMAhIGj February 24, 2023 at 01:04AM
Show HN: SMS to Slack streamlines receiving 2FA codes for teams who share logins https://ift.tt/SZKpcw1
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/t6oV2UT
Show HN: Parallax wallpaper engine for Linux and Windows https://ift.tt/SWajD7z February 23, 2023 at 10:52PM
Show HN: Xc – A Markdown Defined Task Runner https://ift.tt/jpc58Gr
Show HN: Xc – A Markdown Defined Task Runner https://ift.tt/7m1e5ka February 23, 2023 at 08:15PM
Show HN: Infinite Logo Maker https://ift.tt/woIMdeO
Show HN: Infinite Logo Maker https://ift.tt/fq9uJvk February 23, 2023 at 04:20PM
Show HN: IngestAI – NoCode ChatGPT-bot creator from your knowledge base in Slack https://ift.tt/0ANUajM
Show HN: IngestAI – NoCode ChatGPT-bot creator from your knowledge base in Slack https://ingestai.io February 23, 2023 at 06:30PM
Wednesday, February 22, 2023
Show HN: IaSQL beta – cloud infra as data in PostgreSQL https://ift.tt/vmGBV3S
Show HN: IaSQL beta – cloud infra as data in PostgreSQL https://ift.tt/cqRx8p6 February 22, 2023 at 11:33PM
Show HN: Write – a distraction-free text editor to improve your writing skills https://ift.tt/u2ZXnqc
Show HN: Write – a distraction-free text editor to improve your writing skills https://ift.tt/OTSev2c February 22, 2023 at 11:11PM
Show HN: AskHN https://ift.tt/AhZxVNp
Show HN: AskHN https://ift.tt/EBAKMG1 February 22, 2023 at 09:39PM
Show HN: Liftosaur – Weightlifting tracker app for coders https://ift.tt/aiN3SBX
Show HN: Liftosaur – Weightlifting tracker app for coders I made a weightlifting tracker app specifically for coders. In weightlifting, progressive overload is one of the most important parts of gaining muscle. You should constantly increase weights, reps, use different set schemes, and that will make your muscles grow. There're many weightlifting programs, using various overloading schemes - linear increasing of weights, some periodic ladder-up increase, switching to different set schemes in case of failures, etc. You can implement all of that in Liftosaur. It works this way: each exercise may define a bunch of variables, that could be changed when you finish a workout. It could be weight, your 1 rep max, number of successful attempts, etc. You can use those variables in reps and weight values. To update the variables, you define a script, that will change them after you've done all the sets of the exercise. The script may change them based on whether you successfully done all the sets x reps, or if you failed any of the sets. For scripting, I added a super simple scripting language with JavaScript-like syntax called Liftoscript. It mostly only supports if/else, variable setting, and has some built-in types like numbers, pounds and kilograms. The app contains a bunch of built-in programs, they all are implemented using Liftoscript, and completely customizable. Check it out! https://ift.tt/to3Ic1x February 22, 2023 at 08:34PM
Show HN: Starter.place – Gumroad for Starter Repos https://ift.tt/EjgoQ2W
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/TOxqizY February 22, 2023 at 01:40PM
Show HN: Lost Pixel Platform – visual regression testing for your front end https://ift.tt/s8JT4VD
Show HN: Lost Pixel Platform – visual regression testing for your front end https://lost-pixel.com February 22, 2023 at 05:02PM
Tuesday, February 21, 2023
Show HN: Strada – Embed accounting automation with one API https://ift.tt/s2ELtYX
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/KGn6JzX February 22, 2023 at 03:58AM
Show HN: Phind.com – Generative AI search engine for developers https://ift.tt/F6x18Zk
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/uDMAnZX... . 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/hoQ0vW2... https://ift.tt/xlhOtY9... https://ift.tt/GoPJiuz https://ift.tt/dEGoKhJ... https://ift.tt/P6xaZiM... Discord: https://ift.tt/uADbzvi https://phind.com February 21, 2023 at 11:26PM
Monday, February 20, 2023
Show HN: Small TypeScript library to work with quadkeys in a fast way https://ift.tt/n1dghjL
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/K6dLaCP ). 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/mGbsdWK February 21, 2023 at 06:51AM
Show HN: Turn Your Pandas Dataframe into a Tableau-Style UI for Visual Analysis https://ift.tt/jlbu1Et
Show HN: Turn Your Pandas Dataframe into a Tableau-Style UI for Visual Analysis Hey, guys. I've just made a plugin which turns your pandas dataframe into a tableau-style component. It allows you to explore the dataframe with easy drag-and-drop UI. You can use PyGWalker in Jupyter, Google Colab, or even Kaggle Notebook to easily explore your data and generate interactive visualizations. PyGWalker (pronounced like "Pig Walker", just for fun) is named as an abbreviation of "Python binding of Graphic Walker". Here are some links to check it out: The Github Repo: https://ift.tt/Moc0G9H Use PyGWalker in Kaggle: https://ift.tt/uak9Wo6 Feedback and suggestions are appreciated! Please feel free to try it out and let me know what you think. Thanks for your support! https://ift.tt/Moc0G9H February 20, 2023 at 09:20PM
Show HN: Whisper.cpp and YAKE to Analyse Voice Reflections [iOS] https://ift.tt/JA3X9Sm
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/34cOvT0 [1] YAKE: https://ift.tt/ft8uJmF https://ift.tt/fC1pQ0W February 20, 2023 at 08:38PM
Show HN: Replbuilder, quickly build a Python REPL CLI prompt https://ift.tt/QX6K1Ud
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/ECcIMQ8 February 20, 2023 at 11:34AM
Show HN: Replicad, the Library for CAD in the Browser https://ift.tt/4bGXzVW
Show HN: Replicad, the Library for CAD in the Browser https://replicad.xyz/ February 20, 2023 at 06:25PM
Show HN: ProtoCURL, a curl for Protobuf https://ift.tt/jTNLuAS
Show HN: ProtoCURL, a curl for Protobuf https://ift.tt/hzYmQRw February 20, 2023 at 01:48PM
Show HN: Visualize Wikipedia on an Interactive Map https://ift.tt/fKkwzh2
Show HN: Visualize Wikipedia on an Interactive Map https://ift.tt/ETFgVQo 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/bJ4r7L8
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/5wKa4LH February 20, 2023 at 05:34AM
Saturday, February 18, 2023
Show HN: A tool that turns unstructured transcripts into queryable SQL and JSON https://ift.tt/zF3sNCE
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/d57LJva February 19, 2023 at 12:24AM
Show HN: Sora, Personal Publishing Platform https://ift.tt/JvOgBj9
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/MRw3Jb2 ), 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: voici.js – A Node.js lib for pretty printing your data on the terminal https://ift.tt/B9vJfNM
Show HN: voici.js – A Node.js lib for pretty printing your data on the terminal https://ift.tt/9a3G5P8 February 19, 2023 at 02:31AM
Show HN: An open source, modern CSV importer tool in React https://ift.tt/3YPt2fc
Show HN: An open source, modern CSV importer tool in React https://ift.tt/ygLmaT5 February 19, 2023 at 02:16AM
Show HN: Paul Graham Essays, Searchable https://ift.tt/9Gr32tv
Show HN: Paul Graham Essays, Searchable https://ift.tt/TrGV8QE February 18, 2023 at 11:31PM
Show HN: 2023 Market Outlooks, Searchable https://ift.tt/z8RqYs4
Show HN: 2023 Market Outlooks, Searchable every year the big banks publish a 2023 market outlooks in the form of PDFs, slides, etc. these are often challenging to grok through so i indexed them all. More how here: https://ift.tt/wL9VSGN... https://ift.tt/781TtN9? February 18, 2023 at 11:25PM
Show HN: I made an interview platform for hardware engineers in Verilog https://ift.tt/RD67pS5
Show HN: I made an interview platform for hardware engineers in Verilog https://ift.tt/SR8GYIs February 18, 2023 at 08:55AM
Friday, February 17, 2023
Show HN: TCP-based dynamic reverse proxy https://ift.tt/xruGUId
Show HN: TCP-based dynamic reverse proxy https://ift.tt/lX4L8kZ February 18, 2023 at 09:17AM
Show HN: BrokeAF allows you to review costs before making OpenAI calls https://ift.tt/iyZUDIY
Show HN: BrokeAF allows you to review costs before making OpenAI calls https://ift.tt/16T8YFf February 18, 2023 at 06:46AM
Show HN: Font Awesome Icon Picker Using AI https://ift.tt/D7G1q5g
Show HN: Font Awesome Icon Picker Using AI I am a big fan and user of Font Awesome icons. Although their search function is pretty neat, sometimes I find it difficult to search for icons related to a particular concept or topic. As a solution, I have created an app where you can enter any concept or topic and receive the corresponding Font Awesome icon code. Here is an example for the word "prediction": When I searched for "prediction" using Font Awesome's search, no icons were returned: https://ift.tt/3NCPKUS However, the app suggested that I should use the "chart-line" icon, which was accurate: https://ift.tt/LC2Y5Bv... Please try it out and let me know your feedback. https://ift.tt/5WIiKA1 February 18, 2023 at 04:58AM
Show HN: An open-source API built on top of OpenAI Embeddings and Pinecone https://ift.tt/6bvgkMK
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/YlsPVwc
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/NSmtzyp https://ift.tt/NpLQ1d4 February 18, 2023 at 02:26AM
Show HN: Convert Jupyter Notebook to Web Apps with Mercury and Python https://ift.tt/GC48nxf
Show HN: Convert Jupyter Notebook to Web Apps with Mercury and Python https://runmercury.com February 17, 2023 at 12:31PM
Thursday, February 16, 2023
Show HN: Inquery (YC W23) – Real-time events for Postgres https://ift.tt/F73BItG
Show HN: Inquery (YC W23) – Real-time events for Postgres Hi HN, we're excited to share our open source tool with the community! Inquery is a utility for Postgres that triggers webhooks when rows are inserted, updated, or deleted. It uses database triggers that send low-latency websocket messages to a Go application. This application then calls any configured webhooks with a JSON payload that includes specified values from the database row. Let us know if you have any feedback or questions! https://ift.tt/mPEtTRQ February 17, 2023 at 04:51AM
Show HN: I made an early 2000s-inspired internet forum https://ift.tt/3PWCcbL
Show HN: I made an early 2000s-inspired internet forum https://ift.tt/0mXTBOe February 17, 2023 at 02:32AM
Show HN: SheetKeys – The Hacker's Spreadsheet https://ift.tt/bySBV5h
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/N3Bv1tw February 17, 2023 at 02:06AM
Show HN: Oxen.ai – Fast Unstructured Data Version Control https://ift.tt/i9jS64Q
Show HN: Oxen.ai – Fast Unstructured Data Version Control Hi HN! This is Greg, founder of https://oxen.ai . Oxen at it's core is a version control system built from the ground up optimized for machine learning data. Just like other VCS, Oxen can a building block for a lot of workflows. We are a couple ex-IBM Watson engineers who have seen the waves of AI and know the importance of matching the correct data to the correct model deployment in ML workflows. The commands are modeled one-for-one after git, but can handle large unstructured datasets of images, videos, audio, text, as well as tabular data. If you have a few minutes, go to https://ift.tt/VnJrowu and check it out! Built in Rust, with modern hashing algorithms and network protocols, it can index hundreds of thousands of images, video, audio, text, in seconds. The vision is to help collaboration on data be as easy as collaboration on code. It still feels like we are in the dark ages of iterating on machine learning datasets, downloading zip files, dumping on s3, or using legacy technology like git-lfs. We would also love to see a community grow around open source datasets, just like open source code. There is a web hub at https://www.oxen.ai where you can sign up for free. Let us know what data you are training your models on today! Running models without the proper dataset infrastructure to iterate on can take the "learn" out of machine learning. With Oxen, we help close that loop. https://ift.tt/tIpaoL6 February 17, 2023 at 01:35AM
Show HN: Favird – A listing with listings of interesting things https://ift.tt/xckB3iQ
Show HN: Favird – A listing with listings of interesting things https://favird.com February 17, 2023 at 01:26AM
Show HN: Vircon32 – A virtual, simplified 32-bit game console https://ift.tt/PzQ9iCd
Show HN: Vircon32 – A virtual, simplified 32-bit game console Vircon32 is a virtual game console designed from scratch to be as simple and portable as possible. Its main focus is to actually have interesting games to play, rather than just being a programmer sandbox. Console features are in line with the 32-bit generation (PSX/Saturn): true color, transparencies, CD-quality audio, memory card... But to keep simplicity, this is a 2D machine only. http://www.vircon32.com February 16, 2023 at 06:10PM
Show HN: I made a super simple iOS app to track expenses https://ift.tt/sI7xMye
Show HN: I made a super simple iOS app to track expenses My Expenses is a very simple app to track expenses for one-time budgets. Let's say you're going on vacations in Italy and you want to allocate $1.500 to this trip. You create a budget "Italy" in 30 seconds and you're ready to go. Each time you make an expense in Italy, you add it to the app in a few seconds and you instantly know you're remaining budget. I'm bored of super complex apps. Yes, they do a lot of things, but it often takes a while to get used to the app and understand all its features. That's why I created this app. I want people to be able to track their expenses in seconds, as quickly and simply as possible. It's available on iPhone, iPad and Mac. https://ift.tt/MTS1zPn February 16, 2023 at 02:47PM
Wednesday, February 15, 2023
Show HN: Camome UI – A lightweight React and CSS framework https://ift.tt/0yLz8fY
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/XtEG3Ky
Show HN: Helium – a headless, open-source LMS https://ift.tt/2sn1rb0 February 16, 2023 at 08:51AM
Show HN: Stream Arrow into Postgres https://ift.tt/aqN4gLF
Show HN: Stream Arrow into Postgres Small, simple, sans IO and fast. No more dumping to CSVs! https://ift.tt/63ruIgn February 16, 2023 at 06:31AM
Show HN: Keep – Open-source alerting CLI https://ift.tt/VYr3K9O
Show HN: Keep – Open-source alerting CLI 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/vEBUXAQ ). 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/vEBUXAQ ) and share your thoughts with us. Your feedback will help us make Keep the best it can be. https://ift.tt/vEBUXAQ February 15, 2023 at 10:13PM
Show HN: Impact of using 1 or 2 sticks of DDR5 on a 6800HX with 680M IG https://ift.tt/93htfI7
Show HN: Impact of using 1 or 2 sticks of DDR5 on a 6800HX with 680M IG A few months ago, I ordered a Minisforum UM690 for work. For less than 500 bucks, this little beast is equipped with the incredibly powerful 8 cores / 16 threads Ryzen 9 6900HX (4.9GHz) and an integrated RDN2 680M graphics card (the single thread performance of this mobile CPU is just 10% lower than my home 5800X desktop PC). I do some light gaming on my lunch break, and I was pretty impressed by the gaming performance of the 680M. Because of budget constraints at the time of ordering, I could only afford a single stick of Gskill - RipJaws 16 Go DDR5 4800 MHz CL34. I made a few benchmarks on multiple games, but most games I play do not come with a proper benchmark loop, so I used Unigine Superposition Benchmark to make a proper benchmark. Single 16 GB stick, 1080p, medium settings: 3022 (18.85 min fps, 22.61 avg fps, 31.85 max fps) Those results were good for an IGPU, but I saw a few articles saying that having two sticks instead of one could improve performance (never backed up with benchmarks or hard numbers). So I bought another stick. Here are the results with two sticks: Dual 16 GB sticks, 1080p, medium settings: 4969 (31.66 min fps, 37.17 avg fps, 48.96 max fps) Yep, this is a whopping +65% with two sticks! So, if you use a CPU with an integrated graphics card, you should use 2 sticks! February 15, 2023 at 03:25PM
Show HN: I built a site to roast landing pages https://ift.tt/93zTXfd
Show HN: I built a site to roast landing pages https://www.roastd.io/ February 15, 2023 at 03:40PM
Show HN: Turn Jupyter Notebook to Web App https://ift.tt/GsS6j3v
Show HN: Turn Jupyter Notebook to Web App https://RunMercury.com February 15, 2023 at 03:06PM
Tuesday, February 14, 2023
Show HN: Openapi.security, a fast security checker for REST-based API https://ift.tt/K50NquE
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/x5r6ldH 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/x5r6ldH February 15, 2023 at 12:28AM
Show HN: I built a little online drum machine using 808 style samples https://ift.tt/dIzoLQG
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/WA6EDYG
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/nQEa9ti... https://ift.tt/o04vueL February 14, 2023 at 05:01PM
Monday, February 13, 2023
Show HN: I made a game, Tippy Coco https://ift.tt/FLYIfMT
Show HN: I made a game, Tippy Coco Tippy Coco is a volleyball game in the browser. You can play with a friend at the same keyboard, or solo challenge the built-in opponents. As for the tech: it's all TypeScript + HTML5. I did not use a game engine; I just made a game loop with setTimeout and the artwork is all just png's drawn on the canvas. The sound is played through the HTML audio API. Input is watching keyboard events and the Gamepad API. One thing: I know this is 2023 but it's not a game for phones. It's for a laptop or desktop PC with a physical keyboard. It also works ok on an iPad with a physical keyboard. Tippy Coco is free and without ads. The code is available (MIT license) at https://ift.tt/OIFqsw9 https://tippycoco.com February 14, 2023 at 03:23AM
Show HN: Generate User Interface Components with GPT-3 https://ift.tt/FfJasXi
Show HN: Generate User Interface Components with GPT-3 I’m building an experimental tool that can generate a UI component from a high-level text description, i.e. “Design a card for viewing goals in a goal tracking application”. Basically, stable diffusion but for user interface components instead of images. This tool is at best a proof of concept. It currently only generates a single type of component (small cards that have basic info about an object), but the goal is to be able to design entire applications (either in one fell swoop or by piecing together components that the tool generates). The components it generates can be exported as react code. You can also have it modify an existing design. The tool isn't useful yet but it's somewhat fun to play around with. Having it generate a component rather than an entire screen made the problem easier but I'm not sure if there are any users that this would appeal to. I could see it appealing to developers who lack design and CSS skills and want to quickly build a decent looking frontend for their app. Looking forward to hearing what you guys think of this project and the generative AI for UI space in general. If you're interested in collaborating on a startup or open-source project in this space, email designhat dot ai at gmail dot com https://ift.tt/PIObrpc February 13, 2023 at 11:13PM
Show HN: I made a code notebook for Datalog queries https://ift.tt/Bm3WVoQ
Show HN: I made a code notebook for Datalog queries https://ift.tt/XCfz5Rj February 13, 2023 at 11:52PM
Show HN: Sign-up flows from 100s of websites made publicly available https://ift.tt/aG8OfY5
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/5ukZ460 ), 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/BxlF2id
Show HN: (Repost) A Chrome extension to help you improve website performance https://ift.tt/dz2XPh6 February 13, 2023 at 04:15PM
Show HN: Meta peddling unsecured business credits to users in India https://ift.tt/Mo6ANRY
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
Sunday, February 12, 2023
Show HN: Toodle.Studio is an art playground with Lisp and turtles https://ift.tt/QNO34xA
Show HN: Toodle.Studio is an art playground with Lisp and turtles https://toodle.studio February 11, 2023 at 09:24PM
Show HN: Forever-Time Multi-player- Play with your loved ones after you're gone https://ift.tt/PB9AGUu
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/MBxbiUI February 13, 2023 at 01:05AM
Show HN: Nix-init – Generate Nix packages from URLs with dependency inference https://ift.tt/96STaLP
Show HN: Nix-init – Generate Nix packages from URLs with dependency inference https://ift.tt/HQb7qhK February 13, 2023 at 12:04AM
Show HN: HN Pop-Up – Hover on HN Username to See Their Profile https://ift.tt/BLwhPXI
Show HN: HN Pop-Up – Hover on HN Username to See Their Profile https://ift.tt/MfJBsDO February 12, 2023 at 11:55PM
Show HN: Vettel – a tiny key value store that's faster than Redis (sort of) https://ift.tt/qhB7lvr
Show HN: Vettel – a tiny key value store that's faster than Redis (sort of) https://ift.tt/kDmJhW7 February 12, 2023 at 01:29PM
Show HN: Link Book – Quickly save links from around the web to GitHub https://ift.tt/tyvhqlC
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/ySXJ12N February 12, 2023 at 03:29PM
Saturday, February 11, 2023
Show HN: Log collector that runs on a $4 VPS https://ift.tt/KRjqu5M
Show HN: Log collector that runs on a $4 VPS Hey guys, I'm building erlog to try and solve problems with logging. While trying to add logs to my application, I couldn't find any lightweight log platform which was easy to set up without adding tons of dependencies to my code, or configuring 10,000 files. ErLog is just a simple go web server which batch inserts json logs into an sqlite3 server. Through tuning sqlite3 and batching inserts, I find I can get around 8k log insertions/sec which is fast enough for small projects. This is just an MVP, and I plan to add more features once I talk to users. If anyone has any problems with logging, feel free to leave a comment and I'd love to help you out. https://ift.tt/7IPOayF February 12, 2023 at 02:14AM
Show HN: For Product Managers – curated collection of tools https://ift.tt/vtWQ7pS
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/DgbhEkK February 11, 2023 at 10:44PM
Show HN: My personal website designed in the style of Windows 95 https://ift.tt/aA37coC
Show HN: My personal website designed in the style of Windows 95 link: https://ift.tt/Jeh6Bq4 github repo: https://ift.tt/5dfcAsv Your thoughts and recommendations are highly appreciated :) https://ift.tt/Jeh6Bq4 February 12, 2023 at 12:14AM
Show HN: I’m an introvert – made an app to help maintain connections with people https://ift.tt/WfjFZvU
Show HN: I’m an introvert – made an app to help maintain connections with people https://ift.tt/vLPMZAy February 11, 2023 at 10:12PM
Show HN: I Made a Language Learning iOS Safari Extension https://ift.tt/sXTeVph
Show HN: I Made a Language Learning iOS Safari Extension https://ift.tt/a3EiI4n February 11, 2023 at 08:23PM
Show HN: Experimenting with GPT-3: Building an Investment Analyst https://ift.tt/Auimdwp
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/WGRmlyU https://ift.tt/JvRipnX https://ift.tt/PR0lBGr https://ift.tt/04bk7hw 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/BOLRXb5
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/dFfkxeD
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/CN5AZgc https://ift.tt/HRgv7Iy February 11, 2023 at 04:55AM
Show HN: S.cr – send encrypted, disposable notes https://ift.tt/vlq69BP
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/2MaxUZA
Show HN: GoodQuestion: A job interview note taking and collaboration tool https://ift.tt/ZK1MnDQ February 11, 2023 at 01:48AM
Show HN: A Chrome extension to improve your website performance https://ift.tt/Kv8EyZb
Show HN: A Chrome extension to improve your website performance https://ift.tt/b78Z9UK February 10, 2023 at 03:39PM
Show HN: Enc – A modern and friendly CLI alternative to GnuPG https://ift.tt/cBShNIx
Show HN: Enc – A modern and friendly CLI alternative to GnuPG Enc is a CLI tool for encryption, a modern and friendly alternative to GnuPG. It is easy to use, secure by default and can encrypt and decrypt files using password or encryption keys, manage and download keys, and sign data. Our goal was to make encryption available to all engineers without the need to learn a lot of new words, concepts, and commands. It is the most beginner-friendly CLI tool for encryption, and keeping it that way is our top priority. https://ift.tt/wAeVI15 February 10, 2023 at 01:13PM
Show HN: MrScraper – A visual web-scraping tool https://ift.tt/0Vrmuzc
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/fQ4uaDC
Show HN: Verified-GPT on your files and videos https://ift.tt/qspbN95 February 10, 2023 at 01:20AM
Show HN: We craft minimum viable SaaS products https://ift.tt/7EpO28z
Show HN: We craft minimum viable SaaS products Helping founders bring their product to life, attract early users, and validate their idea. https://ift.tt/nfitZOc February 9, 2023 at 05:17PM
Show HN: I made a tool that turns screenshots into dramatically angled photos https://ift.tt/wfoiFCu
Show HN: I made a tool that turns screenshots into dramatically angled photos https://ift.tt/i0QGzcI February 10, 2023 at 12:58AM
Show HN: PodText.ai – Search anything said on a podcast, highlight text to play https://ift.tt/ot1Y9OX
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: Open-source Ecommerce platform built with Node.js and React(beta) https://ift.tt/cPtGpQ9
Show HN: Open-source Ecommerce platform built with Node.js and React(beta) Hi guys, I've open-sourced the ecommerce project I build for my business. I've spent a lot of time on choosing the right libraries and decided to go with NodeJs and React. I'm sharing the project with you, and hope it will give you some ideas so you can build your ecommerce project faster. [Demo] https://ift.tt/MenDHFB [Github] https://ift.tt/UgjVuN0 Feel free to share/contact if you have any feedback or questions. Thanks February 9, 2023 at 09:05AM
Show HN: Ripple, a Spotify playlist generator based on your mood and music taste https://ift.tt/zMGCaJq
Show HN: Ripple, a Spotify playlist generator based on your mood and music taste I had this idea when my friends and I were hanging out and playing music on the speaker. The problem is, Spotify curated playlists are not tailored for my friend groups because we have different music taste. So I passed my phone around for my friends to queue their songs. It was always a hassle. This project is built on top of the Spotify Web API. The two modes, "Fresh" and "Popular" rely on the recommendations endpoint. As always, your feedback is appreciated. :) Thank you! https://ift.tt/gatFfQE February 9, 2023 at 04:02AM
Show HN: Free newsletter signup service (because I'm sick of Mailchimp) https://ift.tt/yjXG3m8
Show HN: Free newsletter signup service (because I'm sick of Mailchimp) https://ift.tt/hBOjlxc February 9, 2023 at 03:57AM
Show HN: StackOverflow.gg – AI-generated answers to every coding question https://ift.tt/yG67B0Y
Show HN: StackOverflow.gg – AI-generated answers to every coding question https://ift.tt/C6kNHgT February 9, 2023 at 02:28AM
Show HN: Filmbox, physically accurate film emulation, now on Linux and Windows https://ift.tt/kuN1cs7
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/u91raPd February 9, 2023 at 12:43AM
Show HN: PaperAge – Easy and secure paper backups of (smallish) secrets https://ift.tt/ziDHWTv
Show HN: PaperAge – Easy and secure paper backups of (smallish) secrets Take any plaintext input, encrypt it using Age, and generate a printable PDF with a QR code that's easy to scan back in. Oh, and this is my first Rust project so some the code might not be the best. https://ift.tt/X9Li3Po February 9, 2023 at 12:06AM
Show HN: My article on idea validation on HN (Hackernoon) https://ift.tt/MgjNUzu
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/56HnjcE February 8, 2023 at 02:20PM
Subscribe to:
Posts (Atom)
Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code https://ift.tt/GQauRgE
Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code Hi All, Recently I've been using Claude Code a lot for de...
-
Show HN: A directory of 800 free APIs, no auth required Explore reliable free APIs for developers — ideal for web and software development, ...
-
Show HN: I built Dirac, Hash Anchored AST native coding agent, costs -64.8 pct Fully open source, a hard fork of cline. Full evals on the gi...
-
Show HN: I built a FOSS tool to run your Steam games in the Cloud I wanted to play my Steam games but my aging PC couldn’t keep up, so I bui...