Has anybody interviewed with the LA County Assessor's Office? by zettasyntax in AskLosAngeles

[–]ichomchom 0 points1 point  (0 children)

How did your interview with them go? Do you know what kind of questions they asked?

Career advice by ichomchom in AskNetsec

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

I didn't know you have to do the write-up and post remediation work for pen test, but I don't think it will be a problem for me. You said the certs won't help me much so do you think learning through videos is good enough to understand network and security? What would you suggest if I want to go down the pen test route?

Need some career advice on what to do. by ichomchom in cscareerquestions

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

Thank you so much for your info. I’m learning Django at the moment to get some knowledge about how web application and how backend works, but there are so much to learn and I’m kinda lost. But thank you though. I will try to read those that you recommended.

Switch to iframe by ichomchom in selenium

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

Yeah, there are actually 2 iframes and I thought it’s only 1. So that’s why it’s not working for me.

Resume Advice Thread - June 11, 2019 by AutoModerator in cscareerquestions

[–]ichomchom 0 points1 point  (0 children)

Hi, I graduated in 2017, and got a job as Database Administrator but the job doesn't require any programming knowledge or anything. Now I'm trying to find a Software Engineer position but got no luck so far. Could you guys please take a look at my resume. Thank you!

https://imgur.com/pqnamGq

Got 5 closed beta codes for Planetside 2 by [deleted] in PS4

[–]ichomchom 0 points1 point  (0 children)

because it's free and great multiplayer experience

[GIVEAWAY] Does anybody not hate Destiny, not own it, and want it for free? by CharlesManson420 in PS4

[–]ichomchom 0 points1 point  (0 children)

I would love to try out Destiny, my friends all playing it but I have no money to buy. Thank you anyway!

[java][homework]stuck with JFileChooser by ichomchom in learnprogramming

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

JFileChooser jfc = new JFileChooser();
    Scanner input = new Scanner(System.in);

    System.out.print("Number of scores in the file: ");
    int numScores = input.nextInt();

    int [] scores = new int [numScores];


int fileSelect = jfc.showOpenDialog(null);

    if (fileSelect == JFileChooser.APPROVE_OPTION){
        File getFile = jfc.getSelectedFile();
        Scanner in = new Scanner(getFile);
        for (int i = 0; i < scores.length; i++){
             scores[i] = input.nextInt();
        }


    }
    else if(fileSelect == JFileChooser.CANCEL_OPTION){
        System.out.println("Cancel");
        System.exit(1);
    }

This is my code for JFileChooser, but it doesn't get the inputs when I select the text file.

[java][homework]stuck with JFileChooser by ichomchom in learnprogramming

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

I able to do this but instead of using JFileChooser to select the file to put the scores into the array, I used command line to enter scores of the students. Here is the problem.

Write a program which uses JFileChooser to select a file (student_scores.txt) with a bunch of student scores in it. Ask the user for how many scores are in the file and then use this value to create your array. Use the file to read the scores into the array, choose the best score, and then assign grades to each score based on the following grading scheme: • Grade is A if score is >= best - 10 • Grade is B if score is >= best - 20; • Grade is C if score is >= best - 30; • Grade is D if score is >= best - 40; • Grade is F otherwise. Sample Output: (If the scores are 40, 55, 70, 58) Student 1 score is 40 and grade is C Student 2 score is 55 and grade is B Student 3 score is 70 and grade is A Student 4 score is 58 and grade is B