tleb

Results 24 comments of tleb

Thanks for all those infos, I'll stick with the alternating solution then. > Nice! Do you plan to write a distributed collaborative editor in Go or is it just for...

As said by others, build instructions would help a lot. Here is what I found out: ``` $ # install a few dependencies $ sudo apt install flex bison gperf...

I've got a moving square using the latest esp-idf and odroid_display.(c|h) from the original firmware without any issue for the moment. :) I'll look at the patches made by OtherCrashOverride...

Why would the use of pointer receivers be a good thing when the method doesn't modify the struct?

Wouldn't it be as simple as downloading the mathjax src and importing this one in the rendered HTML?

Hi! > There isn't really much that can be done from the client side. **The obvious solution would be to make the plugins code super fast.** But besides the fact...

Ah, nice! Thanks. > `g_idle_add` schedules the execution of a function in glib/gtk main thread. This sounds like something that requires synchronization and might even be blocking. Nothing great in...

> It does not require blocking or synchronization. The underlying implementation is `idle_add_full` ([code](https://github.com/GNOME/glib/blob/2.81.0/glib/gmain.c#L6268)). I'm counting two malloc calls in `idle_source_new`, one in `g_source_set_callback` and a mutex lock in `g_source_attach`....

> Besides the fact you would have to rewrite considerable amounts of EE code because what you propose is the opposite of what is done everywhere in EasyEffects code I...

> The callback is still called because the plugin is still in the pipeline. But `g_idle_add` is not invoked if the window is not visible. The only thing that happens...