Re: Creating a Client Webpage with embedded Java

2025-04-05 Thread Thomas Wolf
t > into a web page seems tedious. But, if there isn't any other way to do it > then maybe I'll try a server solution and see how that works out. > > art > > On 4/2/2025 6:30 AM, Thomas Wolf wrote: >> I think you're a bit confused. There's no such thi

Re: Creating a Client Webpage with embedded Java

2025-04-04 Thread Thomas Wolf
I think you're a bit confused. There's no such thing as a web page with embedded java. Perhaps you're talking about Java Server Pages (JSP) - with that technology, you can create text files that contain HTML (and maybe Javascript) and Java code to provide the dynamic content for that HTML. W

Re: Creating a Client Webpage with embedded Java

2025-04-02 Thread Thomas Wolf
That's very cool technology (I have a commercial swing app that I'm in the process of converting to a web app) - but it's not open source. Reading their web site seems you need permission to use it for both commercial and non-commercial purposes. tom > On Apr 2, 2025, at 10:11 AM, Andreas Rei

Re: Is it possible to change build/ and dist/ directories from within NB?

2024-11-05 Thread Thomas Wolf
ng anything I would do a simple benchmark, clone (or copy, > obviously don't move!) your whole project into a ramdisk and check if you see > any difference during a build. Moving only your output folders into a ram > disk realistically won't do much most likely - but at least you

Is it possible to change build/ and dist/ directories from within NB?

2024-11-05 Thread Thomas Wolf
Hi, macOS makes it really easy to create a RAM disk, so I thought it might be interesting to see what kind of build speed improvements I'd see by letting Netbeans use it for its build artifacts - i.e. the build/ and dist/ directories within a Netbeans project directory. Is there a way to do thi

Re: [somewhat off-topic] need advice for new Mac notarization reqs.

2024-10-04 Thread Thomas Wolf
m/modules/lib/libflatlaf-macos-x86_64.dylib > platform/modules/lib/libflatlaf-macos-arm64.dylib > platform/modules/ext/flatlaf-3.5.1.jar (some specific files inside this one) > platform/modules/ext/jna-5.14.0.jar (some specific files inside this one) > > -- Eirik > [1] http

Re: [somewhat off-topic] need advice for new Mac notarization reqs.

2024-10-03 Thread Thomas Wolf
from what appears to be Apple's constant - and unannounced - changes to its notarization process? Best, Tom > On Oct 3, 2024, at 1:13 PM, Thomas Wolf wrote: > > Hi, > I'll be up-front: this isn't strictly a Netbeans question, but I do wonder > how NB developers h

[somewhat off-topic] need advice for new Mac notarization reqs.

2024-10-03 Thread Thomas Wolf
Hi, I'll be up-front: this isn't strictly a Netbeans question, but I do wonder how NB developers handle this situation and, hopefully, get some ideas about what I can do myself. Recently, I went through my usual notarization process with my application (a DMG installer produced by jpackage) onl

Re: Does right-click no longer work in macOS Beta 2?

2024-06-25 Thread Thomas Wolf
B 22/JDK22 installer and it works as expected. Best, Tom > On Jun 25, 2024, at 1:16 PM, Neil C Smith wrote: > > On Tue, 25 Jun 2024 at 18:07, Thomas Wolf wrote: >> I haven't changed my NB setup for a long time - still on version 16 and the >> jdk I use

Does right-click no longer work in macOS Beta 2?

2024-06-25 Thread Thomas Wolf
Can someone confirm this? I noticed that after downloading the second dev beta of macOS 15, right-clicking - at least the two-finger tap on the touchpad I use as I have no mouse - does not work in Netbeans. Then I noticed it didn't work in the swing app I was working on either. So I think i

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread Thomas Wolf
The solution doesn’t really have anything to do with Java FX. Put your cursor where you want to put the getter/setter methods and then right-click menu->Insert Code… and pick creation of getter/setter methods. Tom > On May 7, 2024, at 7:50 AM, PavelTurk wrote: > > Hello all, > > Could anyo

Re: RAM usage

2024-04-10 Thread Thomas Wolf
I've been writing Java applications since around 1995 and I have written many sizable ones that didn't require a huge amount of RAM. Of course the JVM itself is a fixed overhead which is now, what, 50MB? (but even that can be ameliorated via modularization these days), and more and more third-p

Re: NetBeans integrated terminal

2024-04-02 Thread Thomas Wolf
I don't know how the Netbeans team chose to implement its terminal feature. But I'd imagine it would involve a Java Swing component such as JEditorPanel and sending Midnight commander's stdout/stderr streams to that panel and forwarding keyboard input to the stdin of that application. tom > O

Re: NetBeans integrated terminal

2024-04-02 Thread Thomas Wolf
Just because an application was written in Java doesn't mean it can't run external processes. Look into the java API documentation on ProcessBuilder class. Tom > On Apr 2, 2024, at 4:36 PM, PavelTurk wrote: > > Hello all. > > Could anyone explain how it is possible to run native application

Re: How to stop output "wobbling"?

2024-03-07 Thread Thomas Wolf
You’re making all the Swing calls in the EDT (vs directly in the threads you mentioned), right?TomOn Mar 7, 2024, at 6:40 AM, Owen Thomas wrote:The numbers running down the left are milliseconds, all others are nanos. As you can see, all this happens within the same millisecond, and perhaps I'm t

Re: Adjusting to monitor resolution

2023-12-06 Thread Thomas Wolf
Others will most likely provide a more helpful answer, but just in case not, one of the potential problems is with the version of the JRE you’re running Netbeans with. I believe before Java 17, things like fonts didn’t scale well. So running with Java 17+ might help. Plus in Windows (I’m a m

Re: How to make NB use jar instead of build/classes/?

2023-09-19 Thread Thomas Wolf
t; "Main-Class": application.mainClass, > ) > } > } > > tasks.named("run") { > classpath = files(tasks.jar) > } > > > > On 9/19/23 10:26, Thomas Wolf wrote: >> Hi Laszlo, >> My J2SE application is inst

