Live data from Hacker News

Viewing profile — brianguertin

brianguertin

HN member
Joined
Fri, Feb 01, 2013, 5:20 AM UTC
HN karma
36
Public activity
9 items

About brianguertin

No profile information was provided.

Recent public activity

  1. 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 …

  2. comment
    Comment #30971255

    Like this? https://www.ubisoft.com/en-us/game/assassins-creed/discovery...

  3. 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

  4. 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…

  5. 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.

  6. 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…

  7. comment
    Comment #23620155

    Mac and Linux actually use the same printer stack: https://en.wikipedia.org/wiki/CUPS

  8. 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 …

  9. 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…