Show HN: Continuous Integration and Delivery of Enterprise iOS Applicationsmedium.com2 points·by n1mda·vor 9 Jahren·0 comments
NavigationKit: A library for Turn-by-Turn navigationmedium.com2 points·by n1mda·vor 12 Jahren·0 comments
n1mda·vor 11 Jahren·discussAny reason why they don't use trick #1 inside trick #5?// Instead of x = x ? x : 10;// We can use the shorter form: x = x ?: 10;#define min(a, b) ({ \ __typeof__ (a) _a = (a); \ __typeof__ (b) _b = (b); \ _a < _b ? _a : _b; \ })
n1mda·vor 12 Jahren·discussHey, I'm n1mda. Cool to see this project on HN! I made sonos-objc on my spare time, and it's not too hard to reverse the API with Wireshark.Perhaps I could continue developing a Sonos API for SonosKit (I have a few improvements on a local repo)
// Instead of x = x ? x : 10;
// We can use the shorter form: x = x ?: 10;
#define min(a, b) ({ \ __typeof__ (a) _a = (a); \ __typeof__ (b) _b = (b); \ _a < _b ? _a : _b; \ })