0% found this document useful (0 votes)
2 views6 pages

The History of Programming

Uploaded by

michaelp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views6 pages

The History of Programming

Uploaded by

michaelp
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

‭The‬‭History‬‭of‬‭Programming‬

‭‬‭
> How‬‭ did‬‭we‬‭
get‬‭ to‬‭ where‬‭ we‬‭ are‬‭ today‬‭ in‬‭terms‬‭of‬‭ programming‬
and‬‭
‭ computers?‬‭ Well,‬‭ look‬‭ no‬‭further,‬‭ because‬‭ this‬‭essay‬‭ is‬‭going‬‭
to‬
be‬‭
‭ all‬‭about‬‭ that.‬
>‬‭
‭ The‬‭ first‬‭ever‬‭ electronic‬‭ programming‬‭ language,‬‭ Plankalkül,‬‭ was‬
invented‬‭
‭ in‬‭1948‬‭by‬‭a‬‭man‬‭ named‬‭ Konrad‬‭ Zuse.‬‭ Interestingly,‬‭ this‬‭
was‬
long‬‭
‭ before‬‭ many‬‭people‬‭ think‬‭ that‬‭ the‬‭ electronic‬‭ computer‬‭ came‬‭about.‬
>‬‭
‭ To‬‭ make‬‭the‬‭computer‬‭ say‬‭ “hello,‬‭ world!”‬‭ (the‬‭traditional‬‭ test‬
text)‬‭
‭ in‬‭ Plankalkül,‬‭ the‬‭ code‬‭ would‬‭ look‬‭ something‬‭ like‬‭ this:‬
R1.1(V0[:sig])‬‭
‭ =>‬‭ R0‬
R1.2(V0[:m‬‭
‭ x‬‭
sig])‬‭ =>‬‭ R0‬
0‬‭
‭ =>‬‭ i‬‭
|‬‭
m‬‭+‬‭
1‬‭=>‬‭ j‬
[W‬‭
‭ [‬‭i‬‭
<‬‭
j‬‭->‬‭[‬‭R1.1(V0[i:‬‭ m‬‭x‬‭sig])‬‭ =>‬‭R0‬‭|‬‭
i‬‭+‬‭1‬‭=>‬‭i‬‭
]]]‬
END‬

R1.3()‬‭
‭ =>‬‭R0‬
‘h’;’e’;’l’;’l’;’o’;’,’;’‬‭
‭ ‘;’w’;’o’;’r’;’l’;’d’;’!’‬‭ =>‬‭Z0[:m‬‭x‬
sig]‬‭
‭ R1.2(Z0)‬‭ =>‬‭R0‬
END‬

>‬‭
‭ Obviously,‬‭ this‬‭ code‬‭ is‬‭pretty‬‭ complex.‬‭ I’ve‬‭been‬‭ coding‬‭for‬
years,‬‭
‭ and‬‭ I,‬‭
personally,‬‭ have‬‭ no‬‭freaking‬‭ idea‬‭ what‬‭is‬‭going‬‭ on.‬
>‬‭
‭ Fast‬‭ forward‬‭ 76‬‭ years‬‭ to‬‭2024,‬‭ and‬‭computer‬‭ programming‬‭ is‬‭now‬
extremely‬‭
‭ widespread,‬‭ and‬‭ the‬‭ spread‬‭ of‬‭various‬‭ coding‬‭ languages‬‭ is‬
just‬‭
‭ as‬‭wide.‬
>‬‭
‭ The‬‭ main‬‭coding‬‭ language‬‭ that‬‭ is‬‭ used‬‭today‬‭is‬‭ disputed,‬‭ as‬
nobody‬‭
‭ truly‬‭ knows‬‭which‬‭ is‬‭ used‬‭ the‬‭ most.‬‭ So‬‭I’ll‬‭go‬‭over‬‭ three:‬
‭●‬ ‭ HTML/CSS,‬‭ for‬‭ making‬‭ and‬‭ styling‬‭ websites‬
‭●‬ ‭Python,‬‭ generally‬‭ used‬‭ for‬‭ making‬‭ games,‬‭ but‬‭ any‬‭other‬
programming‬‭
‭ needs‬‭ can‬‭be‬‭ covered‬‭ by‬‭Python‬‭ as‬‭well.‬
‭●‬ ‭
JavaScript,‬‭ for‬‭ implementing‬‭ interactivity‬‭ into‬‭ anything‬
digital‬

