Viewing profile — brianguertin
brianguertin
HN member- Joined
- Fri, Feb 01, 2013, 5:20 AM UTC
- HN karma
- 36
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About brianguertin
No profile information was provided.
Recent public activity
-
comment
Comment #35868403
A similar project is Mosaic. It's exactly the same concept, but for Jetpack Compose, the primary toolkit used in modern Android apps. You can use it in desktop JVM apps written in …
-
comment
Comment #30971255
Like this? https://www.ubisoft.com/en-us/game/assassins-creed/discovery...
-
comment
Comment #30342221
There's an exciting desktop port of https://developer.android.com/jetpack/compose done by Jetbrains: https://github.com/JetBrains/compose-jb
-
comment
Comment #29380967
> how do you distinguish 'telemetry' from 'surveillance'? Granularity. Telemetry data can be privacy-respecting (e.g. anonymously aggregated) while still being useful. E.g. "143 pe…
-
comment
Comment #28815028
Also see Kotlin: https://kotlinlang.org/docs/multiplatform.html In Kotlin you can write a library usable from C/C++/ObjC/Swift/Java/JavaScript.
-
comment
Comment #28594281
Same thing happened while I worked at Turo. They pivoted from "If we all shared our cars, we won't need as many! Less traffic and better for the environment!" to "We need to optimi…
-
comment
Comment #23620155
Mac and Linux actually use the same printer stack: https://en.wikipedia.org/wiki/CUPS
-
comment
Comment #20680025
Oh cool. And does that actually work? That's great. And the syntax is surprisingly similar, especially considering we are supposedly comparing a low level language to a high level …
-
comment
Comment #20676505
You aren't the only one. In Kotlin, it's possible to use async/await without modifying your function signatures. Like this: val result = runBlocking { val one = async { doSomething…