Page 20 of 23

Re: Images!

Posted: Tue Sep 19, 2017 11:50 pm
by JanB1
Image

Re: Images!

Posted: Fri Sep 22, 2017 4:42 am
by Vivacia
JanB1 wrote:
Tue Sep 19, 2017 11:50 pm
Image
Woah, did you make that? It looks epic! <3 :o :D

Re: Images!

Posted: Fri Sep 22, 2017 9:29 pm
by Triggerhappy
Image
Image
Image

Re: Images!

Posted: Mon Oct 23, 2017 3:01 pm
by IronDuke
Image

Re: Images!

Posted: Mon Oct 23, 2017 3:04 pm
by 0111narwhalz
This image neglects the other dichotomy:

Code: Select all

if(condition)
versus

Code: Select all

if (condition)

Re: Images!

Posted: Mon Oct 23, 2017 3:10 pm
by Silverware
And :

Code: Select all

if (conditional) 

Code: Select all

if ( conditional ) 
Also:

Code: Select all

for( var i=0; i<100; i++ )

Code: Select all

for( var i=100; i>=0; i-- )

Re: Images!

Posted: Mon Oct 23, 2017 3:11 pm
by Talvieno
Tabs or spaces?

Re: Images!

Posted: Mon Oct 23, 2017 3:17 pm
by IronDuke
Image

Re: Images!

Posted: Mon Oct 23, 2017 3:43 pm
by Silverware
Talvieno wrote:
Mon Oct 23, 2017 3:11 pm
Tabs or spaces?
Neither!

Code: Select all

 1
  2
   3
    4
Ideographic Spaces!

Re: Images!

Posted: Mon Oct 23, 2017 4:20 pm
by IronDuke
WW2 nuts will understand.
Beware: gif is pretty long.
Spoiler:      SHOW
Image
--IronDuke

Re: Images!

Posted: Tue Oct 24, 2017 8:08 am
by DigitalDuck
Talvieno wrote:
Mon Oct 23, 2017 3:11 pm
Tabs or spaces?
Always tabs, and IDEs should give the option to choose how many spaces a tab is so indenting doesn't get fucked up every time you commit a change.

Re: Images!

Posted: Tue Oct 24, 2017 8:10 am
by Dinosawer
DigitalDuck wrote:
Tue Oct 24, 2017 8:08 am
Talvieno wrote:
Mon Oct 23, 2017 3:11 pm
Tabs or spaces?
Always tabs, and IDEs should give the option to choose how many spaces a tab is so indenting doesn't get fucked up every time you commit a change.
...how does that happen when you use spaces?

Re: Images!

Posted: Tue Oct 24, 2017 8:16 am
by DigitalDuck
Dinosawer wrote:
Tue Oct 24, 2017 8:10 am
...how does that happen when you use spaces?
With spaces, the amount of indenting is fixed and cannot change from person to person. If one person prefers:

Code: Select all

void thing()
{
 if (thing)
  thing();
}
and one person prefers:

Code: Select all

void thing()
{
    if (thing)
        thing();
}
they can't both have their way with spaces. They can with tabs; however it relies on IDEs having the option to change tab widths and not converting tabs to spaces.

Re: Images!

Posted: Tue Oct 24, 2017 8:20 am
by Dinosawer
Or you could, you know, do the reasonable thing and have an official general coding standard to be used by everyone

Re: Images!

Posted: Tue Oct 24, 2017 9:18 am
by Cody
<chortles> Always good for some column inches, are spabs!