Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:When's it coming out? (Score 4, Interesting) 220

It's true that a few years ago you had to stay close to the cutting edge and now you don't; but I'm pretty sure it's not because graphics cards had outpaced games, but because game developers slowed their pace because they wanted good performance on consoles.

I'm sure game developers could easily overwhelm graphics cards if they wanted to, but that doesn't only block PCs without high-end cards, but also all the consoles. I have to say that as a PC-only gamer, I find the situation very positive. I like not having to upgrade constantly.

Microsoft

Bing To Use Wolfram Alpha Results 179

angry tapir writes "Microsoft is rolling out some enhancements to its Bing search engine, including some that rely on computational information delivered by Wolfram Alpha. That means that people will be able to search for some complicated information, and the search engine will be able to compute the answers. In a blog post, Tracey Yao, program manager, and Pedro Silva, product manager at Microsoft, give some examples."

Comment Re:Alternate Sources (Score 1) 297

What do Dell, Apple, HP, and Asus have in common? Their relationship to Intel. AMD is a non-competitor in the netbook space right now, and Intel has enough clout to throw their weight around and get what they want.

I think it's the other way around. I've worked at Intel, and the mindset was more towards "what can we do FOR our customers" (Dell, Apple etc.).
It's true they're leading the market now, but a good method to make sure it stays that way is to keep the customers happy.

Comment Re:Pascal (Score 1) 634

First of all, I don't think kids' introduction to programming should be by studying any specific algorithm. I personally taught myself the feeling of programming by playing around in Pascal, trying to just make things happen. In retrospect my code must be horrible, inefficient, non-modular, etc. but it was fun and it really gave me the "hanging" of programming. I'm sure many others around here started much the same. Sure, in high-school we were taught proper CS which we sometimes practiced on paper in pseudo-code, but that came later. Secondly, I don't think this is about "relying on any specific language concept". From my experience switching programming language is not that difficult of a thing to do. Having started my way on Pascal might have made ML, Prolog and Befunge more difficult for me to learn, but I have successfully written code in them. A teenager needs a simple, intuitive environment, in which she can play around. I think something like Basic or Pascal fits that role perfectly.

Comment One paragraph had the most impact on me... (Score 2, Interesting) 473

I RTFA and found one paragraph to really show everything in a new way:

"Show BioShock to a non-gamer -- someone who hasn't been desensitized to killing virtual people -- and watch their reaction. Show them how you bludgeon people to death with a pipe wrench. If they don't wince and express some form of shock at what's taking place on the screen, they're either seriously disturbed or they're a seasoned gamer."

Comment Re:So.. (Score 1) 189

According to Babylon,

Anachronicity
No matches found.
Anachronic
adj. not according to chronology, anachronistic, obsolete, out of date; not properly dated, not assigned to the correct time period (of a person, object or event)

Comment Re:But it could be! (Score 0) 171

The thing is, there really is no middle ground. You need to use a mark-and-sweep algorithm to avoid leaking cyclic references, which means you have no way of determining if an object should or should not be destroyed if it leaves scope.

There are cycle-detection algorithms that do not require a full mark-and-sweep; they run a limited, local scan which can be immediately performed any time a reference is decreased to 1.

Comment Re:But it could be! (Score 0) 171

I disagree about the "boring" part. I took a university course on garbage collection (and a bit more, but that was the main topic) and it was absolutely fascinating. It was filled with a lot of interesting challenges - like how to handle multithreaded systems, how to avoid dirtying the cache, how to write incremental garbage collectors to prevent pauses, etc.
Software

Submission + - Self-Moderating Message Board Platform

SecondaryOak writes: For some time now I've been thinking about creating a website whose main function is a discussion forum of some sort. phpBB seems like the simplest, most popular choice today, but I'm looking into a more advanced platform. Specifically, it should answer the following requirements:
  1. Be self-moderating, for example allowing any user to rate messages, including ability to modify the rating "power" of a user according to his or her statistics.
  2. Be easy to setup, operate and customize.
  3. Have good "forking" support for discussions, allowing multiple threads from the same source — this may seem trivial but many platforms I've encountered make the threads difficult to see and navigate.
  4. Heavily use AJAX, allowing large discussions to easily fit on a single page with advanced navigation control.
  5. Preferably open-source :)

I've checked a few options (among them Slashcode, which is an interesting solution) but would like to hear more from the community, especially personal experience. This is more of an experiment than a real industrial website-building, so I'm mostly interested in how easy it is to operate and to what extent it is possible to tweak the self-moderating mechanism.

Slashdot Top Deals

"No matter where you go, there you are..." -- Buckaroo Banzai

Working...