#⌨coders-cave
1 messages · Page 3 of 1
a couple hours of training and then
Is that supposed to be Chinese symbols or smt
Also my sleeping schedule is
Extra extra fucked
I cant go to sleep until 6 am
And even then I still cant
So im sleeping the day out or not sleeping at all
amoung
fed it mario sprites
That looks like Mario alright
i only had 47 sprites
so it is gonna take a long time to train
i feel like the resemble something
but i dont know what it is
it doesnt look random
Idk if you see it but top one looking kind of sus 😈
gonna train again on 81 sprites instead
Bottom left looks like a minecraft cat in a mermaid pose, middle right looks like some sort of snake with a turtle shell, 2nd to the right middle looks like magikarp facing frontward and it's left image looks like venusaur with broccoli growing in it's back, bottom right looks like a weird flower. Can't recognise the rest.
there are turtles so i guess that explains the turtle shells
and i think the flowers looking things are just from the wings of the fly
there's not enough data sadly
not enough mario sprites
smh
oh no
why no colors its gonna
well
output kinda bad on grayscale
more colors = more features
how many hours are that
200 epochs turned from galaxy mario to hot mario
there are not a lot of mario sprites

barely got 81 sprites
just use the same sprites over and over again :)
i mean all the images are mario because most of the sprites are mario
oh boy i love having 64 images of the same thing
so if i use the same sprite again and again its gonna generate the same image
yes, smort
you need some variance
and then the gan will start generating stuff in the middle
half mario half bowser
and stuff like that
nah bro, generating completely new marios with ai is for noobs. Generating the same marios that already exist is big brain

