Tuesday, October 4, 2022

Show HN: HTTPS://Http3.ooo https://ift.tt/VsGPQo6

Show HN: HTTPS://Http3.ooo https://http3.ooo October 4, 2022 at 07:37AM

Show HN: Music video using AI (Stable Diffusion) and a text editor – You can too https://ift.tt/7xbvMnQ

Show HN: Music video using AI (Stable Diffusion) and a text editor – You can too I went nuts on Sunday after stumbling on this animator script for the automatic branch: https://ift.tt/NqTJy7V And then it's a ton of keyframing. I also found that the timings all have to be earlier than the timestamp you want to account for how long it takes to denoise to your new scene - so like .4 gives smoother but longer, .7 is snappy. To get stuff to keep showing up and stay dynamic you can zoom out continuously, it needs a UI, badly. If you're on windows you'll need ffmpeg too. I watched this when it came out last week: https://www.youtube.com/watch?v=W4Mcuh38wyM I followed this to get it running locally: https://ift.tt/WKwSl4B https://ift.tt/ILhCbcy October 3, 2022 at 11:14PM

Monday, October 3, 2022

Show HN: Postgres WASM https://ift.tt/C95GBEo

Show HN: Postgres WASM https://ift.tt/CFTsN4b October 3, 2022 at 07:55PM

Show HN: I wrote a book about overcoming the Metacrisis https://ift.tt/HZiB6fm

Show HN: I wrote a book about overcoming the Metacrisis Hey HN! Recently published a book developing new frameworks of meaning and value informed by our most advanced cosmology and physics. It makes the argument for the necessity of spiritual revolution in order to free the abundance trapped in the world, a reimagination that interlinks the spiritual project to systemic reformation. The inspiration for the text draws from my history of social impact work and the frustrations and lessons learned along the way. If it's of interest you can learn more/read it/download it in a variety of formats for free at https://singletruth.org. October 3, 2022 at 07:01PM

Show HN: Click on a component (React,) in browser to get to its code in IDE https://ift.tt/WfU3hYk

Show HN: Click on a component (React,) in browser to get to its code in IDE Hi all! Here is my open-source side-project. It is a browser extension that lets you click on a component on your localhost to get to its code in your editor. It works with React, Svelte, SolidJS, Preact, and Vue components and with VSCode, Webstorm, or any other editor that supports URL protocol links. It can be used also as JavaScript library (instead of installing browser extension) It speeds up my web development so much that I can't work without that anymore :D Let me know if you like it or if you would like to improve it somehow. Contributions are welcomed https://ift.tt/mfJawlp https://ift.tt/9FAXsVL https://ift.tt/mfJawlp October 3, 2022 at 04:36PM

Show HN: Hadmean – The easiest and most efficient internal tool generator https://ift.tt/cvPMXl0

Show HN: Hadmean – The easiest and most efficient internal tool generator Hi HN! I am excited to share Hadmean with you all for feedback and early adoption. What: Hadmean is an open-source, no-code internal tool generator. Why: Most internal tool generators make you build from the ground up i.e you get a blank canvas, drag and drop and wire components to satisfy your business requirement. This I believe has many problems. - They require some technical know-how. - They require some learning curve. - They require time to build and maintain. - You duplicate a lot of business logic already in your database. How: Hadmean attempts internal tool generation with a new approach by introspecting your database and building a multi-page application based on all the info it can find like your fields types, relationships, constraints etc. It is really cool. You literally will have your admin app done under 1 min without any tutorial or SQL. Hadmean is also fully customizable, you can turn on/off every feature you see in the UI within the UI. Quick features - Minimalist Setup - Just `npx hadmean@latest` - Users Management - Roles and permission - CRUD - Relationships - Table Views - Form validations - Awesome and powerful filters - Primitive dashboard builder - Powerful multi-page navigation system - Pleasantly looking Here is demo link ( https://ift.tt/OJau3cS ) Hadmean is currently in alpha but our our current features are pretty much stable and we are still adding more features and integrations to help you handle more business requirements seamlessly. https://ift.tt/6Za2C9v October 3, 2022 at 03:41PM

Show HN: We designed and implemented graph projection feature https://ift.tt/nFH85tv

Show HN: We designed and implemented graph projection feature Hi all! I'm one of the developers that were working on this project for some time. In recent months, users started to ask us more frequently about the ability to run algorithms on a part of graph stored in database - subgraph. Now to do this, we extended the implementation of C API we had and brought to you the graph project feature that enables running algorithms on a specific subset of a graph stored in the database. You can now do graph analysis with PageRank, degree centrality, betweenness centrality, or any other algorithm on subgraphs without any additional adjustments. Before you had to create new query procedure. You can fire up a graph machine learning algorithm, such as Temporal graph networks and split the dataset inside the query to do training and validation without splitting the dataset programmatically. And last but not least, you can use your graphics card to run one of cuGraph's algorithms on subgraph in terms of seconds. You can find the whole explanation in blog post [1] and you can checkout the code at Memgraph GitHub [2]. Furthermore you can check cuGraph's algorithms we have integrated [3] I'd like to hear your feedback on our approach. Also if you have any general feedback, just write it in the comments :) [1] https://ift.tt/DK8eRqd... [2] https://ift.tt/xieGHFL [3] https://ift.tt/htrTUwL October 3, 2022 at 02:52PM

Show HN: Yet Another Memory System for LLM's https://ift.tt/0oZIwAv

Show HN: Yet Another Memory System for LLM's Built this for my LLM workflows - needed searchable, persistent memory that wouldn't bl...