Re: How to make NB use jar instead of build/classes/?

2023-09-19 Thread Thomas Wolf
Usually depending on file dates would make you application very brittle, > which would work on development, but when put into production, could lead > hours of debugging, whit somebody screaming at the end. > > On 9/19/23 07:38, Thomas Wolf wrote: >> Hi, >> My application

How to make NB use jar instead of build/classes/?

2023-09-19 Thread Thomas Wolf
Hi, My application has a bit of code that tries to do something based on the build date of the jar file. To get the jar file, it does something like this: File jarFile = new File(Startup.class.getProtectionDomain().getCodeSource().getLocation().toURI()); This works fine when the applic

Re: Static Code Analysis Tutorial Review - FindBugs plugin not available

2023-08-26 Thread Thomas Wolf
I think the successor to FindBugs is SpotBugs - although I don’t know if there’s a NB plug-in for it.TomOn Aug 26, 2023, at 8:46 PM, Stroud Custer wrote: Static Code Analysis Tutorial This tutorial includes instructions for using a plugin called FindBugs, whic

Re: Git branch display

2023-03-25 Thread Thomas Wolf
I don’t have NB in front of me, but there’s a menu option - I think under “View” to show version labels - that shows branch info.On Mar 25, 2023, at 1:25 PM, Jerome Lelasseux wrote: Not exactly what you ask, but the project tooltip shows the current branch, as shown below<1679765052193blo

Re: Project Folder Icons "clear"?

2023-03-16 Thread Thomas Wolf
Re-read your post and ask yourself “Does this even have a modicum of information for anybody to reply with anything except ‘works for me’?” > On Mar 16, 2023, at 12:06 PM, Peter Borreggine > wrote: > > Hello, > > I have a problem with NB16, the SAVE doesn't work... I have to abandon and >

Re: Profiler does not work for me

2023-02-23 Thread Thomas Wolf
Thanks - I added my vote and confirmation comment to that bug report. Best, Tom > On Feb 23, 2023, at 2:04 PM, Scott Palmer wrote: > > Perhaps the same or related to this: > https://github.com/apache/netbeans/issues/4524 > > Scott > > On Thu, Feb 23, 2023 at 1:57 PM

Profiler does not work for me

