Viewing profile — dzhou121
dzhou121
HN member- Joined
- Tue, Dec 14, 2021, 8:41 AM UTC
- HN karma
- 325
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About dzhou121
No profile information was provided.
Recent public activity
- story
-
comment
Comment #39423493
Lapce dev here. Firstly sorry for the bad experience for some people. Just a bit of context here to explain the status of the project. The first line of code was started around 201…
-
comment
Comment #32718077
Lapce dev here. Thanks for posting this. One thing I would like to highlight about the WASI based plugin system is that, on this release we’ve finalised our API design. We call it …
-
comment
Comment #30715391
It's mainly speed. I don't know if it's fixed now. Previously when I was using VSCode, sometimes the "go to definition" hangs and it will freeze the whole editor, which was unaccep…
-
comment
Comment #30715363
Yes, for more than one year now.
-
comment
Comment #30714101
I always wanted a "perfect" editor https://github.com/lapce/lapce/blob/master/docs/why-lapce.md And my recent professional work was writing Rust, and I felt Rust would be really su…
-
comment
Comment #30711368
render the glyph texture map and then quads for each character
-
comment
Comment #30709533
It's similar to VSCode's remote development https://code.visualstudio.com/docs/remote/remote-overview Or trying to be.
-
comment
Comment #30709180
Thanks for your kind words. It will, it's in the DNA. L comes before P.
-
comment
Comment #30709039
Author here. Thanks for all the feedback. I'm aware that Lapce lacks lots of basic stuff. It's a personal project so the initial set of features and key bindings are tight to my pe…
-
comment
Comment #30708976
Potentially, the UI bits Lapce uses such as Druid, Winit, Wgpu all have the potential to compile into WASM. But it's not a priority.
-
comment
Comment #30708879
It is a bit similar. When I thought about Lapce's logo, I took the initials of "Lightning" and "Powerful", so put L and P together to form a logo. I guess Linkin Park is L and P to…
-
comment
Comment #30708827
WASM is targeting web. WASI( https://wasi.dev/ ) is the system interface.
-
story
Show HN: Lapce – open-source code editor inspired by Xi-editor
Hey HN, I made a code editor which is inspired by Xi-editor. It's native GUI and GPU rendered written in Rust. A main feature is remote development support (VSCode like). Also othe…
-
comment
Comment #29551657
It uses a heavily forked version of Druid. https://github.com/lapce/druid which replaces the window management to use winit instead https://github.com/rust-windowing/winit and a se…
-
comment
Comment #29549646
I think native compiled code is hard for plugin distributions. You'll need to target 3 main platforms Linux/macOS/Windows. You can use github actions to do it, but it would be so e…
-
comment
Comment #29549570
Author here. I didn't expect this will go on Hacker News. Although the editor has been my daily drive for almost one year now, it's really rough on the edges. The plugin system as …