This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-07-20 05:21:11

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Longest code u ever wrote alone ????

Well this is pretty simple , How much lines is the longest code u ever did. ALONE and not in a team ???


for me it was ~7200 in my chat site.

wbu ?


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#2 2011-07-20 05:33:46

helltank
Scratcher
Registered: 2010-05-21
Posts: 1000+

Re: Longest code u ever wrote alone ????

I wrote a fairly large, Choose-Your-Own-Adventure sort of game with BAT alone. I don't know the number of lines, but it was around 2500, I think.


Error:Signature could not load. Please wait for an indefinite amount of time, until you realize you're gullible and go off to look for another potentially interesting signature to stare at.

Offline

 

#3 2011-07-20 05:36:52

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: Longest code u ever wrote alone ????

I've made so much code already that IDK what's the longest...


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#4 2011-07-20 06:16:28

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Longest code u ever wrote alone ????

Well I built the website for my company myself, so that's about 10 pages with at least 100 lines each, but the longest on that site is probably the page with 291 lines excluding the header and footer - I used php include() for those.


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#5 2011-07-20 09:18:08

fire219
Scratcher
Registered: 2008-02-07
Posts: 1000+

Re: Longest code u ever wrote alone ????

Probably SIMPL-DOS 0.35 (the last version made by myself). It has roughly 250 lines of code.


http://bluetetrarpg.x10.mx/usercard/img.php?name=fire219

Offline

 

#6 2011-07-20 10:19:31

what-the
Scratcher
Registered: 2009-10-04
Posts: 1000+

Re: Longest code u ever wrote alone ????

I would say about 2500 for a random website I made for my webserver. Which I don't use it was just a test to see what I could make, it has the usual stuff php login, account activation and url redirect.


http://imageshack.us/m/64/9034/ddfss.pngMy site
Find someone post count. Click posts under username. Find number of pages. Times that by 40 for min and 60 for max and you have a rough estimate of post count.

Offline

 

#7 2011-07-20 11:17:19

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Longest code u ever wrote alone ????

4 kilobytes


Posts: 20000 - Show all posts

Offline

 

#8 2011-07-21 02:54:41

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: Longest code u ever wrote alone ????

@Sparks  wink  Intelligent . same here lol include() saves a lot , but my coding tech is quite different


i write AJAX apps and use Php in background so most of my painful work of writing headers & footers are done by the single page that loads  wink  rest is updated using AJAX


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#9 2011-07-21 05:06:20

urhungry
Scratcher
Registered: 2009-07-03
Posts: 1000+

Re: Longest code u ever wrote alone ????

I do not think that I have actually written anything entirely alone, but I have written a website that is probably something like 150 lines of code with a little help from W3Schools.

Offline

 

#10 2011-07-21 05:25:30

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: Longest code u ever wrote alone ????

urhungry wrote:

I do not think that I have actually written anything entirely alone, but I have written a website that is probably something like 150 lines of code with a little help from W3Schools.

you can count your scratch lines of codes aswell  wink  this aint website only ^_^


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#11 2011-07-21 06:39:08

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Longest code u ever wrote alone ????

This topic sort of suggests that the more lines, the more impressive it is, but I almost think that the functionality of the page over the number of lines is what's more impressive, few lines to make something amazing is way more impressive than a hundred lines of code to display your name.

Here's an example of two ways (in php) to do the same thing:

Code:

<?php
$count = 10;
while ($count > 0){
     echo $count;
     $count --;
}
?>

(7 lines)

Code:

<?php
echo "1";
echo "2";
echo "3";
echo "4";
echo "5";
echo "6";
echo "7";
echo "8";
echo "9";
echo "10";
?>

(12 lines)

I think the first one, with less lines is neater and shows more php knowledge/skill  tongue


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#12 2011-07-21 08:47:10

SpriteMaster
Scratcher
Registered: 2009-01-25
Posts: 1000+

Re: Longest code u ever wrote alone ????

Ugggghhhhh, i'm such a n00b but I've never made an official code really but I guess with Scratch....

Scripts aren't codes right? Because if they are, I've got like 150 lines on one script but if not, about 15, on my website  tongue

Last edited by SpriteMaster (2011-07-21 08:48:29)


`                        Click here for my YouTube channel!                        `http://i.imgur.com/4Qz3I.jpg

Offline

 

#13 2011-07-21 08:50:26

brettman98
Scratcher
Registered: 2010-10-17
Posts: 1000+

Re: Longest code u ever wrote alone ????

Like...6, when practicing html  tongue


http://i40.tinypic.com/n1wbr7.jpg

Offline

 

#14 2011-07-21 11:55:57

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: Longest code u ever wrote alone ????

sparks wrote:

This topic sort of suggests that the more lines, the more impressive it is, but I almost think that the functionality of the page over the number of lines is what's more impressive, few lines to make something amazing is way more impressive than a hundred lines of code to display your name.

Here's an example of two ways (in php) to do the same thing:

Code:

<?php
$count = 10;
while ($count > 0){
     echo $count;
     $count --;
}
?>

(7 lines)

Code:

<?php
echo "1";
echo "2";
echo "3";
echo "4";
echo "5";
echo "6";
echo "7";
echo "8";
echo "9";
echo "10";
?>

(12 lines)

I think the first one, with less lines is neater and shows more php knowledge/skill  tongue

u should see my codes  wink  i wrote a bank management system with NETWORKING Support (full bank features even loan / saving / credit account . ATM , core) in 1277 lines so i think i have a bit of quality in my code  wink .


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#15 2011-07-21 12:15:04

imnotbob
Scratcher
Registered: 2010-12-11
Posts: 1000+

Re: Longest code u ever wrote alone ????

action replay codes


PesterChum Handle: annoyingAnchorman
durp yo terezi sup sup gotta beat john gotta beat john

Offline

 

#16 2011-07-21 12:17:33

SpriteMaster
Scratcher
Registered: 2009-01-25
Posts: 1000+

Re: Longest code u ever wrote alone ????

imnotbob wrote:

action replay codes

I put in.like 100 lines of coding for a cheat in Pokemon heartgold. It was for a modifier.


`                        Click here for my YouTube channel!                        `http://i.imgur.com/4Qz3I.jpg

Offline

 

#17 2011-07-21 12:21:07

jfmlove6
Scratcher
Registered: 2010-12-20
Posts: 1000+

Re: Longest code u ever wrote alone ????

I just made a random project on scratch with all the blocks (I didn't post it)

I only know javascript and HTML, so I haven't programmed alot...


http://bbsimg.ngfiles.com/1/23337000/ngbbs4e84d18f6a0ee.jpg

Offline

 

Board footer