Quote: "Welp, I think that's about it. Constructive criticism is gladly accepted and encouraged. There are definitely some things I would work on, but overall, I honestly think the design is surprisingly nice for fitting within a 600 square foot area."
it's terrible. It's abhorrent. It's loathsome. It's repulsive. It's Execrable. It's deplorable. It's nauseous. It's accursed. It's bedeviled. It's ...hexed????
Ok, time to stop blindly believing thesaurus.com
Nah actually it's pretty good
Edit:
Against my better judgement, I'll respond to
Seditious post
So....
Seditious,
The reason is not that I want to debate, but you sort of misunderstood my position.
First, I actually more or less agree with your post.
You basically said that my examples did not disprove evolution. The problem was that this isn't the point of my examples.
There were two purposes for my code examples.
1. To show that there
is a distinction between micro-evolution and macro-evolution.
2. To show that some common examples of evolution being observed are
not going to work
Quote: "Although I think your code example regarding e. coli simplifies and ignores what really happens (you've simply represented the changes in a certain way that fits with your view - it could be easily written in other ways)."
Welll, no comment. This is a valid position
Quote: "This is a common misconception:
"
This was in response to non-randomness in evolution. Without randomness, you will have uniformity.
If the mutations are not random, and they are not following a blueprint (per-existing design), they will simply output a pattern (for example, a fractal).
Quote: "That's because your example only modifies information and never adds any. Genetic mutation can both add, remove, or modify information."
As I stated above, the purpose of my examples was primarily to show why common examples of evolution won't work. xD
I would actually disagree that mutations can add, remove, or modify information. They can only add, remove, or modify
data.
It is easy for a mutation to change a variable or duplicate a function, and get some quite considerable changes out of it. This would convince a biologist that evolution is occurring as they watch it, but as my examples showed, this is likely not the case.
It is much harder to imagine this coming out of a mutation:
/* This is a simple bus reservation software which is for biginners.
It is only to guide biginners. Here I have shown the use of arrays
and simple database management.
*/
// This is made by Vipin Panicker.
// E-Mail: [email protected]
#include "conio.h"
#include "stdio.h"
#include "iostream.h"
#include "string.h"
#include "graphics.h"
#include "stdlib.h"
#include "dos.h"
static int p=0;
class a
{
char busn[5],driver[10],arrival[5],depart[5],from[10],to[10],
seat[8][4][10];
public:
void install();
void allotment();
void empty();
void show();
void avail();
void position(int i);
}bus[10];//here we declare the number of buses we can have.
void vline(char ch)
{
for (int i=80;i>0;i--)//Here i's value will depend on your computer.
cout<<ch;
}
void a::install()
{
cout<<"Enter bus no: ";
cin>>bus[p].busn;
cout<<"\n Enter Driver's name: ";
cin>>bus[p].driver;
cout<<"\n Arrival time: ";
cin>>bus[p].arrival;
cout<<"\n Departure: ";
cin>>bus[p].depart;
cout<<"\n From: \t\t\t";
cin>>bus[p].from;
cout<<"\n To: \t\t\t";
cin>>bus[p].to;
bus[p].empty();
p++;
}
void a::allotment()
{
int seat;
char number[5];
top:
cout<<"Bus no: ";
cin>>number;
int n;
for(n=0;n<=p;n++)
{
if(strcmp(bus[n].busn,number)==0)
break;
}
while(n<=p)
{
cout<<"\n Seat number: ";
cin>>seat;
if (seat>32)
{
cout<<"\n There are only 32 seats available in this bus.";
}
else
{
if (strcmp(bus[n].seat[seat/4][(seat%4)-1],"Empty")==0)
{
cout<<"Enter passanger's name: ";
cin>>bus[n].seat[seat/4][(seat%4)-1];
break;
}
else
cout<<"The seat no. is already reserved.\n";
}
}
if (n>p)
{
cout<<"Enter correct bus no.\n";
goto top;
}
}
void a::empty()
{
for(int i=0;i<8;i++)
{
for(int j=0;j<4;j++)
{
strcpy(bus[p].seat[i][j],"Empty");
}
}
}
void a::show()
{
int n;
char number[5];
cout<<"Enter bus no: ";
cin>>number;
for(n=0;n<=p;n++)
{
if(strcmp(bus[n].busn,number)==0)
break;
}
while (n<=p)
{
vline('*');
cout<<" Bus no: \t"<<bus[n].busn
<<"\n Driver: \t"<<bus[n].driver<<"\t\t Arrival time:\t"
<<bus[n].arrival<<"\t Departure time:\t"<<bus[n].depart
<<"\n From:\t\t"<<bus[n].from<<"\t\t To: \t\t\t"<<
bus[n].to<<"\n";
vline('*');
bus[0].position(n);
int a=1;
for (int i=0;i<8;i++)
{
for(int j=0;j<4;j++)
{
a++;
if(strcmp(bus[n].seat[i][j],"Empty")!=0)
cout<<"\n The seat no "<<a-1<<" is reserved for "<<bus[n].seat[i][j]<<" .";
}
}break;
} if(n>p)
cout<<"enter correct bus no.";
}
void a::position(int l)
{
int s=0,p=0;
for(int i=0;i<8;i++)
{
cout<<"\n";
for(int j=0;j<4;j++)
{
s++;
if(strcmp(bus[l].seat[i][j],"Empty")==0)
{
cout.width(5);
cout.fill(' ');
cout<<s<<".";
cout.width(10);
cout.fill(' ');
cout<<bus[l].seat[i][j];
p++;
}
else
{
cout.width(5);
cout.fill(' ');
cout<<s<<".";
cout.width(10);
cout.fill(' ');
cout<<bus[l].seat[i][j];
}
}
}
cout<<"\n\n There are "<<p<<" seats empty in Bus No: "<<bus[l].busn;
}
void a::avail()
{
for(int n=0;n<p;n++)
{
vline('*');
cout<<"Bus no: \t"<<bus[n].busn<<"\nDriver: \t"<<bus[n].driver<<"\t\tArrival time:\t"<<bus[n].arrival<<"\tDeparture Time: \t"<<bus[n].depart<<"\n From: \t\t"<<bus[n].from<<"\t\t To: \t\t\t"<<bus[n].to<<"\n";
vline('*');
vline('_');
}
}
void main()
{
clrscr();
int w;
int gd=DETECT,gm;
initgraph(&gd,&gm,"d:\\tc\\bgi");//enter the path of ur c compiler where u installed it.
setbkcolor(GREEN);
while(1)
{
cout<<"\n\n\n\n";
cout<<"\t\t\t 1.Install\n\t\t\t 2.Reservation\n\t\t\t 3.Show \n\t\t\t 4.Buses Available. \n\t\t\t 5.Exit";
cout<<"\n\t\t\t Enter your choice:-> ";
cin>>w;
switch(w)
{
case 1:
bus[p].install();
break;
case 2:
bus[p].allotment();
break;
case 3:
bus[0].show();
break;
case 4:
bus[0].avail();
break;
case 5:
exit(0);
}
}
}
/\Some random .cpp file I sound online
And even this is quite simple compared to the genome!