Click here to Skip to main content
15,914,013 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
obermd5-Sep-19 3:47
obermd5-Sep-19 3:47 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
CodeWraith5-Sep-19 4:18
CodeWraith5-Sep-19 4:18 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Peter R. Fletcher5-Sep-19 5:32
Peter R. Fletcher5-Sep-19 5:32 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
CodeWraith5-Sep-19 7:53
CodeWraith5-Sep-19 7:53 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
pkfox4-Sep-19 4:48
professionalpkfox4-Sep-19 4:48 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
CodeWraith4-Sep-19 5:09
CodeWraith4-Sep-19 5:09 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
OriginalGriff4-Sep-19 6:27
mveOriginalGriff4-Sep-19 6:27 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
CodeWraith4-Sep-19 11:38
CodeWraith4-Sep-19 11:38 
OriginalGriff wrote:
You know this ... or is the lack of Soapbox bringing a little light trolling to the lounge?
How often did you see me trolling in the soapbox? I may be chaotic and evil, but it hurts that you think that of me. Smile | :)

OriginalGriff wrote:
Would you code in IL, if you could do it and produce the same app in C#?
Forfeit both the direct control over the resulting machine code and the syntactic sugar of the high level language? Why should anyone do that?

OriginalGriff wrote:
Of course not: it would take you far longer and produce something that is a lot less maintainable (and as a Assembler / C / C++ / C# programmer for many, many years I know this well!)
The keys to rapid development and maintainability don't lie, by my experience, not in any language or paradigm.

OriginalGriff wrote:
IL (and assembler) have JMP operations because that is all they have: they can't use for, foreach, or do ... while loops because the "machine code" doesn't support them - it operates on one machine instruction at a time (massive simplification) and doesn't "look ahead" to see what "loop constructs" are in use.
Very massive simplification. Since when do we have caches and pipelines in the CPU, along with more or less sophisticated branch prediction? Must have been the good old '286 and things really got in motion with the 386.

The fancy loops are just syntactic sugar and boil down to a handful assembly instructions, so what? The behavior on all levels remains the same, otherwise the whole IL and JIT compiler stuff would not be very useful. An assembly macro could do the same. Besides that, why should a compiler be concerned with branch prediction besides generating code that avoids cache misses and pipeline penalties? That should only be a concern of the JIT compiler, not of the high level language or IL.
I have lived with several Zen masters - all of them were cats.

His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Dr.Walt Fair, PE4-Sep-19 10:06
professionalDr.Walt Fair, PE4-Sep-19 10:06 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
CodeWraith4-Sep-19 12:51
CodeWraith4-Sep-19 12:51 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Fever9055-Sep-19 2:21
professionalFever9055-Sep-19 2:21 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? PinPopular
W Balboos, GHB4-Sep-19 4:32
W Balboos, GHB4-Sep-19 4:32 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
PeejayAdams4-Sep-19 5:01
PeejayAdams4-Sep-19 5:01 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
W Balboos, GHB4-Sep-19 5:08
W Balboos, GHB4-Sep-19 5:08 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Gary Wheeler4-Sep-19 7:32
Gary Wheeler4-Sep-19 7:32 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Roger Wright4-Sep-19 8:30
professionalRoger Wright4-Sep-19 8:30 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Gary Wheeler4-Sep-19 8:41
Gary Wheeler4-Sep-19 8:41 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Fever9055-Sep-19 2:19
professionalFever9055-Sep-19 2:19 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Slow Eddie5-Sep-19 2:57
professionalSlow Eddie5-Sep-19 2:57 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
W Balboos, GHB5-Sep-19 3:02
W Balboos, GHB5-Sep-19 3:02 
GeneralRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Slow Eddie5-Sep-19 3:42
professionalSlow Eddie5-Sep-19 3:42 
JokeRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Richard Deeming4-Sep-19 8:47
mveRichard Deeming4-Sep-19 8:47 
AnswerRe: "Suckehihaw" the new name for code so bizarre you laugh, or cringe, when you read it ? Pin
Member 28960206-Sep-19 10:55
Member 28960206-Sep-19 10:55 
GeneralAnd the WInner Is Pin
W Balboos, GHB4-Sep-19 2:07
W Balboos, GHB4-Sep-19 2:07 
QuestionRe: And the WInner Is Pin
lopatir4-Sep-19 2:49
lopatir4-Sep-19 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.