#⌨coders-cave
1 messages · Page 75 of 1
aight thx
@main brook come back
She's busy

Who are you again?
My IT teacher associated programming with binary....
The pain
You know what fock it
Ima learn to code in binary
Ow god
⚠ Warned MalaysianDuck#1179
Lol
@orchid frigate hi
@barren shale did this ping work ф
this channel feels dead
after rei stopped bragging about doing things that no one cared about

@main brook WE NEED YOUUUUUU
DONT DIE ON US LIKE THIS
Rei = gone
NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
ok
Yay
im going bye
||scammed||
Wey
@jagged valve heyyyy hello
What you talk about
Are you gonna replace hamza?
Bro
Coding sruff
What is that bro
Like
I from malaysia
What program
pub fn foo(){
println!("Hi?");
}```
Ok bro thanks
dont teach him rust
C# better
you teach a man rust he dies of depression
exactly
||```lua
local text = ("shut")
while wait(1)
print (text)
end
||
too annoying for beginners
you want to do things
it doesnt let you
fuck
apparently i installed the wrong version of alpine
should've been the armv7 instead of armhf even though they're the same but it kinda behave different because packages requirements
Im currently starting off learning python, what should i learn after?
REIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
YOU ARE NOTO DEAD

its not a competition where you learn the most languages
just learn whatever suits your needs
python is good for everything
but its not scalable
cuz a bit slow
C# is good for Windows
JavaScript is somewhat revolutionary
because new language like Dart which is similar to JS
can make a native app
similar how Javascript react native
except
its one codebase
and tools like Typescript to help with Javascript
and Deno for better web app
because dependencies are optionally from a url
instead of locally downloading them
well they're still downloaded but lazily
nooooo
Asse...asssem...
C
👍
Depends what you want to do. If you want to make games maybe unity and C# if you want to make website JS, HTML and CSS etc.
And if you wanna suffer or make os
Assembly and C/cpp(but i HIGHLY recommend C)/Rust(C!!!)
But don't struggle too much with assembly your not gonna need it that much just learn about memory management
And hexadecimal numbers
D
if (true) getchildren.parent
-- "num1" and "num2" are parameters
local function addNumbers(num1, num2)
end
local function addNumbers(num1, num2)
local result = num1 + num2
print(num1 .. " + " .. num2 .. " = " .. result)
end
addNumbers(2, 3)
addNumbers(4, 0.5)
addNumbers(1000, 500)
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
print(player.Name .. " joined the game!")
end)
tf is this supposed to be
nothing
also
i deleted my shits on my mom laptop
so no more coding on laptop
because i
rei the first
shall declare VIM as best editor and code suggestion
(i successfully built YouCompleteMe)
no no nooo
i didn't make YouCompleteMe
sadly
anddd my nitro is gone
no more emojis
Aww
but hey atleast i learned go
its meh
the concurrency is literally threading
which sucks
i like how the only good-neutral person here is kia
i also learned Chinese Pronunciation
which is something
time for my hibernation again
those who ping me, except hamza because i blocked him. SHALL BE ARA ARA'D
true

false
more like syntax error
its a gboard
Cute background by the way Rei
hey cody @north dune
how do you modify the game
or anyone
at all
i need help
modifying the game
so i canm make a god human
@gloomy echo can you please like not flood thanks
Also check for ranks in #🤖bot-commands
okkkkkkkkk
now for some reason
the MeshInstance is falling
the CollisionShape doesn't fall
but apparently the mesh does
Thats what I don't like about game engines
You cant see whats going on in the background
How am i supposed to make something that works atleast 50% if I dont even know if the engine isnt collapsing under the surface
you learn
how to
there are profilers
you can tell what's doing what
and adjust
But i don't know how the engine works
open source engine
Making it harder to make something that has even average quality
But i didn't write it
So understanding it is difficult
Ok mr.copy-paster
ok im not
Then im not sorrry
You said you copy pasted hengine
The rendering engine
When I made my rendering engine for the now dead eternal engine, i made it all myself reading the documentation
i didnt
@barren shale you can deal with the advertisement
i just copy pasted the initializing stuff
Yes yes good but deal with the thing
⚠ Warned cLu#7792
Ok so
C is like C++ but without OOP.
And also has worse syntax with things like passing pointers to functions instead of references.
And is just generally less of a fun time.
Pointer strings and arrays and unsafeness.
C++ has a way better standard library.
And syntax.
Range-for loops and classes and the like.
Rust is the new improved cpp
Change my mind
The only thing it absolutely sucks at is global vars
They are so bad
Nice
python is good for certain stuff
some stuff like numpy runs on C code
so it has good speeds
Python is almost entirely built on C/C++.
Doesn't stop it from being slow as fuck.
It's very difficult to parse and it being interpreted only hurts it.
I take alot of offence to that and thus would like to ask why that is your opinion on the matter at hand