2023-02-23 Thread Thomas Wolf
I haven’t used the NB profiler for a year or so, but last time I did (running on an x86 mac in NB 12), it ran fine. Today I tried to profile my standalone JSE application in NB 16 with JDK 17.05 on my ARM-based Mac for the first time and the profiler just sits in a calibration dialog (see 1st a

Re: Combobox - letter size

2023-01-15 Thread Thomas Wolf
be some issues with doLayout, but after not calling the doLayout method and calling tec_layout, that code shadowing problem went away, similar with what goes on with spring framework transitive dependencies, but that’s another story.TimSent from my iPhoneOn Jan 13, 2023, at 8:07 AM, Thomas Wolf <

Re: Combobox - letter size

2023-01-13 Thread Thomas Wolf
ote: > > Hi > > Thanks for responding. I am not using any code. I am using the GUI component. > > > > I don’t know which of the properties will change the way it looks. > > Regards > Murali > >> On 12 Jan 2023, at 8:09 PM, Thomas Wolf > <mailto:tjw..

Re: Combobox - letter size

2023-01-12 Thread Thomas Wolf
Murali > >> On 6 Jan 2023, at 8:28 PM, Thomas Wolf wrote: >> >> Not enough detail, but it looks like you’re not giving the combo box enough >> space to size itself around the size of the container items. Check the >> layout and/or size of the surrounding panel(s

Re: Combobox - letter size

2023-01-06 Thread Thomas Wolf
Not enough detail, but it looks like you’re not giving the combo box enough space to size itself around the size of the container items. Check the layout and/or size of the surrounding panel(s). Hope that helps Tom > On Jan 5, 2023, at 10:25 PM, Murali Govind wrote: > > Hi > > I am able to

Re: Can't run NetBeans 16 app on MacOS

2022-12-22 Thread Thomas Wolf
I just got a new MBP and downloaded NB 16 yesterday. Other than the installer requiring “Rosetta” to be installed in order to proceed, I encountered no problem at all. NB app works as expected. I downloaded from the official Apache NB site (pushed the “Download” button on the main web page an

Re: how to turn off parameter names?

2022-12-22 Thread Thomas Wolf
Thanks! Tom > On Dec 22, 2022, at 3:19 PM, Laszlo Kishalmi > wrote: > > View > Show Inline Hints > > On 12/22/22 12:13, Thomas Wolf wrote: >> I just upgraded to NB 16 (from 13) and noticed a new feature which, with my >> poor eyesight, I initially though

how to turn off parameter names?

2022-12-22 Thread Thomas Wolf
I just upgraded to NB 16 (from 13) and noticed a new feature which, with my poor eyesight, I initially thought was some sort of display driver error. Looking more carefully, whenever I start typing the beginning of a method call, NB 16, in a tiny grey font, displays the argument variable name!

Re: Why is max heap under NB different than outside it?

2022-12-05 Thread Thomas Wolf
Never mind - the stupid bug struck hard (long time ago I must’ve set the 4GB as a VM option in the configuration I was using). Sorry about the noise. tom > On Dec 5, 2022, at 3:20 PM, Thomas Wolf wrote: > > > I was running my J2SE application inside of NB and with a large data se

Why is max heap under NB different than outside it?

2022-12-05 Thread Thomas Wolf
I was running my J2SE application inside of NB and with a large data set ran out of heap space. I don’t specify a -Xmx arg for my app and I was curious why with 32GB of physical memory that should happen. I ran the application again and, from the command-line, did jinfo -flag MaxHeap

Re: Possibility of Netbeans supporting more languages

2022-09-20 Thread Thomas Wolf
I think the suggestion is to learn about a subject before making statements about it.  E.g. it isn’t the “job of the Apache Netbeans” [to implement user requested features.]. A “job” is a function performed for pay - work. Who is getting paid - and by whom - to implement those features?I think Andr

Re: Simple navigation question

2022-08-21 Thread Thomas Wolf
If I understood the question, right-clicking in the file and selecting “Select in Project” will highlight the file in the project tree. Tom > On Aug 21, 2022, at 8:09 AM, Amn wrote: > >  > Nice!! How do you do that? > > On 2022-08-18 3:43 p.m., Patrik Karlström wrote: >> Just select "Synchr

macOS Ventura and Stage Manager

2022-08-12 Thread Thomas Wolf
A bit of a sidebar: This isn’t strictly a Netbeans question, but since it affects Netbeans, I’ll ask it here: does anyone know how to make Java apps like Netbeans work better with macOS Ventura’s Stage Manager? Specifically, here’s the problem I see with all my Java apps, including Netbeans, n

Re: FlatLAF on NB 14

2022-06-26 Thread Thomas Wolf
I don’t know anything about NB platform apps but the LAFs you said were included come with the JDK, whereas FlatLAF is not. At one point FlatLAF also didn’t come with the IDE and had to be added as a plugin - ie an nbm file. Maybe you need to do that? Hope that helps, Tom > On Jun 26, 2022,

Re: fresh install netbeans 12 windows 11 won't launch

2022-06-18 Thread Thomas Wolf
Are you saying that you are trying to run NB 12 with JDK 18? I don’t think that’s a supported configuration - i.e. to run NB itself you probably need an earlier version of the JDK - e.g. 16 or before (not sure about the specific one). But your projects can use the latest JDK afaik. hope that’

Any idea when the macOS installer of 13 will become available?

2022-03-10 Thread Thomas Wolf
….just curious. Been seeing the “in progress” message at https://netbeans.apache.org/download/nb13/nb13.html since the NB 13 release. Thnx, tom

Re: [apache netbeans12[ [javafx] [install] Can't install correctly.

2022-02-10 Thread Thomas Wolf
Totally off-topic: does anyone find it ironic that the successor to Swing was taken out of the JDK while Swing itself survives? Makes me feel rather good about never having jumped on the JavaFX bandwagon. We currently have a cross-platform desktop app in beta and the GUI is written in Swing - pa

Re: JDK 8 vs 11 JAXB problem

2022-01-28 Thread Thomas Wolf
gt; jaxb-api > runtime > > > Hope this helps. > -- > *From:* Scott Palmer > *Sent:* 28 January 2022 2:57 PM > *To:* NetBeans Mailing List > *Cc:* Tom Eicher ; Thomas Wolf > *Subject:* Re: JDK 8 vs 11 JAXB problem > &

Re: JDK 8 vs 11 JAXB problem

2022-01-28 Thread Thomas Wolf
I think JAXB stopped being included with the JDK somewhere around JDK 11. You should find the JAXB jar files on the ’net (I got them from maven central) and include them in your project’s class path . At least that’s what I did - I also have an ant based project. The files I use for all my JAXB-

Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-13 Thread Thomas Wolf
can use other plugins too - there might be >> something wrong in the check whats available and what is not. >> >> -mbien >> >> On 13.01.22 22:16, Thomas Wolf wrote: >> >> Hi Michael, >> All my projects use “IDE-wide” in the project property hints

Re: Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-13 Thread Thomas Wolf
Yes, " Project->Inspect and Transform” seems to work. Tom On Jan 13, 2022 at 5:03:52 PM, Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > Can you try the other one and see if it does what you need? > > Gj > > On Thu, 13 Jan 2022 at 23:01, Thomas Wol

Re: Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-13 Thread Thomas Wolf
t since it's broken and no > longer supported. > > Something that looks like a big 'ole bug is welcome to be turned into an > issue. > > Gj > > On Thu, Jan 13, 2022 at 10:16 PM Thomas Wolf wrote: > >> Hi Michael, >> All my projects use “IDE-wide” in

RE: Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-13 Thread Thomas Wolf
editor > -> hints. > > You can run a custom set of rules via refactor -> inspect and transform > > Additionally to all that you can also write your own hint rules. Some > example are here: > > https://github.com/mbien/jackpot-inspections > > (read the readme) > >

Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-11 Thread Thomas Wolf
mail.com> wrote: > Yes, FindBugs is no longer supported and that reference to it should be > removed. > > Gj > > On Tue, 11 Jan 2022 at 20:32, Thomas Wolf wrote: > >> Hi, >> Sorry if this has been asked before, but... >> I just downloaded/installed 12.6.

Re: NB 12.6 - how to get static analyzer plugins to install

2022-01-11 Thread Thomas Wolf
Thanks Geertjan, Tom On Jan 11, 2022 at 3:01:21 PM, Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > Yes, FindBugs is no longer supported and that reference to it should be > removed. > > Gj > > On Tue, 11 Jan 2022 at 20:32, Thomas Wolf wrote: > >&

Re: Re: NB 12.4 creating new project I get this error...

2021-12-03 Thread Thomas Wolf
e work? > > Eric Bresie > ebre...@gmail.com > > On 12/1/21 13:55, Thomas Wolf wrote: >>>> >>>> Hi everyone, >>>> I’m at a loss here. I hope you guys can help: >>>> >>>> I created a completely new GIT repository on my mac at: >&g

Re: NB 12.4 creating new project I get this error...

2021-12-02 Thread Thomas Wolf
Thanks a bunch. Tom On Dec 2, 2021 at 4:39:24 PM, Laszlo Kishalmi wrote: > Just add a system property .level=< logging level > > > Example start netbeans with: > > netbeans -J-Dorg.netbeans.api.project.level=FINEST > On 12/2/21 13:24, Thomas Wolf wrote: > > Hi ag

Re: NB 12.4 creating new project I get this error...

2021-12-02 Thread Thomas Wolf
. Best, Tom On Dec 2, 2021 at 4:12:46 PM, Thomas Wolf wrote: > I just realized i hit ‘r’eply on a couple messages rather than ‘Reply to > all :-( > Just to summarize: I removed the ~/Library/Caches/NetBeans/* and > ~/Library/Application Support/NetBeans/** directories - and still get the

Re: NB 12.4 creating new project I get this error...

2021-12-02 Thread Thomas Wolf
project/ folder, build.xml, pom.xml, > build.gradle and settings.gradle files in your home folder. > > > On 12/1/21 13:55, Thomas Wolf wrote: > > Hi everyone, > I’m at a loss here. I hope you guys can help: > > I created a completely new GIT repository on my mac at: > > /U

Re: NB 12.4 creating new project I get this error...

2021-12-01 Thread Thomas Wolf
elongs to what project. In this case we call it on >> /Users/twols/spectare/satriage/src and we are expecting a null (not owned >> by any project), instead that query says that this folder belongs to a >> project called twolf >> >> So I'd look for project files

Re: NB 12.4 creating new project I get this error...

2021-12-01 Thread Thomas Wolf
Forgot to mention - I also did a ‘find . -name twolf -print’ in my $HOME directory to see if there was another ’twolf’ directory/ somewhere - there wasn’t. Again, any other help is appreciated. Tom On Dec 1, 2021 at 6:22:20 PM, Thomas Wolf wrote: > Hi Laszlo, > I checked my $HOME directo

Re: NB 12.4 creating new project I get this error...

2021-12-01 Thread Thomas Wolf
'd look for project files like nbproject/ folder, build.xml, pom.xml, > build.gradle and settings.gradle files in your home folder. > > > On 12/1/21 13:55, Thomas Wolf wrote: > > Hi everyone, > I’m at a loss here. I hope you guys can help: > > I created a completely

Re: NB taking up 200% CPU checking for external changes :-(

2021-10-20 Thread Thomas Wolf
n the above file to have the additional flag > of "-J-Xmx16384m" as well as setting *netbeans_jdkhome* to point to > something sane. > > HTH. > > > -- > > Mark A. Flacy > > mfl...@verizon.net > > > On Wednesday, October 20, 2021 11:54:02 AM CDT Thomas Wol

NB taking up 200% CPU checking for external changes :-(

2021-10-20 Thread Thomas Wolf
I have NB 12.4, but I have noticed the same behavior on previous NBs as well: Most of the time, my MacBook Pro is quiet as can be. But every now and then (every other day?), I’d be surfing the web or reading the mail when my fans start spinning up - often getting to their max speed *and staying t

Re: slightly off-topic: Can someone with BigSur or older help me out?

2021-10-18 Thread Thomas Wolf
changed every time. > > > Hope this helps. > > > John > > > > > [1]: > > *Product Version:* Apache NetBeans IDE 12.5 > > > *Java:* 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9 > > > *Runtime:* OpenJDK Runtime Environment 15.0.1+9 > > >

Re: slightly off-topic: Can someone with BigSur or older help me out?

2021-10-18 Thread Thomas Wolf
this helps. > > > John > > > > > [1]: > > Product Version: Apache NetBeans IDE 12.5 > > > Java: 15.0.1; OpenJDK 64-Bit Server VM 15.0.1+9 > > > Runtime: OpenJDK Runtime Environment 15.0.1+9 > > > System: Mac OS X version 10.15.7 running on x

slightly off-topic: Can someone with BigSur or older help me out?

2021-10-18 Thread Thomas Wolf
I previously posted about a problem I’m encountering with Java/Swing on my Mac - basically cursors stop switching after one switches to another cursor & back. I checked this problem as far back as I had JDKs for - so this issue exists at least as far back as JDK 12. The one thing I don’t know is

Re: Where to see and report Java bugs most effectively?

2021-10-16 Thread Thomas Wolf
ttp://cr.openjdk.java.net/~rlewis/BugTracking/OpenJDKBugtTracking.html (from > Sun days perspective) > > Hope this helps. > Eric Bresie > ebre...@gmail.com > > >> On Fri, Oct 15, 2021 at 3:47 PM Thomas Wolf wrote: >> Sorry for this is off-topic subject, but I

Where to see and report Java bugs most effectively?

2021-10-15 Thread Thomas Wolf
Sorry for this is off-topic subject, but I’m wondering where the most effective place is to see and report Java bugs? I see two different possibilities: https://bugs.openjdk.java.net/ and https://bugs.java.com/bugdatabase/ I’m running into what appears to be a macOS-specific one and am having tr

opening a file with netbeans via command-line in macOS?

2021-04-29 Thread Thomas Wolf
I’m running 12.3 on Java 14 and I want to open a file in NB from the commandline and have it highlight a given line. If NB is not currently running, this works: open -a /Applications/NetBeans/Apache\ NetBeans\ 12.3.app --args /Users/twolf/spectare/sat_projects/zlib-1.2.11/compress.c:15 But if NB

Re: removing the "new project" support for Ant projects

2021-04-20 Thread Thomas Wolf
+1 for not removing ant support for me as well. I’m admittedly an old-timer. My first exposure to a ‘modern’ build tool was on my last job - the company used gradle. With a background in make and ant, I found its syntax hard to grok.NB devs clearly like Maven - its syntax seems straight-for

What JavaFX tab??

2021-04-19 Thread Thomas Wolf
I tried to create a new project: New Project->Java with Ant->JavaFX Application (or JavaFX in Swing Application). When hitting “Next”, a screen asks me wether I want to download & activate JavaFX or just activate. Since I previously downloaded an FX distribution, I picked “Activate”. Then I get

Re: NetBeans running on Windows 10 on Parallels on an M1 Mac

2021-04-18 Thread Thomas Wolf
Obviously not speaking for the NB developers, but Windows on ARM seems pretty niche. Maybe you can try to build NB there from source yourself? Is there a NB installer for M1 macOS? If so, you could do all your dev on the mac side and just use the command line on the Windows side whenever you n

native installer in NB 12.3?

2021-04-09 Thread Thomas Wolf
Hey everyone, I”m trying for the first time to build a native installer of my application and am running into some errors I wonder if you guys can help with. First my environment: macOS 11.3 and NB 12.3 running on JRE 14 with a non-modular JDK16-based project (which depends on another JDK16-based

how to change the NB JRE after install?

2021-04-02 Thread Thomas Wolf
Hi, I’m having all sorts of issues with double-clicking on things in NB not always working. I suspect it’s because when I installed NB 12.3, I only had JDK 16 installed on my Mac and that’s what NB picked for itself - even though 16 isn’t supported as per the NB download site. How do I go into NB

Re: What Project should I use if I have existing source?

2021-03-01 Thread Thomas Wolf
Never mind - I was stupidly not seeing it right at the “java with Ant” level - I only looked at the subfolders :-( Sorry about wasting people’s time. tom On Mar 1, 2021 at 6:28:28 PM, Thomas Wolf wrote: > Hi, > I guess I haven’t tried to create a project in a long time. Today, I had

What Project should I use if I have existing source?

2021-03-01 Thread Thomas Wolf
Hi, I guess I haven’t tried to create a project in a long time. Today, I had the need to, but an option that has always been available in the past (NB 8?) - “Java application with existing source” doesn’t seem to exist in 12.2. Is there an equivalent in ant, gradle, or maven projects? I saw an

Re: Netbeans 11.3 - can't push to remote

2021-01-19 Thread Thomas Wolf
Sorry, I have no idea if there are any open issues in Apache NB regarding this. Wouldn’t even know where to look since the move to Apache. I think there’s a Jira board, but am not sure. tom On Jan 19, 2021 at 8:25:14 PM, Jack W. wrote: > Thanks Thomas Wolf, but that didn't wor

Re: Netbeans 11.3 - can't push to remote

2021-01-19 Thread Thomas Wolf
hen I created my keys. But for it to work with NB, I need to do "ssh-keygen -t rsa -m PEM” - sweet jesus, how is anyone supposed to know that??? Anyway all works now. Hope this is useful to someone else. Tom On Jan 19, 2021 at 7:23:06 PM, Thomas Wolf wrote: > Hi Peter, > I

Re: Netbeans 11.3 - can't push to remote

2021-01-19 Thread Thomas Wolf
Big Sur 11.2 beta, but wouldn’t think that makes a difference. It’s starting to drive me up a wall :-( On Jan 19, 2021 at 5:18:33 PM, Peter Hull wrote: > On Tue, 19 Jan 2021 at 21:56, Thomas Wolf wrote: > >> On Jan 19, 2021 at 4:26:08 PM, Thomas Wolf wrote: >> >>>

Re: Netbeans 11.3 - can't push to remote

2021-01-19 Thread Thomas Wolf
On Jan 19, 2021 at 4:26:08 PM, Thomas Wolf wrote: > Hey everyone, > I’ve got Nebeans 11.3 on macOS 11.2 and am trying to push my local changes > to a recently created remote git repository. But NB keeps telling me about > invalid credentials (I used ssh private key) and when I look

Netbeans 11.3 - can't push to remote

2021-01-19 Thread Thomas Wolf
Hey everyone, I’ve got Nebeans 11.3 on macOS 11.2 and am trying to push my local changes to a recently created remote git repository. But NB keeps telling me about invalid credentials (I used ssh private key) and when I look into the IDE log, I see this: Caused: org.netbeans.libs.git.GitException

Re: possibly naive question

2021-01-15 Thread Thomas Wolf
Applications/NetBeans/Apache\ NetBeans\ > 11.3.app/Contents/Resources/NetBeans/netbeans/bin/netbeans --open > file1[:line1]... > > On Fri, Jan 15, 2021 at 9:41 AM Thomas Wolf wrote: > >> Hi again, >> You wouldn’t happen to know how to do this on Mac, would you? I tried &g

Re: possibly naive question

2021-01-15 Thread Thomas Wolf
gt; Thanks a bunch! > > tom > > > > On Jan 14, 2021, at 10:53 PM, Laszlo Kishalmi > wrote: > > > > > > I do not know what and how the "remote" part would work, but you can do > from CLI: > > > > > > netbeans --open file1[:line1

Re: possibly naive question

2021-01-14 Thread Thomas Wolf
PM, Laszlo Kishalmi > wrote: > > I do not know what and how the "remote" part would work, but you can do from > CLI: > > netbeans --open file1[:line1]... > > >> On 1/14/21 7:34 PM, Thomas Wolf wrote: >> I don’t know. But when I say “API”, I mean it i

Re: possibly naive question

2021-01-14 Thread Thomas Wolf
on *any* IDE > that I use. > > -- > Mark A. Flacy > mfl...@verizon.net > >> On Thursday, January 14, 2021 5:30:21 PM CST Thomas Wolf wrote: >> Hi, >> This might be a dumb question: does Netbeans have an external API (e.g. >> REST) that would allow a remote pro

possibly naive question

2021-01-14 Thread Thomas Wolf
Hi, This might be a dumb question: does Netbeans have an external API (e.g. REST) that would allow a remote program to direct Netbeans to open a file at a given line number? I have a program that does some analysis on application source code and then needs to let the user edit some specific source

Re: Netbeans installer on macOS Big Sur can't find JDK

2020-12-23 Thread Thomas Wolf
I did after I asked the original question back in August. Not the point. tom On Dec 23, 2020 at 4:06:15 PM, Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > Set it in etc/netbeans.conf then. > > Gj > > On Wed, 23 Dec 2020 at 22:05, Thomas Wolf wrote: >

Re: Netbeans installer on macOS Big Sur can't find JDK

2020-12-23 Thread Thomas Wolf
% which java >> /Users/farnulfo/.sdkman/candidates/java/current/bin/java >> farnulfo@MacBook-Pro ~ % /usr/libexec/java_home >> /Users/farnulfo/.sdkman/candidates/java/current >> farnulfo@MacBook-Pro ~ % >> >> The zip distribution of Netbeans 12.2 run fine with netbeans/bin/n

...has anyone ever tried making a GraalVM native image of NB?

2020-12-03 Thread Thomas Wolf
I just recently started reading about GraalVM to find ways to reduce my app’s footprint and startup time. Turns out GraalVM has a native binary builder and I started wondering if anyone has ever tried it on something as big and complicated as Netbeans? For this to work all classes the application

Re: Netbeans installer on macOS Big Sur can't find JDK

2020-08-26 Thread Thomas Wolf
> On Aug 26, 2020, at 8:59 PM, Thomas Wolf wrote: > > Hey, > Has anyone had this issue? > > I haven’t used Netbeans on my home mac for awhile. I recently installed the > macOS Big Sur beta and when I tried running my Netbeans 11.3 from the dock as > usual, I

Re: Statement of disappointment

2020-03-13 Thread Thomas Wolf
the same story. Would there be some way to contribute >> $$$ (or, in my case, $$) to the team meaningfully? >> >> -- Chris >> >> - Original Message - >> From: Thomas Wolf >> To: John Mc >> Cc: Robert Erdt , bmelen...@hemstech.com, Geertja

Re: Statement of disappointment

2020-03-13 Thread Thomas Wolf
My $.02, I’ve been benefitting from NB since I moved over from Visual Cafe in 1999 (to give you an idea of what a Java dinosaur I am). And my only contributions in 2+ decades have been bug reports (most of which now lie forgotten somewhere in the bowels of the old Bugzilla system) and 1-2 NetCA

Re: [ANNOUNCE] Apache NetBeans 11.3 released

2020-03-04 Thread Thomas Wolf
; > There's a mirror with all the plugins at > http://plugins.archive.librebeans.org > > --emi > > On Wed, Mar 4, 2020 at 6:45 PM Thomas Wolf wrote: > > > > Excellent new release - thanks so much for the new software, especially > the new L&Fs. > > > > Speaking o

Re: [ANNOUNCE] Apache NetBeans 11.3 released

2020-03-04 Thread Thomas Wolf
Excellent new release - thanks so much for the new software, especially the new L&Fs. Speaking of L&Fs, the new FlatLaf Dark uses a very similar color palette to Darcula, my favorite L&F for the past few years. Nice! The only downside (so far) I notice is with tabs, as they use up more vertical

Re: Weird NB git problem

2020-02-19 Thread Thomas Wolf
em happens again open an > issue and attach the NetBeans log files for analysis. > > Gj > > On Tue, 18 Feb 2020 at 21:38, Thomas Wolf wrote: > >> Been using NB with git without problems on a Mac for years now - with NB >> 11.2 since it came out. >> >> But jus

Weird NB git problem

2020-02-18 Thread Thomas Wolf
Been using NB with git without problems on a Mac for years now - with NB 11.2 since it came out. But just now I encountered a strange bug - and I don't know how to fix it: I had made some changes to my source code and, as usual, from Projects I selected Project->Git->Show Changes This showed

Re: Anyone know of any gerrit integration?

2020-01-02 Thread Thomas Wolf
filer when no colleague > is looking. > > --emi > > On Thu, Jan 2, 2020 at 11:57 PM Thomas Wolf wrote: > > > > ...except that nobody in my company (some 2,000 devs), aside from me, > uses Netbeans and the IDEs that are used (IntelliJ, Eclipse) do have hooks > i

Re: Anyone know of any gerrit integration?

2020-01-02 Thread Thomas Wolf
6.5 > billable hours wasted every month. > > --emi > > > On Thu, Jan 2, 2020 at 10:55 PM Thomas Wolf wrote: > > > > We've been happily using git from within NB for a few years. Now > corporate insists we use gerrit for code review. It seems like NB doesn'

Anyone know of any gerrit integration?

2020-01-02 Thread Thomas Wolf
We've been happily using git from within NB for a few years. Now corporate insists we use gerrit for code review. It seems like NB doesn't have support for pushing changes for review to gerrit - the only suggestion of a hack solution I saw was from 2015 in this stack overflow question: https://st

Re: Dependent libraries don't get copied?

2019-11-05 Thread Thomas Wolf
. Anyway, i’ll switch to NB 11.2. Tschüss, Thomas > On Nov 5, 2019, at 2:26 AM, Helmut Leininger wrote: > >  > I think it is solved in Netbeans 11.2 > > Helmut > > Am 05.11.2019 um 03:57 schrieb Thomas Wolf: >> I'm developing a pretty standard Swing applic

Dependent libraries don't get copied?

2019-11-04 Thread Thomas Wolf
I'm developing a pretty standard Swing application in Netbeans 11.1 on a Mac, using Oracle Java 12.0.2+10. While I was doing day-to-day development, I told the IDE not to create a jar of the application after every compile. But now that I'm ready to give this code to someone, I told Netbeans in P

Re: Any step-by-step on importing/developing react app in Netbeans?

2019-10-07 Thread Thomas Wolf
ping src separated from > generated/dependency stuff mean. I can’t really help with this, you’ll need > to explain in a lot more detail and also ‘why’ etc. > > Gj > > On Mon, 7 Oct 2019 at 20:02, Thomas Wolf wrote: > >> Hi Geertjan, >> Thanks. It looks like you simp

Re: Any step-by-step on importing/developing react app in Netbeans?

2019-10-07 Thread Thomas Wolf
t 11:37 AM Geertjan Wielenga wrote: > https://github.com/geertjanw/pics/blob/master/react-in-nb-1.png > > https://github.com/geertjanw/pics/blob/master/react-in-nb-2.png > > Hope it helps. > > Gj > > On Mon, Oct 7, 2019 at 3:12 PM Thomas Wolf wrote: > >> Hi Geer

Re: Any step-by-step on importing/developing react app in Netbeans?

2019-10-07 Thread Thomas Wolf
Sat, Oct 5, 2019 at 4:43 AM Geertjan Wielenga wrote: > If you can point to this or a similar source structure on GitHub, I’ll > make a YouTube clip showing how to set it up in Apache NetBeans. > > Gj > > On Fri, 4 Oct 2019 at 22:12, Thomas Wolf wrote: > >> Hey eve

Any step-by-step on importing/developing react app in Netbeans?

2019-10-04 Thread Thomas Wolf
Hey everyone, I'm just getting my feet wet with web-based application development (but decades of Java dev experience using NB) and, up to this point, have been using NB mainly as an editor for my first React app. The react application is working fine - with a standard react app directory structur

Re: The last straw

2019-09-28 Thread Thomas Wolf
Cameron, I think you’re severely mischaracterizing the situation - NB hasn’t lost its way, but it has lost corporate sponsorship. In the old days, Sun, flush with cash and a desire to promote Java, bought the little startup from Europe and provided the financial resources to make it flourish.

  1   2   >