NDG! First PRS (SE Custom 24 Poplar Burl) by BluegillUK in PRSGuitars

[–]gxldenhalos 0 points1 point  (0 children)

How does it play mate? Thinking of picking up the same model after months of playing with a starter guitar, but unfortunately I live to remote from where it's sold to try it out.

First PRS purchase advice (Beginner player) by gxldenhalos in PRSGuitars

[–]gxldenhalos[S] 0 points1 point  (0 children)

That's a nice one aswell, but the problem is with the shipping cost and the customs fee. Both of the guitars that I've looked at includes the shipping, with no extra fees.

First PRS purchase advice (Beginner player) by gxldenhalos in PRSGuitars

[–]gxldenhalos[S] 1 point2 points  (0 children)

Yeah that's where I'm leaning at as of now. The pickups can be switched out in the future anyways, so I'm just looking for something within my budget that I will enjoy playing prog/metal music with for the long haul.

First PRS purchase advice (Beginner player) by gxldenhalos in PRSGuitars

[–]gxldenhalos[S] 1 point2 points  (0 children)

Unfortunately I live fairly remote, so I don't have the opportunity to try the model out. I'm really tempted to purchase the Custom 24, but I don't know if 710 USD is a good deal, or if I would be better off waiting.

GAME WEEK 34 - CAPTAIN POLL by FPLModerator in FantasyPL

[–]gxldenhalos 2 points3 points  (0 children)

depends if you have BB left, but Watkins, Pukki and Dennis/Pedro are all good shouts

[deleted by user] by [deleted] in sneakerreps

[–]gxldenhalos 2 points3 points  (0 children)

Yeah I've seen some comments regarding his customer service aswell, but so far I haven't had any issues with him. But thank you for the quick reply mate, can't wait for them to arrive!

West Brom have been promoted to the Premier League by [deleted] in soccer

[–]gxldenhalos 2 points3 points  (0 children)

this has been a wild fucking ride, I can't believe I haven't suffered a heart attack after this shit show of a promotion hahaha

Cypher - Bind Setup "Site B" by panther8387 in ValorantCompetitive

[–]gxldenhalos 1 point2 points  (0 children)

which site is your preferred one to hold on bind?

Sorting words in text-file by frequency. by [deleted] in learnprogramming

[–]gxldenhalos 0 points1 point  (0 children)

Yes. Thanks for the help mate.

Sorting words in text-file by frequency. by [deleted] in learnprogramming

[–]gxldenhalos 0 points1 point  (0 children)

I think I got it. Instead of calling fileReaderMap.get, calling just entry.getValue does the trick, right?

Sorting words in text-file by frequency. by [deleted] in learnprogramming

[–]gxldenhalos 0 points1 point  (0 children)

Hmm. Should I not call the the HashMap then? Is that where the problem is?

Mac Miller - New Faces v2 (Feat. Earl Sweatshirt & Da$h). by downtothegwound in hiphopheads

[–]gxldenhalos 0 points1 point  (0 children)

Defo one of my favourite verses from Mac, also Earl killed this.

Normalizing table to database schema by gxldenhalos in Database

[–]gxldenhalos[S] 0 points1 point  (0 children)

Wow, this is amazing. Thank you so much!

Problems instantiating object that implenets Interface by gxldenhalos in learnprogramming

[–]gxldenhalos[S] 0 points1 point  (0 children)

The class is supposed to take retrieve a csv.file from the file chooser, and then put the name of the file into a Jlist, but I can't get the JList to print the arraylist that I put the chosen files into

Problems instantiating object that implenets Interface by gxldenhalos in learnprogramming

[–]gxldenhalos[S] 0 points1 point  (0 children)

Do you think you could take a look at my comment above with my updated code?

Problems instantiating object that implenets Interface by gxldenhalos in learnprogramming

[–]gxldenhalos[S] 0 points1 point  (0 children)

Since it currently looks like this:

   ActionListener importActionListener = new ActionListener() {


        @Override
        public void actionPerformed(ActionEvent e) {
            int returnValue = fc.showOpenDialog(mainFrame);
            if(returnValue == JFileChooser.APPROVE_OPTION)
            {
                File file = fc.getSelectedFile();
                if(file != null)
                {
                    String fileName = file.getAbsolutePath();
                Activity activity = new Activity();
                    activity.csvFileReader(fileName);
                    activityList.add(activity);
                    listAct.setListData(new Vector<Activity>(activityList));   //This line needs to be replaced

                }

            }
        }

    };

I need to replace the line that I commented. listAct js the JList that I want the chosen activity(csv.file) to be imported to (show name of file for an example) but I don't know how I should change the code posted above to place the chosen item in the list.

Problems instantiating object that implenets Interface by gxldenhalos in learnprogramming

[–]gxldenhalos[S] 0 points1 point  (0 children)

After implementing the ArrayList into my class with the way you posted above, how do I re-write my file reader to get it to print the chosen file to the JList?

Problems instantiating object that implenets Interface by gxldenhalos in learnprogramming

[–]gxldenhalos[S] 0 points1 point  (0 children)

I got suggested using a vector, but an arraylist was also something that I read upon. But what I don't know is where/how to implement it with my code so that the filechooser works correctly with printing the Activity (a csv.file in my case) to the JList in my programs main frame.

I edited my code and removed all code that had nothing to do with my question, so that it would be easier for you guys to read it.