Live data from Hacker News

Ask HN: What underrated open source project deserves more recognition?

news.ycombinator.com

11–20 of 147 posts

Re: Ask HN: What underrated open source project deserves more recognition?

#12
https://github.com/NightscoutFoundation/xDrip

xDrip+ is an unofficial and independent Android app which works as data hub and processor between many different devices.

It supports wireless connections to G4, G5, G6, G7, Medtrum A6, Libre via NFC and Bluetooth, 630G, 640G, 670G pumps, CareSens Air and Eversense CGM via companion apps. Bluetooth Glucose Meters such as the Contour Next One, AccuChek Guide, Verio Flex & Diamond Mini as well as devices like the Pendiq 2.0 Insulin Pen.

Heart-rate and step counter data is processed from Android Wear, Garmin, Fitbit and Pebble smart-watches and watch-faces for those that show glucose values and graphs.

On some Android Wear watches, it is possible for the G5 or G6 to talk directly to the watch so it can display values even when out of range of the phone.

The app contains sophisticated charting, customization and data entry features as well as a predictive simulation model.

Re: Ask HN: What underrated open source project deserves more recognition?

#13
ImHex

“A Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM.”

I actually used it not too long ago to inspect why a mp4 file wasn’t valid. The pattern language that they have is quite nice and having sections of the hex highlighted and being able to see what structures they represent and what data was on those structures was very useful!

https://github.com/WerWolv/ImHex

Re: Ask HN: What underrated open source project deserves more recognition?

#14

Postgraphile. Postgres + graphql. It really solves all the negative aspects of graphql. Also, incredibly performant. Their v5 release is also a pretty interesting piece of tech. https://postgraphile.org/

I didn't see a v5 tag in order to know, and I have no idea what "utils/graphile" does for the project, but one will want to ensure they are aware of its licensing scheme https://github.com/graphile/crystal/blob/db8894c74eb0ec3fe96...

Re: Ask HN: What underrated open source project deserves more recognition?

#15

Spotlight Search: https://github.com/harana/search File Explorer: https://github.com/spacedriveapp/spacedrive Rust/GraphQL Server: https://github.com/exograph/exograph Dataflow Engine: https://github.com/hydro-project/hydroflow CRDT Generator: https://github.com/hydro-project/katara Cloud File Transfer: https://github.com/skyplane-project/skyplane

BuSL 1.1 https://github.com/exograph/exograph/blob/v0.7.0/LICENSE#L1

Re: Ask HN: What underrated open source project deserves more recognition?

#16
post #8

Small AutoIt utility scripts, such as WhyNotWin11 and other applets by similar users using AutoIt to make VB6-era -esq programs. These are always neither motivated by lofty architectural goals to “do things correctly” of many collaborative open source projects that forgot about laymen-ergonomics entirely, nor user-acquisition driven dark-pattern minefields of sluggish eye candy entirely focused on exploiting the afor…

https://www.autoitscript.com/site/autoit/ says "AutoIt v3 is a freeware BASIC-like scripting language" and https://www.autoitscript.com/site/code/ just has " Here are some C++ source code samples from various projects of mine. Most are free to use but check any license files that accompany the downloads for details."

However, while trying to dig up the repo I did find https://github.com/J2TEAM/awesome-AutoIt#awesome-autoit that may interest the same audience

Re: Ask HN: What underrated open source project deserves more recognition?

#18
post #14

Postgraphile. Postgres + graphql. It really solves all the negative aspects of graphql. Also, incredibly performant. Their v5 release is also a pretty interesting piece of tech. https://postgraphile.org/

I didn't see a v5 tag in order to know, and I have no idea what "utils/graphile" does for the project, but one will want to ensure they are aware of its licensing scheme https://github.com/graphile/crystal/blob/db8894c74eb0ec3fe96...

Its an optional command line utility that you may use with PostGraphile which does things like printing out your configuration in a pretty format and using TypeScript to figure out what options are available to you based on the plugins you are using. It is 100% non-essential because all the options are documented in each of the plugins (and also you can use TypeScript auto-complete in your editor), and you can just console.dir() your configuration. You can read about it here: https://postgraphile.org/postgraphile/next/config#viewing-th...
Post reply on HN