Click here to Skip to main content
15,911,789 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.

 
GeneralMini CCCs 162 Pin
Tim Deveaux18-Jan-20 18:23
Tim Deveaux18-Jan-20 18:23 
GeneralRe: Mini CCCs 162 Pin
OriginalGriff18-Jan-20 19:56
mveOriginalGriff18-Jan-20 19:56 
GeneralRe: Mini CCCs 162 - Done Pin
Tim Deveaux18-Jan-20 19:59
Tim Deveaux18-Jan-20 19:59 
GeneralSo you consider yourself smart, but can you build an image out of 750 Rubik Cubes like a 9 year old? Pin
Cp-Coder18-Jan-20 16:20
Cp-Coder18-Jan-20 16:20 
GeneralRe: So you consider yourself smart, but can you build an image out of 750 Rubik Cubes like a 9 year old? Pin
OriginalGriff18-Jan-20 19:52
mveOriginalGriff18-Jan-20 19:52 
GeneralRe: So you consider yourself smart, but can you build an image out of 750 Rubik Cubes like a 9 year old? Pin
Mark_Wallace18-Jan-20 21:21
Mark_Wallace18-Jan-20 21:21 
GeneralRe: So you consider yourself smart, but can you build an image out of 750 Rubik Cubes like a 9 year old? Pin
Gerry Schmitz19-Jan-20 6:37
mveGerry Schmitz19-Jan-20 6:37 
Rantso much for conventional wisdom Pin
honey the codewitch18-Jan-20 14:04
mvahoney the codewitch18-Jan-20 14:04 
In C# I took my lex from .045 msec to .028 msec by changing the lists i was using to arrays.

This despite the fact that there were no reallocs happening in those lists (i already checked)

C#
_Fiber[] currentFibers, nextFibers, tmp;
int currentFiberCount=0, nextFiberCount=0;


is simply faster than this
C#
IList<_Fiber> currentFibers,nextFibers,tmp;


Conventional wisdom is lists are about as good as arrays perfwise as long as your capacity is high enough.

Conventional wisdom can get bent
Real programmers use butterflies

GeneralRe: so much for conventional wisdom Pin
Mircea Neacsu18-Jan-20 14:42
Mircea Neacsu18-Jan-20 14:42 
GeneralRe: so much for conventional wisdom Pin
honey the codewitch18-Jan-20 14:58
mvahoney the codewitch18-Jan-20 14:58 
GeneralRe: so much for conventional wisdom Pin
Jon McKee18-Jan-20 15:09
professionalJon McKee18-Jan-20 15:09 
GeneralRe: so much for conventional wisdom Pin
honey the codewitch18-Jan-20 15:35
mvahoney the codewitch18-Jan-20 15:35 
GeneralRe: so much for conventional wisdom Pin
Super Lloyd18-Jan-20 16:23
Super Lloyd18-Jan-20 16:23 
GeneralRe: so much for conventional wisdom Pin
honey the codewitch18-Jan-20 16:34
mvahoney the codewitch18-Jan-20 16:34 
QuestionPhysics problem with matplotlib.pyplot Pin
AliRahimov18-Jan-20 10:16
AliRahimov18-Jan-20 10:16 
AnswerRe: Physics problem with matplotlib.pyplot Pin
OriginalGriff18-Jan-20 10:37
mveOriginalGriff18-Jan-20 10:37 
GeneralRe: Physics problem with matplotlib.pyplot Pin
AliRahimov18-Jan-20 10:43
AliRahimov18-Jan-20 10:43 
GeneralRe: Physics problem with matplotlib.pyplot Pin
NeverJustHere18-Jan-20 10:51
NeverJustHere18-Jan-20 10:51 
GeneralRe: Physics problem with matplotlib.pyplot Pin
OriginalGriff18-Jan-20 11:02
mveOriginalGriff18-Jan-20 11:02 
RantRe: Physics problem with matplotlib.pyplot Pin
lopatir18-Jan-20 17:30
lopatir18-Jan-20 17:30 
GeneralRe: Physics problem with matplotlib.pyplot Pin
OriginalGriff18-Jan-20 20:03
mveOriginalGriff18-Jan-20 20:03 
GeneralBit twiddling is fun! Pin
honey the codewitch18-Jan-20 5:14
mvahoney the codewitch18-Jan-20 5:14 
GeneralRe: Bit twiddling is fun! Pin
Marc Clifton18-Jan-20 12:16
mvaMarc Clifton18-Jan-20 12:16 
GeneralRe: Bit twiddling is fun! Pin
honey the codewitch18-Jan-20 13:15
mvahoney the codewitch18-Jan-20 13:15 
GeneralRe: Bit twiddling is fun! Pin
Mark_Wallace18-Jan-20 21:02
Mark_Wallace18-Jan-20 21:02 

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.