Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re: live out of your van (Score 1) 152

You are a fucking idiot. MOVE. Yeah, I live in the suburb of Detroit. I bought a 4 bedroom house with 1/4 acre for the price of a car. Mortgage free. I make decent money doing tech stuff, and save more than most of my peers in SV. Why? Because no mortgage. Don't have to deal with commute, I'm not in Detroit, it's pretty safe, decent, yeah, cold sucks, economy is not the greatest. But IT folks don't have problem getting job, and pay is good. Sleeping in your van for 8 years? You my friend are an idiot. No one is punishing you or doing anything to you, you are the one who has made the choice and choose to suffer.

Comment Re:Take it from an MBA expert (Score 1) 343

Kinda of like computer science, it's suppose to teach a lot of useful things. Yet most people get a degree and can't write a freaking linked list from scratch, let alone implement trees. If you are lucky, they might be able to write up a simple sorting algorithm. Titles mean nothing, output is the only thing that counts in this world. MBA, CS Degree, any certification, whatever.

Comment Re:Gotta ask ! (Score 2) 372

Yes they can. Try making use of a CPU with 8 cores and writing your threaded application in assembly. Someone with a compiler in a higher level language will kick your ass back and forth. The simpler the arguement the truth your argument holds, but as CPUs get more complex. Nope! Look at how difficult game programmers found it to program for the PS3 Cell architecture. Try having them write an entire game in assembly. Ha!

Comment Re:One for one (Score 1) 254

PHP is not C with dollar signs. Syntax alone doesn't make a language. Behaviour does. C is very small, PHP is huge. C the language is small and separated from the standard libraries. PHP and it's libraries are the language. C's closeness to bare metal matters, function, references, allocating and freeing memory. no dictionaries. having to build any complex data structure from the ground up, not the same or related. When I program in C or PHP, my mind mode is not the same in any way shape or form. I can program in PHP carelessly and lazily, with C. I proceed cautiously because I don't want to have to fire up the debugger to chase a run away pointer. I won't call PHP a nice language, but nice code can be written in it. I won't call C a nice language because it can be beautiful. The beauty of C for me is the dense/speed, the things I will consider beautiful in C, if you did it in PHP, I would fight you.

Slashdot Top Deals

"When the going gets tough, the tough get empirical." -- Jon Carroll

Working...