Live data from Hacker News

Viewing profile — mikesolar0819

mikesolar0819

HN member
Joined
Wed, Sep 02, 2026, 8:46 AM UTC
HN karma
1
Public activity
4 items

About mikesolar0819

No profile information was provided.

Recent public activity

  1. comment
    Comment #49546435

    Yes. Also it is hard for this method to deal with vtables. Two ways: writting a vtable yourself or write same inheritance in the caller side. Both is not good idea.

  2. comment
    Comment #49546380

    I maintaince a video editor written in Rust and I use GPUI's fork as the GUI library. For me, the biggest problem is that GPUI's components seems to have no interacts and I have to…

  3. comment
    Comment #49533909

    I can't agree more. I maintaince a video editor named Oak Video Editor, and after I rewrote it by Rust, all the panics disappeared. They were all caused by memory problems. But pan…

  4. comment
    Comment #49533776

    I recently rewrote a complex C++ program into Rust using the Strangler Mode, all codes are written by AI. Firstly, I split the code into some dynamic libraries, which uses C ABI to…