lol
stylegan3 can barely make good outputs with 50K images imagine below 100 lol
stylegan3 is not working with 32x32 images
what no it should work as long as its a multiple of 4
what im saying is
for small images
with less variance
you dont really need 50k images
what does this mean
minecraft pocket edition free download unlimited diamonds cracked no virus legit free latest apk
YOOOO
LESS GOOO
does that mean that when the ai gets trained enough we get epic minecraft pocket edition free download unlimited diamonds cracked no virus legit free latest apk
yes indeed this is the same ai that took us to mars
Hello
@bold rover got any advice for hamza's mario generator
hamza you probably want more than like the 81 sprites is what I would say, but so has everyone else
web scraping
its still gonna be the same sprites
if i use different art styled marios then it wont work
the variant will be too much
data per variant will still be low
well what variations do you want
i want same art style
then get data thats all same style and same size roughly
or find something that can do good enough with small data
it will probably be very uncreative
but might still make something interesting
I imagine this goes under the technique of gathering data effectively, but i wouldnt know where to start with that (which is why i ponged kia)
unless there is a really good low data generator kia or someone else knows
what
if you found one, then making one would be reinventing
i think thats what your message means but it does not read that way
to get any real variety you would need variety images though, with lots of same art of mario over and over you're just gonna print mario's weird dying child
im not really an expert, but a pixel art model finetuned on a specific set of mario sprites might be better than what you're doing
that said idk how much data you need to give for a finetune to be effective
or if you would even need one if you had a pixel art model that could generate mario anyways
me no expert
might also try the downscaling upscaling approach instead of generator and discriminator
Mmm, I'm not to sure if its a transformer tho
opinions on running all your application with pm2(https://pm2.keymetrics.io/)
How to hack into the USA’s entire nuclear arsenal (asking for my good friend)
I mean, if the model is base on a transformer, yeah no clue
first you open adobe photoshop
transformers for gans
i dont think ive ever heard of that
im writing a new base for my school nea, and im trying to cut down on for loops since they are significantly slowing down the program. heres some pseudo. thanks ahead of time
for entity_object_pointer in entity_object_array
for target_blit in blits
if (trace_ray(entity_object_pointer.pos,target_blit.pos))
visible.add(target_blit)
are you writing it rn?
yeah above lol
the problem is i have to have hundreds of entities and thousands of blits
python
ok
oh uhhh I will try to help but
yea not the biggest python enjoyer
whatever is relavent to these loops
Why not copy paste the link
accidentally copied all the text on the page and pasted it 😂
so my discord on pc was frozen
Had to write on phone
💀
here
Oh
deleting the link
Uhhh
Rank issue
Dm me
The thing
I will post it if anyone else is willing to help
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
From which line does the important thing start
And whats the goal
since 100 ents * 5000 blits * 1000 rays is like 500000000 times a second its doing math intensive
stuff
natural selection simulator
so its herbivores eating plants
and carnivores eating herbivores
etc
ok
I have an idea
its not perfect but
you could basically slow down the game time
so its in frames
one frame it does all the calculations
the next too
etc
otherwise I dont really see any other way unless you redesign
so every other frame it does the math then the next one it just draws it
no
basically instead of constantly running
you can have a button to do next frame
or smt
idk this seems huge
interesting, i suppose it could work
when i implement ai especially
since its science based
oh god it will have ai too
yeah, the herbivores learn where the food is and also how to move
and real dna system
😆
be slow af
with ai
like
1 frame may take a couple of minutes
if not an hour
so maybe try idk snipping some numbers
dont have so many things
it will be a very simple model that just processes the positions of food and finds a link
your right tho
and python
this will send the school computers to their knees
assembly on ring 0 would struggle to run this
SCHOOL COMPUTERS?!?
YOU WILL BURN THEM ALIVE
this will turn them into space ships
a second?
yeah
in dm is what it looks like
nea has to be in python
I mean C wouldnt be much better and difficult graphics but
this sucks
what do you think of the code in general though, look professional enough do u reckon?
if 1 and 100 blitz took so long a second
100 with 1000 would take 100 times more
add more spaces
and comments
grouping the code in regions
so its easier to read
im not gonna worry about comments just yet because this is one of 10 models ive planned
i have a year
the fact its in python
is awful
you could have really impressed them
if you wrote it in c++ with opengl
this would win you any day
but anyway
so idk these for loops are kinda like important
I guess python may have some quirk so that you dont iretate through every object in every array every time
wait I got it
object priority
basically only update the important objects
and
dont update everything every frame
maybe divide each screen update into multiple frames
and call it...an update maybe
so an update is like 10 frames long
and each frame a certain number of objects are updated
most important first
least last
interesting
i suppose
if i only did complex math on those that wherer
close to a blit
then all the other ones gotta do is move
this also got me thinking about casting the path to an array of coordinates
so 5-8 frames for calculation
then just following that path
2 frames for drawing
so essentially id skip the .flip command 8 times a second
this has got me thinking definitely
thanks
this is what i needed
nice, goodluck with that 👍
you too
I am Womanprotector69
use numpy
instead of normal arrays
and then map the numpy arrays instead of looping over them
python is just insanely slow like bruh i had 100K elements in an array normally would take 2-4 seconds on c# but damn had to use libraries written in C in python
yeah if you want to do anything useful in python you need to use libraries
Weather report: Kansas City Kansas
\ / Sunny
.-. 20 °C / 68 °F
― ( ) ― ↙ 6 km/h
`-’ 16 km
/ \ 0.0 mm
Damn that's crazy
How is it more hot in Finland than in Kansas
One message removed from a suspended account.
its early in the morning
like 6 AM
ah
or no its not
it should be around 10 am
i guess kansas city is a cold city
probably some geography stuff
thePeopleWhoAsked = input()
if thePeopleWhoAsked == 0:
print("nobody asked")
else:
print("you lying")
the code i made a while ago
ecuador is 27ºC (i know it because im from ecuador)
that is my last/first message on this server bye lol
Bulgaria is at this point
borderline a desert
with temps going as far up as 40C
and staying at a steady 35C
Am i too uncool to use this command? Why doesn't it work?
Now Istanbul 26C⁰
I was gonna do yhat 🤨
Python?
input() == 0 ? "nobody asked" : "you lying"
no i believe thats assembly
Kk
Vaay gardaşım
🤝 😎
does anyone here use c++?
the noobs do
C+ too
When the only C language you’ve used is plain old (-‘:
Yes
Also dont listen to hamza
He is a stinky
C is superior to all
ew another interpreted garbage
I haven’t dabbled in the world of rust yet but I kinda wanna
And excuse yourself sir typescript is not garbage 😤
Absolutely do
This language is like c and python had a beautiful baby
After learning that
Interpreted languages are actually easier to make than compiled
I have a new respect for them
when you still think javascript is interpreted
2010 vibes
I mean… it is still interpreted… isn’t it?
for visual studio does anybody know how to clear the empty space?
Creating an assembler has proven to be
quite challanging
im getting an error message on line 6 of the file
there are 5 lines total
eh Im just gonna rewrite it its very buggy in its current state anyway
only 200 lines
oh wait wtf its no longer interpreted
since like 5 years
Can ai evolve on its own even when its not programmed to evolve or do u need to program it to evolve?
babe is that a yes or no?
I will give you a hint
Computers operate by executing very very specific instructions
ohh right, I knownow
So unless you give it these instructions
How would it just make them up on its own
is it possible to use a human brain as a cpu to do nasa simulation like stuff?
Theoretically yes
But there are many problems
First it would perform much much worse than your average or even your low end cpu
Brains arent nearly as good at math
Second we dont know how to translate neurons to bytes
Because we dont understand neurons
So rn no
ok what does gold do in computers?
yes
How can you go
Ok
do you know how google's chess ai to work? it plays against by itself, literally rewarding itself whenever it wins
If its memory is padded with zeros it wont do shit
what
He said
this doesnt have to do with memory
no but it can happen
???
what if one day someone makes a neural network that makes neural networks for a specific purpose, but that neural network making neural network does something else
Guy
"even if its not programmed to do so" is a very broad sentence
what does gold do in computers?
I highly doubt that would happen
Its not like ai is concess
Fuck that word btw
bruh
you'll get neurons
Its just a computer that is programmed in a way that almost looks like it thinks for itself
now we have billions of them
what if we have an insane computer than can run billions of neural networks then
human consciousness is a byproduct lol we're just spectators of what our human brain is doing but its just making us feel like were doing it
how fast can ai process information?
As fast as a CPU can process it
can it be lightspeed fast?
No lol
yes but monkeys are alive, so are the smallest bacteria isnt it?
What does that have to do with anything
Ill take that as a yes
the smallest bacteria has very small sets of instructions to survive, what if i wrote the same instructions via code?
Its not biology
Its gonna be
A cold machine
A program
Its just electricity
and wires
yes a program that can feel, can be scared when you turn it off
Its feelings
can u also fuck it?
Are just gonna be states
probably no because it cant reproduce
Why are you trying to give birth to a living machine
no it doesnt have to reproduce
If I punch it
It will see the danger code
And execute it
Because its programmed to
Not because it cares for itself
everything is possible on ai
Or for anything
Its programmed to care
If it was this simple to make new lifeforms fuck we would probably already be in a machine war
it becomes simplier over time due to technology
not yet because we still have slow gpus lol
On the low level neural networks are still just code
Just shaped like something that isnt
but arent we the same lol
Its still a cpu executing code
arent we running on simple neurons making up our brain
its complex
how small can nanobots get?
The size of nanoboys depends on the size of the cpu
If a cpu can be a millimetre
A nanoboy will be a tiny bit larger
according to wikipedia nanobots are in the scale of micrometers
I don't think they work like regular computers
@orchid frigate what?
I wonder if they can create a 1nm chip.
That'd be revolutionary but I guess physics always says otherwise.
omg wtf u doin here babe?
Jupe why am i wolf
any wall that's less than a couple of nm long electricity can fly through
so its kinda impossible
that's why supercomputers are moving to quantum processors
Look at your roles you are freeze
Knowing how qubits work, they can be both a 1 and 0 thanks to superposition so how do they compute with that?
Normal computers operate with 1 and 0 and having something that is both sounds kinda complicated.
it sticks to either 1 or 0 when you observe it
Hmmm.
Hamza
who
Me
Well it sounds like a gamble.
no its not
it scales exponentially
if you have 32 bit in a normal computer
to double it you need 64 bits
if you have 32 qbit in a quantum computer
to double it you need 33 qbit
the only problem right now
is that quantum computer run only on like -250 degrees
Why Fahrenheit
I'm not well versed with quantum physics as a disclaimer. So how do you compute with something that can be both 1 and 0? Does it become a 1 when you observe it a certain way or it's just probabilities like hoping that it'll be a 1 or a 0?
dont really know
go watch a youtube video
they are all confusing

quantum physics is one of these things that you need a phd in to start understanding a bit of it
same with AI
Yeah thats why I'm asking here.

Well at least there's someone else here that's just as brainfucked with quantum stuff as me.
Can a hivemind of nanobots kill all life?
With youtube u can understand anything
Freecodecamp should probably offer a quantum course if that's the case.
Now that I think about it, could you possibly teach yourself quantum physics?💀💀
I'm trying to teach myself unity game development and my head already wanna freeze over

damn why courses
cant you just read docs lol
or just watch a yt video i dont really get why people pay for things you can get on a google search
i bet those guys teaching at udemy probably google their entire career loool
Nah I never used courses, I just used the wrong word here. All my gained knowledge is thanks to those youtube chads and the google and stack overflow guys
Can u do surgery on a guy?
no
Bruh
I'm not a medical professional.
imagine nuclear physicist graduated from youtube
That is if those cpr lessons at school even count as medical experience.
Bachelor of science, major in Kurzgesagt videos.
Totally not me

I wanted to learn quantum assembly a while back
There are actually many quantum languages available
Including a c like language
But all of them require some strange tools to run because ya know
Quantum machine code is alot different from normal machine code
So I gave up
But it seems like things have evolved since last time I looked
Even more languages have appeared
I wonder if classical computers would go obsolete in the far future thanks to quantum stuff.
Maybe yes
But in the very far future
For quantum computers to become the norm
Everything will have to be reprogrammed in a quantum language
Or
Brand new compilers will have to be maid for the current languages
But even then I doubt things will still work the same
I agree.
Unless if they make a breakthrough in current computer tech like going below 1nm chipsets then yes quantum will eventually replace them.
Problem is
Operating systems will need to drastically change
Both in code and in theory
I kinda wanna try to make a quantum bootloader
Although electrons can pass thru if the wall is too thin, hence the difficulty in making chipsets smaller. I wonder how they'll overcome this issue.
But I dont think any quantum cpus have specifications
Im not scared of the code
Im scared that I dont know the booting theory on those things
What bios they use
So on
I overcame normal assembly quite fast so qassembly shouldnt be too much of a challange
Lemme check if a quantum cpu has specification
Well
No
Unsurprisingly
All quantum computers are in startup firms so they are all like
Experiments
darn
and we know how capitalist are
Quantum computers are used for mining
they're gonna keep it a secret
yeah it's not decentralized anymore
if its like controlled by 1 big computer
quantum computer
for that matter
although im not sure if it's faster
because exchanging data safely
is like
bogosort
I just want the crypto market to fall
Every day it becomes more and more of a scam
And the people on top become more and more annoying
Never really saw anything lately about crypto stuff that isn't a scam.
Probably just a buncha scammers tryna scam each other

Its just a bunch of scammers who are relatively ok with technology trying to scam the people who have absolutely no clue how modern technology works
Also just read that quantum computers are apparently
Supposed to be specific use
So no os
:(((((
first you need to figure out how to make a small sized freezer that can do -270.33 degrees 
We're talking about the coldest stuff around
Like seriously cold, almost absolute zero cold.
Maybe that's a bit of an exaggeration but yeah.
Humans have done more insane stuff
Like that time we survived the cold era
cuts away to peter getting stuck in ice
There should be a detailed indian youtube tutorial about it somewhere 
So apparently
In 2019
A quantum computer was ran and
It did calculations 3,000,000 times faster than the current super computer
...
Damn
Kinda doubt thats real but
why would anyone lies about that
wtf the new discord react native update is so slow
im 100% sure thats real
"The machine can process 200,000 trillion calculations per second - or 200 petaflops." Thats for summit
Which at the time was the fastest super computer
How do I download maps
That means that a quantum computer can perform 6e23 calculations per second
Im quite doubtful for that
By reading channel descriptions and pins
Where m i
Code
Cave
Cave
Can ai surpass human intelligence?
Yes
But not replicate it exactly in the same context
There are some things that can't be understood rationally
But maybe they'll get close to it
Plus there might be a limit to it
In the hardware i mean
A limit in the way it connects to the world since it's only a machine
yes it can
We're just meat AI in a way, if you look at the bigger picture. We've been constantly debugged by nature for millions of years, we've developed survival instincts, bigger intelligence capacity, and even have changed what we've looked like as time passed. In a way, we have a massive and valuable amount of data and experience at our disposal which won't ever be replicated by AI anytime soon.
tldr
if its programmed to contstantly improve itself itll prolly replicate it at one point even surpass it
and prolly become godlike in the far future
We are also programmed for the same and we created another being because we were limited xd
We don't even have a full understanding of how our bodies even work, how much more replicate it.

It's like building a puzzle with missing parts.
so become a doctor maybe
AI is made by humans, and humans doesn't even know how their own brains work. If we're gonna replicate human intelligence and even surpass it we need a full knowledge of how our psychology works first or you're in for a ride full of failures.
maybe in the future theyll fully know how it works
The AI can't comprehend our mind from their perspective, they could theorize tho, having access to thousands of thousands of data and information realated to psychology and neuroscience, art, history
But the real work will come when we know what we truly have to do
I like planes, especially flying wings
can a human brain be extracted from a dying person and be used to pilot military vehicles so it doesnt had to have crews that needed space, and also give the vehicle like sensors or even pain receptors so when the vehicle is hit the brain feels the pain?
like a last chance to likve or something like that yk
That'd be fucking torture
but hey sacrificing ethics or whatever they call for efficiency
like a tank piloted by 1 human brain, its smaller bc no crew compartment and the smaller it is the harder it is to hit
also it has some smaller robots inside the tank to maybe repair somethings, also controlled by the brain
If you hook up someones brain to a tank, do you really want to risk them getting angry about it and just attacking you?
just threaten to execute its family if it ever does that or something, maybe plant a bomb near the brain so just incase it goes rogue, it can be blown up
wrong
in the far future they can
look at what AI can do nowadays, i can hear people from 2001 saying these are impossible
late reply, now nearly everyone died
or maybe ask it if it wants to be hooked up to a tank
cool but it doesnt matter
i can reply to a 2 year old message and still make a statement
You're giving them too many responsabilities that shouldn't be theirs lol, maybe they could comprehend it by merging completely with our brain and body but i feel like thats too much
why? whats wrong with giving them a lot of responsibilties its not like they can whine
if the neural network is trained to do one thing it will unless you train a neural network badly
is it like training a dog?
The program, in this case a neural network will follow what is instructed down to the letter.
That's like the very foundation of programming, it's not like code has a conscience of it's own or else we'd have countless worker strikes 💀
For real though, just think of it like an extension of your arms or legs, but like you have to build the components/parts yourself, you can make it cranky or very smooth depending on how you build your parts.
depends how you structure it
what if i instruct it to be like human, what if i code it to have a conscience of its own?
Nah, it'll just return an error.
Looks like I misunderstood your question
What I wanted to say was like it requires some sort of framework for it to be able to do such task, you don't want a human being to walk on two legs that doesn't have bones right?
oh you meant something like tensorflow yeah
is it better to use a human brain on a tank or an ai?
Yeah I suppose.
an Ai ofc
the ultimate goal
an AI that makes a better AI and then the new AI will make a better AI
and then you get infinitely good AI
i believe a human brain on a tank, felix
but our current tech can only do us AI for now
you see a human brain at least has all aspects of human intelligence and that includes morals, it was human once it knows if we're hurt or not, a plain AI we can never know if we got wrong training it then it kills humans
and that includes femboy catboys like you felix
bish who u callin felix the catboy? its just my pfp u have a literal microsoft
rimuru im literally wearing a tshirt of you right now, but thanks for agreeing with me
oh you're not felix? who are you then
ur fellow human bruh
then add pain receptors on the tank
jesus
lul they became soft
uhmm, thx ??
time to switch to an open source alternativw
kinda weird github copilot isnt one, money is the root of all evil as they say :(
string manipulation in rust ladies and gentleman
let line = line.chars()
.filter(|s| !(s == &char::from(' ')))
.collect::<String>();
let chr = chr.to_lowercase()
.to_string()
.trim()
.chars()
.next()
.unwrap();
OMG IT ACTUALLY WORKS
one step closer to making my own assembler
then bootloader with that assembler
that will be so fucking op
wtf damn thats a lot of lines
the second one turns a char back into a char
just a lowercase one
because to_lowercase returns ToLowerCase for some reason
in c# its
var line = new string(Console.ReadLine().Where(x => x != ' ')).ToLower().Trim()```
why are computer chips mostly green?
ask the manufacturer
manufacture deez nuta
you can color pcbs black
this just reminded me that
instead of turning each char into a lowercase char
I can just turn the entire line into one
I will come back with an even bigger var
are you removing spaces?
whats a char?
an integer
a charcoal?
without the coal
oh
it became smaller
the char thing disappeared
now its just
let line = line.chars()
.filter(|s| !(s == &char::from(' ')))
.collect::<String>()
.to_lowercase();
well thats dissapointing
are you removing space
should I get computer or electronic engineering?
Im turning
LOAD $51 #21;
into
load$51#21
well u still gotta .trim that makes everything safer
thats for you to choose felix
I aint a femboy bruh, u think ill click on keys with my paws?
bruh is that u? nuce legs btw
im finding one for you
why not u?
damnit everything is astolfo
i cant be femboy, i weigh an additional 500kg above the maximum weight
so ur obese then?
🤫 dont tell anyone
Finally being a student pays off 
I even cant pay

use lib
Blocked?
Yes, i am in russia
damn
for you

one macro is equivilent to 1000 lines of normal code to me
yes
it also has macros
I hate them
easily the most complicated thing in the language
coming from c# that doesnt use macros i can confirm its complicated
coming from someone who never wrote a single macro
macros are universally complicated
the only place they arent is
assembly
there calling a macro is equivilent to pasting code to that place
idk if thats actually the case but I mean
its a compiler thing
of course
assembly gets compiled to machine code
and machine code def doesnt have macros
or assembled
sorry
im sure someone was gonna cancel me over that
building an assembler has made me realise that
machine code is actually simple af
this shit still works
but it shouldnt work
I have made sure it shouldnt work
how tf is it still working
is it really that helpful
from what i saw
it can do easy things for you with a small chance of errors
but for hard things its useless
or specific things
and easy things already exist everywhere on stackoverflow
so is typing the comment really faster than googling it
hamza askin the good questions
my friend
windows
apparently lost his
uefi boot file
no idea how
but winload.efi was missing
even windows recovery tools couldn't fix it
The fact I just entered chat
And you were typing
Ia insane
But anyway
How could it just
Stop existing
Pretty sure thats not the boot file
yeah its not
how
And through linux just put them in their place
well i mean
Idk the internet should have them
Hmmm
so putting it in there is a no no
downgrading windows fails too
apparently after
"Finishing up"
How do you know its missing
it errors
Have you tried f1
yes
it just reboots
local recovery tools doesn't work
that's why i flashed windows 10 on my usb
and then this
when he tried to fix it
💀
At this point I don't think just winload is missing
I think the system is barely alive
true
Hold on lemme check something
but we can't even downgrade windows
plus reinstalling windows deletes his files
which is important
we literally have a pptx project due next Wednesday
But does the pc have some free space perhaps
yes
I mean non formatted
You can install another windows temporarily and get the files from there
Then just put them in the other partition
hm
confusing
reminds me, weird thing that happened
when i used linux
i moved his file to my sdcard
i can read ntfs just fine when i mounted the partition to /mnt
but after few reboots
it stops working
and errors with unknown filesystem
the linux is in a usb
so its pretty weird
dude
how do you expect me to boot
if windows is broken
literally a boot media
💀
plus my sdcard is exFat 256GB
Ok
i was moving from his HDD
Changed my mind
and fyi it was an installer linux
usually they have option to use them from the media
or install it
unlike mfs windows
💀
But anyway so
How tf did you just randomly boot
And winload suddenly
Unexisted itself
not sure
but he updated from 20h to 21h
i forgot the last digit
and issues appeared
20h what
but i know his laptop is crap
So he updated
And then
Problems
Did he perhaps end the update too early
I did that once
Had to repair via linux
I fucking love dual boot
heh
i don't
my brother's university on his 4th semester
the prof wanted everyone to use dual boot
and literally half of the class bricked their laptop
and then everyone used VirtualBox
tomorrow is in 12 hours+
How 💀
My record is 100 💀 💀 💀
the prof doesn't help or even supervise
so they're doing it themselves
and 1-3 semester
all they do is
do php
and do math
mainly geometry
for some reason
no idea
You can just delete the failed attempt 💀
and still lost half of your project
and assignment
both is alarming
This is why
I save everything on OneDrive
The one feature Bill did right
Or github if im on linux
if you wanna split the files each at 100mb yes
im so fucking close to getting the assembler to work
it parses the first argument
but skips the second
Content Delivery Network
should I specialize in hardware or software?
In what makes u happier baby

💀💀