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 2 [3] 4 5 ... 184
31
« on: December 09, 2013, 07:42:40 pm »
Anoncoin was $16 a while back. The price fluctuates a lot along with bitcoin(buy some bitcoins and buy anoncoin with it when it goes down and you could make some money)
32
« on: December 09, 2013, 01:35:40 am »
The prices are starting to go back up(which my wallet is really appreciating)
Do any of you do altcoins? I mine anoncoin with my GPU/CPU when I'm not playing games on my desktop(currently get about 470-520kH/s). I have earned about 4.1 coins with it so far though fees will take .3 of those off.
33
« on: November 26, 2013, 01:28:59 am »
I have good experience with AMD GPU's on linux.
34
« on: November 24, 2013, 03:43:41 pm »
If you are going with two monitors the best experience would be to have them both be the same kind. Here is an example of a build with some of the specs already mentioned http://pcpartpicker.com/p/27NPSsome of that stuff should probably be cut down to a more reasonable level for you to get anywhere near your pricepoint. What parts are most important to you?
35
« on: November 24, 2013, 03:22:40 pm »
I was just looking at the last couple posts and that would probably run higher than that. Should the cost include monitors, keyboard, mouse?
36
« on: November 24, 2013, 03:16:47 pm »
What budget would you want for this?
37
« on: November 24, 2013, 03:11:07 pm »
I use maxima, but its nice that companies are supporting the pi
38
« on: November 20, 2013, 04:15:07 pm »
EDIT: didn't do angles correctly so have to redo it. EDIT2:
39
« on: November 20, 2013, 11:25:04 am »
I use the AMD(not sure if free or not) drivers on my install and they work just fine(triple monitor with xrandr). I haven't done much with testing performance comparison versus windows, but it seems to work well.
40
« on: November 19, 2013, 01:53:55 pm »
How good "good enough" is depends on what you're doing with it, of course. To play Skyrim dual-monitor, you're going to need a pretty nice GPU (or enjoy looking at pixels)
Skyrim also was not written to support multi-monitor and I've found multi-monitor hacks very unstable(especially when using mods) Another note about RAID: I'd highly suggest not doing it, especially if it's your first time; for RAID0 (which pimathbraniac talks about), if any of the drives fail all your data is lost. Other RAID arrays provide redundancy, but decrease performance.
RAID 5 supports drive loss and increases speed, but it requires three drives and you cannot use one of them for storage
41
« on: November 18, 2013, 07:16:33 pm »
I eneded up getting this working by pushing every cable in the case in to make sure there were no loose connections. I now have a few problems with monitor cables so I need to keep working on that, but it is kind of good for now.
42
« on: November 18, 2013, 02:05:10 pm »
I've been using my new desktop for a month or two now and the other day I put it into suspend while I slept. When I got up it was powering on for about half a second every five seconds or so. I rechecked all the wiring and it appears to be good(or at least unchanged) but the problem has persisted and I am unable to turn on the computer. I've tried clearing CMOS to see if I messed up with my overclock(4770k at 4.0ghz), but that didn't seem to change anything. At this point I'm not sure what to do. Any ideas on what is wrong or how to fix it? I have decent warranties on most of the parts so I should be able to get a failed part replaced(would that be PSU or motherboard in this case?)
EDIT: The customer support at MSI suggested I remove my graphics card to see if it would work with onboard video and that(predictably) did nothing.
EDIT2:It worked for a minute while the graphics card was out and nothing was plugged in except the front panel power switch. As I started plugging other things back in continued to not have problems until I plugged in the power led positive. Then the problem restarted and is not going away. It stopped earlier when I was unplugging things and had moved one cable slightly to the side(not unplugged just moved it away from the processor fan) I tried redoing everything I did, but the problem is not going away again.
43
« on: November 10, 2013, 05:17:27 pm »
* ruler501 didn't realize ben_g had posted one
44
« on: November 10, 2013, 05:10:11 pm »
import os, sys, glob, shutil, fnmatch
matches = [] for root, dirnames, filenames in os.walk(sys.argv[1]): for filename in fnmatch.filter(filenames, '*.h'): matches.append(os.path.join(root, filename)) for filename in fnmatch.filter(filenames, '*.txt'): matches.append(os.path.join(root, filename))
print(matches)
dest=sys.argv[2]
for f in matches: keep=input("Do you want to keep "+f) if keep=='': keep = old if keep=='r' or keep=='n': os.remove(f) elif keep=='k' or keep=='y': print(dest+os.path.split(f)[1]) shutil.copy(f,dest+os.path.split(f)[1]) else: print("You need to use a valid command y/k keep or r/n remove") old = keep
recursive and tested. It will also remember your last answer so you can just press enter to continue going with keep/remove without having to retype. EDIT: the first argument is the directory to search through the second is where to put them.
45
« on: November 10, 2013, 03:35:03 pm »
would something like this work
import os, sys, glob, shutil
dest='/home/'#leave trailing / or it will break
for f in glob.glob("*.h"): keep=input("Do you want to keep "+f) if keep=='r' or keep=='n': os.remove(f) else if keep='k' or keep=='y': shutil.copy(f,dest+f) else: print("You need to use a valid command y/k keep or r/n remove")
I haven't tested it yet so I make no promise about it working
Pages: 1 2 [3] 4 5 ... 184
|