Jump to content

MaxTheMonster

Member
  • Posts

    222
  • Joined

  • Last visited

Everything posted by MaxTheMonster

  1. Lubuntu is good, but why can't you go into BIOS/UEFI on your Mac and enable USB boot? That should work if you can do such a thing.
  2. Hey all, So I need to update the version of android on my phone to anything above Android 4.4. it is is currently 4.1. I have heard of Cyanogen mod being the method of choice for phones like mine that do not receive OTA updates so I would like somebody to guide me on how to do this. Here are my specs: Samsung Galaxy S3 Mini (O2 UK) Model num: GT-I8200N Thanks
  3. Just put it in a while loop. This will mean that it will run forever. Like: while continue = True: number_1 = int(input('Enter a number: ')) number_2 = int(input('Enter a second number: ')) function = int(input('1. Addition 2. Subtraction 3. Multiplication 4. Division')) if function == 1 : print (number_1+number_2) if function == 2 : print (number_1-number_2) if function == 3 : print (number_1*number_2) if function == 4 : print (number_1/number_2) else: continue = False Something like this
  4. I think that looks great but I would go with lower capacity hard drives, so instead of 2 4TB, 4 2TB this plays nicer with FreeNas and RAM usage. For PSU, I would get any 500w 80+ Gold, Gold because for a NAS you really do need the reliability, unless you plan to run this 24/7 - In which case I would go for a Redundant PSU - that should work ok.
  5. Thanks! I think this might be the one, we'll have to see.
  6. Recently I have been having space issues with my dual 21.5" monitor setup. I do a lot of programming and I have realised that if I got a bigger monitor I could be more productive. So I need to pick a new monitor and was wondering if you guys could help me. Here are my requirments: 27" >£300 preferably less than £200 though 1440p (Would be nice) Height adjust stand and rotate. Response time doesn't matter to me IPS. (Or variants, PLS) Main requirments are as follows: 27" >£300 IPS Otherwise the other requirments would be amazing to meet. Thanks!
  7. Sighing when "IT Support" comes into the classroom and starts going into the BIOS to make it look like they are "fixing" the "problem" (Windows Updating)
  8. Welcome to the forum! That mobo doesn't look atx but, maybe try finding the dimesions of the stock mobo online then see if they are atx.
  9. If you have a NAS. I would just go for a 1tb ssd and have a sff case also if you have a 3d printer print an ssd cover so that you can see it
  10. It works! Thanks so much, the problem was the monitor did not have an EDID so the software didn't know what resolution it was capable of.
  11. I went into the catalyst control center and the display under properties is the display that is working? Help
  12. Installed the chipset drivers and gpu drivers. No change, went into settings and can't change it there.
  13. Could you give me a link to the R9 270x drivers?
  14. Hey guys, I recently upgraded to Windows 10 and I noticed that one of my monitors was set at an incorrect resolution (1024x768). After noticing this, I went and tried to change the resolution however the maximum resolution was this. In Windows 8.1, my monitor was running at 1920x1080. Anyone know how to fix this? It is quite irritating.
  15. Hey, I am working on a project and I need to add an image to the database. I have already got a $_FILES form in my PHP and I have realised I cannot add the image to the database the normal way in SQL INSERT INTO So I was wondering if anybody could help me, here is the PHP I have so far for uploading the images to the database, and it is not working. $uploads_dir = 'C:/xampp/htdocs/YRSSnapimal/image_uploads';foreach ($_FILES["image"]["error"] as $key => $error) { if ($error == UPLOAD_ERR_OK) { $tmp_name = $_FILES["image"]["tmp_name"][$key]; $name = $_FILES["image"]["name"][$key]; move_uploaded_file($tmp_name, "$uploads_dir/$name"); }} Thanks!
×