Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:Bad development practices (Score 2) 164

As a developer, it comes down to $$$

Storage is cheap. RAM is cheap. Compute is Cheap. Developer time is Expensive.

For compiled languages, the number of dependencies can be compiled away

For Javascript/web, webpack et al rewrite things down to a few files

The cost for devs about deep dependency trees is usually hidden at decision time

Comment Re:try allows for much custom and robust errors (Score 1) 210

If you treat the errors as return values, as they are, you can get some really nice error handling

One example:

handleErr := func(err error) {
    if nil == err {
        return
    }
    print_error(err)
    os.exit(1)
} // if any step fails, we exit the app
handleErr(do_thing1())
handleErr(do_thing2())
handleErr(do_thing3())

Comment Re:Really Obvious Solution (Score 1) 1144

It's hard for some people to realize that other places are different. What's ironic is that this is a stereotypically American failing.

I know that America is a different place. They like to stand around after these sorts of events saying "IF ONLY THERE WAS A WAY TO PREVENT IT" while the rest of the world scratches their heads and ask "Can they really be that stupid"

Comment Re:Really Obvious Solution (Score 1) 1144

We may not share borders directly with other countries, but there are these things called boats which like to pop over to our thousands of kilometres of unprotected coast line and drop stuff and people off (that was and is still a rather large political football). As for the illegal drug trade, it is alive and well unfortunately. Granted the we don't have the same ideas about guns and gun ownership here (that is a much larger social change for the US) so how things are implemented in the USA will be different. Easy access to a gun is a bad thing. * I hear way too many stories about children getting guns and shooting themselves or someone close by. These news stories are non existent here, that sort of thing does not happen. * We can generally associate mass shootings with People who are having a really bad day who also have easy access to a firearm. What happened here was: * a gun buyback and amnesty. That removed a lot of the easy access to weapons. That also had the effect of making them a scarce resource (and capatilisim being what it is, made anything already out there more expensive, even for the criminals) * You need a gun license and a reason to own a gun (i.e. you are a farmer or are part of a gun club) * You need a special license (and reason) for anything that is semi automatic, no fully automatic weapons are allowed I challenge you to find a solution that *would* work for america. Take a look at other 1st world countries and find out where they went wrong and where they went right. Do some reason for the opposition arguments.

Comment Really Obvious Solution (Score 1) 1144

Follow the example set in Australia after the Port Arthur Massacre 20 years ago. Gun Buybacks. You need a license AND a reason for owning a semi automatic. Make guns really expensive to buy (it's amazing how well economic measures are) The only reason that most people have to own a gun is "Because they are fun to shoot"

Comment Make it funny (Score 2, Informative) 260

You don't have to be a comedian, you just need to make sure that your audience is attentive and taking in what you are saying - so - make it funny and have the jokes the things you want people to remember.

that and tell them to be paranoid "if it seems dodgy, it probably is!"

Games

Bethesda Announces New Fallout Game For 2010 254

On Monday Bethesda announced a new title in the popular Fallout series called New Vegas, set for release sometime in 2010. It's planned for the PC, Xbox 360, and PS3. They said it wasn't a sequel to the highly-acclaimed Fallout 3, but rather a brand new game set in the same universe, though they confirmed that it will be similar in style to Fallout 3. The new game will be developed by Obsidian Entertainment, a studio containing members of the original Fallout team, which Bethesda's Pete Hines discussed in an interview with Shacknews. The Fallout series also made headlines earlier this week when Bethesda trademarked the name for TV and film.
Education

Best Grad Program For a Computer Science Major? 372

ryanleary writes "I am currently a junior computer science major at a relatively competitive university. I intend to remain here for some graduate work, and I would like to get a master's degree. What would be a good field to study? An MS in computer science appears to be highly theoretical, while an MS in IT seems more practical due to its breadth (covering some management, HCI, and design). What looks best on a resume, and where might I expect to make more money in the not-too-distant future? Computer Science, Information Technology, or something different altogether — perhaps an MBA?"
Games

Games As Transformative Works 44

Deepa Sivarajan sends word that the journal Transformative Works and Culture has published an issue that focuses on games, containing a variety of articles which examine how games interact with modern culture. One essay takes a look at how developers gain an understanding of the systems and structures that drive gameplay, and another discusses motivation and "participatory culture" in games that have a substantial degree of user design involvement, such as mods and addons. There's also an evaluation of how the enthusiast press affects the perceived value of games. The issue includes game-related book reviews and interviews, which can be found at the bottom of the full list of articles.

Slashdot Top Deals

You will lose an important tape file.

Working...