Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Robotics (Score 1) 280

Riffing on the OP's desire to "impact the world," you might consider getting involved in STEM in a promotional/advocacy role. FIRST robotics offers a great opportunity to get involved with promoting the STEM career path. I imagine the pay isn't great, but you might find paid positions in your state's FIRST (or similar) program, or even at the national level.

Comment Re:Used games, borrowed games, etc (Score 1) 395

This isn't any different than the way Steam works right now...

I never said I agree with how Steam does it. In some ways, this is different from Steam (which is currently a primarily PC-based service) in a cultural way.

For the sake of argument let's only focus on activities done within the bounds of the law. In the console world part of the common culture is sharing, trading, and re-selling games. Not everyone does it but it's commonplace. (Sure, it happens with PC games (maybe not so much reselling) but my impression is that it's never been nearly as common as with consoles.) Moreover, console gaming has always been a place where two or more people can sit in front of the same machine to play together, something that PC games rarely do. Does this new model mean that when my friends come over to play Rock Band or Mario Kart they all have to ante up to the game publishers first?

It's more as if the console manufacturers and publishers are trying to change console gaming culture in the name of profit. This is certainly great for their bottom line in theory, but much of the console community is understandably upset.

Comment Re:Used games, borrowed games, etc (Score 3, Interesting) 395

It also reads as if two different profiles on the same physical console can't both play a game without paying for it twice. So now if my wife and I want to play a game together each using our own profile or, god forbid, want to have our own separate single-player campaigns, we are stuck paying twice?

Comment Re:Sure, record me in public (Score 1) 318

But I reserve the right to hack into your image recognition software and replace my face with some other image of my choosing, Ghost in the Shell style.

That's truly an interesting concept. You may have the right to record everything around you but I have the right to forcibly alter my own image by gaining access to your systems, encrypted or not. Or perhaps we could extend that to "alter or delete any information about me."

Comment Re:Not the technology (Score 1) 369

Takeoff and landing, you're supposed to concentrate on safety instructions which (very rarely) you might need to think about right soon and seriously. Just... put down the gadget for a moment, and join the real and dangerous world of the paid staff.

Then why are non-electronic devices, such as books and magazines, allowed during said safety briefing?

Comment Re:Have her use what you use at home (Score 1) 418

Okay, fair enough: Migrate her to the platform(s) you are most comfortable supporting and/or use at home. "But, but..." Give your mother some credit - she will adapt.

This is exactly the reason I plan to migrate the machine to Windows 7. I have a hard time remembering what things are called in XP anymore since I use Windows 7 at home and at work. True I could load up XP Mode and figure it out, but it's also time to move to something newer and more secure.

Comment Re:Why not linux? (Score 1) 418

He's not willing to do that due to the time involved.

He is likely to have to spend far more time re-training on Linux than just fixing the problems via remote log in.

These are big reasons why I say Linux is not an option. The other significant one is that I'm no Linux guru myself. While I'd certainly like to learn more and this is a great opportunity to do so, I just don't have the time in my life right now.

Comment Re:iPad (Score 1) 418

To the article submitter, what does your mom use AOL for? The AOL experience isn't necessarily much different than the browser experience, for certain activities, so you might want to try setting up Windows 7 and then seeing if the browser is "close enough"..

I think she just uses AOL because it's what she is used to and what we used in our house literally 20 years ago. You're absolutely right about the browser experience. Trying to make it a replacement seems like a good option.

Windows

Submission + - Ask Slashdot: How best to set up a parent's PC? 2

CodingHero writes: My mother uses a recent enough PC running Windows XP and has a broadband connection, but her primary method of interacting with the online world remains the AOL software. She also likes to download and use various seasonal wallpapers, screensavers, etc. Usually all this works fine and I don't get family tech support calls, but occasionally something big goes wrong. Since she lives 400 miles away, that means I get to provide phone tech support. While I can usually get something fixed through simple instructions, sometimes it's just too complicated to properly diagnose and explain over the phone (e.g., a trojan infection that anti-virus won't get rid of on its own). I'd like to set up the system so that her account is not an Administrator and that I can easily (and securely) remotely connect to fix problems, install stuff she really wants to use (after proper vetting of course), and so on. Moving to Linux or a Mac is not an option. Upgrading the system to Windows 7 and breaking the AOL habit, while seemingly the best course of action, is going to mean a lot of my time up front to explain how to do things all over again, time that I don't have a lot of right now. Has anyone else had a similar experience? If so, what did you find was the best way to re-educate a parent and/or set up a method to securely remotely manage a system, or at least lock it down to better protect it?

Comment Re:Meh. Not that big a problem. (Score 1) 404

Honestly, you know what this says? This just says some programmers still need to go practice in the threading space.

. . .

Seriously. If threading seems that hard, you need to go do some studying. It's not the threading. It's you. You really should get on this bus.

That's true. Threading concepts aren't hard, they're just not as widely taught as they should be. In my computer/software engineering education, I can't recall any required classes that really put a focus on developing multi-threaded applications.Operating Systems took a look at some of the issues associated with multi-tasking and thus multi-threaded programming, but it didn't really go so far as to force you to develop complex applications that put such lessons into practice.

The real issue is that debugging your multi-threaded application can be difficult and becomes more difficult as your application becomes more complex, requiring more and more threads. Maybe that's not hard if all your threads are doing exactly the same thing, but if they're all heterogeneous then it becomes tough. How do you know what caused this dead-lock or that crash? Why does it only happen sometimes and not others? Why did adding this line of code here break all the other threads? It's not an easy problem to solve and requires either better tools (that don't exist yet) or a lot of experience to get a feel for where to look and what to do (or not do).

Then again, some problem spaces lend themselves very well to multiple core approaches -- I just finished a library that slices up images and then applies various separable algorithms to the slices in a variable number of threads (the user of the library can specify.) I wrote it in pure C, used posix threads, no sweat at all, in my 8-core machine, you get just about exactly the gains you'd think (x the number of cores) when the process is CPU cycle intensive, less as the ops are simpler and memory I/O rates rise.

If you are trying to accomplish the same amount of work in a shorter amount of time, Amdahl's Law calls you a liar. If, on the other hand, you're trying to do more work in the same amount of time, then Gustafson's Law agrees with you but you will still NEVER get a speedup of N by adding N cores; it will always be somewhat less than N.

Slashdot Top Deals

The use of anthropomorphic terminology when dealing with computing systems is a symptom of professional immaturity. -- Edsger Dijkstra

Working...