>‬‭
‭ First‬‭ of‬‭all,‬‭ HTML‬‭ is‬‭ the‬‭one‬‭ I‬‭know‬‭ best,‬‭so‬‭I’ll‬‭ go‬‭over‬‭it‬
first.‬‭
‭ Same‬‭ message‬‭ will‬‭ show‬‭ up‬‭on‬‭the‬‭ output‬‭ screen:‬‭ “Hello,‬‭ world!”‬
However,‬‭
‭ the‬‭code‬‭itself‬‭ is‬‭ quite‬‭ different.‬‭ Take‬‭a‬‭
look:‬
<!DOCTYPE‬‭
‭ html>‬
<html>‬

<head>‬

<meta‬‭
‭ charset=“utf-8”>‬
<title>My‬‭
‭ Website</title>‬
‭/head>‬
<
<body>‬

<p>Hello,‬‭
‭ world!</p>‬
</body>‬

</html>‬

>‬‭
‭ To‬‭
see‬‭ how‬‭
this‬‭ code‬‭would‬‭work,‬‭check‬‭out‬‭this‬‭link:‬
>‬‭
‭ Let’s‬‭break‬‭ this‬‭code‬‭down.‬
>‬‭
‭ To‬‭
begin‬‭ this‬‭ explanation,‬‭ let’s‬‭think‬‭about‬‭all‬‭of‬‭those‬‭words‬
and‬‭
‭ terms‬‭in‬‭those‬‭“<>”‬‭ enclosures.‬‭ These‬‭are‬‭called‬‭“angle‬‭ brackets”‬,‬

and‬‭
‭ they‬‭basically‬‭ make‬‭ up‬‭
the‬‭basis‬‭of‬‭HTML‬‭code.‬‭The‬‭first‬‭and‬‭most‬
important‬‭
‭ tag‬,‬‭
‭ as‬‭
these‬‭ terms‬‭are‬‭called,‬‭is‬‭the‬‭
<!DOCTYPE‬‭ html>‬‭ tag.‬
This‬‭
‭ tag‬‭is‬‭so‬‭important‬‭ simply‬‭because‬‭ it‬‭
tells‬‭the‬‭browser‬‭ that‬‭this‬
code‬‭
‭ is‬‭HTML.‬‭(Technically,‬‭ the‬‭<html>‬‭tag‬‭tells‬‭it‬‭the‬‭same‬‭thing,‬
but‬‭
‭ you‬‭need‬‭both.)‬
>‬‭
‭ Next‬‭up‬‭is‬‭
the‬‭ paired‬‭tags.‬‭These‬‭are‬‭the‬‭ones‬‭that‬‭come‬‭up‬
multiple‬‭
‭ times.‬‭ For‬‭example,‬‭ the‬‭
<html>‬‭ tags‬‭are‬‭
paired‬‭ tags.‬‭There’s‬
one‬‭
‭ that‬‭starts‬‭ a‬‭
section‬‭ of‬‭code,‬‭and‬‭
one‬‭that‬‭ends‬‭it.‬‭In‬‭this‬‭case,‬
ALL‬‭
‭ the‬‭code‬‭goes‬‭within‬‭ these‬‭tags.‬‭The‬‭ones‬‭that‬‭look‬‭like‬
</this-is-not-a-tag>‬‭
‭ differ‬‭from‬‭the‬‭ones‬‭that‬‭look‬‭like‬
<this-is-not-a-tag>‬‭
‭ in‬‭their‬‭functionality.‬‭ The‬‭forward‬‭ slash‬‭before‬
the‬‭
‭ text‬‭denotes‬‭ that‬‭ it‬‭
closes‬‭the‬‭section‬‭of‬‭code,‬‭or,‬‭in‬‭other‬
words,‬‭
‭ ends‬‭it.‬‭The‬‭ones‬‭without‬‭these‬‭forward‬‭ slashes‬‭ are‬‭
the‬‭opening‬
tags‬
‭ ,‬‭
‭ and‬‭
they‬‭ do‬‭
exactly‬‭ the‬‭opposite.‬
>‬‭
‭ So‬‭
what‬‭ does‬‭each‬‭tag‬‭do?‬‭Well,‬‭some‬‭are‬‭
kinda‬‭ obvious,‬‭such‬‭as‬
the‬‭
‭ <body>‬‭tag,‬‭ which‬‭ denotes‬‭where‬‭the‬‭main‬‭BODY‬‭of‬‭
the‬‭code‬‭goes.‬
However,‬‭
‭ it’s‬‭worth‬‭ noting‬‭that‬‭not‬‭all‬‭the‬‭
code‬‭goes‬‭here.‬‭ For‬
example,‬‭
‭ the‬‭<title>‬‭ tag‬‭must‬‭be‬‭
placed‬‭ within‬‭the‬‭<head>‬‭tags,‬‭where‬
all‬‭
‭ of‬‭the‬‭
information‬‭ that‬‭
tells‬‭ the‬‭
browser‬‭ what‬‭the‬‭basic‬‭code‬
does,‬‭
‭ and‬‭
in‬‭the‬‭case‬‭ of‬‭
<title>,‬‭ tells‬‭the‬‭
browser‬‭ what‬‭to‬‭call‬‭the‬
tab.‬