Make an os in python lol
Or a compiler
Or anything that makes other things work
bad
ms dos is in python
I really need to work on AMP more
It is just way too hard to find motivation
and first of all I need to fix the crashing
then I need to do some testing on JS
then I need to make more commands
then there are more bug fixes needed
the code also needs refactoring as it's 90% spaghetti
python discord bot
either move to another language
or use a fork dpy
discord.js for me was quite okay maintained and it have a bloated commands framework with stuff you sometime don't need
I'd like to change to discord.js but there are like 2k lines of code written in pythong
and idk if js has stuff like opencv
no
but
you can run a local webserver for it
so you can like
request to the website with a data
and return a data from it
literally a bridge
plus
its running on a different process so your bot doesn't slowdown
but how demanding is that for the server
meh
its quite fun
just do it locally with another bot
and see if it work
ive been using the webserver technique for cross language
I first gotta learn how tf do I make a command handler in discord.js
I haven't given it much thought yet so it might be easy but I'll see
const bot = new discord.Bot("hi.")
bot.add_command("hi", async function (context) {
await context.send("hi!")
})
bot.login(process.env.TOKEN)
it works similarly to dpy
except its not strongly typed
because js
but typescript fixes that which i don't know how to use back then
it handles checks
and also parameters are defined by the function
excluding the first one
which is always the context
bot = commands.Bot(command_prefix=',', allowed_mentions=discord.AllowedMentions(users=True, roles=True, everyone=False))
for filename in os.listdir('modules/'):
if filename.endswith('.py'):
bot.load_extension(f'modules.{filename[:-3]}')
This is amps current command handler. I do have like 300 lines of error handler though but this is how simple command handler is in python lol
problem is, how do you make this to work easily with multiple files
eh nevermind its slow
good question
i also made it work like python
basically
function loadExtension(ext) {
let extension = require(ext);
extension.setup(this);
};
because require also works with local file
hence
path/to/module
works
and stuff like importing via complex path finding is gone
sounds very similar to python lol
exactly
i made this in mind of dpy
so people from dpy can migrate easily
also i wouldn't suggest like
checking a whole folder for your extensions
instead write a set containing the filename without ".py"
extensions = {
"help",
...
}
for ext in extensions:
bot.load_extension(f"module.{ext}")
eh, works well enough when the only things in the folder are command files
meaning?
i mean
dpy doesn't discriminate what file is for what
dpy extensions just import your module and run the setup() in that module
you can just
#module/hi.py
def setup(bot):
print("Hi!")
and it'll still works
well yes but why would I put other files to my command folder
I don't remember why ngl but it just means commands to me lol
heh
well whatever it is dpy just thinks its a module with setup() function defined that takes 1 argument and its the bot
fair enough
this is why you name your folder correspondingly kids
.
├── commands
│ ├── help.py
│ └── moderation.py
├── helper
│ ├── image_manipulation.py
│ └── timer.py
└── main.py
people are funny
imagine looking to have a completely working music bot
without any effort
and with clearly no clue on what they're doing
yet still do it
Mmm
make it in C#
No?
Its made in C
And assembly
Like any other normal os
Its also older then python
Anyways I have not seen my computer in so long at this point I dont believe it exists anymore
Kinda stuck in quarantine outside of home so can't do shit
i still dont understand how sprintf works in C
if you use it twice in a row it overrides the first one

