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

 



Forgot your password?
typodupeerror
×

Comment Re:Funny (Score 1) 693

Oh I am not a libertarian. I just point out that most people in high office are psychopaths with their own pushing ambition and lack of care for anyone who gets in the way of their own agendas.

This applies to men and women, but as the topic concerned a woman abusing her position to push her own agenda, I felt it was unnecessary to mention psycho male execs too.

Most women do like "feminine" jobs, hence the number of women in nursing, childcare and similar.

Comment Re:Funny (Score 1) 693

only the "executive" women are the ones who can't hack real-world jobs. Don't belittle most women by comparing them to these self-appointed attention whores.

The fact is that most women prefer different jobs, more social ones like teaching or nursing. These are valuable jobs that have a disproportionate amount of men in them too,, there's always more calls for men in primary schools for example, but strangely never any outreach programmes for male primary teachers.

So girls don't like working in computing... so what. There are plenty other careers available.

Comment Re:Good for devs. (Score 1) 270

It is the preferred solution... unfortunately.

Try the Windows Web Services alternative (a compatible system designed by the Windows team, significantly faster and less memory intensive).

I also thought the new preferred way to write back-end services was to sue the REST toolkit that came out with VS2013 (ex codename casablanca). WCF is only still around because the ,NET devs don't have much of an alternative, that's all.

Comment Re:ya ya.. (Score 1) 447

but a unit test wouldn't show this up - nobody would write a test, testing that the function worked, and start looking at external impacts of that function.

For this to be caught using testing, you'd need a fairly good coverage integration test. Unit tests are just too focussed on small things. They prove the unit works as expected, they never consider interaction with other parts of the overall system.

Comment Re:Is JITC finally going to die? (Score 1) 217

and don';t forget that the GC may not fragment like the standard malloc-style heap does, but to achieve this it has to compact the heap regularly. Note that we have generational GCs - because compaction is so expensive, they "split" the GC heap into sections and only compact parts of it.

If you want to waste memory, you can use fixed-block pool allocators that do not suffer fragmentation, so C++ gives you even more of a benefit over GCs.

Slashdot Top Deals

1 + 1 = 3, for large values of 1.

Working...