NetBeans talks at Oracle Codeone conference (was Javaone)

2018-06-27 Thread mark stephens
My talk submission "Writing better code (faster) in Apache NetBeans IDE” has been accepted so I will be in San Francisco for the conference in October. Any news on other talks? Shall we try to co-ordinate for the conference via mailing list? Kind Regards, MArk

Re: NetBeans talks at Oracle Codeone conference (was Javaone)

2018-06-28 Thread mark stephens
> On 28 Jun 2018, at 15:23, Kenneth Fogel wrote: > > Hi, > > My talk, Got a gig teaching Java? You should be using Apache NetBeans in the > classroom, as a BOF was also accepted. See you in SF. > > Ken Ken, Congratulations. The burning question is whether we still get concert tickets for

Re: NetBeans talks at Oracle Codeone conference (was Javaone)

2018-06-29 Thread mark stephens
e Golden Gate Bridge and I'd love > to see the huge Redwoods just an hour from SF. > > Ken > > > -Original Message- > From: mark stephens > Sent: June 28, 2018 11:24 AM > To: dev@netbeans.incubator.apache.org > Subject: Re: NetBeans talks at Oracle Cod

Re: ApacheCon Montreal NetBeans Presentation Suggestions

2018-08-08 Thread mark stephens
> On 7 Aug 2018, at 21:39, Antonio Vieiro wrote: > > So we can update our events page at > http://netbeans.apache.org/community/events.html, right? That page requires > some love... Should events like Oracle’s CodeOne be on there? There are several NetBeans talks in the schedule. I am curren

Setting breakpoints in NetBeans IDE dev code

2018-08-10 Thread mark stephens
I have NetBeans IDE building from NetBeans sources using excellent instructions on https://cwiki.apache.org/confluence/display/NETBEANS/Development+Environment I can build and run it with tryme. I have identified a module I want to edit. I have opened the module in NetBeans IDE and can reinstal

Re: Setting breakpoints in NetBeans IDE dev code

2018-08-13 Thread mark stephens
> On 10 Aug 2018, at 17:32, Will Hartung wrote: > > On Fri, Aug 10, 2018 at 7:35 AM, mark stephens < > marksteph...@idrsolutions.com> wrote: > >> I have identified a module I want to edit. I have opened the module in >> NetBeans IDE and can reinstall it with

Advice on hacking NetBeans IDE

2018-08-21 Thread mark stephens
Hi everyone, I have NetBeans running from IDE and exploring how I can improve the local history. At the moment, I am trying to hack in some of the git code so I can see if I can get a local history with multiple files (my top if only NetBeans did this feature). I cannot persuade my LocalHistory

Re: Advice on hacking NetBeans IDE

2018-08-22 Thread mark stephens
Tim, Thanks for the reply. I do not like the fact that localHistory is limited to a single file. I would like it to apply to any selection. Git already does this with a Diff feature so I am trying to implement something similar in LocalHistory. I am currently experimenting and trying to see wh

Re: Advice on hacking NetBeans IDE

2018-08-22 Thread mark stephens
On 22 Aug 2018, at 08:29, Christian Lenz mailto:christian.l...@gmx.net>> wrote: That sounds great to me, I often wondering, why is „Show history“ deactivated, when I’ve selected a Folder or a Project. Local history for more then only a single file, makes much more sense 😊 The short answer is

Implementing new Local History

2018-08-24 Thread mark stephens
Hi all, I have hacked ShowHistoryAction.java so that it will open multiple files It is under 10 lines of code Ideally I want to create a display which will integrate them into a single window which allows selection (more like how Version control and IDEA works). I am looking for feedback on

Upgrading Netbeans IDE local history functionality

