Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror

Comment Re:Kill the GIL! (Score 1) 234

Yes, good luck with that! Because the current implementation slows it down by 7/8ths on my 8-core server.

Well, that's not true. The interpreter has a global lock, but usually most of the time spent will be in things like I/O calls, that are written in C and thus have no problem with the GIL. You're trying to make it seem like there is no advantage to threading in Python, but that's just wrong.

Comment We decided not to (Score 1) 409

Between now and a month from now, I'll hopefully be a parent too. We've also had this discussion. Eventually we decided not to do this, because it's just very unlikely to ever help.

The technology is unproven. The amount of blood taken is quite small so it's likely to only be useful in the first few years of the child's life, any later there would be more needed. In the few cases where these cells could be used, donors can often be found. And in a few more years, we should be able to get stem cells from other tissue.

In total, we decided it wasn't worth it.

One useful page for us was this, but it's in Dutch.

Businesses

Submission + - Where Should I Get My Job Interview Code Samples?

crlove writes: "I'm preparing for an upcoming job interview and my interviewer will want to see some code samples. Unfortunately, all of the coding I've done work-wise since college is not only proprietary, but often classified. And to be honest, with long days at work and a busy life outside of it, I haven't had much time to code on my own.

So, what should I show my interviewer? Should I start working up some code samples? And if so, what would be considered sufficiently complex to take to an interview?"

Slashdot Top Deals

Round Numbers are always false. -- Samuel Johnson

Working...