Re: Values of os.arch for mac OS (x86-64 and aarch64) and windows aarch64

2021-08-10 Thread Siddhesh Rane
os.arch = amd64 os.name = Linux os.version = 5.4.0-80-generic java version "1.8.0_60" Java(TM) SE Runtime Environment (build 1.8.0_60-b27) Java HotSpot(TM) 64-Bit Server VM (build 25.60-b23, mixed mode) Regards, Siddhesh Rane From: Matthi

Re: [DISCUSS] CND Next Steps

2021-04-18 Thread Siddhesh Rane
lder%2Fstarterdata=04%7C01%7Crane.si%40northeastern.edu%7Cd36c8d0f6cb040697c9708d9029d2d83%7Ca8eec281aaa34daeac9b9a398b9215e7%7C0%7C0%7C637543696362268738%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=9kIMUU94npw%2FHr8dR7q8%2B%2FGy3E4%2B9GxinA1u

Re: [DISCUSS] CND Next Steps

2021-04-17 Thread Siddhesh Rane
I did some dependecy analysis on the cnd modules and here is what I found. * The current Antlr based parsers and their generated ASTs are not directly used by any module in cnd (such as Code Completion, Navigator etc). Instead all modules depend on an AST-like code model specified in C/C++ Code

Re: [DISCUSS] CND Next Steps

2021-04-14 Thread Siddhesh Rane
Hi Antonio, I am in favour of adding features to the cpplite branch, primarily because the cnd code has no documentation at all and is hard to follow with way too many indirections (been spending 2 months understanding it). I also found some design quirks like indexing happening in the Token

Re: [DISCUSS] CND Next Steps

2021-04-10 Thread Siddhesh Rane
+1 for using libclang or clangd for parsing. C++ grammars are complicated to create and maintain and I could not find any grammar spec for C++. Note that the cnd implementation has some support for clang backend in the libs.clank package, so I guess LSP implementation could be plugged into

Re: Temporary lightweight C/C++ support?

2020-07-17 Thread Siddhesh Rane
changes or cnd did something weird which is taking time? Or might have missed something. Siddhesh Rane July 17, 2020 2:30 PM, "Jan Lahoda" wrote: > Hi, > > I believe we are still working on integrating the CND C/C++ support. > > So, I wonder, would a temporary light

Re: MarkdownViewer module for NetBeans

2020-05-24 Thread Siddhesh Rane
integration. [1]: https://github.com/madflow/flow-netbeans-markdown (https://github.com/madflow/flow-netbeans-markdown) Regards Siddhesh Rane May 24, 2020 9:45 AM, "John Kostaras" mailto:jkosta...@gmail.com?to=%22John%20Kostaras%22%20)> wrote: Hallo all, when you open a github projec

Re: Netbeans autocompletion

2020-01-23 Thread Siddhesh Rane
of the code that reuses many of the same variables and functions. Bonus: this works for files without auto complete support and also in comments. Regards Siddhesh Rane January 23, 2020 10:08 AM, "Samiul Alom Sium" wrote: > Wow, Thank you Mario for your instant support. > T

Re: NetBeans bounty--earn $200!

2019-12-10 Thread Siddhesh Rane
Glad to see someone interested in this feature. A long time ago I came across a blog post[1] by Andrej Karpathy (AI guru) in which a neural network was trained on variety of text datasets and then used as a content generator. When trained on Linux and Apache source code, the generator could

Re: Module build fails in IDE but works on command line

2019-10-09 Thread Siddhesh Rane
va Platform to JDK 8, it should compile in the IDE as well. However this does not happen. This seems to be a bug. Ant only compiles with the jdk it is run with, which is JDK 11 inside the IDE and JDK 8 on command line, ignoring the project setting. > st 2. 10. 2019 v 17:38 odesílatel Siddhes

Module build fails in IDE but works on command line

2019-10-02 Thread Siddhesh Rane
the same ant binary that Netbeans uses and my repo is currently at master (101c870) with no changes. I am running Netbeans on JDK 11. On command line, ant runs on JDK 8 Regards Siddhesh Rane --- ERROR SNIPPET --- Detected Java version: 11 in: /home/siddhesh/Applications/jdk-11.0.1 Detected OS: Linux

Re: Can anyone give me a help about developing antlr formatter

2019-09-23 Thread Siddhesh Rane
The C++ module uses ANTLR for parsing and also provides formatting support. That might be useful Regards Siddhesh Rane September 23, 2019 4:08 AM, "Eric Bresie" wrote: > Also noticed there is a Netbeans plugin list on the Tools section of the > ANTLR.org site. > >

Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
Thanks a lot Emilian! Siddhesh Rane September 13, 2019 9:25 PM, "Emilian Bold" wrote: > https://github.com/emilianbold/netbeans-releases > > --emi > > vin., 13 sept. 2019, 12:40 Siddhesh Rane a scris: > >> I wanted to work on the cnd module but fetching

Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
ted to add ability to select multiple files for the remote file open window. Siddhesh Rane September 13, 2019 5:03 PM, "Geertjan Wielenga" wrote: > Which bugs and which features are we talking about? > > Gj > > On Fri, Sep 13, 2019 at 1:14 PM Siddhesh Rane >

Re: Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
module without gigabytes of history. If someone has already created a bitbucket or github repo for it, then that is fine as well. Regards Siddhesh Rane September 13, 2019 3:31 PM, "Geertjan Wielenga" wrote: > What specifically do you want to work on? > > Gj > > On

Netbeans c++ module source zip

2019-09-13 Thread Siddhesh Rane
think it might take atleast a month before the sources land in Apache repo. Regards Siddhesh Rane - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org

Re: Future of Javascript on Netbeans

2019-08-05 Thread Siddhesh Rane
I was just curious about the theoretical aspect of parsing. Isn't there a unified parsing API, using ANTLR/lex/yacc which can parse any language given a grammar for it? Why do we use a different parsing implementation (like graal js parser in this instance) when a unified approach will help us

Re: C/C++ module ?

2019-08-02 Thread Siddhesh Rane
I use netbeans on large c++ code remotely and I haven't had issues with cursor slowing down. I have observed waiting for code completion but very rarely. There are several nice things about Netbeans There is a plugin for gdbserver support in Netbeans 8.2. I have installed it but haven't used.