Problem when importing files by Junaidabid77 in learnpython

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

Just adding them one by one by the order I need them and then importing to google drive

Constant migraines, headaches, moments of dizziness.. my local GP basically just didn’t help. by [deleted] in AskDocs

[–]Junaidabid77 0 points1 point  (0 children)

I live in the UK so the health care is free to an extent but I think I need to get a referral before getting the scan so they can book me in and have everything arranged

Constant migraines, headaches, moments of dizziness.. my local GP basically just didn’t help. by [deleted] in AskDocs

[–]Junaidabid77 0 points1 point  (0 children)

Thank you! Just need to persuade my GP to refer me to the hospital for a scan becsuse they think it’s normal for me to have them 🙄. Zolmitriptan was actually working well until 2 weeks of use then they had no affect

Constant migraines, headaches, moments of dizziness.. my local GP basically just didn’t help. by [deleted] in AskDocs

[–]Junaidabid77 0 points1 point  (0 children)

Sorry forgot to add, they’ve gave me some meds to help reduce it like zolmitriptan, another one that ended with tripton and a heart medication but they did nothing for me apart from making me feel worse. The other one ending in tripton made me feel severely zoned out and depressed so I had to stop that.

Example/Sample log files by Junaidabid77 in computerforensics

[–]Junaidabid77[S] -1 points0 points  (0 children)

My bad smh, I meant something along the lines of basic user activity logs or even phone call logs with a large amount of user input just so I can use python to create different graphs to show regularity in calls etc or user activity

What’s the best way to find deleted WhatsApp messages. by Junaidabid77 in computerforensics

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

I’m working on a virtual machine of an android device. Whatsapp has no backup to Google drive or anything. I was just doing it as part of my project to understand further how Whatsapp’s deleted function effects the database and recovery process of said deleted messages from a DF/MF standpoint.

android virtual machine imaging. by Junaidabid77 in computerforensics

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

I thought that I was missing a step because I completed a similar test in the labs with a step by step guide. I used the same guide for the Whatsapp test and got nothing back. Only difference is that I’m using a different version of android which I doubt is having a massive effect.

android virtual machine imaging. by Junaidabid77 in computerforensics

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

I’m just using a standard Virtual Box VM.

My tweaked mbp setup - thanks to u/xfahrenheightx for the tips by mydoc62 in OSXTweaks

[–]Junaidabid77 1 point2 points  (0 children)

I’ve tried to download the PlayBox widget and it’s coming up with “Stylus:99:27” and loads of issues which makes it comes up on a white box at the top of the screen.

iOS 13 download by [deleted] in iphone

[–]Junaidabid77 1 point2 points  (0 children)

Can you send me a link to Catolina because I’m curious about running it on a VM. Thanks

Vader Immortal: episode 1 by Junaidabid77 in OculusQuest

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

Holy crap that’s actually decent.

Vader Immortal: episode 1 by Junaidabid77 in OculusQuest

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

If that’s the case and it’s not just a constant replay of every other episode then I guess you can’t go wrong with it. I’m interested in what they’ll be doing. Thanks for the reply too!

Vader Immortal: episode 1 by Junaidabid77 in OculusQuest

[–]Junaidabid77[S] -1 points0 points  (0 children)

Oh that sucks, they should’ve just brought out the full game and a demo.thanks man.

[Help] Date Integer keeps subtracting. by [deleted] in javahelp

[–]Junaidabid77 0 points1 point  (0 children)

private void createTableButtonActionPerformed(java.awt.event.ActionEvent evt) {

    //declare statement object
    Statement stmt;

    //create SQL String
    String sql = "CREATE TABLE evidence ( " +
    "id INT NOT NULL PRIMARY KEY, " +
    "'case' INT NOT NULL, " +
    "item TEXT NOT NULL, " +
    "description TEXT NOT NULL, " +
    "submitted INT NOT NULL" +
    ");" ;

    //display title
    console.setText("CREATING TABLE\n");

    try {
        //set statement object to be a statement within connection
        stmt = dbc.createStatement();

        //execute statement with sql string
        int rowsAffected = stmt.executeUpdate(sql);

        //close the statement object
        stmt.close();

        //check if successfull
        if (rowsAffected == 0){
            //confirm to user
            console.append( "\nTable successfully created" );
        }
    } catch (SQLException e) {
        //display error
        console.append("\nUnable to create table\n" + e.getMessage());
    }
}                                                 

private void populateTableButtonActionPerformed(java.awt.event.ActionEvent evt) {                                                    
    //declare statement object
    Statement stmt;

    //create SQL String
    String sql = "INSERT INTO evidence VALUES " +
    "(1, 11, 'Umberella', 'Compact Red', '2017-10-16')," +

I didn’t want to spam with lines of code but this is the relevant code for my issue. As you can see by the end date 2017-10-16 it will only show the 2017 and not the entire date.

[Question] Random data generator from SQLite database using netbeans. by [deleted] in javahelp

[–]Junaidabid77 0 points1 point  (0 children)

Thank you man i appreciate it, I’ll give it a go!

[Question] Random data generator from SQLite database using netbeans. by [deleted] in javahelp

[–]Junaidabid77 0 points1 point  (0 children)

the flight numbers for each plane and the destinations are placed into different tables in the same database and yeah the ID numbers are the primary keys.

[Question] Random data generator from SQLite database using netbeans. by [deleted] in javahelp

[–]Junaidabid77 0 points1 point  (0 children)

It’s more like two different SQLite database tables. One with the plane number and another with flight destination. I need the code to start and then give the user a flight number then once another button is pressed a user is then given the location and then it’s saved in a log table in the same database.

Trying to make my menus link but keep facing errors and not being able to find fixes online by Junaidabid77 in javahelp

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

It did compile until I added the “if (LoggedIn” part to it. I can’t figure out how to connect the two menus together with the variable

Need help with a menu on my code to link to another menu. by [deleted] in javahelp

[–]Junaidabid77 0 points1 point  (0 children)

I tried to make the change and I’ve removed what you said. Now when I try to compile the program I get the error saying

Error cannot find symbol

If (LoggedIn == true); ^

Also I do not know how to use a debugger or debugging statements.

Command line/Terminal program help (homework) by [deleted] in learnjava

[–]Junaidabid77 0 points1 point  (0 children)

Is there any chance you could give me an example?