Sunday, August 28, 2022

Show HN: Directly query 100M+ raw records of cleaned, refreshed financial data https://ift.tt/HsiYXCf

Show HN: Directly query 100M+ raw records of cleaned, refreshed financial data There are a lot of APIs that provide access to these types of data, but there were not any (as far as we're aware of) tools & services that provide access to query the raw data directly for analytical purposes. We get the data across different sources and clean, schematize them in a PostgreSQL databases so folks can query/analyze the data directly. We have ~100 tables of data across stocks, ETFs, economic indicators, US/international census data and plan to keep adding more. More information on the tables are available at https://docs.wizdata.io Access to all of the data is free, and we plan to (in the future) find ways to cover our costs by charging for folks who want to run their queries faster (e.g. by running their queries on separate compute clusters) or by providing custom integration to fit their data needs. Please take a look, and would please share any feedback with us here! https://www.wizdata.io August 28, 2022 at 06:51AM

Show HN: Hangman meets Wordle webapp in Angular https://ift.tt/md1ZXYv

Show HN: Hangman meets Wordle webapp in Angular Hey HN, I am a novice web developer, and I built a new webapp game in Angular that combines the game play of Hangman and Wordle. I chose this project because I wanted to learn Angular, while also developing something useful. I have some prior backend experience. And, I was pleasantly surprised with how much you can achieve in the pure JS/Typescript these days. For my app, the backend only sends the daily puzzle data in JSON, while the entire game logic and interactions are completely implemented in the frontend. I wrote around 4000 lines of the frontend code for this project. For me, the best part was RxJS integration in Angular. It also had a fair amount of learning curve. However, once you have learned the basics, it saves a lot of redundant boilerplate code and makes the code more readable and clean. You can play the game for free and there is no sign-up required: https://10letters.app The game does not save any user data at the server. All data is saved in the local storage. So, you can play the game again in the incognito mode, or after clearing your browser cache. If you have any questions or feedback, please feel free to add them in the comments. Thanks! https://10letters.app August 28, 2022 at 01:07AM

Show HN: Accept payments in crypto on your website (5 lines of code) https://ift.tt/ROjAZl2

Show HN: Accept payments in crypto on your website (5 lines of code) https://payonix.io/ August 28, 2022 at 01:57AM

Show HN: A piano chord reference tool https://ift.tt/PJ7fujC

Show HN: A piano chord reference tool https://pianochord.io/ August 28, 2022 at 01:23AM

Show HN: Make Any CLI into a GUI in Acme https://ift.tt/UhERHa5

Show HN: Make Any CLI into a GUI in Acme Hey HN. I've become enamored with the Acme editor. It's fascinating because it turns the Vim paradigm on its head: instead of maximizing your use of the keyboard, maximize your use of the mouse. I think this helps optimize for information management, as opposed to text manipulation. I realized a lot of the CLIs I use have the same structure, and with a small program I could convert them into GUIs inside Acme and make them much easier to use. Let me know what you think. https://ift.tt/PeUXQGx August 28, 2022 at 12:45AM

Show HN: E-graphs and equality saturation in Haskell https://ift.tt/XCTGpBg

Show HN: E-graphs and equality saturation in Haskell https://ift.tt/pe3wgSa August 28, 2022 at 12:18AM

Saturday, August 27, 2022

Show HN: A Minimal PHP Wiki https://ift.tt/Q2JOk8t

Show HN: A Minimal PHP Wiki First, I'm by no mean a programmer. Second, I am reading HN for years, just registered to make this public and see if it can be useful for someone. I have nothing to gain monetary. A while ago, I decided that no blogging system was simple enough and I looked for a small wiki to use as a CMS/blog. Found WikWiki on C2.com and I mixed it with some basic Markdown syntax, a minimal template and added password protection. The result is a single php file, no database and no dependencies. Code is a mess, not modulable, probably wrong in so many ways, but it can probably used by some as personal notepad, wiki, CMS, blog, etc. Any comments appreciated. https://ift.tt/r6Cb8uO August 27, 2022 at 02:46AM

Show HN: Petri – Drop-in Postgres image that forks a DB per test https://ift.tt/APIWNEf

Show HN: Petri – Drop-in Postgres image that forks a DB per test Rolling it out at work to parallelize 4,257 tests across 5 services. It fix...