Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:It's like learning to drive vs taxis (Score 1) 391

However it's very clear that you are just winding me up for a bit of fun and nowhere near as ignorant and stupid as you are pretending to be.

Seeing as you're genuinely confused as to what I'm talking about, we've been running tasks in parallel in Python ever since the beginning. Just use processes instead of threads. There are differences (no shared heap, IPC) but there are benefits (no shared heap!). If you're used to the thread pool paradigm, Python has both a thread pool and process pool with the thread pool obviously limited by the GIL while the process pool isn't.

So what's with the thread obsession? It's not the only way to run tasks in parallel.

Comment Re:what? (Score 1) 213

What the hell is ACM and why would it benefit me to join them?

If you were a halfway competent software developer, you'd already know, and if you were an elite software developer, you'd already have joined...

If you were an elite software developer, you'd be too busy to join a jumped up organisation like the ACM.

Comment Why is it silly? (Score 1) 435

From the summary:
(silly in my opinion, apparently they haven't heard of "partners" or considered requiring such cars have a police controlled "slow down" command)

Why is that silly? Do we really think crooks will not find some way of overriding the "slow down" command? As for "partners", a computer does not get stressed or feel under pressure when chased by cops and thus will be less likely to make mistakes.

Why is worrying about this silly?

Comment AWS is too expensive (Score 4, Insightful) 142

A couple of questions for you:

1) What happens when your single server goes down? How long does it take you to get back up and running?
2) What happens if your demand is spiky?

If you're going to use an instance for a year constantly, you need to look at reserved instances. That brings the price down to $3054 for the year which is not bad as you don't pay for electricity or cooling.

Comment Re:the hype (Score 2) 162

I've seen this a million times. People with poorly designed relational databases with no thought given to query plans complain that their database is slow. They then migrate said database to a NoSQL solution (typically a document database like MongoDB) and then find that it is still slow! . In a few cases, the NoSQL solution is significantly slower.

The problem is NoSQL encompasses many different types of solutions. Key value stores like Redis are pretty good (key lookups support wildcards!!!) and I use them as an alternative to memcache. Document databases like MongoDB? If you're excited about them because you don't need a schema, you're just asking for carloads of trouble down the line because you've mistakenly bought into the thinking that you can just chuck arbitrary data into Mongo and get it to perform well.

Comment Re:Broken by design (Score 1) 17

The majority of POS terminals in the wild run Windows XP. This is unlikely to change anytime soon, so I have no idea how Windows XP's official retirement in a few days time will play out as none of the retailers I work with intend to change their tills. This isn't surprising (to people who support POS terminals), as we still see terminals running Windows NT4 (!!!!!!!).

Our advice to retailers is to always have their tills on a separate non-internet facing network. No one really does this though ....

Comment Re:Perfect (Score 1) 184

It's handy having your an office suite on your tablet as it allows you to make quick edits on the go. No one is expecting you to write your thesis on a tablet, but for reviewing documents, writing comments and making small changes having Office on the iPad stupidly useful.

As for Office suites in general, I don't know what it's like where you are but in the UK you're almost guaranteed that to run into MS Office files in whatever job you do. There's no avoiding it even as a techie as your specifications and such are almost certainly written in Word.

Slashdot Top Deals

I have hardly ever known a mathematician who was capable of reasoning. -- Plato

Working...