>‬‭
‭ Continuing‬‭ on‬‭ the‬‭
path‬‭of‬‭the‬‭
<head>‬‭ tags,‬‭the‬‭other‬‭tag‬‭within‬
them‬‭
‭ is‬‭the‬‭<meta‬‭charset=“utf-8”>.‬‭ This‬‭tag‬‭is‬‭
CRUCIAL,‬‭ and‬‭I‬‭
cannot‬
stress‬‭
‭ this‬‭enough.‬‭ This‬‭tells‬‭the‬‭browser‬‭(again,‬‭ because‬‭computers‬
need‬‭
‭ to‬‭be‬‭
told‬‭ everything)‬‭ that‬‭you‬‭are‬‭using‬‭HTML‬‭and‬‭exactly‬‭what‬
version‬‭
‭ you‬‭are‬‭using.‬‭ UTF-8‬‭is‬‭
the‬‭most‬‭recent‬‭version‬‭ of‬‭
HTML‬‭to‬‭my‬
knowledge‬‭
‭ (not‬‭ HTML5,‬‭ that’s‬‭a‬‭
whole‬‭other‬‭can‬‭of‬‭worms).‬‭I’m‬‭pretty‬
sure‬‭
‭ you‬‭can‬‭input‬‭other‬‭ versions,‬‭ but‬‭
I‬‭haven’t‬‭tried‬‭ it‬‭
and‬‭wouldn’t‬
recommend‬‭
‭ it.‬‭I’m‬‭(pretty)‬‭ sure‬‭it‬‭won’t‬‭end‬‭well.‬
>‬‭
‭ Moving‬‭ on‬‭
to‬‭the‬‭<body>‬‭tags,‬‭there’s‬‭ only‬‭one‬‭tag‬‭
within‬
these:‬‭
‭ the‬‭
<p>‬‭ tag.‬‭This‬‭tag‬‭is‬‭
very‬‭useful‬‭if‬‭you‬‭want‬‭your‬‭text‬‭to‬
‭how‬‭
s up‬‭on‬‭
the‬‭ page‬‭exactly‬‭how‬‭you‬‭
wrote‬‭it,‬‭because‬‭if‬‭you‬‭
don't‬‭put‬
it‬‭
‭ in‬‭
the‬‭<p>‬‭tags,‬‭ paragraphs‬‭ will‬‭
show‬‭up‬‭as‬‭
spaces,‬‭among‬‭other‬
problems.‬‭
‭ The‬‭<p>‬‭tag‬‭alleviates‬‭ this‬‭
issue,‬‭ as‬‭
“p”‬‭stands‬‭for‬
“paragraph”‬
‭ .‬‭
‭ You‬‭can‬‭use‬‭multiple‬‭<p>‬‭
tags,‬‭ as‬‭
with‬‭any‬‭
other‬‭tags‬
(except‬‭
‭ for‬‭the‬‭ones‬‭mentioned‬‭ above,‬‭
that’ll‬‭ cause‬‭problems).‬‭In‬
fact,‬‭
‭ a‬‭lot‬‭of‬‭programmers‬‭ do‬‭this,‬‭
as‬‭there‬‭is‬‭
often‬‭something‬‭ you‬
can’t‬‭
‭ put‬‭in‬‭a‬‭<p>‬‭tag,‬‭such‬‭
as‬‭another‬‭text‬‭tag,‬‭like‬‭
the‬‭<h1>-<h6>‬
tags.‬‭
‭ These‬‭ are‬‭single-line‬‭ tags‬‭that‬‭
will‬‭look‬‭really‬‭weird‬‭if‬‭placed‬
within‬‭
‭ <p>‬‭tags.‬‭ If‬‭you‬‭want‬‭
to‬‭learn‬‭
more‬‭about‬‭HTML‬‭or‬‭even‬‭
get‬‭into‬
coding‬‭
‭ it,‬‭check‬‭ out‬‭the‬‭appropriately‬‭ named‬‭html.com‬‭for‬‭guides.‬
>‬‭
‭ Next‬‭coding‬‭ language:‬‭ CSS.‬‭
I’m‬‭just‬‭going‬‭in‬‭
order‬‭of‬‭
how‬‭well‬
I‬‭
‭ know‬‭
them,‬‭ and‬‭CSS‬‭is‬‭up‬‭
next‬‭in‬‭
that‬‭list.‬
>‬‭
‭ So,‬‭CSS‬‭is‬‭almost‬‭always‬‭paired‬‭with‬‭HTML,‬‭as‬‭
CSS‬‭is‬‭
used‬‭for‬
styling‬‭
‭ HTML.‬‭The‬‭coding‬‭ language‬‭itself‬‭is‬‭quite‬‭simple,‬‭but‬‭
it’s‬
hard‬‭
‭ to‬‭demonstrate‬‭ here.‬‭So,‬‭I’ll‬‭
put‬‭it‬‭
into‬‭our‬‭“Hello,‬‭world!”‬
HTML‬‭
‭ code:‬
<!DOCTYPE‬‭
‭ html>‬
<html>‬

