Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Computing Students

17810121323

Comments

  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Cheers for the heads up on the tralee gardai, was gonna call into them tomorrow. Hope the feckers in Kilorglin are open for business :rolleyes:


  • Registered Users, Registered Users 2 Posts: 12,760 ✭✭✭✭Encrypted Pigeon


    Out of interest, how do you check your attendance? was looking at the link in IE in the college and it was asking for name, password and db. wtf is the db? did they give ye a tutorial on it or something?


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    We were never told how to check it, I only thought lecturers were allowed to. Catherine Woods checks it in class but she has never mentioned whether we can check it ourselves.


  • Registered Users, Registered Users 2 Posts: 12,760 ✭✭✭✭Encrypted Pigeon


    ah right, I just thought when the link was on all the browsers everyone could check it.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah, if you have the bike question done is there any chance you could post up the driver method? I can get the basic of it to work like displaying name etc, but trying to out the total value of the 2 bikes etc has me completley lost.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    JFlah, if you have the bike question done is there any chance you could post up the driver method? I can get the basic of it to work like displaying name etc, but trying to out the total value of the 2 bikes etc has me completley lost.
    I,ll pop it up this evening ..


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    JFlah, if you have the bike question done is there any chance you could post up the driver method? I can get the basic of it to work like displaying name etc, but trying to out the total value of the 2 bikes etc has me completley lost.

    import javax.swing.*;
    public class BicycleDriver
    {
    public static void main(String args[])
    {
    String ownerName;
    double bicycleValue;
    String bicycleType;
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    Bicycle bikeOne = new Bicycle(ownerName,bicycleValue,bicycleType);
    bikeOne.setOwnerName(ownerName);
    bikeOne.setBicycleValue(bicycleValue);
    bikeOne.setBicycleType(bicycleType);
    Bicycle bikeTwo = new Bicycle();
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    bikeTwo.setOwnerName(ownerName);
    bikeTwo.setBicycleValue(bicycleValue);
    bikeTwo.setBicycleType(bicycleType);
    double increasedPrice = bikeOne.getBicycleValue()+10;
    double totalValue = increasedPrice + bikeTwo.getBicycleValue();
    JOptionPane.showMessageDialog(null,bikeOne.toString()+"\nIncreased Price: "+increasedPrice+"Eur\n\n"+
    bikeTwo.toString()+"\n\nTotal Value of Bicycles: "+totalValue+"Eur");
    }
    }

    It works , probably not the most efficient way I,m going to tackle it from a different angle tonight.


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    JFlah wrote: »
    import javax.swing.*;
    public class BicycleDriver
    {
    public static void main(String args[])
    {
    String ownerName;
    double bicycleValue;
    String bicycleType;
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    Bicycle bikeOne = new Bicycle(ownerName,bicycleValue,bicycleType);
    bikeOne.setOwnerName(ownerName);
    bikeOne.setBicycleValue(bicycleValue);
    bikeOne.setBicycleType(bicycleType);
    Bicycle bikeTwo = new Bicycle();
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    bikeTwo.setOwnerName(ownerName);
    bikeTwo.setBicycleValue(bicycleValue);
    bikeTwo.setBicycleType(bicycleType);
    double increasedPrice = bikeOne.getBicycleValue()+10;
    double totalValue = increasedPrice + bikeTwo.getBicycleValue();
    JOptionPane.showMessageDialog(null,bikeOne.toString()+"\nIncreased Price: "+increasedPrice+"Eur\n\n"+
    bikeTwo.toString()+"\n\nTotal Value of Bicycles: "+totalValue+"Eur");
    }
    }

    It works , probably not the most efficient way I,m going to tackle it from a different angle tonight.

    Absolutely nothing wrong with that really. If you wanted to you could pass the increased value within the method and there would be no need for the extra variable increasedPrice.

    bikeOne.setBicycleValue(bicycleValue+10);

    This can be passed in the output as bikeOne.getBicycleValue() then for the incremented value. No difference anyway I say as we all approach the questions differently.

    This was a far easier question than the continents one previous. How did ye get on with that one?


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    AntiRip wrote: »
    Absolutely nothing wrong with that really. If you wanted to you could pass the increased value within the method and there would be no need for the extra variable increasedPrice.

    bikeOne.setBicycleValue(bicycleValue+10);

    This can be passed in the output as bikeOne.getBicycleValue() then for the incremented value. No difference anyway I say as we all approach the questions differently.

    This was a far easier question than the continents one previous. How did ye get on with that one?

    Passing the value within the method was the change I was going to make this evening. The animal one is a humdinger .,,,, have it so close now I feel just have to tweak some bits but am progressing I feel.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    AntiRip wrote: »
    Absolutely nothing wrong with that really. If you wanted to you could pass the increased value within the method and there would be no need for the extra variable increasedPrice.

    bikeOne.setBicycleValue(bicycleValue+10);

    This can be passed in the output as bikeOne.getBicycleValue() then for the incremented value. No difference anyway I say as we all approach the questions differently.

    This was a far easier question than the continents one previous. How did ye get on with that one?

    Was totally stumped, I'm struggling with the mutator method, like in the bike one where you want to increase the price of the first bike to 10, I didn't really know how to code it, if I can figure those bits out I wont be doing too bad.

    Also, did Catherine Woods get back to ye about the SAD? E-mailed her Wednesday with the system requirments and got nothing back yet, kinda annoying as I can't go any further till she gets back to me.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Was totally stumped, I'm struggling with the mutator method, like in the bike one where you want to increase the price of the first bike to 10, I didn't really know how to code it, if I can figure those bits out I wont be doing too bad.

    Also, did Catherine Woods get back to ye about the SAD? E-mailed her Wednesday with the system requirments and got nothing back yet, kinda annoying as I can't go any further till she gets back to me.

    Just received a reply from her so probably will get to everyone soon


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    siblers wrote: »
    Was totally stumped, I'm struggling with the mutator method, like in the bike one where you want to increase the price of the first bike to 10, I didn't really know how to code it, if I can figure those bits out I wont be doing too bad.

    Also, did Catherine Woods get back to ye about the SAD? E-mailed her Wednesday with the system requirments and got nothing back yet, kinda annoying as I can't go any further till she gets back to me.

    Feeling a bit better now, yeah me too and no reply. Was starting to wonder.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah wrote: »
    import javax.swing.*;
    public class BicycleDriver
    {
    public static void main(String args[])
    {
    String ownerName;
    double bicycleValue;
    String bicycleType;
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    Bicycle bikeOne = new Bicycle(ownerName,bicycleValue,bicycleType);
    bikeOne.setOwnerName(ownerName);
    bikeOne.setBicycleValue(bicycleValue);
    bikeOne.setBicycleType(bicycleType);
    Bicycle bikeTwo = new Bicycle();
    ownerName = JOptionPane.showInputDialog("Please enter your name: ");
    bicycleValue = Double.parseDouble(JOptionPane.showInputDialog("Please enter the value of the bicycle: "));
    bicycleType = JOptionPane.showInputDialog("Please enter the make of the bicycle: ");
    bikeTwo.setOwnerName(ownerName);
    bikeTwo.setBicycleValue(bicycleValue);
    bikeTwo.setBicycleType(bicycleType);
    double increasedPrice = bikeOne.getBicycleValue()+10;
    double totalValue = increasedPrice + bikeTwo.getBicycleValue();
    JOptionPane.showMessageDialog(null,bikeOne.toString()+"\nIncreased Price: "+increasedPrice+"Eur\n\n"+
    bikeTwo.toString()+"\n\nTotal Value of Bicycles: "+totalValue+"Eur");
    }
    }

    It works , probably not the most efficient way I,m going to tackle it from a different angle tonight.

    Thanks for that, starting to make a bit of sense.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    Woo hoo ... week off to catch up on things!


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah wrote: »
    Woo hoo ... week off to catch up on things!

    Yeah, apart from SAD we don't really have assigments to worry about. I've no idea how far ahead to go with SAD though.


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    siblers wrote: »
    Yeah, apart from SAD we don't really have assigments to worry about. I've no idea how far ahead to go with SAD though.

    Go as far as you can with your DFDs and study Network Fundamentals! ;-)


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Yeah, apart from SAD we don't really have assigments to worry about. I've no idea how far ahead to go with SAD though.
    Will try to get most of the DFD's done and will probably have to rewrite the system requirements a bit so everything works together ... have to try and go over the SAD lecture stuff too .... yawn.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    AntiRip wrote: »
    Go as far as you can with your DFDs and study Network Fundamentals! ;-)

    Do you know how far into the lectures notes we are to go? Dont remember us doing any stuff beyond slide 20 of lecture 5.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Do you know how far into the lectures notes we are to go? Dont remember us doing any stuff beyond slide 20 of lecture 5.
    For which module??


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah wrote: »
    For which module??

    I suppose that would help alright, its for Network Fundementals


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    I suppose that would help alright, its for Network Fundementals
    Luckily I am exempt from that module :) but from memory you,ll need to know upto what type of ip address a given address is and what addresses are restricted(network address,pvt address,loopback testing address) the CA in NF is handy all multiple choice questions.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah wrote: »
    Luckily I am exempt from that module :) but from memory you,ll need to know upto what type of ip address a given address is and what addresses are restricted(network address,pvt address,loopback testing address) the CA in NF is handy all multiple choice questions.

    Sounds about right. Sound.


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    siblers wrote: »
    Do you know how far into the lectures notes we are to go? Dont remember us doing any stuff beyond slide 20 of lecture 5.

    Do you mean slide 20 of lecture 4? Don't remember doing lecture 5 at all. I say just look over question 1 of the past papers.


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    For SAD are we supposed to have the class diagrams done? Don't remember doing them in class.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    For SAD are we supposed to have the class diagrams done? Don't remember doing them in class.

    I don,t personally think so but I know some people attempted and sent them. I don,t really know what to do so I left it


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    siblers wrote: »
    For SAD are we supposed to have the class diagrams done? Don't remember doing them in class.

    Don't think so either although it does say on the deadline sheet but we have missed a couple of classes last week.

    I'm still fiddling away with the system requirements, adding in stuff and editing stuff in the comments. I haven't sent on my DFDs yet either :eek:


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Nice one thanks.
    I've my DFDs done but im not entirely sure about my system requirments, feels like if you change one thing you end up changing a load of other stuff.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Nice one thanks.
    I've my DFDs done but im not entirely sure about my system requirments, feels like if you change one thing you end up changing a load of other stuff.

    Yeah it's a bit of a vicious circle. She suggested a change to my system that basically would mean re-doing 50-60% of it ...... It's scary to think that for some of us we have to get these systems coded and running after Christmas.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    People must be very busy!! tis fierce quiet here lately


  • Advertisement
  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    JFlah wrote: »
    People must be very busy!! tis fierce quiet here lately

    Think you know the answer to that ;-) its like being in an asylum at the moment!


  • Registered Users, Registered Users 2 Posts: 15,127 ✭✭✭✭kerry4sam


    Hope everyone is doing okay though & the work-load isn't too heavy-going?! :)


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    kerry4sam wrote: »
    Hope everyone is doing okay though & the work-load isn't too heavy-going?! :)

    TBH I find it crazy. Semesterisation has major downsides. In the next 4 weeks we have 3 CAs in databases, SAD, Network Fundamentals, Java project, MM project and SAD project and at the same time keep up with all the theory. Am surprised how cool everyone is in class, maybe they don't realise :-).

    The 6pm finishes makes it 10 times worse as I have no time in the evening with kids etc. and shattered at night to do anything. The younger ones can stay up till the wee hours of the night.

    Other than that it's great! :-)


  • Registered Users, Registered Users 2 Posts: 15,127 ✭✭✭✭kerry4sam


    AntiRip wrote: »
    TBH I find it crazy. Semesterisation has major downsides. In the next 4 weeks we have 3 CAs in databases, SAD, Network Fundamentals, Java project, MM project and SAD project and at the same time keep up with all the theory. Am surprised how cool everyone is in class, maybe they don't realise :-).

    The 6pm finishes makes it 10 times worse as I have no time in the evening with kids etc. and shattered at night to do anything. The younger ones can stay up till the wee hours of the night.

    Other than that it's great! :-)

    Other than that it's great? Jeez lads that's some going! You'd want to be very committed by the sounds of it.

    Hope everything runs smoothly for you all in all other aspects of your life outside of college as this seems fairly heavy-going.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    AntiRip wrote: »
    TBH I find it crazy. Semesterisation has major downsides. In the next 4 weeks we have 3 CAs in databases, SAD, Network Fundamentals, Java project, MM project and SAD project and at the same time keep up with all the theory. Am surprised how cool everyone is in class, maybe they don't realise :-).

    The 6pm finishes makes it 10 times worse as I have no time in the evening with kids etc. and shattered at night to do anything. The younger ones can stay up till the wee hours of the night.

    Other than that it's great! :-)

    you just described my life!! not enough hours at moment!


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Im youngish :D but im either wrecked by the time I get home or I have footie training etc. Need to have something to keep my mind off the course. I just try get as much done as possible while in college. Hopefully we'll get the DB assigment tomorrow and can try get it done over the weekend. Multimedia shouldn't be too bad though, should be able to get a good bit done while in class.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Im youngish :D but im either wrecked by the time I get home or I have footie training etc. Need to have something to keep my mind off the course. I just try get as much done as possible while in college. Hopefully we'll get the DB assigment tomorrow and can try get it done over the weekend. Multimedia shouldn't be too bad though, should be able to get a good bit done while in class.

    Slightly more than youngish :( we seem to be making no headway just getting more and more to do !! the exams will be good craic ---- ZERO time to study!


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    JFlah wrote: »
    Slightly more than youngish :( we seem to be making no headway just getting more and more to do !! the exams will be good craic ---- ZERO time to study!

    Wonder how many we'll have after christmas, if its more than 2 its gonna be crappy christmas. Studying christmas day i'd say :D


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Wonder how many we'll have after christmas, if its more than 2 its gonna be crappy christmas. Studying christmas day i'd say :D
    Good idea that ... waste no day :))


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    JFlah wrote: »
    Good idea that ... waste no day :))

    Take an hour off for dinner anyway sure, but no more than that. No drink either :D


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    AntiRip wrote: »
    Take an hour off for dinner anyway sure, but no more than that. No drink either :D
    ah no need for an hour I'll knock dinner back in 15 minutes!!!!


  • Advertisement
  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    JFlah wrote: »
    ah no need for an hour I'll knock dinner back in 15 minutes!!!!

    haha :D

    In all seriousness though, I'll be taking 2-3 days off for definite. Xmas day for sure & maybe St.Stephens Day. Those couple days downtime as important as study. All work and no play....and all that :)


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    AntiRip wrote: »
    haha :D

    In all seriousness though, I'll be taking 2-3 days off for definite. Xmas day for sure & maybe St.Stephens Day. Those couple days downtime as important as study. All work and no play....and all that :)
    ah yeah at least that hopefully more , it'd be great if DB and SAD exams were split up 1 before 1 after


  • Closed Accounts Posts: 2,244 ✭✭✭AntiRip


    JFlah wrote: »
    ah yeah at least that hopefully more , it'd be great if DB and SAD exams were split up 1 before 1 after

    For sure, that would be great to split up the 2 biggest theory subjects. Less headaches anyway


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Id like to have Java and DB done before christmas, SAD is slightly easier and NF shouldn't be too bad.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Id like to have Java and DB done before christmas, SAD is slightly easier and NF shouldn't be too bad.

    I dunno lots of bits of theory in SAD too , hopefully project will get a decent mark take the pressure off a bit .. it,ll all work out ok fingers crossed


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    For SAD do we just need screenshots from Visual Studio? I had a couple taken but I fecked up when saving my file. Don't wanna waste time re-doing them.


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    For SAD do we just need screenshots from Visual Studio? I had a couple taken but I fecked up when saving my file. Don't wanna waste time re-doing them.

    I'm praying thats all ... have no idea how to program them I had 5 screens done but saving is a ba**s and i lost them :(


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Yeah, save mine to desktop and then transferred to X Drive but Visual Studio wasn't having any of it. Easy enough to make the sample screens though


  • Registered Users, Registered Users 2 Posts: 752 ✭✭✭JFlah


    siblers wrote: »
    Yeah, save mine to desktop and then transferred to X Drive but Visual Studio wasn't having any of it. Easy enough to make the sample screens though

    Yeah not so bad I think just add them to your document as you go hopefully will stop the saving issues. Not liking the DB assignment at all :( it's a tricky one


  • Registered Users, Registered Users 2 Posts: 12,596 ✭✭✭✭siblers


    Superb timetable, can't wait for it all


  • Advertisement
Advertisement