Antonio Vieiro

Results 62 comments of Antonio Vieiro

Hi @svenreimers . Does this work? I think the [source, java, subs="macros"] should allow using the "link:" macro in source code blocks. Maybe you cant to give it a try?...

Should we store this in the netbeans-tools repo instead? Maybe we could enhance it to "render" asciidoc to html and then get rid of JBake.

Ah, it seems [this previous answer](https://github.com/akopytov/sysbench/issues/140#issuecomment-305401135) explains how to interpret these results: * you either limit the total time (default) and then the number of events per second is the...

As an ugly (non parallelizable?) workaround: ```python def nth_value(n:int): return lambda series: None if series.len() < n else series[n-1] test2 = df.group_by('group').agg( pl.all().sort_by(pl.col('value'), descending=False).apply(nth_value(3)) ) print(test2) ``` Correctly returns the...

Here's a reproducer of the problem in case it's of any help: https://github.com/vieiro/gha-macos-resolve-hostname

> Mostly @vieiro (with some clueless flailing around help from me) has been working to bring CND back to life. You can find the current state on the [cnd branch](https://github.com/apache/netbeans/tree/cnd)...

> * on CND side: > -- support for ccls (this shouldn't really be difficult, and I am not clear why there's a pushback against this) > -- cnd.lsp must...

> IMHO, it would be great if cnd.lsp wasn't specific to make based projects. I would like to use cnd.lsp with the meson project support I added too. Meson produces...

> What is the status of https://github.com/apache/netbeans/tree/cnd branch? How to install it? Is it still a plugin or it become a core part of Netbeans? It seems have Meson support...

> > You should install a recent C/C++ LSP server such as `clangd` or `ccls`. > > Is the LSP requirement a later addition? The older C++ plugin doesn't seem...