<head>‬

<meta‬‭
‭ charset=”utf-8”>‬
<title>My‬‭
‭ Website</title>‬
<style>‬

p‬‭
‭ {‬
color:‬‭
‭ tomato;‬
}‬

</style>‬

</head>‬

<body>‬

<p>Hello,‬‭
‭ world!</p>‬
</body>‬

</html>‬

>‬‭
‭ The‬‭CSS‬‭code‬‭is‬‭shown‬‭in‬‭
blue.‬‭As‬‭
I‬‭said,‬‭CSS‬‭
is‬‭pretty‬‭simple.‬
This‬‭
‭ code‬‭will‬‭ just‬‭change‬‭the‬‭color‬‭
of‬‭any‬‭and‬‭
all‬‭paragraphs’‬‭ text.‬
In‬‭
‭ this‬‭case,‬‭it‬‭will‬‭change‬‭the‬‭color‬‭to‬‭
a‬‭reddish‬‭orange‬‭known‬‭as‬
Tomato‬‭
‭ to‬‭the‬‭computer‬‭ (NOTE:‬‭ the‬‭
Hexadecimal‬‭ code‬‭for‬‭
Tomato‬‭is‬
#FF6347).‬‭
‭ You‬‭can‬‭do‬‭much‬‭more‬‭than‬‭
this‬‭with‬‭CSS,‬‭from‬‭
moving‬‭text‬‭to‬
changing‬‭
‭ the‬‭color‬‭ of‬‭
the‬‭page‬‭entirely.‬‭You‬‭can‬‭
also‬‭change‬‭the‬‭color‬
of‬‭
‭ specific‬‭ items‬‭with‬‭IDs‬,‬‭
‭ but‬‭that’s‬‭not‬‭
easily‬‭ implemented‬‭into‬
code‬‭
‭ this‬‭simple.‬
‭‬‭
> Next‬‭up:‬‭JavaScript,‬‭ or‬‭JS.‬‭
JS‬‭is‬‭
less‬‭simple,‬‭and‬‭I‬‭
haven’t‬
spent‬‭
‭ as‬‭
much‬‭time‬‭with‬‭it,‬‭so‬‭
this‬‭explanation‬‭ may‬‭be‬‭
less‬‭smooth‬‭and‬
is‬‭
‭ both‬‭for‬‭me‬‭
and‬‭you.‬
>‬‭
‭ As‬‭with‬‭
all‬‭other‬‭ examples‬‭so‬‭far,‬‭I’ll‬‭
start‬‭with‬‭having‬‭the‬
code‬‭
‭ say‬‭“Hello,‬‭ World!”‬:‬

fill(0,‬‭
‭ 0,‬‭0);‬
text("Hello‬‭
‭ World!",‬‭ 157,‬‭200);‬
>‬‭
‭ Link‬‭to‬‭
this‬‭one:‬
https://www.khanacademy.org/computer-programming/helloworld4essay/5182‬

502891864064‬

>‬‭
‭ Now,‬‭you‬‭may‬‭
be‬‭wondering‬‭ why‬‭this‬‭looks‬‭
so‬‭simple‬‭when‬‭I‬
clearly,‬‭
‭ CLEARLY‬‭ said‬‭
it’s‬‭ not.‬‭Well,‬‭it’s‬‭because‬‭once‬‭
you‬‭start‬
adding‬‭
‭ more,‬‭the‬‭code‬‭
gets‬‭ hard‬‭to‬‭
comprehend‬‭ fast.‬‭For‬‭
example,‬
something‬‭
‭ as‬‭simple‬‭as‬‭a‬‭
small‬‭drawing‬‭ can‬‭take‬‭
a‬‭LOT‬‭
of‬‭code‬‭
and‬
geometry‬‭
‭ skills.‬‭ Take‬‭
a‬‭look‬‭at‬‭this‬‭code:‬
>‬‭
‭ (code‬‭goes‬‭here)‬
>‬‭
‭ See‬‭how‬‭
complex‬‭ and‬‭tedious‬‭it‬‭gets?‬‭And‬‭
it‬‭happens‬‭FAST.‬‭Let’s‬
start‬‭
‭ out‬‭
with‬‭the‬‭common‬‭ part‬‭
of‬‭these‬‭code‬‭examples:‬‭The‬‭“fill”‬‭tag.‬
This‬‭
‭ sets‬‭the‬‭color‬‭of‬‭the‬‭shapes,‬‭text,‬‭and‬‭dots‬‭you‬‭
put‬‭on‬‭
the‬
canvas.‬‭
‭ However,‬‭ the‬‭
line‬‭ color‬‭is‬‭
not‬‭affected‬‭by‬‭this‬‭
tag.‬
>‬‭
‭ Secondly‬‭ comes‬‭the‬‭text‬‭tag.‬‭This‬‭
tag‬‭is‬‭
exactly‬‭ what‬‭
it‬‭sounds‬
like‬‭
‭ –‬‭a‬‭
tag‬‭that‬‭puts‬‭text‬‭down.‬
>‬‭
‭ Next‬‭up,‬‭the‬‭
beginShape(),‬‭ endShape(),‬‭ and‬‭vertex()‬‭tags.‬
endShape()‬‭
‭ and‬‭
vertex()‬‭ are‬‭easy‬‭enough,‬‭working‬‭off‬‭of‬‭
a‬‭type‬‭
and‬
coordinates‬‭
‭ respectively,‬‭ but‬‭
the‬‭beginShape()‬‭ tag‬‭is‬‭
a‬‭
little‬‭more‬
confusing.‬‭
‭ You‬‭
have‬‭to‬‭choose‬‭what‬‭type‬‭of‬‭shape‬‭
you‬‭want‬‭it‬‭
to‬
create,‬‭
‭ which‬‭is‬‭denoted‬‭by‬‭some‬‭pretty‬‭weird‬‭inner‬‭tags.‬‭Then,‬‭once‬
you‬‭
‭ close‬‭it,‬‭you‬‭have‬‭to‬‭put‬‭
all‬‭of‬‭the‬‭
vertex()‬‭ tags‬‭
within‬‭the‬
beginShape()‬‭
‭ and‬‭endShape()‬‭ tags.‬‭Of‬‭course,‬‭you‬‭
can‬‭make‬‭irregular‬
shapes‬‭
‭ by‬‭
not‬‭putting‬‭in‬‭anything‬‭ in‬‭the‬‭
parentheses,‬‭ too.‬
>‬‭
‭ Alright,‬‭ next‬‭
up‬‭is‬‭the‬‭one‬‭
that‬‭a‬‭know‬‭
close‬‭to‬‭nothing‬‭about:‬
Python.‬‭
‭ Python‬‭is‬‭one‬‭
of‬‭the‬‭most‬‭popular‬‭coding‬‭languages‬‭ for‬‭
making‬
interactive‬‭
‭ things,‬‭but‬‭honestly,‬‭ I’m‬‭not‬‭
a‬‭big‬‭
fan.‬‭I’ve‬‭spent‬‭less‬
than‬‭
‭ two‬‭hours‬‭on‬‭it‬‭
as‬‭compared‬‭ to‬‭
over‬‭a‬‭hundred‬‭in‬‭
HTML‬‭and‬‭
over‬
two‬‭
‭ hundred‬‭ in‬‭
Construct‬‭ 3.‬‭So‬‭
you’re‬‭ getting‬‭a‬‭
big‬‭time‬‭noob‬
perspective.‬

>‬‭
‭ Here’s‬‭the‬‭code‬‭for‬‭“Hello,‬‭World!”‬‭ in‬‭
Python:‬
print(“Hello,‬‭
‭ World!”)‬
>‬‭
‭ That’s‬‭it.‬‭Yup.‬‭One‬‭line‬‭of‬‭
code.‬‭I‬‭don’t‬‭like‬‭
it.‬‭Python‬‭just‬
feels‬‭
‭ too‬‭
simple‬‭ for‬‭
me,‬‭but‬‭that’s‬‭probably‬‭ because‬‭I‬‭
overcomplicate‬
‭hings‬‭
t way‬‭too‬‭much.‬‭I‬‭also‬‭started‬‭ coding‬‭by‬‭jumping‬‭ straight‬‭into‬
the‬‭
‭ deep‬‭ end‬‭of‬‭
HTML,‬‭sooooooo…‬
>‬‭
‭ The‬‭print(“”)‬‭tag‬‭is‬‭the‬‭basis‬‭ of‬‭
all‬‭text‬‭in‬‭Python,‬‭and‬‭works‬
similarly‬‭
‭ to‬‭the‬‭
<p>‬‭tag‬‭in‬‭HTML.‬‭ It‬‭
prints‬‭ text‬‭onto‬‭the‬‭
shell‬
window‬
‭ ,‬‭
‭ which‬‭is‬‭
basically‬‭ a‬‭preview‬‭ window‬‭ for‬‭finding‬‭out‬‭
what‬‭ your‬
code‬‭
‭ does.‬‭ In‬‭this‬‭example,‬‭ the‬‭shell‬‭window‬‭ will‬‭simply‬‭show‬‭a‬‭line‬
of‬‭
‭ text‬‭ reading,‬‭“Hello,‬‭ World!”‬ .‬‭
‭ You‬‭
can‬‭do‬‭a‬‭lot‬‭
with‬‭Python,‬‭ but‬
I’m‬‭
‭ terrible‬‭ at‬‭
using‬‭it‬‭and‬‭honestly‬‭ find‬‭it‬‭quite‬‭boring,‬‭so‬‭I’m‬‭not‬
going‬‭
‭ to‬‭show‬‭any‬‭more.‬
>‬‭
‭ Now,‬‭moving‬‭forward‬‭ a‬‭
bit,‬‭ let’s‬‭visit‬‭ one‬‭
of‬‭the‬‭
programming‬
languages‬‭
‭ that‬‭is‬‭even‬‭newer‬‭and‬‭still‬‭ developing.‬‭ This‬‭programming‬
language‬‭
‭ was‬‭originally‬‭ made‬‭for‬‭creating‬‭ games,‬‭ and‬‭that’s‬‭
its‬‭ usual‬
use.‬‭
‭ What‬‭ is‬‭this‬‭language,‬‭ you‬‭may‬‭ask?‬‭Construct‬‭ 3.‬‭Construct‬‭ is‬‭
a‬
2-dimensional‬‭
‭ game‬‭engine‬‭that‬‭now‬‭ has‬‭a‬‭
3-dimensional‬‭ plugin.‬‭Back‬‭in‬
the‬‭
‭ previous‬‭ versions‬‭of‬‭Construct,‬‭ you‬‭could‬‭only‬‭do‬‭very‬‭
limited‬
things,‬‭
‭ but‬‭now‬‭
it’s‬‭become‬‭ a‬‭
really‬‭ good‬‭engine‬‭ in‬‭
general.‬‭I’m‬
currently‬‭
‭ working‬‭ on‬‭
a‬‭few‬‭
games‬‭ in‬‭Construct.‬
>‬‭
‭ Newest‬‭of‬‭all‬‭
is‬‭the‬‭advent‬‭ of‬‭artificial‬‭ intelligence‬‭ writing‬
code.‬‭
‭ This‬‭honestly‬‭ kind‬‭of‬‭scares‬‭ me,‬‭not‬‭
in‬‭the‬‭“oh‬‭no,‬‭
apocalypse!”‬
way,‬‭
‭ more‬‭ in‬‭the‬‭
way‬‭of‬‭“What’s‬‭ the‬‭point‬‭of‬‭programmers‬‭ now?”‬.‬‭
‭ To‬
figure‬‭
‭ out‬‭if‬‭this‬‭is‬‭
even‬‭a‬‭viable‬‭ option‬‭to‬‭do‬‭right‬‭now,‬‭
I‬‭asked‬
three‬‭
‭ different‬‭ AIs‬‭(Aria,‬‭ChatGPT,‬‭ and‬‭Google‬‭ Gemini)‬‭if‬‭
they‬‭could‬
write‬‭
‭ HTML‬‭code‬‭for‬‭me‬‭to‬‭
say‬‭“Hello,‬‭ World!”‬ .‬‭
‭ Out‬‭
of‬‭the‬‭
three,‬‭ Aria‬
gave‬‭
‭ me‬‭ a‬‭
very‬‭polished‬‭ and‬‭pretty‬‭ set‬‭of‬‭
code‬‭ that‬‭
worked‬‭great,‬
ChatGPT‬‭
‭ gave‬‭me‬‭
a‬‭slightly‬‭less‬‭ polished,‬‭ but‬‭still-working‬‭ set,‬‭ and‬
Gemini‬‭
‭ gave‬‭ me…‬‭
Well,‬‭gibberish.‬‭ This‬‭is‬‭a‬‭
bit‬‭ backwards‬‭from‬‭what‬‭I‬
thought‬‭
‭ would‬‭happen,‬‭because‬‭ ChatGPT‬‭ had‬‭been‬‭ around‬‭longer,‬‭Aria‬‭is‬
a‬‭
‭ built-into-the-browser‬‭ AI‬‭for‬‭Opera‬‭GX,‬‭and‬‭Google‬‭ Gemini‬‭
has‬‭ a‬
prompt‬‭
‭ about‬‭ generating‬‭ code‬‭in‬‭its‬‭prompts‬‭ list.‬
>‬‭
‭ However,‬‭there‬‭ is‬‭
still‬‭ a‬‭point‬‭for‬‭programmers,‬‭ after‬‭a‬
fashion.‬‭
‭ Sure,‬‭eventually‬‭ AI‬‭can‬‭write‬‭ code,‬‭but‬‭it‬‭
doesn’t‬‭know‬‭ what‬
to‬‭
‭ write‬‭ without‬‭a‬‭prompt.‬‭So‬‭is‬‭AI‬‭the‬‭future‬‭ of‬‭
coding?‬‭In‬‭
my‬
opinion,‬‭
‭ we’ll‬‭just‬‭have‬‭to‬‭wait‬‭and‬‭see.‬
>‬‭
‭ What‬‭can‬‭
be‬‭determined,‬‭ however,‬‭ is‬‭the‬‭past‬‭of‬‭
coding.‬‭ From‬
Plankalkül‬‭
‭ to‬‭AI,‬‭the‬‭
world‬‭ of‬‭
programming‬‭ has‬‭ come‬‭
a‬‭long,‬‭
long‬‭ way‬
from‬‭
‭ the‬‭ 1940s.‬‭And‬‭it’s‬‭likely‬‭ only‬‭going‬‭to‬‭go‬‭up‬‭
from‬‭here.‬
>‬‭
‭ END‬‭DOCUMENT‬
‭or‬‭
F those‬‭of‬‭
you‬‭
who‬‭
want‬‭
to‬‭
see‬‭some‬‭
of‬‭
my‬‭
coding‬‭projects‬‭
come‬
talk‬‭
‭ to‬‭
me.‬‭I‬‭
can‬‭give‬‭
you‬‭
the‬‭
links‬‭
and‬‭whatnot.‬‭
Note‬‭
that‬‭most‬‭
of‬
these‬‭
‭ are‬‭works‬‭in‬‭
progress‬‭
and‬‭
may‬‭
not‬‭be‬‭
finished‬‭
for‬‭
a‬‭long‬‭
time.‬

You might also like