mersenneforum.org  

Go Back   mersenneforum.org > Fun Stuff > Lounge

Reply
 
Thread Tools
Old 2011-01-02, 06:33   #56
jasonp
Tribal Bullet
 
jasonp's Avatar
 
Oct 2004

3·1,181 Posts
Default

Quote:
Originally Posted by Uncwilly View Post
I find it hard to believe that you are not on the list.
The trolls and snakes keep the forum running smoothly enough that he doesn't often need to get involved.
jasonp is offline   Reply With Quote
Old 2011-01-22, 07:15   #57
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

242558 Posts
Default

Quote:
Originally Posted by davar55 View Post
Could we get an update of this list:



Thanks.
What is the point? Is there some sort of contest?
gd_barnes is online now   Reply With Quote
Old 2011-11-04, 00:09   #58
Uncwilly
6809 > 6502
 
Uncwilly's Avatar
 
"""""""""""""""""""
Aug 2003
101Γ—103 Posts

231638 Posts
Default

Quote:
Originally Posted by Xyzzy View Post
Code:
  1 gd_barnes      6,879
  2 mdettweiler    5,436
  3 cheesehead     5,216
  4 ewmayer        4,480
  5 R.D. Silverman 3,901
  etc.....
Would you post an update?
Uncwilly is online now   Reply With Quote
Old 2011-11-04, 14:19   #59
Xyzzy
 
Xyzzy's Avatar
 
"Mike"
Aug 2002

200658 Posts
Default

Code:
 1 gd_barnes      7,334
 2 mdettweiler    5,929
 3 cheesehead     5,841
 4 ewmayer        4,832
 5 davieddy       4,616
 6 R.D. Silverman 4,572
 7 xilman         4,502
 8 Uncwilly       3,949
 9 science_man_88 3,884
10 Mini-Geek      3,498
11 Prime95        3,276
12 CRGreathouse   3,252
13 Kosmaj         3,113
14 rogue          2,789
15 em99010pepe    2,783
16 Batalov        2,500
17 ET_            2,474
18 henryzz        2,385
19 Andi47         2,355
20 jasonp         2,354
21 fivemack       2,282
22 10metreh       2,256
23 garo           2,229
24 kar_bon        2,140
25 akruppa        2,133
Xyzzy is offline   Reply With Quote
Old 2011-11-04, 15:20   #60
retina
Undefined
 
retina's Avatar
 
"The unspeakable one"
Jun 2006
My evil lair

13×479 Posts
Default

Quote:
Originally Posted by Xyzzy View Post
Code:
 1 gd_barnes      7,334
 2 mdettweiler    5,929
 3 cheesehead     5,841
...
That list is clearly wrong. It should be this:
Code:
 0 Xyzzy          ∞
 1 gd_barnes      7,334
 2 mdettweiler    5,929
 3 cheesehead     5,841
...
retina is online now   Reply With Quote
Old 2012-10-15, 09:41   #61
retina
Undefined
 
retina's Avatar
 
"The unspeakable one"
Jun 2006
My evil lair

13·479 Posts
Default

OMG, I've already surpassed the milestone and didn't realise.

Why are those code windows so wide?
retina is online now   Reply With Quote
Old 2012-10-15, 19:32   #62
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3×29×83 Posts
Default

As of right before this post, I have a rather embarrassing 8.50 ppd

Quote:
Originally Posted by retina View Post
Why are those code windows so wide?
I'm 99% sure it's a standard 79 character width, which is the maximum line length that many good-habit programmers use (e.g. http://www.python.org/dev/peps/pep-0...um-line-length).
Dubslow is offline   Reply With Quote
Old 2012-10-15, 19:37   #63
xilman
Bamboozled!
 
xilman's Avatar
 
"π’‰Ίπ’ŒŒπ’‡·π’†·π’€­"
May 2003
Down not across

2·5,393 Posts
Default

Quote:
Originally Posted by Dubslow View Post
I'm 99% sure it's a standard 79 character width, which is the maximum line length that many good-habit programmers use (e.g. http://www.python.org/dev/peps/pep-0...um-line-length).
Unless your code is wrotten in Fortran.

Back in the good old days it was either 80 characters, or 72 characters. These days it is 132 characters.
xilman is online now   Reply With Quote
Old 2012-10-15, 20:15   #64
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

22·7·227 Posts
Default

Quote:
Originally Posted by Dubslow View Post
I'm 99% sure it's a standard 79 character width, which is the maximum line length that many good-habit programmers use (e.g. http://www.python.org/dev/peps/pep-0...um-line-length).
... if you coded before the turn of the century ...

I'm referring to the concept of "good-habit programmers". If you code in OO languages like C++, VB, C#, and Java, it is common to have long variable names. Extra carriage returns can make code far more difficult to read as the starting position on the left will vary from line to line quite a bit more than if you have a limit of 100 or more. I'm not saying that there is a "perfect" width. I'm saying that adhering to a standard built from developers who used character only terminals is rather humorous. Then again there are those who refuse to use a modern code editor and prefer to use vi, even when given tools like Eclipse or Visual Studio.
rogue is offline   Reply With Quote
Old 2012-10-15, 20:26   #65
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

2·3·13·83 Posts
Default

Quote:
Originally Posted by Dubslow View Post
As of right before this post, I have a rather embarrassing 8.50 ppd
Time for a bit of moderation
davieddy is offline   Reply With Quote
Old 2012-10-15, 20:39   #66
Dubslow
Basketry That Evening!
 
Dubslow's Avatar
 
"Bunslow the Bold"
Jun 2011
40<A<43 -89<O<-88

3·29·83 Posts
Default

Quote:
Originally Posted by rogue View Post
... if you coded before the turn of the century ...

I'm referring to the concept of "good-habit programmers". If you code in OO languages like C++, VB, C#, and Java, it is common to have long variable names. Extra carriage returns can make code far more difficult to read as the starting position on the left will vary from line to line quite a bit more than if you have a limit of 100 or more. I'm not saying that there is a "perfect" width. I'm saying that adhering to a standard built from developers who used character only terminals is rather humorous. Then again there are those who refuse to use a modern code editor and prefer to use vi, even when given tools like Eclipse or Visual Studio.
I don't like IDEs, and sometimes I review code from my phone, which is rather small. :small: Besides, the code boxes here are only 79 (though retina might say that's too long ), so if it's that short then it's a prettier copy/paste.
Dubslow is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mally devarajkandadai Math 12 2011-01-25 21:11
Mally devarajkandadai Math 2 2008-11-19 12:46
Mally's habits devarajkandadai Math 6 2008-01-20 15:38
Mally -Final tribute devarajkandadai Math 0 2007-10-12 08:23
Mally sequence devarajkandadai Math 0 2007-10-11 05:33

All times are UTC. The time now is 21:04.


Fri Aug 6 21:04:24 UTC 2021 up 14 days, 15:33, 1 user, load averages: 2.52, 2.53, 2.55

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.