Viewing profile — thorstenb
thorstenb
HN member- Joined
- Wed, Feb 16, 2022, 10:00 AM UTC
- HN karma
- 55
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About thorstenb
Recent public activity
-
comment
Comment #42259297
Most devs here use FF as their daily driver - that said, if you need to debug an emscripten-compiled c++ WASM application in the browser, then it's either printf-debugging, or Chro…
-
comment
Comment #42257232
> It’s going to be extremely hard to get even decent results without targeting real DOM instead of going pure-canvas, and you can’t get excellent results without doing so. One of t…
-
comment
Comment #42254240
ZetaOffice is focusing on developers wanting to integrate it (be that a web app, or a desktop line-of-business application, e.g. via Eclipse RCP) - having the exact same code built…
-
comment
Comment #42254206
Firefox is indeed a bit of a hit-and-miss these days (though we absolutely want to support it). Best experience currently is on Chrome(ium).
-
comment
Comment #42251728
Indeed can be done, proof of concept shown in this talk: https://www.youtube.com/watch?v=X8LwaDjcr7M Regarding sandboxing - everything WebAssembly is heavily sandboxed already, and…
-
comment
Comment #42251620
That still seems to be there, even for gtk4: https://docs.gtk.org/gtk4/broadway.html (but it says, between the lines, mostly stale I guess) As an aside: one of the very first demos…
-
comment
Comment #42251567
Yup, and it's all fully upstreamed in LibreOffice, see our blog ( https://blog.allotropia.de/category/libreoffice/ ), and the upstream wiki page: https://wiki.documentfoundation.or…
-
comment
Comment #42090681
If you could file an issue please, at https://github.com/allotropia/zetajs/issues (with os version & hardware, if relevant)?
-
comment
Comment #42088214
ZetaJS is a browser-based version (using LibreOffice WebAssembly) - that should work (tm) on all reasonably modern browsers, including iOS. But see compat matrix for details: https…
-
story
Show HN: ZetaJS – client-side LibreOffice widget and automation in the browser
ZetaJS wraps ZetaOffice, a WASM version of LibreOffice - and makes accessing the entire gamut of the LibreOffice programmability interfaces from JavaScript convenient, idiomatic & …
-
comment
Comment #30359185
We already use cairo/freetype/skia to do essentially all the document rendering in software (not for the Qt prototype though), so that's not a big leap to get that blitted out. Inc…
-
comment
Comment #30358228
Qt clearly deserves the credit for having a WASM runtime that gets us a working GUI toolkit. But this was still a gigaton of work to pull off inside LibreOffice (starting many year…
- comment
-
comment
Comment #30358199
With LibreOffice, the nice thing is you can chose. if you want all of the above - install the native version.
-
comment
Comment #30358182
Longer-term, we need to move to browser-native GUI, yep. The nice bits though - the entire document loading, rendering & editing works in the browser now.
-
comment
Comment #30358133
Caching is a prob, due to the current size - what works here is: * FF: set browser.cache.disk.capacity to something >300MB, then set browser.cache.disk.max_entry_size to at least 1…