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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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-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
>
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
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
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 <
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..
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
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
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
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
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!
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
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
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
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
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
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,
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’
….just curious. Been seeing the “in progress” message at
https://netbeans.apache.org/download/nb13/nb13.html since the NB 13 release.
Thnx,
tom
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
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
>
&
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-
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
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
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
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)
>
>
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.
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:
>
>&
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
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
.
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
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
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
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
'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
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
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
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
>
>
>
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
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
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
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
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
+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
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
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
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
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
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
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
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
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
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:
>>
>>>
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
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
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
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
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
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
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
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:
>
% 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
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
> 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
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
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
;
> 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
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
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
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
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
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'
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
.
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
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
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
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
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
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
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 - 100 of 137 matches
Mail list logo