iacore

Results 421 comments of iacore

lib -> import gc -> collect garbage mem -> show memory usage lib__oak_qm -> ?

> lib__oak_qm -> import exists in memory? i can't find it in the source code

I also found `___runtime_proc()`, which returns the current pid and `oak` excutable name. ``` c.LoadFunc("___runtime_lib", c.rtLib) c.LoadFunc("___runtime_lib?", c.rtIsLib) c.LoadFunc("___runtime_gc", c.rtGC) c.LoadFunc("___runtime_mem", c.rtMem) c.LoadFunc("___runtime_proc", c.rtProc) ``` Oak is a good language....

> It's pretty good when you build to the web since you can interop between JS and Oak almost seamlessly. How do I do that interop? Do I `print` the...

I misunderstood. I thought you were mentioning interop between Oak code in browser and Oak code on server. I want to add basic features such as `chdir` to Oak. Can...

IBus makes this an option. IBus Preferences: ![image](https://github.com/ocornut/imgui/assets/74560659/3e84cc3c-1236-4a64-afee-0efb5295b6ee) https://github.com/ibus/ibus/blob/dfad02bb00ecf24a0f3b403c0aa96ad4890bdcb1/data/dconf/org.freedesktop.ibus.gschema.xml#L93-L97 In XTerm, the preedit text is displayed by IBus even if this option is turned on. https://github.com/ocornut/imgui/assets/74560659/65d13d7c-873e-4d71-8aa2-06544574766a So there must be...

SDL_HINT_IME_SHOW_UI seems to be a Windows-only feature. Not sure what it does. https://github.com/search?q=repo%3Alibsdl-org%2FSDL%20SDL_HINT_IME_SHOW_UI&type=code Anyway I've fixed it.

libsass refuse to compile this version of the Bootstrap. @Changaco I think Bootstrap 5 need Dart Sass.

Can you refactor current usage of sass to running the command `sass` (Dart Sass)? That's better supported.

> (I started working on getting rid of SQL last year, so I don't plan to work on automating the installation of PostgreSQL anymore.) I'm curious. Can you link to...