JVallius
|
 |
«
Reply #30 - Posted
2014-06-16 20:40:02 » |
|
Naku The Cat has about 3k lines. Though during the last weeks before release my code started to get very messy. I guess I could shave line count a lot if I ever happen to bother.
|
|
|
|
princec
|
 |
«
Reply #31 - Posted
2014-06-16 21:16:04 » |
|
Once upon a time on my Vic-20 (with 16K RAM expansion) I wrote a program that took 19 seconds to list. It was a Logo interpreter (with a smattering of machine code to draw hires lines, which I cribbed from a book). And who said Commodore BASIC was rubbish  Cas 
|
|
|
|
Cero
|
 |
«
Reply #32 - Posted
2014-06-16 21:26:58 » |
|
Vic-20
Thats what I call old school.
|
|
|
|
Games published by our own members! Check 'em out!
|
|
kingroka123
|
 |
«
Reply #33 - Posted
2014-06-17 02:04:57 » |
|
A lot
|
|
|
|
princec
|
 |
«
Reply #34 - Posted
2014-06-17 07:55:32 » |
|
Vic-20
Thats what I call old school. Well, it was about 1981 or so. Cas 
|
|
|
|
Endos
|
 |
«
Reply #35 - Posted
2014-06-17 08:40:34 » |
|
The longest code I wrote was in my old job, while porting a very old ERP to something "more visual". Around 200K lines or so, with the worst and more obfuscated language that exists in the universe  And as the longest personal work, there where 2 and I'm not sure which where longer (around 20K lines). One was something like a Windows OS I wrote more than 20 years back in C, and the other a shooter for the Nintendo GameBoy Color.
|
SUPERBLAM! - Super Mario type game for Android [iOS coming] MINDTRIS - Most addictive puzzle ever for Android/iOS Retroships - Space Shooter for Android
|
|
|
cylab
|
 |
«
Reply #36 - Posted
2014-06-17 12:29:53 » |
|
LOC means nothing. My current work-project is 105k of java, xml, jelly and groovy...
|
Mathias - I Know What [you] Did Last Summer!
|
|
|
|
Brynn
|
 |
«
Reply #38 - Posted
2014-06-17 19:01:56 » |
|
As ray said, lines of code are only a hint of whats really going inside, and more or less shows just how many times you have pressed enter.
I had metrics on my eclipse, and my biggest project is Project NAH, which functions in a mere 6,044 lines of code.
|
Welcome to a new kind of tension All across the alienation Where everything isn't meant to be okay
|
|
|
|
Games published by our own members! Check 'em out!
|
|
|
AppleSauce
|
 |
«
Reply #41 - Posted
2014-06-18 01:03:53 » |
|
Nice, I'm gonna use this 
|
|
|
|
ra4king
|
 |
«
Reply #42 - Posted
2014-06-18 02:52:29 » |
|
I can't stop laughing! I also can't stop crying, as I've seen code like this at my corporate internship 
|
|
|
|
ctomni231
|
 |
«
Reply #43 - Posted
2014-06-18 06:29:48 » |
|
200K and counting... Yeah, LOC is peanuts, it is all about how fast you can get things to work. 1 2 3 4 5 6 7 8 9 10
| for(int i = 1; i < 101; i++){ if(i%15 == 0) System.out.println("FizzBuzz"); else if(i%3 == 0) System.out.println("Fizz"); else if(i%5 == 0) System.out.println("Buzz"); else System.out.println(i); } |
I can't concentrate with all that Fizz Buzz... 
|
|
|
|
Riven
|
 |
«
Reply #44 - Posted
2014-06-18 07:43:40 » |
|
1 2 3 4 5
| for(int i=1;i<101;i++) { int a=((528>>i%15-1)&1)*4; int b=((-2128340926>>(i%15)*2)&3)*4; System.out.println("FizzBuzz".substring(a,b)+(a==b?i:"")); } |
|
Hi, appreciate more people! Σ ♥ = ¾ Learn how to award medals... and work your way up the social rankings!
|
|
|
HeroesGraveDev
|
 |
«
Reply #45 - Posted
2014-06-18 08:02:31 » |
|
Guardian is currently 9084 (excluding my personal libraries. Personal libraries included I get 14451 LOC) The archived 'Guardian II' was about 15233 lines. Just as well I rewrote it.
Paint.JAVA is currently ~13000 lines, although some amount of those were written by Longor1996, BurntPizza, and some other contributors.
My voxel engine is a mere 2481 lines.
My Ludum Dare entries are all around 2500 LOC, with the exception of the 7dRTS which was 6069. (Which you'd expect from a longer competition)
Of course, a fair number of those lines aren't technically code.
|
|
|
|
StumpyStrust
|
 |
«
Reply #46 - Posted
2014-06-18 19:45:58 » |
|
hmmm...almost all of the stuff I have posted would be in the range of 500-2k. I try and be clean with code...try. 
|
|
|
|
Longor1996
|
 |
«
Reply #47 - Posted
2014-06-18 21:48:21 » |
|
My current project is rather small then with its 10'272 lines of code. That is, exluding the libraries I am using (LWJGL, KryoNET, EventBus).
At least according to SourceMonitor...
All that just for a Voxel-Engine!
- Longor1996
|
|
|
|
robocos987
|
 |
«
Reply #48 - Posted
2014-07-12 02:07:38 » |
|
I would say the longest I've written so far is my RTS game(its not even finished yet). It's currently: 5515+
|
Your mom is so fat, the recursive function calculating her mass caused a stack overflow 
|
|
|
|