Tuesday, October 18, 2022

Show HN: Filesystem Watcher https://ift.tt/Ju9vMKC

Show HN: Filesystem Watcher https://ift.tt/YklvGV9 October 18, 2022 at 07:24PM

Show HN: Bruno – open-source API Client (alternative to postman)) https://ift.tt/yZvLAJz

Show HN: Bruno – open-source API Client (alternative to postman)) https://ift.tt/uP4Fs3g October 18, 2022 at 07:03AM

Show HN: Projectbook – a free collection of 100 project ideas for learning https://ift.tt/9uVhpa0

Show HN: Projectbook – a free collection of 100 project ideas for learning I've been hoarding ideas for what would make good learning projects when exploring new languages, frameworks, and libraries for years. So I decided to flesh those ideas out, create some mock-ups, and share them with the public. I originally just had ~20 projects, but as I kept working on it, more ideas kept coming up and it ended up coming to 109 ideas so far. Hope they offer some inspiration or guidance for those trying to learn but not sure what to build. Projectbook is free and open source. Contributions are welcome. And I'll keep adding to it as I come across ideas, resources, and implementations. https://ift.tt/hqNJKQL October 18, 2022 at 04:46PM

Show HN: Phobos – an engine extension of Red Alert 2: Yuri's Revenge https://ift.tt/Ar4VZS8

Show HN: Phobos – an engine extension of Red Alert 2: Yuri's Revenge https://ift.tt/WBzJQEP October 18, 2022 at 01:49PM

Show HN: LDAP Explorer for VS Code https://ift.tt/sP4QYrv

Show HN: LDAP Explorer for VS Code I use VS Code everyday and often need to look up Active Directory groups. I have been using ldapsearch and JXplorer for years but figured it would be more convenient to have an interface that integrates directly with VS Code so I made this extension. https://ift.tt/Jb4tncf October 18, 2022 at 06:27AM

Show HN: An app to split CSV into multiple files to avoid Excel's 1M row limit https://ift.tt/tqFgmVD

Show HN: An app to split CSV into multiple files to avoid Excel's 1M row limit https://ift.tt/dYyWtlP October 18, 2022 at 02:48AM

Monday, October 17, 2022

Show HN: Tiny:optional – a C++ optional that does not waste memory https://ift.tt/A3q1noZ

Show HN: Tiny:optional – a C++ optional that does not waste memory tiny::optional is a header-only C++ library for x86/x64 intended to be a drop-in replacement for std::optional with the twist that it does not require additional memory for bools, floats, doubles and raw pointers. For example, a standard optional double has twice the size of a raw double because of 7 padding bytes after the internal bool. These wasted bytes can have a notable impact on performance in memory bound applications. On the other hand, a tiny::optional double has the size of a double by exploiting unused bit patterns. For other types such as integers, it allows to specify a "sentinel" value that represents the empty state, again causing the optional to have the same size as the underlying type. Quick example: https://ift.tt/A8aK7VQ https://ift.tt/pDM4Uut October 17, 2022 at 05:56PM

Show HN: Happy Coder – End-to-End Encrypted Mobile Client for Claude Code https://ift.tt/vt1BkI0

Show HN: Happy Coder – End-to-End Encrypted Mobile Client for Claude Code Hey all! Few weeks ago we realized AI models are now so good you d...