2018-09-04 Thread mark stephens
Hi all, I now have NetBeans IDE opening multiple local files and merging in the history (screenshot attached of 2 files and combined). I am documenting this in a series of blog articles (https://blog.idrsolutions.com/2018/09/hacking-the-netbeans-ide-1-getting-netbeans-up-and-running-from-source

Re: Upgrading Netbeans IDE local history functionality

2018-09-05 Thread mark stephens
e what is possible. Kind Regards, MArk Cheers Chris Von: mark stephens Gesendet: Dienstag, 4. September 2018 18:30 An: dev@netbeans.incubator.apache.org<mailto:dev@netbeans.incubator.apache.org> Betreff: Upgrading Netbeans IDE local history functionality Hi all, I now have NetBe

Re: Upgrading Netbeans IDE local history functionality

2018-09-05 Thread mark stephens
akes a lot of time. Maybe a time measurement or > Debugging what they are doing is enough for the first round. And later > someone can jump into it and fix it. > > > Cheers and great work. > > Chris > > Von: mark stephens > Gesendet: Mittwoch, 5. September 20

Re: Advice on hacking NetBeans IDE

2018-09-08 Thread mark stephens
On 24 Aug 2018, at 20:36, Tim Boudreau mailto:niftin...@gmail.com>> wrote: Sounds like you would just need to modify the action and the enablement logic, and then give the UI the ability to show history for multiple files in one ui. -Tim The way I am trying to do it is to allow multiple selec

Request for help to getting actions to work in new local history code

2018-09-10 Thread mark stephens
Hi All, I am trying to hack the localHistory to allow it to work with multiple files. The way i have done this so far is to hack the Local History and Versioning UI modules and trying to avoid rewriting the NetBeans plumbing (which assumes single file History). I have modified ShowHistoryActio

Re: Request for help to getting actions to work in new local history code

2018-09-10 Thread mark stephens
, i.e., into your > fork. > > When you run into problems or have questions, send an e-mail here, and then > point to your fork, to the specific places where you're having a problem, > so someone can look at the code. > > Thanks, > > Gj > > > On Mon, Sep

Re: Request for help to getting actions to work in new local history code

2018-09-10 Thread mark stephens
meone can look at the code. Thanks, Gj On Mon, Sep 10, 2018 at 5:20 PM, mark stephens < marksteph...@idrsolutions.com<mailto:marksteph...@idrsolutions.com>> wrote: Hi All, I am trying to hack the localHistory to allow it to work with multiple files. The way i have done this so far is to

Should the NetBeans CodeOne talks be mentioned on Apache site?

2018-09-11 Thread mark stephens
We have 8 talks linked to NetBeans keyword at Upcoming CodeOne in San Francisco (https://oracle.rainfocus.com/widget/oracle/oow18/catalogcodeone18?elq_mid=118107&sh=1426916872211192213815392413&cmid=WWMK170418P00047C0001&search=netbeans). Sadly no NetBeans day this year :-( Should CodeOne and th

http://planetnetbeans.org

2018-09-11 Thread mark stephens
NetBeans IDE links to blog posts at http://planetnetbeans.org/?utm_source=netbeans&utm_campaign=welcomepage which no longer works. Is this just a temporary issue? Kind Regards, MArk - To unsubscribe, e-mail: dev-unsubscr...@net

Re: Request for help to getting actions to work in new local history code

2018-09-19 Thread mark stephens
NetBeans is not calling actions in ShowHistoryAction? Kind Regards, MArk On 10 Sep 2018, at 19:11, mark stephens mailto:marksteph...@idrsolutions.com>> wrote: Thanks for the pointers. I have raised as https://issues.apache.org/jira/browse/NETBEANS-1230 I have pushed my initial code which

Re: Request for help to getting actions to work in new local history code

2018-09-19 Thread mark stephens
er. But neither of these is called by the NetBeans Action system. Does that make sense? Kind Regards, MArk > > > On Wed, Sep 19, 2018 at 5:27 PM, mark stephens < > marksteph...@idrsolutions.com> wrote: > >> I am still hitting a roadblock because I do not understand w

Re: Request for help to getting actions to work in new local history code

2018-09-19 Thread mark stephens
history/src/org/netbeans/modules/localhistory/LocalHistoryProvider.java I add the actions at lines 120-121 but they are not called by the NetBeans callback. Does that makes sense? Kind Regards, MArk On Wed, Sep 19, 2018 at 6:14 PM, mark stephens < marksteph...@idrsolutions.com<

Re: Request for help to getting actions to work in new local history code

2018-09-19 Thread mark stephens
n the > false will not be applicable when more than one node is selected. > > Gj > > > On Wed, Sep 19, 2018 at 5:27 PM, mark stephens < > marksteph...@idrsolutions.com> wrote: > >> I am still hitting a roadblock because I do not understand why my actions

Re: Should the NetBeans CodeOne talks be mentioned on Apache site?

2018-09-20 Thread mark stephens
Are we going to have/promote the usual drinks/food/chat in Thirsty Bear? Kind Regards, MArk On 20 Sep 2018, at 06:46, Geertjan Wielenga mailto:geertjan.wiele...@googlemail.com.INVALID>> wrote: Hi all, I have started putting a page together listing who of us will be at Code One in San Francis

Re: Should the NetBeans CodeOne talks be mentioned on Apache site?

2018-09-20 Thread mark stephens
Suggestion added….. Kind Regards, MArk On 20 Sep 2018, at 08:29, Geertjan Wielenga mailto:geertjan.wiele...@googlemail.com.INVALID>> wrote: Yes, why not, Saturday evening, informal hangout there would be great. Gj

Re: Should the NetBeans CodeOne talks be mentioned on Apache site?

2018-09-24 Thread mark stephens
t; geertjan.wiele...@googlemail.com> wrote: >> >>> There’s no specific community days at all, it’s not NetBeans-specific, the >>> event is structured a bit differently this year. >>> >>> Gj >>> >>> >>> On Tuesday, September

Re: Apache NetBeans at Oracle Code One 2018

2018-10-17 Thread mark stephens
Shame a couple are scheduled at the same time. We are going head to head with Ken Fogel on tuesday... Regards, MArk > On 17 Oct 2018, at 15:06, Geertjan Wielenga > wrote: > > Hi all, > > Several are heading off to San Francisco, note that here's the program for > the week from a NetBeans pe

Re: Apache NetBeans at Oracle Code One 2018

2018-10-17 Thread mark stephens
ing the session together as one. > > Gj > > On Wed, Oct 17, 2018 at 4:43 PM mark stephens > wrote: > >> Shame a couple are scheduled at the same time. >> >> We are going head to head with Ken Fogel on tuesday... >> >> Regards, >> >> MArk

NetBeans talk at DevFest Istanbul 2018

2018-10-18 Thread mark stephens
Bethan Palmer and me are reprising our CodeOne talk on using NetBeans at DevFest 2018 on 4th November in Istanbul and also we will have a stand to talk to people about NetBeans (as we did last year). Full details are at https://blog.idrsolutions.com/2018/10/netbeans-talk-at-devfest-istanbul-20

are we meeting together to go to codeone concert?

2018-10-24 Thread mark stephens
In previous years, we have met up and then walked to giants stadium together. Are we doing this again? anyone know what time first performance starts? kind regards, mark - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incub

Duke award arrives at his first home....

2018-11-23 Thread mark stephens
Duke award arrived in the post in a very secure box…. https://blog.idrsolutions.com/2018/11/duke-joins-the-idrsolutions-java-team/ Kind Regards, MArk

Re: An Apache Netbeans Day in Karlsruhe?

2018-12-10 Thread mark stephens
Hi Oliver, I have organised 3 NetBeans UK days. Happy to help with ideas, etc and might be able to speak depending on days. Top advice is to keep it simple and have a clear plan…. Kind Regards, MArk > On 10 Dec 2018, at 14:06, Oliver Rettig wrote: > > Hi, > > I am thinking about to organiz

Re: Request for clarification on review process on NetBeans with pngs and other odd files found

2017-10-20 Thread mark stephens
.zargo) containing some xml and pgml files in doc-files. Should this be deleted or unzipped and rezipped with headers attached? MArk > > >> El 13 oct 2017, a las 16:15, mark stephens >> escribió: >> >> I have reviewed my first module (performance), and found so

Idiots guy to making a change for a module code change

2017-10-27 Thread mark stephens
In reviewing the modules, I have one which needs a change (adding a header). Is there an idiots guide so I can follow the steps to submitting a change for the first time. Kind Regards, MArk

Re: Idiots guy to making a change for a module code change

2017-10-27 Thread mark stephens
t; If you commit changes to the same branch in your fork, that should work fine. > > Gj > > On Fri, Oct 27, 2017 at 12:09 PM, mark stephens < > marksteph...@idrsolutions.com> wrote: > >> In reviewing the modules, I have one which needs a change (adding a >> he

Re: Idiots guy to making a change for a module code change

2017-10-31 Thread mark stephens
header file adding to the zipped dir in test_docs. Apologies for holding up the process. MArk > > On Fri, Oct 27, 2017 at 1:11 PM, mark stephens < > marksteph...@idrsolutions.com> wrote: > >> Thank-you. Just what I was looking for…. >> >> Regards, >

Re: Idiots guy to making a change for a module code change

2017-10-31 Thread mark stephens
> On 31 Oct 2017, at 14:41, Geertjan Wielenga > wrote: > > No worries at all! > > So, can we take your name off and have someone else do those assigned to > you? > > Thanks, > > Gj Yes please. MArk > > On Tue, Oct 31, 2017 at 3:36 PM, mark ste

Re: [VOTE] Release Apache NetBeans 9.0 Alpha (incubating)

2017-11-08 Thread mark stephens
+1 from me also….. > On 8 Nov 2017, at 08:19, mario-leander.rei...@qaware.de wrote: > > +1 Release this package as Apache NetBeans 9.0 Alpha (incubating) >

NetBeans talk at DevFest Istanbul

2017-11-15 Thread mark stephens
My colleague Georgia Ingham and me are reprising our JavaOne NetBeans talk at DevFest Istanbul on 26th November and also running a stand where we will have NetBeans up and running. It is one of my favourite events as outside the 'traditional audience', we generally get 150+ enthusiastic people

NetBeans at Devfest Istanbul

2017-11-28 Thread mark stephens
On Sunday, I attended DevFest Istanbul conference with my colleague Georgia Ingham. We did a talk on NetBeans and also had a stand where we talked all day to attendees. DevFest was originally a Google conference but has expanded - Microsoft was a main sponsor at the Istanbul event (which is 5 t

Re: [EVENT] NetBeans Day London

2018-01-17 Thread mark stephens
> On 17 Jan 2018, at 16:42, Neil C Smith wrote: > > On Wed, 17 Jan 2018 at 16:28 Bertrand Delacretaz > wrote: > >> I think approving NetBeans Days "in bulk" can work but that page will >> need to define what a "NetBeans Days" event is. What you want to avoid >> is some company having products

Re: [LAZY CONSENSUS] Definining Apache NetBeans Days

2018-03-08 Thread mark stephens
As one of the NetBeans Day UK organisers, I like Geertjan’s definition but think 2 clarifications would help. 1. Does ALL the content have to be NetBeans or the vast majority? In the past we have had a very small minority of talks at NetBeans day which have of a more general nature but fit in w

Re: [LAZY CONSENSUS] Definining Apache NetBeans Days

2018-03-08 Thread mark stephens
> On 8 Mar 2018, at 16:57, Antonio wrote: > > Hi all, > > I agree with all points. I'd add an additional one, though: > > 4. Apache NetBeans Days held in Spain should offer a beverage and tapas. It is a rule it always rains when we have the UK one…. Regards, MArk > > Thanks, > Antonio >

Re: Apache NetBeans events

2018-03-12 Thread mark stephens
I think it is worth mentioning the sponsors also tend to be companies we ‘vet’ as appropriate to be sponsors and they tend to be companies who are keen to help out (or have our supporters in positions of influence) rather than looking for aggressive marketing opportunities. IDRsolutions always

Re: NetBeans Day UK and podcast idea

2018-04-28 Thread Mark Stephens
In message Geertjan Wielenga wrote: > Hi all, > I had a great time at Apache NetBeans Day in London today. > Again enthusiasm from people who somehow get‘ what NetBeans is about. > Take a look on Twitter, search for NetBeans. > It occurred to me how cool it would be to have short

Javaone 2018

2018-05-01 Thread mark stephens
concert). Kind Regards, MArk Stephens IDRsolutions - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org For further information about the

Re: Wiki is ready, please ask for access

2016-10-10 Thread Mark Stephens
hooked to > up the ASF's LDAP service - if possible use the same username as your > Apache ID. > > -Bertrand markee174 for Mark Stephens

Re: [mentors] Clearance for upcoming NetBeans events

2017-03-24 Thread Mark Stephens
Beans Days are always organised by Community members, although we are not above using any sway we have over any commercial entity (and fellow NetBeans enthusiasts there) to gain resources, time, venues, funds, raffle prizes, etc. Regards, MArk Stephens (Organizer of Netbeans Day UK)

Re: [mentors] Clearance for upcoming NetBeans events

2017-03-24 Thread Mark Stephens
> On 24 Mar 2017, at 08:59, Bertrand Delacretaz wrote: > > On Fri, Mar 24, 2017 at 9:30 AM, Mark Stephens > wrote: >> ...The NetBeans Days are always organised by Community members, although we >> are not above using any sway we have over >> any commerci

NetBeans activities at JavaOne 2017

2017-09-22 Thread mark stephens
Hi all, For everyone coming to JavaOne in San Francisco, here's a long list of sessions you can attend, as well as a get together set for Saturday September 30: https://jaxenter.com/netbeans/netbeans-activities-javaone-2017 Possibly there are others that could be listed above -- let me know and

Request for clarification on review process on NetBeans with pngs and other odd files found

2017-10-13 Thread mark stephens
I have reviewed my first module (performance), and found some pngs and xml files in a package without headers in src/threaddemo/util/doc-files What is the correct way to handle these? Regards, MArk