my brain hurt
Idk how the standard library works so idk
String Print Format
sprintf
It fills up a char* with a formatted string.
The formatting uses the same rules as printf
It's really unsafe.
yeah i know that part
when i use it twice to fill up to variables with different values
it fills up both with the same value
couldnt find a fix anywhere
printf() outputs whatever you put
so if you like
printf("hi");
printf("ho");
it'll output hiho
because it doesn't end with newline
remember how C++ uses ```cpp
std::cout << "hi" << endl;
std::cout << "ho" << endl;
endl works like \n
literally short for endline
it also flushes the stream
like any other languages does
buffer up the string -> if contain newline then flush
otherwise it'll keep buffering it
which explains why some output are chunky when it was literally just nothing before
actually to be precise, if the string ends in newline if im correct
hello
question,
are you able to modify game code using flexhex? (not only worldbox)
no
but you can modify basically any binary file
you can't directly change the code
but you can change how it works
since they're a compiled down to your machine anyway
so no way to alter the code
unless the app is open source
so for example, if i were to get a simple 2d tycoon game and find any variable containing information about the currency in that game, could i edit that to my liking using code?
no
that's not how it works
who is dumb enough to hardcode a user currency in a code
instead of storing them in a data store
awe
usually games fetch the data from a database
no
using the already made variables inside of the game
actually you can but
if the game is server sided
it'll just sync its data
with the server
so any unknown changes in the client is gone
like imagine inspect element
well if its client sided would it work?
yes
how do you know a game is client sided?
you just gotta find the data storage
and what app can you use to do that?
you have to see the code or guess
all i have is flexhex and notepad++ lol
well i mean
games are storing its data mostly encrypted
in a single file
or multiple one
its either stored in a sql locally
sqlite3
ohh
alright
most game with connection to a server will probably have its data synced in a server instead of locally
what app do you suggest i could use to get into a client-sided game's code?
basically any injector
which are mostly
against the game eula
or tos
and of course rule breaking
well since i am practicing, i am finding client sided, free, singleplayer, and downloadable games on itch.io
do you think its still against tos?
well you can read the rules and tos of that game
but i guess
single player is okay
as long as it doesn't affect anyone experience
well there's alot of it
do you use a payed injector?
no
free injector?
how so?
payed one are somewhat reliable
they're a mostly open sourced so any game can gain immunity
i know this sounds stupid since you know a lot about this but does notepad++ work?
by immunity i meant the developer added anti injection
i highly doubt it does
oh
aka text editor with color
so it doesnt work
yes
yeah
Just be normal and grind out the stuff you want or just be a 9-year-old Twitter keyboard warrior, a weeb, and a shipper that doesn't know what grass feels like and only has bad takes, all in support of racism and use Cheat Engine be toxic.
If you're willing to devote time to edit the game's code then just play the game.
It's way more fun.
I can code my ass off
apparently discord.js is easier to use
in some cases
but discord need all of us to use interaction
which are a pain
moving from message created event
to an interaction event
with a whole new mechanic
adding a command has never been this easier and harder
only code you can see is assembly
you can use xdbg32
very good debugger
but you need to know assembly
some games like unity games can be decompiled
but most of them are obfuscated
so good luck
Assembly
👍
computer bad
@orchid frigate
unity is cool
when you know what you are doing
A little experimental game I've been working on recently, where you fly around a tiny version of the world and deliver packages to various cities. Would love to hear any ideas you might have about how this could be taken further!
The source files for this project are currently in early access to patrons of the channel, but will be made public l...
like this guy
But
Vulkan
And openGL
And my very own library/crate which I can be proud of when I go to sleep
Hello
so you proud of your 1 fps empty screen
nty
why do low level when it ai high level ml web
What the fuck did I just read
Well you know what
Maybe I am
Because it's mine
guess what
nothing
also i made a custom wait_for in djs
since they don't have it
mine is as simple as
let msg = await waitForMessage(m => m.author.id == 'id' && m.channel.id == channel.id)
After 3 weeks of no computer it feels like I have forgotten how to code
This looks like gibberish to me 
lol
all i need is just the dependencies for ssh
and then the rest are from my rpi

Now I know what it feels like when no code people come here 
yes
Hey
How can I learn code ?
I wanna learn code plz
I already can use a little bit python
And scratch 3
Watch some brackeys tutorials and read articles :D
Ok thanks
Its not that I know enything but I guess it teaches alot
I'll try tysm
Learn assembly
Make an os
👍
Im helpful
Nah jk but to learn to code @distant agate you gotta know what you wanna code
That matters alot
Like alot alot
Lemme give you a few examples
that matters more than anything when you first start
Ai and machine learning: python
Game making: c# or cpp with unity or unreal
Game engine making and rendering: cpp with opengl/vulkan/vulkano/metal
Uhhh
Os development: assembly, hexadecimal numbers, memory management, c/cpp/rust
What else
Discord bots: c#
websites: JS, CSS and HTML
Right
JS also works
The internet exists
lmao
And python
What was the other popular API
Godot?
Graphics API like opengl
ohhh that
Uhhh... This will drive me insane
there was something for windows that I can't remember lol
Right directX
ohh yeah
The api every large company uses for some reason
Nor mac
Oh
That makes sense
Mac has a pretty comfy api tho metal is good
Anyway so uhhh i think thats enough examples
yeah true lol
Forgot to mention vulkano is not an api technically its a wrapper for vulkan for rust and rust only
Thanks a lot @orchid frigate
Anyway, time to flex again. I got free adobe creative cloud for 3 years from school 😎
time to become a youtuber
because I have premiere pro
damn
And damn this virus sucks
it really does
What does it include
Thankfully I have not been sick in like 2 years so I haven't personally experienced being sick with it but I know it really sucks
Wrong reply...close enough
All adobe software
Daaaamn
it is a very expensive subscription if I wouldn't have gotten it for free
i would use a crappy open sourced program
Thats nice your school seems awesome
I've tried but they're just not as good as these
My IT teacher once associated programming with binary
Im wondering still if I should attend those classes
i like godot more than unity
How just how
well theoretically its true but
technically no
atleast better than someone from my brother class
explaining the difference between static and dynamic language
I flexed alot on them
First class ever with them and I said I can make an 86bit os and a virus to infect the entire school computers
i can't flex
They havent talked to me since
because the moment i do, they're gonna ask to hack someone game account or social media
lmao
bleh
....i know that
I am in software development school nowadays so I can't flex because my skills aren't that impressive to other programmers
my mom somehow thinks my brother making a static website is literally
a job worthy for a company
i mean its true but
she exaggerated it
In my school talking about programming isnt that much flexing but asking to be beat up 😔
yes
that's true true
the inferiority
You guys have software development schools? The closest we have to that in my entire country are IT classes in mathematics schools
I applied for the github education thing like 1.5 months ago. I haven't gotten email back from them but I somehow have pro version of Github now
weird
I never learned how to use github
see the thing is, programming is literally what people associate with knowing how hardware works like a printer
I probably should learn that when my pc isnt 29 km away
Yes and we basically get so much free stuff and even money if we go to those because finland needs so many new software developers
in indonesia we need more therapist
than school
imagine your mom literally not on your side because of a data the school shows her
like bish
i can drop that whole table
and you'd be clueless
That sounds cool af
(pun included)
The actual school system suck
At this point im not even sure thats the problem
it really does yeah
I think its just really hard for it to change
Here we have schools but near to none kids to attend them
So even if it was different things would still be the same
Here we have schools but not teacher
Thats also a problem
It's the same problem in the hospitals
Yea thats true but we are getting kinda off topic
🤏
0
still can't decode @wet girder
Something something something null

Pretty sure 0x00000 is null
not the top priority for amp atm ngl. I have so much stuff to fix that it might take awhile
ok thank you

something in AMP encrypting map files does not work so worldbox gives that error
Using unity already. But my biggest achievement is a moving cube :D
it really fuckin does xdd
i cant smell anything now
you read the results of brain melt
we're doing a 7 day 70h course
machine learning
it's driving me nuts
im trying to do FastAPI alongside it too
so its like
i code literally all day
over ten hours
Haven't coded in 3 weeks because of this darn virus
Wanna switch places
I tried smelling dog food which i can usually smell quite well
Nothing
Like im smelling ocean rocks
rip
it messes with your taste too
at least now i know that smell plays a pretty big role
kek
imagine getting a virus in 2021
-19
Its pretty small you may have not heard of it
I have
Pretty small virus
Anyway so code

@barren shale remind me to learn how to use github in 5 days
And if you ask why should you remind me its because you good boi
👍
im not ur phone dude

Lmao
Are you sure?
How's the work with engine going
what engine
Hengine
C# or Java

C# is a p5.js copy
and its done
Java one will never be done
im actually using the C# one for some things
its pretty good
opengl
for both
opentk for C#
which is opengl
with everything ready for you

Opengl has a wrapper for java?
its only the initializing stuff
and the loop
things i couldve wrote without looking at documents
Ok ok but real talk vulkan is more popular then I thought
Ps5 uses it
Unreal engine unity
I always thought it wasn't very largely used
Windows still uses direct2D like cavemen
Oh no 11 uses directX 12 ultimate
I guess thats an improvement
lets use opengl to draw windows UI
with 10000 fps
sounds good
and unpractical
like anything you say
I did it
You say it like people dont use vulkan nowdays

if windows used the CPU to draw its UI none would care
it would probably be fast enough
fast enough
i've been drawing squares and circles with the cpu my whole life
If it uses cpu to render my os would be faster
Yes but are you saying prioritize cpu or just use cpu if needed
It does
since it has very low requirements
yes
but if we are rendering 20 squares
fps will be the same
How do we always end up having the stupidest arguments
We should be more friendly
I will start
I respect your opinion
i dont
Even if i don't fully agree with it
You know what
C# is good
And making an os is unpractical
How bout that
What you gonna say now
Nothing thats what I thought
Anyone know how should I go on learning c# in unity. I kimd of know how code works but I dont know eny code languages well
learn C# then learn unity
probably should go at least a couple of months with C# before jumping into unity
or else you will be like haydot
im doing a total rebrand of one of my projects...
and its more expensive than building the project originally was
welcome to the "hamza is annoying so i blocked him" club
taking an ap compsci test tmr 🙏 wish me luck
I don’t know how to code, but I think it’s cool when people can
respectable
Lol thanks
i myself just started to learn how to code but my class teaches html and css first then construct 2 into unity no c# at all lol wish me luck
I learned how to do math, and say hello world in python, so I’m super cool 😎
noice
so apparently
last night there was an outage
thankfully my rpi doesn't get corrupted
Help me
Help me
I want to know how to give traits to human in mobile with TXT or other methods as I can't edit /manipulate game mechanics because dev has done a bit of work so we can't easily edit world files
But I managed to edit them 😃
And when I ran that world it goes same again 😅
And I want to learn a language too
It is when I renamed extension to TXT of wbox file
And I'm on android (not Kali Linux) so it's hard so tell some working method or I'll have to try myself for streight 10 hrs
How did you edit the world file?
#🔁map-conversion makes map files so I have some knowledge how making and editing map files works for worldbox
Thx
Well I actually want to give human many positive traits and also edit his level heahth , speed , attack and stuff
But I'm on android
If I was on pc
I would already have hacked in area 51
See the language
It's just encrypted bits, the text editor can't understand it
You can use the traiteditor in @bitter sedge tho
~traiteditor
Sending trait guide to DMs!
The decryption and encryption are just unnecessarily hard to do on phone so I'd just use premade tools like @bitter sedge has.
Yea good luck hacking into a private network lul
ur mum
Nice good luck.
History is filled with examples of why you can't stop a determined attacker.
There will always be a way in.
But, just because you can, doesn't mean you should also has lot of support.
Its also too much work for nothing imo
Like what will you get
Pictures of aliens?
lol
you get secert weapons research
you sell it to china
and you become the richest man
bonus: you get a lot of social credit
I prefer aliens
E
Hi guys
Hi
Hi
Hi
are ya from finland
ye I am
It's an unnumbered military base that had them.
They communicate via pigeons.
And use this cryptic language called "English" to talk.
As an alien I disagree
We communicate through vibrations in the 69th dimension and talk in Arabic
O_O
Naturally
and ur mum is fat
mov bx, msg
call print_str
jmp $
msg: db '3 weeks no programming wooo :(', 0

@orchid frigate you're still blocking hamza right?
No
If I block him this chat will be dead 100% of the time
The things I have to do to keep this chat living
😔
lol
No
Ur mom
Can't even make a company more successful then Microsoft smh
mov bx, urmom
call print_str
jmp $
print_str:
pusha
char_loop:
mov al, [bx]
cmp al, 0
jne print_char
popa
ret
print_char:
mov ah, 0x0e
int 0x10
add bx, 1
jmp char_loop
urmom: db 'Hamza, ur mom lol', 0
@barren shale
The ultimate urmom is here
Hmm what language
Seems java
The urmom language (can't tell if it's a serious question so ima just answer also truly, it's assembly)
(16 bit with bios interupts)
You don't need to learn it
Unless you gonna go really low level
Which I would suggest you don't as its useless info nowdays
dont ping me with assembly code please
[bits 16]
[org 0x7c00]
mov bp, 0x9000
mov sp, bp
mov bx, ok
call print_str
jmp $
ok: db 'ok', 0
print_str:
pusha
char_loop:
mov al, [bx]
cmp al, 0
jne print_char
popa
ret
char_loop:
mov bx, 0x0e
int 0x10
add bx, 1
jmp char_loop
times 510-($-$$) db 0
dw 0xaa55
@barren shale
🤢
haydot the god of wasting time
haydot 10 years from now asking why there's no job for an assembly developer be like 
Have you got nothing better to do other then insult people for no reason and call other people's hobbies wasting time
chad hamza not even needing to search for a job cuz there's a lot of companies searching for .NET developers be like 
well dota 2 has a very long queue time
so i have like 10 mins to insult people
Go ahead then
ur mum
Cool
What
ur fat mum
Cooler






