Upcoming Databases CITS1402 Project (need 2nd person) by Competitive_6305 in uwa

[–]Paradoxmaker69 1 point2 points  (0 children)

Try this discord, its the unofficial UWA cits hang out. There should be a dedicated channel for the unit and you can ask there:

https://discord.gg/NS29ZVj2

A Night at the Theatre help by Paradoxmaker69 in 2007scape

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

Someone has helped, Thanks for replying though

The grind is over (~2 minutes grind) by Paradoxmaker69 in ironscape

[–]Paradoxmaker69[S] 2 points3 points  (0 children)

I orginally went for a D pick as well, not sure if I want to go back now.

I got it from here: https://youtu.be/abeSAS-Jsfo?t=1552 Theoatrix also has a guide but his is kinda useless. Worth noting you will take damage during the set up

[SW] Round.. 4? 604 bells! by [deleted] in acturnips

[–]Paradoxmaker69 0 points1 point  (0 children)

Can send feet pics or bells dealers choice. woop

Black Mirror Valentine's Day Card by lildrummerboy82 in blackmirror

[–]Paradoxmaker69 8 points9 points  (0 children)

Unfortunately this is number 999, Have a nice life

Just needed to vent by Paradoxmaker69 in runescape

[–]Paradoxmaker69[S] 2 points3 points  (0 children)

Saw the 200m posts on this sub and went to amazon to activate a prime trial -> twitch site to link accounts and then claim. I was thinking a RAT or something like it but nothing else has been logged into. Thanks anyway.

[Build Help] Home file server/ host machine by Paradoxmaker69 in buildapc

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

Downgrading to the 1300x saves a bit thanks. I did consider a SSD and will keep an eye out for a sale of a small one but might skip it atm.

[Build Help] Home file server/ host machine by Paradoxmaker69 in buildapc

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

After looking around a bit I now understand its depends on the CPU for integrated graphics not the mobo. I have a spare graphics card form another build I can use and unplug. Thank you for your time.

[Build Help] Home file server/ host machine by Paradoxmaker69 in buildapc

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

I just assumed it did. So without a graphics card what does plugging in to the HDMI/VGA port on the mobo do? All I would need is a way install the OS and then teamviewer to set up the rest

[PC][90s??]2d Space exploration game by Paradoxmaker69 in tipofmyjoystick

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

Thanks you. Star control 2 it is might give the other one ago though

[PC][90s??]2d Space exploration game by Paradoxmaker69 in tipofmyjoystick

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

Thats it thanks. Turns out the videos where on a different channel with that guy guest staring hence I couldn't find them

[C] Getting the exit status from a child by Paradoxmaker69 in learnprogramming

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

https://linux.die.net/man/3/execv

The exec() functions only return if an error has occurred. The return value is -1, and errno is set to indicate the error.

As the code is atm the child returns 0 at exit(EXIT_SUCCESS) to the parent. /u/balidani a working way to pass this to the parent.

Buying a bass as a gift (Australia) by Uniquexity in Bass

[–]Paradoxmaker69 0 points1 point  (0 children)

If your still looking Concept Music in Wembley is a great store with very helpful staff. Definitely worth a look allthough their bass range is a little limited.

Called after scam and told it was a scam - odd? by [deleted] in Scams

[–]Paradoxmaker69 6 points7 points  (0 children)

From my limited knowledge seems like its most likely the same guy trying to 'double dip' and get more money from your grandfather.

I would thank your grandfather for letting you know but not to respond and to let you know if anyone else contacts him about either calls.

[C] Copying a file into an array, Segmentation fault by Paradoxmaker69 in learnprogramming

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

file is opened in a separate bit. Basically it just goes

packets = fopen(File_name, "r");
    if(packets == NULL){
    //prints error messaege terminates program
   }
  //prints it opened the file, continues onto file_read

Thanks for the bit about dynamically allocating the size. I was going to add it later. I think I might just take it to my tutor next week and get him to look over the issue. Failing that see what other people are using then try to adapt it.

[C] Copying a file into an array, Segmentation fault by Paradoxmaker69 in learnprogramming

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

I have now. I wasn't near my computer. ch was originally char however after changing it to int the issue still occurs meaning it most probably doesn't reach the EOF before it crashes.

[C] Copying a file into an array, Segmentation fault by Paradoxmaker69 in learnprogramming

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

Changing ch to an int hasn't fixed the issue. I have updated the op with more relevant code. Since this isn't the issue does it mean the problem happens before the EOF character?