PostsChallengesPortalsAuthorsBooks
Sign Up
Log In
Posts
Challenges
Portals
Authors
Books
beta
Sign Up
Search
Technology
Challenge Ended
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Ended November 30, 2019 • 10 Entries • Created by WhiteWolfe32
Random
Popular
Newest
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Book cover image for The Struggle In Us All
The Struggle In Us All
Chapter 217 of 500
Profile avatar image for WhiteWolfe32
WhiteWolfe32

Control-Alt-Delete

life->ctrl alt del-> logging off... shutting down-> are you sure you want to close 5779 tabs?-> _yes.

12
1
1
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Profile avatar image for HandsOfFire
HandsOfFire in Technology
74 reads

life = true

while (life == true) {

fear = true;

heartbeat = regular;

if (yourEyes == lookingAtMe) {

heartbeat = fast;

}

if (yourWords == directedAtMe) {

heartbeat = stopped;

life = false;

}

}

10
4
4
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
CharlesWentrask in Technology
65 reads

Coding Error

define world

like = 'lush' and like = 'green' and like = 'scenic';

define human

like = 'rancid' and like = 'messy' and like = 'destructive';

Function(

combine(world,human)

) ;

Print result;

human world == rancid, green, destructive

7
2
2
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Profile avatar image for lastar28
lastar28 in Technology
89 reads

Heart_Beats

While heart_beats:

person_status = alive

if heart_beats stops:

person_status = dead

break

elif heart_beats irregular:

person_status = dying

else:

person_status = suffering life

print (‘the person is’, person_status)

7
3
3
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Profile avatar image for Loganspoetry
Loganspoetry in Technology
60 reads

FileName(Life-code): open;

activateCommand(Conception);

activateCommand(Growth);

activateCommand(Mother-endorphin-generation)

#89 years later

FileName(Death-code): open;

activateCommand(Last-words);

activateCommand(peacefulDeath);

FileName(Death-code): close;

FileName(Life-code): close;

The code that starts life, and the code that ends it(As can be seen, it is within the original file, as based on the code's structure, which matters far too much).

#code

#life

#death

5
2
0
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Profile avatar image for EugeneSpew
EugeneSpew in Technology
39 reads

Note Me Out

I am a choice element with no selection

and this input is unexpected

I am a subject statement in sequence

evaluated in an object oriented language

Babe, I am a Null Pointer

We can push it tonight

Just not tomorrow

if not this then the other

or if this exists then join another

else commit

else

Babe, I am a Null Pointer

We can ignore it tonight

Just not tomorrow

endif

endif

5
1
0
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Book cover image for The Anastomosis of Dr. Semicolon
The Anastomosis of Dr. Semicolon
Chapter 13 of 14
Profile avatar image for GerardDiLeo
GerardDiLeo

Fie on Goodness

CMD

C:

cd C:\you

dir C:\you\today\*.*

cd C:\longtermmemory

md C:\longtermmemory\today

cd C:\longtermmemory/today

md do’s

md don’ts

cd C:\shorttermmemory\today

copy C:\shorttermmemory\today/do’s C:\longtermmemory\today\do’s

copy C:\shorttermmemory\today/don’ts C:\longermmemory\today\don’ts

del C:\shorttermmemory\today\do’s\*.*

del C:\shorttermmemory\today\don’ts\*.*

;copy C:\longtermmemory\*.* C:\CONSCIENCE\*.* /v /e /s

format CONSCIENCE

Y

rd C:\CONCSCIENCE\*.*

4
2
0
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Profile avatar image for Glamastro
Glamastro in Technology
68 reads

while (mind.isActive())

{ Print(car().Buggati);

Print(car.race());

Print(wind.howl());

Print(engine.roar());

if(sleep.end.istrue)

{ System.out.print (Reality.scooter)

import frustration.handler.* ;

}

3
1
0
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
Izzyball in Technology
50 reads

Life In Code

While (alive = “TRUE”)

{

If age < 18

home = mommas_house

status = oblivious

else if 18 <= age <= 22

home = university

status = stressed

else if age > 22

home = what_you_can_afford

status = confronting_the_absurd

Check_If_Alive (home, status) //calling function to check if you're alive still

}

alive = "FALSE"

home = six_feet_under

status = dead

2
0
0
Challenge
Computer Coding the world
Create a "computer code" for something, either life, writing, philosoph, school. An word count, mine will be short. Enjoy!
kyang in Technology
68 reads

Calculating School Test Score Statistics (School Computer Code)

/**************************************************

*File Name: FloatStats

*Purpose: Calculate a series of statistics using user defined float values

*Programmer: Kevin Yang

*Last Updated Date: 11/07/19

*************************************************/

import javax.swing.JOptionPane;

public class FloatStats {

public static void main(String[] args) {

JOptionPane.showMessageDialog(null, “After you enter all your test grades, enter ‘a.’”);

String userNum = JOptionPane.showInputDialog(“Enter your test grade.”);

int counter = 0;

float sum = 0;

float average = 0;

float biggestNum = 0;

float smallestNum = 0;

float num = 0;

if (!(userNum.equals(“a”))) {

num = Float.parseFloat(userNum);

biggestNum = num;

smallestNum = num;

}

while (!(userNum.equals(“a”))) {

sum = sum + num;

userNum = JOptionPane.showInputDialog(“Enter another test grade.”);

counter += 1;

average = sum / counter;

if (!(userNum.equals(“a”))) {

num = Float.parseFloat(userNum);

if (num >= biggestNum)

biggestNum = num;

if (num <= smallestNum)

smallestNum = num;

}

}

JOptionPane.showMessageDialog(null, “Your average test score is ” + average);

JOptionPane.showMessageDialog(null, “Your highest test score is ” + biggestNum);

JOptionPane.showMessageDialog(null, “Your lowest test score is ” + smallestNum);

JOptionPane.showMessageDialog(null, “The range between your highest and lowest test score is ” + (biggestNum - smallestNum));

}

}

0
0
0