Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ruler501

Pages: 1 ... 18 19 [20] 21 22 ... 184
286
Other / Re: Is This a good computer?
« on: November 24, 2012, 07:02:24 pm »
Mmm, just returned to this forum and found a post right up my ballpark

This would be a better build:

PCPartPicker part list: http://pcpartpicker.com/p/phaS
Price breakdown by merchant: http://pcpartpicker.com/p/phaS/by_merchant/
Benchmarks: http://pcpartpicker.com/p/phaS/benchmarks/

CPU: Intel Core i5-3570K 3.4GHz Quad-Core Processor  ($169.99 @ Microcenter)
CPU Cooler: Cooler Master Hyper 212 Plus 76.8 CFM Sleeve Bearing CPU Cooler  ($14.99 @ Newegg)
Motherboard: ASRock Z77 Extreme4 ATX  LGA1155 Motherboard  ($104.99 @ Newegg)
Memory: Samsung 8GB (2 x 4GB) DDR3-1600 Memory  ($34.99 @ Newegg)
Storage: Seagate Barracuda 2TB 3.5" 7200RPM Internal Hard Drive  ($69.99 @ Newegg)
Video Card: Asus Radeon HD 7850 2GB Video Card  ($197.06 @ NCIX US)
Case: NZXT Source 210 Elite (White) ATX Mid Tower Case  ($39.99 @ Amazon)
Power Supply: PC Power & Cooling Silencer MK III 500W 80 PLUS Bronze Certified ATX12V Power Supply  ($49.99 @ Newegg)
Optical Drive: Asus DRW-24B1ST/BLK/B/AS DVD/CD Writer  ($19.98 @ Outlet PC)
Total: $701.97
(Prices include shipping, taxes, and discounts when available.)

CPU: The 3570K is just the plain standard for gaming. You don't need 3770K's hyperthreading for gaming, and it's understood that AMD's 8core bulldozer is an absolute failure. You can only get this price in store at microcenter, or it's $200. Make sure you have a microcenter near by. Also, if you buy this CPU with any Z77 motherboard at Microcenter, you get an extra $40 off. So please, make the drive to the nearest microcenter (unless it's like 50 miles away, then you'd have to order it online and you can't get the discount).

CPU Cooler: The Hyper 212+ is the best budget CPU cooler. Ringing it at only $15 during these black friday sales, it's a great steal. It can push the 3570K to about 4.5Ghz at 70C under load. That's pretty good for $15.

Motherboard: The Z77 Extreme4 is a decent board for overclocking. I have one, and I have my CPU at 5Ghz stable, using an air cooler. This board is only $64 IF you buy it at microcenter with the 3570K, $40 off price  :w00t:

RAM: This ram is called the "secret ram". It's not very well known when it first came out, but when people got their hands on it, it easily clocks to 2133mhz from its stock 1600mhz. It has no silly heatsinks and is low profile so it can sit below any CPU cooler.

HDD: This Seagate 2TB hard drive is reliable, quiet, fast, and has ample storage for whatever you want to put on there. It's oddly cheaper than its 1TB counterpart.

GPU: The 7850 destroys the GTX 650Ti in everything. This asus version of the card comes with 2 silent fans. It get 50-60 frames on skyrim. It can also overclock to 1.1ghz, 240mhz more than stock.

Case: Good choice on the Source 210. I highly recommend it. With its great build quality, easy cable management, and good looks, it's definitely a winner.

PSU: Rosewill's PSUs aren't as reliable as PC Power & Cooling's, a subdivision of OCZ. This PSU has 500 watts, modular cable management (connect only the cables you need), and is 80plus bronze. It comes with a free CD/DVD drive I would sell/get rid of since it isn't very good.

CD/DVD Drive: This Asus CD/DVD drive is silent, writes very fast, and is reliable.

This computer is much more powerful, 2x more storage, a LOT more overclockable, and can literally play any game you throw at it. If you get the parts from microcenter, remember to subtract $40. Also, if you sell of the CD/DVD drive that comes with the PSU, you get an extra $15. So in the end, it really costs $646, but I did not add Windows. You could get Windows 8 for like $60 right now iirc. I hope you see the part choices I made, thank you for reading my build, best of luck, and most importantly, have fun.
Wish a saw this a couple days ago...
I already ordered the parts though. I'll keep this in mind if I decide to  build another one though.

287
Humour and Jokes / Re: Must be 17 or older to use Opera
« on: November 24, 2012, 01:11:21 pm »
Every browser should have this... get stupid kids off the internet :P and on the related note I love opera!
waht about us smart kids :P

288
Site Feedback and Questions / Re: Omnimaga YouTube channel (OmnimagaTV)
« on: November 24, 2012, 01:05:12 am »
the only problem with that is I have to find a way to link that with the video file so that admins can easily find it. I'll look into it though.

289
Site Feedback and Questions / Re: Omnimaga YouTube channel (OmnimagaTV)
« on: November 24, 2012, 12:56:07 am »
If I can get uploads working It will be good I have the script to check space usage and autodelete old files set up and running. The account for admins is created. All thats missing is the upload script which since I fail at php is not working. I created a help topic for it a while ago.

