Monday, February 28, 2022

Show HN: Evolving your RESTful APIs, a step-by-step approach https://ift.tt/jnPEk1L

Show HN: Evolving your RESTful APIs, a step-by-step approach https://ift.tt/q6kuMXK February 28, 2022 at 11:02PM

from Blogger https://ift.tt/a8pAqBN


from Tumblr https://serenejas.tumblr.com/post/677456040258846720

Show HN: Prig – like AWK, but uses Go for “scripting” https://ift.tt/iP8wtx1

Show HN: Prig – like AWK, but uses Go for “scripting” https://ift.tt/9YRQEuB February 28, 2022 at 07:29PM

from Blogger https://ift.tt/hXlCM0P


from Tumblr https://serenejas.tumblr.com/post/677452286239358976

Show HN: Language aware diff on GitHub PRs https://ift.tt/cxijS6g

Show HN: Language aware diff on GitHub PRs Hi HN! We were frustrated with text diffs on GitHub PRs, so we made DiffLens ( https://ift.tt/3gSbFTR ). DiffLens constructs an Abstract Syntax Tree for each file, and uses that semantic information to intelligently diff changes. Checkout the demo on our website ( https://ift.tt/B1S4Lca ). Getting started with DiffLens is easy! Simply install the app on your repositories. The next time you open a PR, DiffLens will automatically create a diff for your changes. If you review code, especially TypeScript, JavaScript or CSS, give DiffLens a try! We're always looking for feedback. If you encounter bugs, or want to give us feedback, we'll be around. You can also reach us at support@difflens.com. https://ift.tt/3gSbFTR March 1, 2022 at 12:53AM

Show HN: Evolving your RESTful APIs, a step-by-step approach https://ift.tt/jnPEk1L

Show HN: Evolving your RESTful APIs, a step-by-step approach https://ift.tt/q6kuMXK February 28, 2022 at 11:02PM

Show HN: Prig – like AWK, but uses Go for “scripting” https://ift.tt/iP8wtx1

Show HN: Prig – like AWK, but uses Go for “scripting” https://ift.tt/9YRQEuB February 28, 2022 at 07:29PM

Sunday, February 27, 2022

Show HN: Create customizable, short URLs for Stack Overflow profiles https://ift.tt/517jotQ

Show HN: Create customizable, short URLs for Stack Overflow profiles When building my personal site, I realised that Stack Overflow seemed to be one of the (or rather, the only) platforms that didn’t allow users to create a short, username-based link. Enter: stk.so https://stk.so/ February 28, 2022 at 01:10AM

Show HN: Pdbr supports for IPython %magics, like %timeit https://ift.tt/78EbuOQ

Show HN: Pdbr supports for IPython %magics, like %timeit https://ift.tt/kdKtl1I February 28, 2022 at 01:09AM

Show HN: A bot to learn a language on WhatsApp https://ift.tt/zSWNFOT

Show HN: A bot to learn a language on WhatsApp https://www.cleca.app/ February 27, 2022 at 08:57PM

Show HN: Slightly Better Hacker News – alternative web front end for HN https://ift.tt/8Dj4mT5

Show HN: Slightly Better Hacker News – alternative web front end for HN https://sbhn.g1b.me/ February 27, 2022 at 11:23PM

from Blogger https://ift.tt/YE0qHLR


from Tumblr https://serenejas.tumblr.com/post/677365426130468865

Show HN: Slightly Better Hacker News – alternative web front end for HN https://ift.tt/8Dj4mT5

Show HN: Slightly Better Hacker News – alternative web front end for HN https://sbhn.g1b.me/ February 27, 2022 at 11:23PM

from Blogger https://ift.tt/YE0qHLR



via Tumblr https://ift.tt/Vx4BroX

Show HN: Slightly Better Hacker News – alternative web front end for HN https://ift.tt/8Dj4mT5

Show HN: Slightly Better Hacker News – alternative web front end for HN https://sbhn.g1b.me/ February 27, 2022 at 11:23PM

Saturday, February 26, 2022

Show HN: Esolang Park, a visual debugger for esolangs https://ift.tt/XRygAOj

Show HN: Esolang Park, a visual debugger for esolangs Hey HN! Esolang Park is an online visual debugger interface for esoteric programming languages, that I’ve been working on for the past few months. For every supported language, Esolang Park provides the powerful Monaco code editor, syntax checking, debugging functionality and a visualisation of the runtime state. The core is language-agnostic - a “language provider” only needs to implement the esolang’s parser, interpreter and visualisation UI (and some other little stuff). Apart from trying to boost DX for esolangs, the idea is for this to grow into a platform where people can discover and play around with a variety of esolangs without leaving the browser. That’s quite far away though - the project is quite early in development and currently only has 5 languages (Befunge-93, Brainf*ck, Chef, Deadfish and Shakespeare). Some features like non-debugging execution mode (0ms interval) are missing too. Currently the entire source code[0] (core + language providers) is written in TypeScript and React. Esolang code execution happens in a web worker. I’m planning to add support for WASM-based language providers for better performance, particularly for non-debugging execution. There’s also a wiki[1] containing a description of the core design and a guide for implementing and contributing new language providers. Looking to hear some feedback on the idea and current implementation - bug reports are welcome too! [0] https://ift.tt/RKPLgbA [1] https://ift.tt/Q0kvIuW https://ift.tt/oML497m February 27, 2022 at 12:58AM

from Blogger https://ift.tt/ioYUX37


from Tumblr https://serenejas.tumblr.com/post/677274845516644352

Show HN: Esolang Park, a visual debugger for esolangs https://ift.tt/XRygAOj

Show HN: Esolang Park, a visual debugger for esolangs Hey HN! Esolang Park is an online visual debugger interface for esoteric programming languages, that I’ve been working on for the past few months. For every supported language, Esolang Park provides the powerful Monaco code editor, syntax checking, debugging functionality and a visualisation of the runtime state. The core is language-agnostic - a “language provider” only needs to implement the esolang’s parser, interpreter and visualisation UI (and some other little stuff). Apart from trying to boost DX for esolangs, the idea is for this to grow into a platform where people can discover and play around with a variety of esolangs without leaving the browser. That’s quite far away though - the project is quite early in development and currently only has 5 languages (Befunge-93, Brainf*ck, Chef, Deadfish and Shakespeare). Some features like non-debugging execution mode (0ms interval) are missing too. Currently the entire source code[0] (core + language providers) is written in TypeScript and React. Esolang code execution happens in a web worker. I’m planning to add support for WASM-based language providers for better performance, particularly for non-debugging execution. There’s also a wiki[1] containing a description of the core design and a guide for implementing and contributing new language providers. Looking to hear some feedback on the idea and current implementation - bug reports are welcome too! [0] https://ift.tt/RKPLgbA [1] https://ift.tt/Q0kvIuW https://ift.tt/oML497m February 27, 2022 at 12:58AM

from Blogger https://ift.tt/ioYUX37



via Tumblr https://ift.tt/YjqcMQl

Show HN: ssh wordle.bdw.to https://ift.tt/2oY0iaq

Show HN: ssh wordle.bdw.to February 27, 2022 at 12:32AM

from Blogger https://ift.tt/VTWDonY


from Tumblr https://serenejas.tumblr.com/post/677271103579848704

Show HN: ssh wordle.bdw.to https://ift.tt/2oY0iaq

Show HN: ssh wordle.bdw.to February 27, 2022 at 12:32AM

from Blogger https://ift.tt/VTWDonY



via Tumblr https://ift.tt/W7obKLS

Show HN: Esolang Park, a visual debugger for esolangs https://ift.tt/XRygAOj

Show HN: Esolang Park, a visual debugger for esolangs Hey HN! Esolang Park is an online visual debugger interface for esoteric programming languages, that I've been working on for the past few months. For every supported language, Esolang Park provides the powerful Monaco code editor, syntax checking, debugging functionality and a visualisation of the runtime state. The core is language-agnostic - a "language provider" only needs to implement the esolang's parser, interpreter and visualisation UI (and some other little stuff). Apart from trying to boost DX for esolangs, the idea is for this to grow into a platform where people can discover and play around with a variety of esolangs without leaving the browser. That's quite far away though - the project is quite early in development and currently only has 5 languages (Befunge-93, Brainf*ck, Chef, Deadfish and Shakespeare). Some features like non-debugging execution mode (0ms interval) are missing too. Currently the entire source code[0] (core + language providers) is written in TypeScript and React. Esolang code execution happens in a web worker. I'm planning to add support for WASM-based language providers for better performance, particularly for non-debugging execution. There's also a wiki[1] containing a description of the core design and a guide for implementing and contributing new language providers. Looking to hear some feedback on the idea and current implementation - bug reports are welcome too! [0] https://ift.tt/RKPLgbA [1] https://ift.tt/Q0kvIuW https://ift.tt/oML497m February 27, 2022 at 12:58AM

Show HN: ssh wordle.bdw.to https://ift.tt/2oY0iaq

Show HN: ssh wordle.bdw.to February 27, 2022 at 12:32AM

Friday, February 25, 2022

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels https://ift.tt/AgR1PnL

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels I’ve been frustrated by markdown previews that don’t support all the features of Pandoc Markdown, so I created a VS Code extension that uses Pandoc itself to create the preview. This includes full bidirectional scroll sync and math support via KaTeX. This also includes support for Codebraid, which can execute code blocks and inline code in Pandoc Markdown to embed code output. Code can be executed with Jupyter kernels or Codebraid’s own built-in code execution system. https://ift.tt/9cxHvXR February 26, 2022 at 12:13AM

from Blogger https://ift.tt/i71sTxU


from Tumblr https://serenejas.tumblr.com/post/677180502566895616

Show HN: Dirty-equals – Doing dirty (but useful) things with equals https://ift.tt/6jVKFHE

Show HN: Dirty-equals – Doing dirty (but useful) things with equals https://ift.tt/kvmrwze February 26, 2022 at 03:42AM

from Blogger https://ift.tt/wG7sugA



via Tumblr https://ift.tt/GnyWrIh

Show HN: Shorter Showers App Is Now on iOS https://ift.tt/eiAnbjz

Show HN: Shorter Showers App Is Now on iOS https://ift.tt/GcBnwpT February 26, 2022 at 12:31AM

from Blogger https://ift.tt/cOmNQgB



via Tumblr https://ift.tt/pq4gSAr

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels https://ift.tt/AgR1PnL

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels I’ve been frustrated by markdown previews that don’t support all the features of Pandoc Markdown, so I created a VS Code extension that uses Pandoc itself to create the preview. This includes full bidirectional scroll sync and math support via KaTeX. This also includes support for Codebraid, which can execute code blocks and inline code in Pandoc Markdown to embed code output. Code can be executed with Jupyter kernels or Codebraid’s own built-in code execution system. https://ift.tt/9cxHvXR February 26, 2022 at 12:13AM

from Blogger https://ift.tt/i71sTxU



via Tumblr https://ift.tt/bhz8Q4u

Show HN: Dirty-equals – Doing dirty (but useful) things with equals https://ift.tt/6jVKFHE

Show HN: Dirty-equals – Doing dirty (but useful) things with equals https://ift.tt/kvmrwze February 26, 2022 at 03:42AM

Show HN: Shorter Showers App Is Now on iOS https://ift.tt/eiAnbjz

Show HN: Shorter Showers App Is Now on iOS https://ift.tt/GcBnwpT February 26, 2022 at 12:31AM

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels https://ift.tt/AgR1PnL

Show HN: Codebraid Preview for VS Code: Pandoc Preview with Jupyter Kernels I've been frustrated by markdown previews that don't support all the features of Pandoc Markdown, so I created a VS Code extension that uses Pandoc itself to create the preview. This includes full bidirectional scroll sync and math support via KaTeX. This also includes support for Codebraid, which can execute code blocks and inline code in Pandoc Markdown to embed code output. Code can be executed with Jupyter kernels or Codebraid's own built-in code execution system. https://ift.tt/9cxHvXR February 26, 2022 at 12:13AM

Thursday, February 24, 2022

Show HN: "Ido” stops you if there is some risky arguments https://ift.tt/7qF6PcU

Show HN: “Ido” stops you if there is some risky arguments I always feel scary to grab command(s) from shell history and press “Enter” by accident. So I write this small tool which asks me to confirm when it finds something risky. I expect the native interactive shell can do this for me. Feel free to give feedback and/or suggest a better way. Thanks a lot. https://ift.tt/oZ8VW4h February 24, 2022 at 06:27PM

from Blogger https://ift.tt/Jnrl6FM



via Tumblr https://ift.tt/CYqhr6c

from Blogger https://ift.tt/CxF2zLu
from Tumblr https://serenejas.tumblr.com/post/677088120474304512

Show HN: "Ido” stops you if there is some risky arguments https://ift.tt/7qF6PcU

Show HN: “Ido” stops you if there is some risky arguments I always feel scary to grab command(s) from shell history and press “Enter” by accident. So I write this small tool which asks me to confirm when it finds something risky. I expect the native interactive shell can do this for me. Feel free to give feedback and/or suggest a better way. Thanks a lot. https://ift.tt/oZ8VW4h February 24, 2022 at 06:27PM

from Blogger https://ift.tt/Jnrl6FM



via Tumblr https://ift.tt/CYqhr6c

from Blogger https://ift.tt/CxF2zLu

via Tumblr https://ift.tt/iMS7d34

Show HN: Code with Replit - free Python ebook https://ift.tt/P9Xz6yx

Show HN: Code with Replit - free Python ebook https://ift.tt/A1bnvOP February 24, 2022 at 11:07PM

Show HN: "Ido” stops you if there is some risky arguments https://ift.tt/7qF6PcU

Show HN: “Ido” stops you if there is some risky arguments I always feel scary to grab command(s) from shell history and press "Enter” by accident. So I write this small tool which asks me to confirm when it finds something risky. I expect the native interactive shell can do this for me. Feel free to give feedback and/or suggest a better way. Thanks a lot. https://ift.tt/oZ8VW4h February 24, 2022 at 06:27PM

from Blogger https://ift.tt/Jnrl6FM


from Tumblr https://serenejas.tumblr.com/post/677086128633987072

Show HN: "Ido” stops you if there is some risky arguments https://ift.tt/7qF6PcU

Show HN: “Ido” stops you if there is some risky arguments I always feel scary to grab command(s) from shell history and press "Enter” by accident. So I write this small tool which asks me to confirm when it finds something risky. I expect the native interactive shell can do this for me. Feel free to give feedback and/or suggest a better way. Thanks a lot. https://ift.tt/oZ8VW4h February 24, 2022 at 06:27PM

from Blogger https://ift.tt/Jnrl6FM



via Tumblr https://ift.tt/CYqhr6c

Show HN: "Ido” stops you if there is some risky arguments https://ift.tt/7qF6PcU

Show HN: "Ido” stops you if there is some risky arguments I always feel scary to grab command(s) from shell history and press "Enter" by accident. So I write this small tool which asks me to confirm when it finds something risky. I expect the native interactive shell can do this for me. Feel free to give feedback and/or suggest a better way. Thanks a lot. https://ift.tt/oZ8VW4h February 24, 2022 at 06:27PM

Wednesday, February 23, 2022

Show HN: I analyzed differences in remote work salaries worldwide https://ift.tt/wiQlqvU

Show HN: I analyzed differences in remote work salaries worldwide https://ift.tt/8TGhCSi February 24, 2022 at 01:18AM

Show HN: Hathora – Multiplayer Game Development Made Easy https://ift.tt/ir2skjN

Show HN: Hathora – Multiplayer Game Development Made Easy Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic. Some technical pieces of Hathora I wanted to highlight: - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs. - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend. - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://ift.tt/WBwa318… . I also made (a massively simplified version of) Among Us in under 200 lines of code: https://ift.tt/fBTixDA I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://ift.tt/pxo1wUF . I’ll be around to answer questions, let me know what you think! https://ift.tt/g2z41iX February 23, 2022 at 11:30PM

from Blogger https://ift.tt/t9UYpi6



via Tumblr https://ift.tt/GS8seOB

from Blogger https://ift.tt/f2Q8rWU

via Tumblr https://ift.tt/8WEygNF

Show HN: Polyordle – an arbitrary number of Wordles at once https://ift.tt/1XB9zSP

Show HN: Polyordle – an arbitrary number of Wordles at once https://polyordle.com/ February 24, 2022 at 12:06AM

Show HN: Hathora – Multiplayer Game Development Made Easy https://ift.tt/ir2skjN

Show HN: Hathora – Multiplayer Game Development Made Easy Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic. Some technical pieces of Hathora I wanted to highlight: - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs. - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend. - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://ift.tt/WBwa318… . I also made (a massively simplified version of) Among Us in under 200 lines of code: https://ift.tt/fBTixDA I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://ift.tt/pxo1wUF . I’ll be around to answer questions, let me know what you think! https://ift.tt/g2z41iX February 23, 2022 at 11:30PM

from Blogger https://ift.tt/t9UYpi6



via Tumblr https://ift.tt/GS8seOB

from Blogger https://ift.tt/f2Q8rWU
from Tumblr https://serenejas.tumblr.com/post/676997517351763968

Show HN: Hathora – Multiplayer Game Development Made Easy https://ift.tt/ir2skjN

Show HN: Hathora – Multiplayer Game Development Made Easy Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic. Some technical pieces of Hathora I wanted to highlight: - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs. - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend. - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://ift.tt/WBwa318… . I also made (a massively simplified version of) Among Us in under 200 lines of code: https://ift.tt/fBTixDA I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://ift.tt/pxo1wUF . I’ll be around to answer questions, let me know what you think! https://ift.tt/g2z41iX February 23, 2022 at 11:30PM

from Blogger https://ift.tt/t9UYpi6


from Tumblr https://serenejas.tumblr.com/post/676995542172237824

Show HN: Hathora – Multiplayer Game Development Made Easy https://ift.tt/ir2skjN

Show HN: Hathora – Multiplayer Game Development Made Easy Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic. Some technical pieces of Hathora I wanted to highlight: - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs. - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend. - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://ift.tt/WBwa318… . I also made (a massively simplified version of) Among Us in under 200 lines of code: https://ift.tt/fBTixDA I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://ift.tt/pxo1wUF . I’ll be around to answer questions, let me know what you think! https://ift.tt/g2z41iX February 23, 2022 at 11:30PM

from Blogger https://ift.tt/t9UYpi6



via Tumblr https://ift.tt/GS8seOB

Show HN: Hathora – Multiplayer Game Development Made Easy https://ift.tt/ir2skjN

Show HN: Hathora – Multiplayer Game Development Made Easy Hi HN, this is Harsh, I am the developer behind Hathora. I tried making a simple multiplayer game a few years ago and, as someone with software engineering experience but no gamedev experience, I found it to be very challenging. On top of the challenges of building a single player game, you now have to constantly battle the network and latency, find ways to prevent cheating, and figure out how to make a scalable backend architecture. With Hathora my goal was to encode best practices for online multiplayer game development into a framework so developers can simply focus on implementing their game logic. Some technical pieces of Hathora I wanted to highlight: - Hathora includes a system I think of as “gRPC for games”. You define your API in Hathora’s declarative format and the framework spits out typesafe data models, clients, and server endpoint stubs across multiple programming languages (although currently only Typescript is implemented). Minimal packet sizes are achieved through a binary serialization format which includes a delta encoding feature, allowing the framework to efficiently synchronize state by sending data diffs. - Hathora includes a Swagger-like Prototype UI generated from the API definition. This allows you to view the game state and call server methods all in realtime, letting you interact with your backend logic without writing a single line of frontend code. Once you are happy with the backend logic, you can create a fully custom frontend using any framework/technology you’d like and just use the Hathora client to communicate with the backend. - By handling generic game functionality (state synchronization, messaging, persistence, etc) for you, Hathora lets you create multiplayer games with very few lines of code. For example, see chess which is implemented in under 200 lines of user code: https://ift.tt/WBwa318... . I also made (a massively simplified version of) Among Us in under 200 lines of code: https://ift.tt/fBTixDA I am looking for developers interested in making online multiplayer games to try out Hathora and give me feedback. Additionally, if the roadmap seems interesting to you I would gladly welcome contributions: https://ift.tt/pxo1wUF . I’ll be around to answer questions, let me know what you think! https://ift.tt/g2z41iX February 23, 2022 at 11:30PM

Tuesday, February 22, 2022

Show HN: A collection of random shell scripts https://ift.tt/co5V7wb

Show HN: A collection of random shell scripts A collection of totally random scripts. Hope someone finds them useful. https://ift.tt/ibg879n February 22, 2022 at 07:02PM

from Blogger https://ift.tt/DOLGpdT



via Tumblr https://ift.tt/TQiI8vy

from Blogger https://ift.tt/L1BQVHv

via Tumblr https://ift.tt/Zc6DSmH

Show HN: Esolang Park, an online visual debugger for esolangs https://ift.tt/bYrcnTW

Show HN: Esolang Park, an online visual debugger for esolangs Hey HN! Esolang Park is an online visual debugger interface for esoteric programming languages, that I've been working on for the past few months. For every supported language, Esolang Park provides the powerful Monaco code editor, syntax checking, debugging functionality and a visualisation of the runtime state. The core is language-agnostic - a "language provider" only needs to implement the esolang's parser, interpreter and visualisation UI (and some other little stuff). Apart from trying to boost DX for esolangs, the idea is for this to grow into a platform where people can discover and play around with a variety of esolangs without leaving the browser. That's quite far away though - the project is quite early in development and currently only has 5 languages (Befunge-93, Brainf*ck, Chef, Deadfish and Shakespeare). Happy to hear any feedback (and bug reports too)! https://ift.tt/eMYTHRh February 22, 2022 at 08:03PM

Show HN: A collection of random shell scripts https://ift.tt/co5V7wb

Show HN: A collection of random shell scripts A collection of totally random scripts. Hope someone finds them useful. https://ift.tt/ibg879n February 22, 2022 at 07:02PM

from Blogger https://ift.tt/DOLGpdT



via Tumblr https://ift.tt/TQiI8vy

from Blogger https://ift.tt/L1BQVHv
from Tumblr https://serenejas.tumblr.com/post/676906977799045120

Show HN: A collection of random shell scripts https://ift.tt/co5V7wb

Show HN: A collection of random shell scripts A collection of totally random scripts. Hope someone finds them useful. https://ift.tt/ibg879n February 22, 2022 at 07:02PM

from Blogger https://ift.tt/DOLGpdT


from Tumblr https://serenejas.tumblr.com/post/676904948695498752

Show HN: A collection of random shell scripts https://ift.tt/co5V7wb

Show HN: A collection of random shell scripts A collection of totally random scripts. Hope someone finds them useful. https://ift.tt/ibg879n February 22, 2022 at 07:02PM

from Blogger https://ift.tt/DOLGpdT



via Tumblr https://ift.tt/TQiI8vy

Show HN: A collection of random shell scripts https://ift.tt/co5V7wb

Show HN: A collection of random shell scripts A collection of totally random scripts. Hope someone finds them useful. https://ift.tt/ibg879n February 22, 2022 at 07:02PM

Monday, February 21, 2022

Show HN: Trilium.cc – Paid hosting for Trilium Notes, a personal knowledge base https://ift.tt/ezu1PxU

Show HN: Trilium.cc – Paid hosting for Trilium Notes, a personal knowledge base https://ift.tt/SPlYH7J February 22, 2022 at 04:07AM

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/zSHQoAG

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/ntyB2A8 February 21, 2022 at 10:57PM

from Blogger https://ift.tt/ZAsSHFT


from Tumblr https://serenejas.tumblr.com/post/676814352562733056

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/zSHQoAG

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/ntyB2A8 February 21, 2022 at 10:57PM

from Blogger https://ift.tt/ZAsSHFT



via Tumblr https://ift.tt/BXrUTD5

Show HN: DendroRithms – Generative art inspired by tree growth rings https://ift.tt/yaj9WP7

Show HN: DendroRithms – Generative art inspired by tree growth rings https://ift.tt/nFCzuUp February 22, 2022 at 01:48AM

Show HN: Google Drive to SQLite https://ift.tt/v7SJa0f

Show HN: Google Drive to SQLite https://ift.tt/siHK1fh February 22, 2022 at 12:12AM

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/zSHQoAG

Show HN: Prisma Python – A fully typed ORM for Python https://ift.tt/ntyB2A8 February 21, 2022 at 10:57PM

Sunday, February 20, 2022

Show HN: Crosswordle – Reverse Wordle on Hard Mode https://ift.tt/BU4q2Ds

Show HN: Crosswordle – Reverse Wordle on Hard Mode https://ift.tt/vjDYTsi February 21, 2022 at 01:20AM

from Blogger https://ift.tt/j5lYoqF



via Tumblr https://ift.tt/QtS3qml

Show HN: First milestone of my first GBC game – a StickRGB re-implementation https://ift.tt/oDva9d7

Show HN: First milestone of my first GBC game – a StickRGB re-implementation https://ift.tt/8H6luR3 February 21, 2022 at 02:40AM

Show HN: Newser, utility written in go to generate a pdf with news content https://ift.tt/8xHweTj

Show HN: Newser, utility written in go to generate a pdf with news content I've gotten myself a Supernote A5X (awesome device btw) and since it doesn't have a web browser or anything I've wanted to have a way to read news on it. I've hacked together this utility in a couple of days and it works wonders for me personally so I thought it might be interesting to others. It can also be used as a noise free newspaper generator as it removes images/ads/links and other noisy stuff. https://ift.tt/Su7EifL (there is a screenshot of the first page of the generated pdf) It scrapes (news) websites for content and puts it into a pdf. For me the pdf location is my dropbox supernote directory so my setup is to run this thing daily and have a fresh pdf with news whenever I want it. It's rough around the edges probably (currently added crawl support for verge, ars, engadget) but I think it's a good base so if anyone wants to contribute feel free. Some of the stuff I want to add is pictures (maybe), maybe parse the text html to include font styling and other stuff. I've tried to generalize it as much as possible so the crawling is pretty much automatic and is controlled by a config file where you define "rules" on how to parse the website. February 21, 2022 at 02:58AM

Show HN: On browser speech recognition for video control https://ift.tt/3xkHMFD

Show HN: On browser speech recognition for video control https://ift.tt/BQ1MAu6 February 21, 2022 at 02:08AM

Show HN: Crosswordle – Reverse Wordle on Hard Mode https://ift.tt/BU4q2Ds

Show HN: Crosswordle – Reverse Wordle on Hard Mode https://ift.tt/vjDYTsi February 21, 2022 at 01:20AM

Saturday, February 19, 2022

Show HN: ultra minimal markdown static site generator https://ift.tt/5UnrTMy

Show HN: ultra minimal markdown static site generator https://ift.tt/WeqgVEv February 19, 2022 at 10:34PM

from Blogger https://ift.tt/4BN6Fdr



via Tumblr https://ift.tt/CGAIVP6

Show HN: Full text search on 630M US court cases https://ift.tt/oOaiWDl

Show HN: Full text search on 630M US court cases https://ift.tt/qs0bXYy February 20, 2022 at 03:45AM

Show HN: Statusping.co – Website Monitoring Service https://ift.tt/Vmyj9eL

Show HN: Statusping.co – Website Monitoring Service Hi everyone Just launched a website monitoring service https://statusping.co . It constantly monitors your website and notifies you whenever it is unavailable or returns an unexpected response. If it seems like something useful to you please try it out https://statusping.co and let me know if you have any questions, feedback or anything else :) https://statusping.co February 20, 2022 at 02:23AM

Show HN: Arduino 6502 Controller https://ift.tt/RteGN2V

Show HN: Arduino 6502 Controller https://ift.tt/2rWQwkS February 20, 2022 at 02:13AM

Show HN: Trilby for Hacker News – An Elegant Way to Experience HN on Android https://ift.tt/gEmCKqu

Show HN: Trilby for Hacker News – An Elegant Way to Experience HN on Android Fellow HNers, I just published a brand new Hacker News client for Android. This is my first mobile app ever, and I worked on this for the last two months. It features / lets you: Browse and read Hacker News - view popular and latest articles. Beautiful design and typography. Login to Hacker News, post new stories, comment and interact with others. Powerful search powered by Algolia, filter to get your desired results. View yours and others' profiles: see bio and latest activities. In-app web view when you don't want to leave the app. Personalize the app the way you want - select your favorite fonts. Compact Mode when you don't want any distractions. Meticulously crafted skins and comment themes, auto dark mode. Open native HN links within the app - look for the Orange links. Keep track of your read articles. View single comment threads. Preview your comment before posting/ ...and countless more. Your opinion matters the most to me, so feel free to reach me. The iOS version should be coming soon. I wish you a nice weekend. https://ift.tt/Obh72ED February 20, 2022 at 02:06AM

Show HN: ultra minimal markdown static site generator https://ift.tt/5UnrTMy

Show HN: ultra minimal markdown static site generator https://ift.tt/WeqgVEv February 19, 2022 at 10:34PM

Friday, February 18, 2022

Show HN: Replace 't' with 'q' in a Spotify URL to remove personalization https://ift.tt/rHUn0P7

Show HN: Replace ’t’ with ‘q’ in a Spotify URL to remove personalization https://spoqify.com/ February 18, 2022 at 05:45PM

from Blogger https://ift.tt/2km8aqL


from Tumblr https://serenejas.tumblr.com/post/676546318415675392

Show HN: Replace 't' with 'q' in a Spotify URL to remove personalization https://ift.tt/rHUn0P7

Show HN: Replace ’t’ with ‘q’ in a Spotify URL to remove personalization https://spoqify.com/ February 18, 2022 at 05:45PM

from Blogger https://ift.tt/2km8aqL



via Tumblr https://ift.tt/UmiQ9Fp

Show HN: Blokfeed – A simple crypto news aggregator https://ift.tt/2z5kI6v

Show HN: Blokfeed – A simple crypto news aggregator Hi everyone! Scratched an itch and solved an issue I had while trying to stay up to date with crypto and blockchain news. I realized I was spending too much time bouncing around various sites to find recent news articles. So I built blokfeed.com to help me sift through crypto news more efficiently. I have plans on building in more features. Check it out - hope it helps you as well! blokfeed.com February 19, 2022 at 01:42AM

Show HN: A Theory of Anxiety Conditions https://ift.tt/PUzQ9Iy

Show HN: A Theory of Anxiety Conditions Hi HN, I ve been in this community for a while now and have a huge amount of respect for the people and the forum so I wanted to post this here. This is a pretty random one and I wish to emphasise from the very beginning this is not medical advice and is only based on what I saw in myself. It is therefore entirely up to anyone kind enough to have a read to decide whether they think what I describe makes any sense for them. If people have comments or thoughts I think it would be quite cool to use the GitHub issues as a forum for discussion and collecting peoples’ feedback. TLDR When I was diagnosed with an anxiety condition I thought about the specifics of what was going on in my mind probably an unhealthy amount. I wrote it down, then rewrote it many many times and it then sat in my draw for a few years, and I ve finally decided I should put it online just in case it helps someone else. I believe we have largely overlooked the possibility of using introspection of one’s own consciousness to gain scientific understanding and theories of the casual mechanism involved in anxiety conditions. I propose that when I study my own consciousness there appear to be useful abstractions (many of which we already allude to in common language) and that formalising the system described by these abstractions appears to be useful for understanding the casual mechanism underlying the anxiety conditions I experienced. At it’s most basic the casual mechanism I propose relates to the existence (under certain conditions / beliefs) of a feedback loop between those feelings that are partially endogenous and our thoughts (under the definitions of these terms laid out in the essay). Whilst I can only analyse myself, this casual mechanism also appears to be consistent with and explain many of the clinical characteristics of the anxiety conditions described in the DSM. I believe it also sheds light on the current successful therapeutic approaches as well as their failings. However, as emphasised throughout, this is, and can only ever be a theory about me, and can only ever be falsified on an individual basis. Therefore, I would love to hear other peoples’ opinions on whether this description of my conscious experience and the theory I propose is also true for them. Github issues - https://ift.tt/DhZWfgt... PS apologies for the website I m no web developer https://ift.tt/YMF4dKo February 19, 2022 at 02:53AM

Show HN: Morse Codle – Wordle with Morse Code https://ift.tt/8zHcPkI

Show HN: Morse Codle – Wordle with Morse Code https://ift.tt/FHAonZs February 19, 2022 at 01:43AM

Show HN: Replace 't' with 'q' in a Spotify URL to remove personalization https://ift.tt/rHUn0P7

Show HN: Replace 't' with 'q' in a Spotify URL to remove personalization https://spoqify.com/ February 18, 2022 at 05:45PM

Thursday, February 17, 2022

Show HN: I've compiled Firefox iOS together with a cookie blocker https://ift.tt/kDdZSg3

Show HN: I've compiled Firefox iOS together with a cookie blocker https://ift.tt/6raGSu7 February 18, 2022 at 03:06AM

Show HN: Send private messages to anyone on HN https://ift.tt/wK30pMR

Show HN: Send private messages to anyone on HN https://fro.app This is an experimental app that I’ve been working on. I wanted to send a direct private message to someone on HN (similar to what they have on Reddit). - You create an account - You connect your HN account (by inserting a code on your HN about) - You type HN username and send a message - The message will be “received” once the other person also connects their HN account. Some built-in rules - Send up to 5 messages within 24 hour period. - If you get flagged as SPAM more than twice within 24 hour period, you won’t be able to send a message for the next 24 hours. I’m sure I’ll need to adjust rules as I go. But it’s been pretty fun building it. And I’m sure many of you will… probably not like the idea of it. :) oh the joy of the Internet. February 18, 2022 at 01:13AM

from Blogger https://ift.tt/NSOx2Rl



via Tumblr https://ift.tt/71GOvgE

from Blogger https://ift.tt/PCtmvMp
from Tumblr https://serenejas.tumblr.com/post/676461492775911424

Show HN: Hacker News clone using Remix and React https://ift.tt/KJUSPhN

Show HN: Hacker News clone using Remix and React Hi all, author here. This project was a pleasure to do, Remix has very good developer experience. But further than that it’s actually a really good way to develop applications, it’s a mix of old meets new where the paradigm encourages you to take advantage of web standards for data fetching (forms, links, a tags). And it turns out that it’s actually an optimal way to develop simple or even complex web applications which can deploy in a number of runtime environments (including edge workers). So you can get an insanely fast website for users. Note that this project is not necessarily an optimal website implementation (since it copies Hacker News) but rather it’s intended to be useful as a starting point or reference for your own projects! You can read about some of the benefits of it on the project page linked. By the way I’m currently available to work (if you email me at clinton.dannolfo @gmail!) https://ift.tt/TQ5hzPO February 17, 2022 at 11:08PM

from Blogger https://ift.tt/2HZyXUR



via Tumblr https://ift.tt/wnR7fym

from Blogger https://ift.tt/JoSR6dD
from Tumblr https://serenejas.tumblr.com/post/676461492253687808

Show HN: Send private messages to anyone on HN https://ift.tt/wK30pMR

Show HN: Send private messages to anyone on HN https://fro.app This is an experimental app that I’ve been working on. I wanted to send a direct private message to someone on HN (similar to what they have on Reddit). - You create an account - You connect your HN account (by inserting a code on your HN about) - You type HN username and send a message - The message will be “received” once the other person also connects their HN account. Some built-in rules - Send up to 5 messages within 24 hour period. - If you get flagged as SPAM more than twice within 24 hour period, you won’t be able to send a message for the next 24 hours. I’m sure I’ll need to adjust rules as I go. But it’s been pretty fun building it. And I’m sure many of you will… probably not like the idea of it. :) oh the joy of the Internet. February 18, 2022 at 01:13AM

from Blogger https://ift.tt/NSOx2Rl


from Tumblr https://serenejas.tumblr.com/post/676459512742510592

Show HN: Hacker News clone using Remix and React https://ift.tt/KJUSPhN

Show HN: Hacker News clone using Remix and React Hi all, author here. This project was a pleasure to do, Remix has very good developer experience. But further than that it’s actually a really good way to develop applications, it’s a mix of old meets new where the paradigm encourages you to take advantage of web standards for data fetching (forms, links, a tags). And it turns out that it’s actually an optimal way to develop simple or even complex web applications which can deploy in a number of runtime environments (including edge workers). So you can get an insanely fast website for users. Note that this project is not necessarily an optimal website implementation (since it copies Hacker News) but rather it’s intended to be useful as a starting point or reference for your own projects! You can read about some of the benefits of it on the project page linked. By the way I’m currently available to work (if you email me at clinton.dannolfo @gmail!) https://ift.tt/TQ5hzPO February 17, 2022 at 11:08PM

from Blogger https://ift.tt/2HZyXUR


from Tumblr https://serenejas.tumblr.com/post/676459512158437376

Show HN: Send private messages to anyone on HN https://ift.tt/wK30pMR

Show HN: Send private messages to anyone on HN https://fro.app This is an experimental app that I’ve been working on. I wanted to send a direct private message to someone on HN (similar to what they have on Reddit). - You create an account - You connect your HN account (by inserting a code on your HN about) - You type HN username and send a message - The message will be “received” once the other person also connects their HN account. Some built-in rules - Send up to 5 messages within 24 hour period. - If you get flagged as SPAM more than twice within 24 hour period, you won’t be able to send a message for the next 24 hours. I’m sure I’ll need to adjust rules as I go. But it’s been pretty fun building it. And I’m sure many of you will… probably not like the idea of it. :) oh the joy of the Internet. February 18, 2022 at 01:13AM

from Blogger https://ift.tt/NSOx2Rl



via Tumblr https://ift.tt/71GOvgE

Show HN: Hacker News clone using Remix and React https://ift.tt/KJUSPhN

Show HN: Hacker News clone using Remix and React Hi all, author here. This project was a pleasure to do, Remix has very good developer experience. But further than that it’s actually a really good way to develop applications, it’s a mix of old meets new where the paradigm encourages you to take advantage of web standards for data fetching (forms, links, a tags). And it turns out that it’s actually an optimal way to develop simple or even complex web applications which can deploy in a number of runtime environments (including edge workers). So you can get an insanely fast website for users. Note that this project is not necessarily an optimal website implementation (since it copies Hacker News) but rather it’s intended to be useful as a starting point or reference for your own projects! You can read about some of the benefits of it on the project page linked. By the way I’m currently available to work (if you email me at clinton.dannolfo @gmail!) https://ift.tt/TQ5hzPO February 17, 2022 at 11:08PM

from Blogger https://ift.tt/2HZyXUR



via Tumblr https://ift.tt/wnR7fym

Show HN: Send private messages to anyone on HN https://ift.tt/wK30pMR

Show HN: Send private messages to anyone on HN https://fro.app This is an experimental app that I've been working on. I wanted to send a direct private message to someone on HN (similar to what they have on Reddit). - You create an account - You connect your HN account (by inserting a code on your HN about) - You type HN username and send a message - The message will be "received" once the other person also connects their HN account. Some built-in rules - Send up to 5 messages within 24 hour period. - If you get flagged as SPAM more than twice within 24 hour period, you won't be able to send a message for the next 24 hours. I'm sure I'll need to adjust rules as I go. But it's been pretty fun building it. And I'm sure many of you will... probably not like the idea of it. :) oh the joy of the Internet. February 18, 2022 at 01:13AM

Show HN: Hacker News clone using Remix and React https://ift.tt/KJUSPhN

Show HN: Hacker News clone using Remix and React Hi all, author here. This project was a pleasure to do, Remix has very good developer experience. But further than that it's actually a really good way to develop applications, it's a mix of old meets new where the paradigm encourages you to take advantage of web standards for data fetching (forms, links, a tags). And it turns out that it's actually an optimal way to develop simple or even complex web applications which can deploy in a number of runtime environments (including edge workers). So you can get an insanely fast website for users. Note that this project is not necessarily an optimal website implementation (since it copies Hacker News) but rather it's intended to be useful as a starting point or reference for your own projects! You can read about some of the benefits of it on the project page linked. By the way I'm currently available to work (if you email me at clinton.dannolfo @gmail!) https://ift.tt/TQ5hzPO February 17, 2022 at 11:08PM

Wednesday, February 16, 2022

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

from Blogger https://ift.tt/yUPplfH



via Tumblr https://ift.tt/xzC7Yu3

from Blogger https://ift.tt/uK0sw63
from Tumblr https://serenejas.tumblr.com/post/676363350363553792

Show HN: hue.tools – open-source toolbox for colors https://ift.tt/ZTKCQdE

Show HN: hue.tools – open-source toolbox for colors https://hue.tools February 17, 2022 at 12:35AM

from Blogger https://ift.tt/dHlMhwf



via Tumblr https://ift.tt/uJtTyI9

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

from Blogger https://ift.tt/yUPplfH


from Tumblr https://serenejas.tumblr.com/post/676361345379221504

from Blogger https://ift.tt/2fD8oVp

via Tumblr https://ift.tt/0YqvPf4

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

from Blogger https://ift.tt/yUPplfH



via Tumblr https://ift.tt/xzC7Yu3

from Blogger https://ift.tt/uK0sw63

via Tumblr https://ift.tt/eA6U7Gs

Show HN: hue.tools – open-source toolbox for colors https://ift.tt/ZTKCQdE

Show HN: hue.tools – open-source toolbox for colors https://hue.tools February 17, 2022 at 12:35AM

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

from Blogger https://ift.tt/yUPplfH


from Tumblr https://serenejas.tumblr.com/post/676361345379221504

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

from Blogger https://ift.tt/yUPplfH



via Tumblr https://ift.tt/xzC7Yu3

Show HN: HN to E-Book is now open-source https://ift.tt/7lNi9Mu

Show HN: HN to E-Book is now open-source https://ift.tt/5xuKrdp February 17, 2022 at 12:09AM

Tuesday, February 15, 2022

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/kLXGgCr

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/LDtYGKA February 15, 2022 at 10:47PM

from Blogger https://ift.tt/HPcxk2L



via Tumblr https://ift.tt/Yy9lgLU

from Blogger https://ift.tt/hqmB1V2

via Tumblr https://ift.tt/v0Rd4xy

Show HN: Svix – Open-Source Webhooks Service Written in Rust https://ift.tt/1hWCMEf

Show HN: Svix – Open-Source Webhooks Service Written in Rust We are super excited to be open sourcing the Svix webhooks dispatcher! Svix makes it easy to send webhooks. You send your payload to Svix, and Svix takes care of deliverability, retries, security, and more. You can read more about why we built Svix in the original Show HN[0], though the gist is: our customers wanted webhooks to build integrations and workflows around our product, but we weren't willing to commit the engineering time, resources and ongoing maintenance required of a webhook delivery system. Why open source? On a personal level, I've been an open source maintainer and contributor for many years, and I care a lot about open source. So open-sourcing the Svix dispatcher was one of the first tickets I created on our issue tracker. As for the company, webhooks are currently a mess, everyone does them differently, with differing levels of quality and features supported. This is something we really want to fix. The Svix service is already making a difference there (we're lucky enough to call some really cool companies our customers), and open-sourcing the dispatcher is the next logical step to increase our impact. Why Rust? It's really fast, it makes writing secure and correct code easier, it's easier to deploy and distribute (one static binary), and it's a lot more fun. :) Webhooks are really cool, and I absolutely love what they enable. They make the web compose-able, interconnected, and enable people to automate a lot of their work! Our goal is to make them easy, reliable, and consistent, so that more services offer them and they are easier to consume. I'd love to hear your feedback! We've incorporated most of the comments we got the last time[0] (thanks again everyone!), and we would love to know how we can improve the product further. Got any suggestions? Homepage: https://www.svix.com Repo: https://ift.tt/9jZFwCy Docs: https://docs.svix.com/ API reference: https://api.svix.com/ [0] https://ift.tt/EY5eqKV https://ift.tt/p8K9Qwl February 15, 2022 at 11:38PM

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/kLXGgCr

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/LDtYGKA February 15, 2022 at 10:47PM

from Blogger https://ift.tt/HPcxk2L


from Tumblr https://serenejas.tumblr.com/post/676270757055250432

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/kLXGgCr

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/LDtYGKA February 15, 2022 at 10:47PM

from Blogger https://ift.tt/HPcxk2L



via Tumblr https://ift.tt/Yy9lgLU

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/kLXGgCr

Show HN: A Search Engine for Remote Only Engineering Jobs https://ift.tt/LDtYGKA February 15, 2022 at 10:47PM

Monday, February 14, 2022

Sunday, February 13, 2022

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR


from Tumblr https://serenejas.tumblr.com/post/676104679604764673

from Blogger https://ift.tt/d1IehQ5
from Tumblr https://serenejas.tumblr.com/post/676107475904233472

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR


from Tumblr https://serenejas.tumblr.com/post/676104679604764673

from Blogger https://ift.tt/d1IehQ5

via Tumblr https://ift.tt/EdaLZux

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR



via Tumblr https://ift.tt/nkw1tKi

from Blogger https://ift.tt/VEmHW8g

via Tumblr https://ift.tt/CHmkMGB

Show HN: Physically-based GPU raytracer from scratch https://ift.tt/GdBToDv

Show HN: Physically-based GPU raytracer from scratch https://ift.tt/ksmiQML February 14, 2022 at 02:36AM

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR



via Tumblr https://ift.tt/nkw1tKi

from Blogger https://ift.tt/VEmHW8g
from Tumblr https://serenejas.tumblr.com/post/676106680742854656

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR


from Tumblr https://serenejas.tumblr.com/post/676104679604764673

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

from Blogger https://ift.tt/IW8ZbQR



via Tumblr https://ift.tt/nkw1tKi

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://ift.tt/izq0nLO

Show HN: Colordle – Guess the color and create unexpected, beautiful gradients https://colordle.com February 13, 2022 at 08:53PM

Saturday, February 12, 2022

Show HN: Kalendar 1.0 Is Out https://ift.tt/WFsVnik

Show HN: Kalendar 1.0 Is Out https://ift.tt/tilCGmP February 13, 2022 at 03:25AM

from Blogger https://ift.tt/USOk0Mn


from Tumblr https://serenejas.tumblr.com/post/676014064598646784

Show HN: Runk – a CLI based file and folder sharer over network https://ift.tt/4bdx8WP

Show HN: Runk – a CLI based file and folder sharer over network https://ift.tt/EvmXxCK February 12, 2022 at 10:48PM

from Blogger https://ift.tt/ErgUD6v


from Tumblr https://serenejas.tumblr.com/post/676010292038238208

Show HN: Live dashboards to embed in your GitHub README.md https://ift.tt/AM7lISg

Show HN: Live dashboards to embed in your GitHub README.md https://repography.com/ February 13, 2022 at 12:27AM

from Blogger https://ift.tt/ksEbf6d


from Tumblr https://serenejas.tumblr.com/post/676002742987358208

from Blogger https://ift.tt/UC1DO9k
from Tumblr https://serenejas.tumblr.com/post/676009334110601216

Show HN: Live dashboards to embed in your GitHub README.md https://ift.tt/AM7lISg

Show HN: Live dashboards to embed in your GitHub README.md https://repography.com/ February 13, 2022 at 12:27AM

from Blogger https://ift.tt/ksEbf6d



via Tumblr https://ift.tt/LtRGeb0

from Blogger https://ift.tt/UajYuFT
from Tumblr https://serenejas.tumblr.com/post/676008534142500864

Show HN: Kalendar 1.0 Is Out https://ift.tt/WFsVnik

Show HN: Kalendar 1.0 Is Out https://ift.tt/tilCGmP February 13, 2022 at 03:25AM

Show HN: Runk – a CLI based file and folder sharer over network https://ift.tt/4bdx8WP

Show HN: Runk – a CLI based file and folder sharer over network https://ift.tt/EvmXxCK February 12, 2022 at 10:48PM

Show HN: Live dashboards to embed in your GitHub README.md https://ift.tt/AM7lISg

Show HN: Live dashboards to embed in your GitHub README.md https://repography.com/ February 13, 2022 at 12:27AM

from Blogger https://ift.tt/ksEbf6d


from Tumblr https://serenejas.tumblr.com/post/676002742987358208

Show HN: Live dashboards to embed in your GitHub README.md https://ift.tt/AM7lISg

Show HN: Live dashboards to embed in your GitHub README.md https://repography.com/ February 13, 2022 at 12:27AM

from Blogger https://ift.tt/ksEbf6d



via Tumblr https://ift.tt/LtRGeb0

Show HN: Live dashboards to embed in your GitHub README.md https://ift.tt/AM7lISg

Show HN: Live dashboards to embed in your GitHub README.md https://repography.com/ February 13, 2022 at 12:27AM

Friday, February 11, 2022

Show HN: Windi – knowledge management and sharing platform based on short notes https://ift.tt/tbXu6Qy

Show HN: Windi – knowledge management and sharing platform based on short notes https://windi.app/ February 11, 2022 at 11:42PM

from Blogger https://ift.tt/5efrHqC



via Tumblr https://ift.tt/nk3URY5

Show HN: LiveViewJS – TypeScript back end for LiveView Apps (Phoenix LiveView) https://ift.tt/mGMkEI0

Show HN: LiveViewJS – TypeScript back end for LiveView Apps (Phoenix LiveView) Author here. I really love the programming paradigm behind by Phoenix LiveView applications and wanted to expand the ecosystem to include programmers like myself that love Typescript. In summary, LiveViewJS reuses all the Phoenix client code and implemented a new backend in Typescript to handle client events and send back updates. Lots more detail and examples in the repo. Would love any questions and/or feedback. Thanks! https://ift.tt/F5Ux7tr February 12, 2022 at 12:22AM

Show HN: Windi – knowledge management and sharing platform based on short notes https://ift.tt/tbXu6Qy

Show HN: Windi – knowledge management and sharing platform based on short notes https://windi.app/ February 11, 2022 at 11:42PM

from Blogger https://ift.tt/5efrHqC


from Tumblr https://serenejas.tumblr.com/post/675908392588574720

Show HN: Pumbaa – A portfolio simulation tool for passive, index investments https://ift.tt/dMtpcTE

Show HN: Pumbaa – A portfolio simulation tool for passive, index investments Hi HN, About a year ago I wrote a few scripts and spreadsheets to calculate the historical performance of various passive investment portfolios. There is portfoliovisualizer.com but if you are not from the US it's less relevant because everything is calculated with respect to the US dollar, and you cannot combine funds from other countries (say from the EU). In the past month I managed to turn it into a web app with the goal of giving individuals better tools for financial education. It allows you to build a portfolio composed of a few index funds (ETFs or mutual funds) and simulate its historical performance. It currently works with 7 currencies and includes funds from the US, EU, UK, Canada and Israel. Intentionally, only broad-market, passive index funds are included. If all of this doesn't mean much to you, you can visit the examples page to get a taste of some interesting portfolios. Here is an interesting example: For the past 22 years, US long-term treasuries had very similar returns to the S&P 500 (cherry-picked dates, but still interesting) [1]. On the technical side: The backend is a simple Flask app. A task runs once a day in the background to fetch the latest prices of ETFs and mutual funds from 20+ sources (central banks, stock exchanges). Frontend is Tailwind for CSS and a bit of native Javascript with d3. Everything runs on a $10/mo VPS. This is my first web app and there is still a lot of room for improvement so any feedback is welcome. Thanks in advance! [1] https://ift.tt/21y0ikz... https://pumbaa.app/ February 11, 2022 at 09:15PM

Show HN: An (attempted) TUI Wordle clone for bash https://ift.tt/gHrEmsu

Show HN: An (attempted) TUI Wordle clone for bash https://ift.tt/V87wNZJ February 12, 2022 at 12:02AM

Show HN: Windi – knowledge management and sharing platform based on short notes https://ift.tt/tbXu6Qy

Show HN: Windi – knowledge management and sharing platform based on short notes https://windi.app/ February 11, 2022 at 11:42PM

Thursday, February 10, 2022

Show HN: Super Pixel AllRGB https://ift.tt/zPdAQvg

Show HN: Super Pixel AllRGB https://ift.tt/T7aIRpx February 10, 2022 at 04:21PM

from Blogger https://ift.tt/oEYj27Z


from Tumblr https://serenejas.tumblr.com/post/675825021160161280

Show HN: Procrastinope – insert your todo list into your procrastination site https://ift.tt/ziqYfc1

Show HN: Procrastinope – insert your todo list into your procrastination site https://ift.tt/LI10Msm February 10, 2022 at 05:47PM

from Blogger https://ift.tt/l4qvV1f



via Tumblr https://ift.tt/i1t04Qq

Show HN: Super Pixel AllRGB https://ift.tt/zPdAQvg

Show HN: Super Pixel AllRGB https://ift.tt/T7aIRpx February 10, 2022 at 04:21PM

from Blogger https://ift.tt/oEYj27Z



via Tumblr https://ift.tt/8ZNQW3J

Show HN: Msgspec – a fast JSON/MessagePack library for Python https://ift.tt/RatXD29

Show HN: Msgspec – a fast JSON/MessagePack library for Python https://ift.tt/KNexwWE February 11, 2022 at 12:57AM

Show HN: Tweet AI Generated Hot Takes https://ift.tt/dUDc9sh

Show HN: Tweet AI Generated Hot Takes https://ift.tt/eNltQXE February 11, 2022 at 12:04AM

Show HN: Procrastinope – insert your todo list into your procrastination site https://ift.tt/ziqYfc1

Show HN: Procrastinope – insert your todo list into your procrastination site https://ift.tt/LI10Msm February 10, 2022 at 05:47PM

Show HN: Super Pixel AllRGB https://ift.tt/zPdAQvg

Show HN: Super Pixel AllRGB https://ift.tt/T7aIRpx February 10, 2022 at 04:21PM

Wednesday, February 9, 2022

Show HN: I released an open-source Mac app to copy any text on the screen https://ift.tt/h7Yc64H

Show HN: I released an open-source Mac app to copy any text on the screen https://trex.ameba.co February 9, 2022 at 11:47PM

from Blogger https://ift.tt/TAidVOc



via Tumblr https://ift.tt/NSU0Dqs

from Blogger https://ift.tt/HcK92UE
from Tumblr https://serenejas.tumblr.com/post/675729199263268864

Show HN: I released an open-source Mac app to copy any text on the screen https://ift.tt/h7Yc64H

Show HN: I released an open-source Mac app to copy any text on the screen https://trex.ameba.co February 9, 2022 at 11:47PM

from Blogger https://ift.tt/TAidVOc



via Tumblr https://ift.tt/NSU0Dqs

from Blogger https://ift.tt/HcK92UE

via Tumblr https://ift.tt/XSf8kn6

Show HN: Open Policy Registry: a Docker-inspired workflow for OPA policies https://ift.tt/LXBNmjO

Show HN: Open Policy Registry: a Docker-inspired workflow for OPA policies https://ift.tt/G3OiTnV February 9, 2022 at 11:31PM

Show HN: I released an open-source Mac app to copy any text on the screen https://ift.tt/h7Yc64H

Show HN: I released an open-source Mac app to copy any text on the screen https://trex.ameba.co February 9, 2022 at 11:47PM

from Blogger https://ift.tt/TAidVOc


from Tumblr https://serenejas.tumblr.com/post/675727174025838592

Show HN: I released an open-source Mac app to copy any text on the screen https://ift.tt/h7Yc64H

Show HN: I released an open-source Mac app to copy any text on the screen https://trex.ameba.co February 9, 2022 at 11:47PM

from Blogger https://ift.tt/TAidVOc



via Tumblr https://ift.tt/NSU0Dqs

Show HN: I released an open-source Mac app to copy any text on the screen https://ift.tt/h7Yc64H

Show HN: I released an open-source Mac app to copy any text on the screen https://trex.ameba.co February 9, 2022 at 11:47PM

Tuesday, February 8, 2022

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

from Blogger https://ift.tt/SefbZF6



via Tumblr https://ift.tt/oVCljDX

from Blogger https://ift.tt/A4WRViQ
from Tumblr https://serenejas.tumblr.com/post/675638590256152576

from Blogger https://ift.tt/4tqxkD3
from Tumblr https://serenejas.tumblr.com/post/675639366160465920

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

from Blogger https://ift.tt/SefbZF6



via Tumblr https://ift.tt/oVCljDX

from Blogger https://ift.tt/A4WRViQ

via Tumblr https://ift.tt/LOZxJ0u

Show HN: CryptoSOR, a composite exchange order book https://ift.tt/OZdsl4L

Show HN: CryptoSOR, a composite exchange order book https://cryptosor.info/ February 8, 2022 at 11:11PM

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

from Blogger https://ift.tt/SefbZF6



via Tumblr https://ift.tt/oVCljDX

from Blogger https://ift.tt/A4WRViQ
from Tumblr https://serenejas.tumblr.com/post/675638590256152576

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

from Blogger https://ift.tt/SefbZF6


from Tumblr https://serenejas.tumblr.com/post/675636602684538880

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

from Blogger https://ift.tt/SefbZF6



via Tumblr https://ift.tt/oVCljDX

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/IyjgbeL

Show HN: ToolJet 1.0 – Extensible open-source alternative to Retool https://ift.tt/dwOtK7N February 8, 2022 at 07:47PM

Monday, February 7, 2022

Positive Attitude viably attracts endurance, sustainability,...



Positive Attitude viably attracts endurance, sustainability, better relationships and encourages newness in an individual’s life.https://amzn.to/3nGms2Y , #bornova, #nfts, #bambam, #rideordie, #nftgiveaway, #pokemonlegends, #slowmo, #rec, #loveiscolorblind, #aosilove, #gcwifidie, #1004nikka_sells, #angelinequinto, #yuju, #julieannesanjose, #lillies, #shamitashetty, #blinks, #metabunni, #apologizemoitra, #puebla, #bgyo, #indiancricketteam, #jmyosures — view on Instagram https://ift.tt/6jl03Ot


from Tumblr https://serenejas.tumblr.com/post/675534748425273344

from Blogger https://ift.tt/wAkH2aR
from Tumblr https://serenejas.tumblr.com/post/675545014412165120

Show HN: A database for broken and worn-out products to identify cheap products https://ift.tt/PfhcYyD

Show HN: A database for broken and worn-out products to identify cheap products https://ift.tt/3pcJWIx February 7, 2022 at 11:13PM

Show HN: Multimodal AI to process video content like Big Data https://ift.tt/N2rAc51

Show HN: Multimodal AI to process video content like Big Data https://newsbridge.io/ February 7, 2022 at 11:07PM

Show HN: Don't forget who you're building for https://ift.tt/lyfPD8x

Show HN: Don't forget who you're building for https://ift.tt/vhJ5Q4X February 7, 2022 at 10:56PM

What Happens If There Is A Financial Storm? ...



What Happens If There Is A Financial Storm? https://bit.ly/34wY7pw , #asdor, #sixtonesann, #winmetawin, #onurseyityaran, #girlsgeneration,, #nft, #welcomehomemew , #sundayvibes , #ayber, #melisminkari, #saturdaythoughts #alsancak, #gaziemir, #recepusta, #rt, #sundayvibes — view on Instagram https://ift.tt/gdoqX41


from Tumblr https://serenejas.tumblr.com/post/675536005037703168

Positive Attitude viably attracts endurance, sustainability,...



Positive Attitude viably attracts endurance, sustainability, better relationships and encourages newness in an individual’s life.https://amzn.to/3nGms2Y , #bornova, #nfts, #bambam, #rideordie, #nftgiveaway, #pokemonlegends, #slowmo, #rec, #loveiscolorblind, #aosilove, #gcwifidie, #1004nikka_sells, #angelinequinto, #yuju, #julieannesanjose, #lillies, #shamitashetty, #blinks, #metabunni, #apologizemoitra, #puebla, #bgyo, #indiancricketteam, #jmyosures — view on Instagram https://ift.tt/6jl03Ot


from Tumblr https://serenejas.tumblr.com/post/675534748425273344

Sunday, February 6, 2022

Show HN: Apps on a Chat Application https://ift.tt/QeCJLdX

Show HN: Apps on a Chat Application https://ift.tt/mEcioRq February 7, 2022 at 12:26AM

What Happens If There Is A Financial Storm? ...



What Happens If There Is A Financial Storm? https://bit.ly/34wY7pw , #asdor, #sixtonesann, #winmetawin, #onurseyityaran, #girlsgeneration,, #nft, #welcomehomemew , #sundayvibes , #ayber, #melisminkari, #saturdaythoughts #alsancak, #gaziemir, #recepusta, #rt, #sundayvibes — view on Instagram https://ift.tt/AHoxaLR


from Tumblr https://serenejas.tumblr.com/post/675444153676627968

Money Mindset Shift Planner -Money Manifestation Journal...



Money Mindset Shift Planner -Money Manifestation Journal Abundance #Prosperity #Printable #tech #technologynews #technews #5G #5Gworld #entrepreneurship #dimension, #dynamite, , #praew42nd, #im, #venom, #behind, #p1harmony, , #a10tion, #theo, #shopeexboombigboom, #samurai_story, #didntknow, #lwsecretwedding, #maharshi, #perfectworld, #musicbnk48 — view on Instagram https://ift.tt/mXZwjxu



via Tumblr https://ift.tt/1KVhMt4

Online Income Generation Evolution : Practical Passive income...



Online Income Generation Evolution : Practical Passive income Streams https://amzn.to/2Z6MpNt #nftgiveaways, #gebzeescort, #burgerqueens, #offgun #litnation, #kcontacthi5, #to1, #mpowered, #bluechallenge, #cismpak2021_lahore #nonttanont, — view on Instagram https://ift.tt/pLG8szb



via Tumblr https://ift.tt/sVN8d6f

Set Your Money Mindset to Passive Income – Simily...



Set Your Money Mindset to Passive Income – Simily https://bit.ly/3sq1wim #rollergulfsecret, #welcomehomemew, #nft, #tejran, #izmir, #nctdream, #nct #bornova , #rt, #ayber, #melisminkari, #warwanarat, #bts, #recepusta, #prologue, #ateez, #genshinimpact, #laneigexyinwar, #cover, #dutybrandxwar #writercommunity #amwriting #amreading #moneymaking #passiveincome
#saturdaymotivation — view on Instagram https://ift.tt/xZXpQtW



via Tumblr https://ift.tt/gvftHlj

NFT Games Exposed: How To Earn #Crypto Coins From Play-to-Earn...



NFT Games Exposed: How To Earn #Crypto Coins From Play-to-Earn Games
https://amzn.to/3rbtEX0 #gamers #players #nftgiveaway #nfts #nintendoswitch, #powerghost, #pokemonlegends, #webtoon #nft #snowdropfinale, #rt, #louies, #nfts, #nflplayoffs, #rulethejungle #nftgiveaway, — view on Instagram https://ift.tt/vF8qED6



via Tumblr https://ift.tt/19O8M0y

What Happens If There Is A Financial Storm? ...



What Happens If There Is A Financial Storm? https://bit.ly/34wY7pw , #asdor, #sixtonesann, #winmetawin, #onurseyityaran, #girlsgeneration,, #nft, #welcomehomemew , #sundayvibes , #ayber, #melisminkari, #saturdaythoughts #alsancak, #gaziemir, #recepusta, #rt, #sundayvibes — view on Instagram https://ift.tt/AHoxaLR



via Tumblr https://ift.tt/QCeSNou

Saturday, February 5, 2022

Show HN: I made app hide url in Chrome while screen share https://ift.tt/BfVOz2E

Show HN: I made app hide url in Chrome while screen share hello everyone i am the developer of blurweb.app, after a year of being live and being used by more than 3000 people I got many request of people interest to hide url while screen share so i build blurscreen.app please check it out and let me know what you think https://ift.tt/Iifw3Px February 6, 2022 at 12:52AM

from Blogger https://ift.tt/iUGRxXW



via Tumblr https://ift.tt/eS3yGEf

Show HN: I made app hide url in Chrome while screen share https://ift.tt/BfVOz2E

Show HN: I made app hide url in Chrome while screen share hello everyone i am the developer of blurweb.app, after a year of being live and being used by more than 3000 people I got many request of people interest to hide url while screen share so i build blurscreen.app please check it out and let me know what you think https://ift.tt/Iifw3Px February 6, 2022 at 12:52AM

from Blogger https://ift.tt/iUGRxXW


from Tumblr https://serenejas.tumblr.com/post/675368562744016896

Show HN: Lava lamp simulated by neural net in infinite loop https://ift.tt/QAHguFN

Show HN: Lava lamp simulated by neural net in infinite loop duralava is a neural network which can simulate a lava lamp in an infinite loop. It uses a recurrent GAN that learns the physical behavior of the lava lamp. A noteworthy aspect is that can generate an arbitrarily long video of a (virtual) lava lamp, without diverging even after thousands of frames. https://ift.tt/lwG31aQ February 5, 2022 at 11:52PM

from Blogger https://ift.tt/NcMSaxT



via Tumblr https://ift.tt/nLjs7To

Show HN: Lava lamp simulated by neural net in infinite loop https://ift.tt/QAHguFN

Show HN: Lava lamp simulated by neural net in infinite loop duralava is a neural network which can simulate a lava lamp in an infinite loop. It uses a recurrent GAN that learns the physical behavior of the lava lamp. A noteworthy aspect is that can generate an arbitrarily long video of a (virtual) lava lamp, without diverging even after thousands of frames. https://ift.tt/lwG31aQ February 5, 2022 at 11:52PM

from Blogger https://ift.tt/NcMSaxT


from Tumblr https://serenejas.tumblr.com/post/675364773859328000

Show HN: I made app hide url in Chrome while screen share https://ift.tt/BfVOz2E

Show HN: I made app hide url in Chrome while screen share hello everyone i am the developer of blurweb.app, after a year of being live and being used by more than 3000 people I got many request of people interest to hide url while screen share so i build blurscreen.app please check it out and let me know what you think https://ift.tt/Iifw3Px February 6, 2022 at 12:52AM

Show HN: Lava lamp simulated by neural net in infinite loop https://ift.tt/QAHguFN

Show HN: Lava lamp simulated by neural net in infinite loop duralava is a neural network which can simulate a lava lamp in an infinite loop. It uses a recurrent GAN that learns the physical behavior of the lava lamp. A noteworthy aspect is that can generate an arbitrarily long video of a (virtual) lava lamp, without diverging even after thousands of frames. https://ift.tt/lwG31aQ February 5, 2022 at 11:52PM

Friday, February 4, 2022

Show HN: Download Twitter data without API keys https://ift.tt/tcVkgL9

Show HN: Download Twitter data without API keys In April last year I started thinking about using Twitter in a smarter way. I wanted to do analytics on my tweets and find out more about people following me on Twitter. What kinds of things do people who follow me like and retweet? I decided to dig into the data and find out. When I went to try and download Twitter data in raw form I found I quickly got bogged down writing API wrangling code and fiddling with API keys. I just wanted to crunch some data but here I was wrangling Twitter’s API. This was such a frustrating experience it suddenly looked like an opportunity to me. Was there room for a product here? A product which does one simple thing: help people extract Twitter data painlessly without writing any code. I did some research and discovered some tools that purported to do this, but none of them worked well for my use-case and all were badly designed and/or expensive. I decided to take a shot at it. I worked on this as a side project in a “calm company” fashion. Each week for 26 weeks I would put aside one day to chip away at the features. I tried not to think about how the issue tracker was filling up more and more. Several times I pared back the feature set to try to really focus on the core use-case. When my first user reached out and engaged I knew I might be onto something. I kept posting progress on Twitter and a few more people started to use it each week. Some of them came back, hinting at possible user retention. I hired a writer to write some articles to help with SEO and I kept working towards and MVP that I could use to test the market. Finally the day arrived where all of the critical issues in my issue tracker were closed. That meant it was launch day. That was yesterday. So here I am releasing this on Hacker News to you, dear reader. God speed little micro-SaaS, may the winds of fortune be at your back. https://tweetfeast.com/ February 3, 2022 at 12:28PM

from Blogger https://ift.tt/fz3SOgB


from Tumblr https://serenejas.tumblr.com/post/675274187410112512

from Tumblr https://serenejas.tumblr.com/post/675265090009874432

Show HN: A Penny for Your Thoughts https://ift.tt/Samvszd

Show HN: A Penny for Your Thoughts https://ift.tt/dD9tehG February 5, 2022 at 12:04AM

from Blogger https://ift.tt/tVa12u8



via Tumblr https://ift.tt/b5h3alv

Show HN: Download Twitter data without API keys https://ift.tt/tcVkgL9

Show HN: Download Twitter data without API keys In April last year I started thinking about using Twitter in a smarter way. I wanted to do analytics on my tweets and find out more about people following me on Twitter. What kinds of things do people who follow me like and retweet? I decided to dig into the data and find out. When I went to try and download Twitter data in raw form I found I quickly got bogged down writing API wrangling code and fiddling with API keys. I just wanted to crunch some data but here I was wrangling Twitter’s API. This was such a frustrating experience it suddenly looked like an opportunity to me. Was there room for a product here? A product which does one simple thing: help people extract Twitter data painlessly without writing any code. I did some research and discovered some tools that purported to do this, but none of them worked well for my use-case and all were badly designed and/or expensive. I decided to take a shot at it. I worked on this as a side project in a “calm company” fashion. Each week for 26 weeks I would put aside one day to chip away at the features. I tried not to think about how the issue tracker was filling up more and more. Several times I pared back the feature set to try to really focus on the core use-case. When my first user reached out and engaged I knew I might be onto something. I kept posting progress on Twitter and a few more people started to use it each week. Some of them came back, hinting at possible user retention. I hired a writer to write some articles to help with SEO and I kept working towards and MVP that I could use to test the market. Finally the day arrived where all of the critical issues in my issue tracker were closed. That meant it was launch day. That was yesterday. So here I am releasing this on Hacker News to you, dear reader. God speed little micro-SaaS, may the winds of fortune be at your back. https://tweetfeast.com/ February 3, 2022 at 12:28PM

from Blogger https://ift.tt/fz3SOgB



via Tumblr https://ift.tt/KEFpnH4


via Tumblr https://ift.tt/Q8qeskF

A Manual on Self-Defense Intended for Survivalists

In the state that the world is in, you need to know self defense. When the SHTF, you could be called on to have to defend yourself from some...