Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Assembler: start there and stay there (Score 1) 634

At this point, assembler is the best solution for very few things. Programmers generally output a pretty constant amount of code, regardless of the language they're using. So using something like Java or C# or C++ or Ruby or Python, where 1 line of code equals dozens of assembler instructions, is insanely more productive.

Only in a software-hardware interface, or when speed absolutely has to be maximized, is assembler the best choice.

Comment Re:Assembler: start there and stay there (Score 1) 634

Wow. Do you really know what people use computers for nowadays? They use them for all sorts of things. Like the internet! I'd love to see you write the code for Slashdot in assembler, then run that on your "custom arrangment of microprocessors".

Man, I just reread this post, and it blows my mind again. I guess when I'm writing web services that deal with insurance policies and quotes, I shouldn't think about them as Policy and Quote objects. I should instead think of them as:

mov InitAmt, ax
mov bx, 12
mov ax, NewAmt
mul bx
mov TotAmt, ax
mov bx, NewAmt
add TotAmt, bx

For reals though.

Slashdot Top Deals

"Here's something to think about: How come you never see a headline like `Psychic Wins Lottery.'" -- Comedian Jay Leno

Working...