290
Site Feedback and Questions / Re: Omnimaga YouTube channel (OmnimagaTV)
« on: November 24, 2012, 12:31:20 am »
We need a system whether it be mine or someone elses. We need someplace for the videos to be uploaded and for admins to approve/download so they can be put on the youtube page.

291
Web Programming and Design / Re: PHP Upload
« on: November 24, 2012, 12:28:12 am »
Unfortunately that just seems to link to a javascript file specific to youtube direct. Thanks for linking it though; It reminds me that I forgot to link to where I host this.

292
Web Programming and Design / PHP Upload
« on: November 24, 2012, 12:15:44 am »
How can I get video upload set up? I tried using this script I found
Code: [Select]
<?php 
 $uploaded_size 
$_FILES[&#39;uploaded&#39;][&#39;size&#39;];
 
$uploaded_type $_FILES[&#39;uploaded&#39;][&#39;type&#39;];
 
$target "/home/omni/uploads";
 
$allowed =  array(&#39;mp4&#39;,&#39;wmv&#39; ,&#39;avi&#39;,&#39;flv&#39;);
 
$filename $_FILES[&#39;uploaded&#39;][&#39;tmp_name&#39;];
 
$ext pathinfo($filenamePATHINFO_EXTENSION);
 
$target $target basename$_FILES[&#39;uploaded&#39;][&#39;name&#39;]) ; 
 
$ok=1
 
 
//This is our size condition 
 
if ($uploaded_size 209715200
 { 
 echo 
"Your file is too large.<br>"
 
$ok=0
 } 
 
 
//This is our limit file type condition 
 
if (!in_array($ext,$allowed))
 { 
 echo 
"Only Video Files<br>"
 
$ok=0
 } 
 
 
//Here we check that $ok was not set to 0 by an error 
 
if ($ok==0
 { 
 Echo 
"Sorry your file was not uploaded"
 } 
 
 
//If everything is ok we try to upload it 
 
else 
 { 
  if (
$_FILES["file"]["error"] > 0)
    {
    echo 
"Return Code: " $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo 
"Upload: " $_FILES["file"]["name"] . "<br />";
    echo 
"Type: " $_FILES["file"]["type"] . "<br />";
    echo 
"Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    
//echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

    
if (file_exists("home/omni/uploads" $_FILES["file"]["name"]))
      {
      echo 
$_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      
move_uploaded_file($_FILES["file"]["tmp_name"],
      
"upload/" $_FILES["file"]["name"]);
      
//echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
      
}
    }
 } 
 
?>

and
Code: [Select]
<html><body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
 Please choose a file: <input name="uploaded" type="file" /><br />
 <input type="submit" value="Upload" />
 </form>
</body></html>
Though that doesn't seem to be working. When I try uploading a 10mb avi file it tells me that I need to use a video file. If I take out the condition it says I uploaded a file with no name that is 0kb. I have apache2 and php5. How can I get uploads working where people can only upload files <200mb and that are video files?

I've been trying to learn how to use php and html but I still don't really understand it so it would really help if someone could just explain how to get it set up and what script to use.
I'm hosting it on my server

293
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 23, 2012, 12:23:17 pm »
3647: You can't stop
3648: No matter how hard you stop
3649: This is your third sign and you still can't stop the cravings to post
3650: The cravings are temporarily stopped.

294
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 22, 2012, 11:08:13 pm »
it sounds better as addiction

3645: You know this should be addiction because this is documentation of your case

295
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 22, 2012, 10:49:02 pm »
3643: You know that Runer112 is a robot
3644: You wish you had a z80 to use axe

296
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 22, 2012, 10:30:47 pm »
3635: You know everything fits into an RPG storyline somehow
3636: You are happy you got 3636

297
Site Feedback and Questions / Re: A possible solution/fix for Omnimaga TV
« on: November 22, 2012, 04:08:50 pm »
So, is the plan for members to upload videos to ruler's server, and admins can then take those files and upload them to YouTube?
I think so. I can give whoevers running this the username and password to an ftp server that will let them pull the files off.

I'll check on that Rhombicuboctahedron.
EDIT: Seems I'm having some weird problems with the script again. I'll keep looking to find out where the error is.

298
Site Feedback and Questions / Re: Omnimaga YouTube name "tiebreaker"
« on: November 22, 2012, 09:41:23 am »
yeah that would probably be best

299
Site Feedback and Questions / Re: A possible solution/fix for Omnimaga TV
« on: November 22, 2012, 09:33:44 am »
I have no idea how to check the encoding, maybe I could have a script that would format all of them correctly with ffmpeg. First I need upload to work though
EDIT: I got the php script working. Now I just have to find the MIME types for wmv and avi.
EDIT2: It should work with mp4, wmv, avi and flv videos. Its at htttp://test.ruler501git.tk/omni/upload.html

300
Site Feedback and Questions / Re: Omnimaga YouTube name "tiebreaker"
« on: November 22, 2012, 02:21:32 am »
omnimagaTV is ahead again though so its fine

Pages: 1 ... 18 19 [20] 21 22 ... 184