Guido Soranzio
Guido Soranzio
I am not a React Native developer but I just discovered that this new project https://github.com/ddtch/react-native-libre-manager is successfully reusing my native Swift classes.
The Libre 1 stores the measured glucose and temperature data in 43 FRAM blocks divided in tre sections of 3 + 37 + 3 blocks which are prefixed by a...
Cocoa provides some useful system images you can use for expressing a "status": Grey: `[NSImage imageNamed:NSImageNameStatusNone];` Green: `[NSImage imageNamed:NSImageNameStatusAvailable];` Yellow: `[NSImage imageNamed:NSImageNameStatusPartiallyAvailable];` Red: `[NSImage imageNamed:NSImageNameStatusUnavailable];`
The big challenge in supporting Casks is that uninstalling or "zapping" them requires an elevated privilege and the user must provide ad administrator password which is not required currently by...
In my project I have decided not to use the cask command but to parse manually the output of simple shell commands, i.e. `/bin/sh -c "/usr/bin/grep \"version \" -r /usr/local/Library/Taps/caskroom/homebrew-cask/Casks"``...
The previous one-liner was not totally correct since it ignored the revision number. The following version appends correctly the revision number when it is > 0: `/usr/bin/ruby -C /usr/local/Library/Homebrew -I....
There is a simpler version actually, thanks to pkg_version: `/usr/bin/ruby -C /usr/local/Library/Homebrew -I. -e "require 'global'; require 'formula'; Formula.each {|f| puts \"#{f.name} #{f.pkg_version}\"}"`
Unfortunately such direct method isn't supported anymore (https://github.com/Homebrew/homebrew/pull/48261). The recommended way to parse the detailed info of all the available formulae is to parse the JSON output of `brew info...
Thank you Anubhav for your PR! There have been many forks of DiaBLE in the past but none submitted the implementation of new features. I have been publishing a public...
I tried by myself to add a Widget Extension target from Xcode 15.2, using `DiaBLE.xcconfig` as the configuration base (ff3ee94) and adjusting the _WidgetsExtension.entitlements_ and _Info.plist_’s paths to point to...