#⌨coders-cave
1 messages · Page 57 of 1
That's must be hard
well its taking days
Best language to learn
is brainfuck
Python I guess
Ok thanks
No problem
Yeah
brainf*ck is good
false. malbolge better
you cant call yourself a programmer if you dont know malbolge
Where should u go to suggest stuff for the game?
you can also try c++ :)
c++ is just hard for beginners
C seems is great
And you can works down to learn python
Or probably it's C# or Just C
I've been learning a bit of Unity but I don't like it much. I think I am just gonna learn to make game engine in c++ because I've had way more fun with that than unity
It's just even harder than c++
If you want to start with c family language C# would probably be the best
Honestly yeah
Depends on what you wanna do in the programming world. Whether you wanna develop games, build websites, make software, etc. there is a variety to learn and suffer from.
exactly
suffering is the best thing we like to experience
mainly finding why your code doesn't work
And I'm already experiencing it in my digital art learning.
i can draw digitally

its a pain but atleast you have layers than in real life
where everything is just 1 layer
Yep.
Anyone else here use godot?
it seems like a good engine but nope atleast not me
What is godot
open source game engine

Bugs bunny
except when we use a thing called
UI with hardware renderer

since most of the time the gpu of your phone is used less
i have had such an awful time with opengl c++ its amazing im still trying
in 2 days
i have been fixing linking errors 90%of the time
the 10% was coding and fixing more errors
nice try ministry of education
but you cant stop me
vPn
i think my ip got blocked


Rei not me
anyone but ihaydot
what language is it in
C#
perfect
no you sux

im blocking you but before that tell me how to render models in glad and glfw and give me some source code

look im currently angry at him for not letting me finsih his project if he gets arrested and killed
and i have been fixing linking issues all day long for the past 2 days
jAvA
oh
oh
well
im not gonna block you but you still nub
i watched a guy who made minecraft without collision in 12 hours on opengl
madlad
the most i can do in 12 hours is get a window opened and render an orange triangle

stop laughing its not funny 

I love Tom Scott's stuff way too much so I'm definitely subscribing
Good for you then
i wanna be tom scott

Tom scott tends to overexplain and I like it.
even though he simplify stuff
whats the error
Here
is this company name or company_name
company name
I just forgot I can't do that
do companyName
or _companyName
or CompanyName
depends on how you like it
companyName is the most used in python i think
who uses this
Idk
or company_name
wait can you not do that in python
welp gotta add that to the list why i dont like python
python naming style is
snake case for variables
and PascalCase for classes
class PascalCase:
snake_case = 1

Interesting🤔
I use snake case everywhere
_companyName is used in C# for private fields
i use companyName
its preference
tbh
you can
he had company name
without the _
oh
private variable in python starts with _
but a hidden one is __
although its not very hidden but it marks that "dont mess with this or you die"

Why don't languages just use the accessibility keywords like c# at the start of the var/function
So much easier to understand
You got to check this out. The fruit of my hard work for 2 days.
quick information
Yesz
your file has some weird bytes in it
on the last line
@mental jacinth i suggest using this print("CEO", ceo)
Oh yes thanks
its equivalent to "CEO " + ceo
also on everything
all the print

just remove the extra space on the string and then replace + with ,
@desert falcon @mental jacinth @orchid heart
Here we can talk about codin for real
ello
is java harder than python?
hmm
But by very little
Is much harder than python
No
Once I made a joke about it
I know c# which is basically java
hmm
And it's not that hard
is jscript and java different
The hardest language I know to make programs in is rust
Very different
most people use java for discord bot coing right?
For game development
or is it somthing else
people uses jscript to make web
page
Minecraft was made in a game development library in java
?
Game engine*
hm
ohhh
I found my joke
really
hmm
And it's the absolute most difficult thing I have done to date
The thing is
To create a game engine
i woul imagine, yes..
You must know either openGL or directX
Game engine is hard
Both of which are hard af
I just smoll project to the success
my comp cant even handle minecraft that much so i dunno 
i know direct x it is, is a collection of application programming interfaces (APIs) for handling tasks related to multimedia, especially game programming and video, on Microsoft platforms. Originally, the names of these APIs all began with "Direct", such as Direct3D, DirectDraw, DirectMusic, DirectPlay, DirectSound, and so forth. The name DirectX was coined as a shorthand term for all of these APIs (the X standing in for the particular API names) and soon became the name of the collection. When Microsoft later set out to develop a gaming console, the X was used as the basis of the name Xbox to indicate that the console was based on DirectX technology.[2] The X initial has been carried forward in the naming of APIs designed for the Xbox such as XInput and the Cross-platform Audio Creation Tool (XACT), while the DirectX pattern has been continued for Windows APIs such as Direct2D and DirectWrite.
Direct3D (the 3D graphics API within DirectX) is widely used in the development of video games for Microsoft Windows and the Xbox line of consoles. Direct3D is also used by other software applications for visualization and graphics tasks such as CAD/CAM engineering. As Direct3D is the most widely publicized component of DirectX, it is common to see the names "DirectX" and "Direct3D" used interchangeably.
Also if anyone is interested in game development or even game engines
Highly recommended c++
No
is it right ?
Java hard
e
Look at rust
JavaScript easy
The tell me java is hard
A programming language
do you know what jscript is or java script
Irony Oxide
Similar to c++
Kinda
Even tho I don't find it remotely similar but people say so
The cool thing about it is it uses vars
p1 {
font-family: 'helvetica neue', helvetica, sans-serif;
letter-spacing: 1px;
text-transform: uppercase;
text-align: center;
border: 2px solid rgba(0,0,200,0.6);
background: rgba(0,0,200,0.3);
color: rgba(0,0,200,0.6);
box-shadow: 1px 1px 2px rgba(0,0,200,0.4);
border-radius: 10px;
padding: 3px 10px;
display: inline-block;
cursor: pointer;
}
hm
For datatypes
its an example of jscript
hmm
oh
I wonder rgba
What is
I never learned JavaScript much
Python is my main thing
hmm
rgba is an colour format
use std::fs::File;
use std::io::Read;
use std::fs::OpenOptions;
use std::io::{stdin, stdout, Write};
fn create_file(name1: String){
let mut file1 = std::fs::File::create(name1).expect("Create failed");
}
fn open_file(path: String){
let mut file = OpenOptions::new()
.write(true)
.append(true)
.open(path)
.unwrap();
}
fn get_input() -> String{
let mut input = String::new();
println!("bruh ");
let _ = stdout().flush();
stdin().read_line(&mut input).expect("Somethijg went eong lul");
if let Some('\r')=input.chars().next_back(){
input.pop();
}
if let Some('\n')=input.chars().next_back(){
input.pop();
}
return input;
println!("input");
}
fn write_to_file(input: &str, file: &str){
write!(file, "{}", input.to_string());
}
fn read_from_file(path: &str) -> String{
let mut content = std::fs::read_to_string(path).expect("read failed");
return content;
}
fn main(){
let mut name: &str = "Data.txt";
if std::fs::metadata(&mut name).is_ok(){
open_file(name.to_string());
} else{
create_file(name.to_string());
open_file(name.to_string());
}
write_to_file(get_input(), name);
println!("{}", read_from_file(name.to_string()));
}
oof that spelling
Example of rust
Ahh
hmm
That's kinda hard
oh
that error text is sus
Seems complex
Codees cave?
do anyone know about c++
What is this about?
Me
What is this about?
Coding
Sorry for my lag
C++ (/ˌsiːˌplʌsˈplʌs/) is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes". The language has expanded significantly over time, and modern C++ now has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Oracle, and IBM, so it is available on many platforms.[9]
C++ was designed with an orientation toward system programming and embedded, resource-constrained software and large systems, with performance, efficiency, and flexibility of use as its design highlights.[10] C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applications,[10] including desktop applications, video games, servers (e.g. e-commerce, web search, or databases), and performance-critical applications (e.g. telephone switches or space probes).[11]
its hard for me
what do you think...
I know c# so it was very simple to get into it for me
I learned the basics in likr
2 days
oh
css is related to html right?
dunno i think
hmm
Wow this place is not for me
nyeh
I'm pretty proud of that rust program tho
Took me an entire day to finish it
Even tho it's kinda useless
And doesn't eork
HTML stands for Hyper Text Markup Language and it is the language which is used to define the structure of a web page. HTML is used along with CSS and Java script to design web pages. HTML is the basic building block of a website. It has different attributes and elements with different properties.Each element has a opening and a closing tag. We can also add images by the help of HTML.
and css is ,CSS stands for Cascading Style Sheets and it is used to style web documents. It is used to provide the background color and is also used for styling. It can also be used to style the font and change its size. We can also style many different web pages with the same specifications by the help of CSS. CSS is also recommended by World Wide Web Consortium (W3C). It can also be used along with HTML and Java script to design web pages.
Some errors I'm not fixing
I need to fix some linking issues on c++ and opengl
is that code just supposed to open some files?
c++ is hard
Nah
cuz i cant understan anything else
how
hmm
C++ is an object-oriented programming (OOP) language
oop
But I did code alot in those.years
hmm
But c# and c ++ are similar enough
If you want to learn the c languages I would recommend you start from c#
It's the easiest
Uhhhh kinda
There are some differences i think
Try to learn c++ openGL and you will experience different levels of confusion
C++ is for more complex 3d games
so c# is technically the small brother of c++?
oof
Also wanna know the hardest programming language in the world?
i guess
why not
Malbolge () is a public domain esoteric programming language invented by Ben Olmstead in 1998, named after the eighth circle of hell in Dante's Inferno, the Malebolge. It was specifically designed to be almost impossible to use, via a counter-intuitive 'crazy operation', base-three arithmetic, and self-altering code. It builds on the difficulty ...
never heard of it
It's insanely difficult
prolly full of 1 and 0s but meh
Completely impossible.to write in
its named after dante's inferno 
1s and 0s are for binary
why is it named after a poem which depicts decent into hell..
Look at the example for hello world
The development couldn't make a program in it
yup i saw the code for hello world
They needed a machine to create a hello world program
LOLCODE is an esoteric programming language inspired by lolspeak, the language expressed in examples of the lolcat Internet meme. The language was created in 2007 by Adam Lindsay, researcher at the Computing Department of Lancaster University.The language is not clearly defined in terms of operator priorities and correct syntax, but several func...
This is amazing
I would learn it ngl
lmao

LOLCODE doesn't have much to it
.
this is css
rgba means Red Green Blue Alpha iirc
same

after fighting with the moe for several days
i finally did it
i think they changed the website because of me
limited the amount of requests per ip
because at the start it wasnt like that
anyways we won boys

When you get killed call me and give me your project for Minecraft 2D 😳
i dont even have it right now
Ow god
Use a vpn connection
Nobody will ever know 
im thinking of streaming some coding here as im kinda tired of doing it alone
so would anyone here watch it?
c++ with glfw and glad
i might do it now, later or never idk
eh lets start now even if i dont have a ton of time
sadly didnt make it
i wanna see some bad coding

depends on the time you do it? If it's day for me and I'm available that time then ofc
oh well then get ready for a treat
we have all the bad coding
ima do it now again
I got bonus and a nice adatuded
basically whenever i code i will stream it
might be during the night might be in the middle f the day
just ping me anytime you'll stream 
@wet girder stream pog
It's weird to see coding without hearing music because I always listen to music shen I code and otherwise I'll get nothing done
Also it's too zoomed out for me to be able to read on phone
Hmmm I don't remember if you could zoom in in vs
just do control+plus I think
way better, thanks
I gotta go now as it's way too late and I need to wake early tomorrow because I need to do some stuff in the morning
Alright thanks for tuning in
Goodnight
Hamza where did you go
I made a window without having to spend 50 minutes on fixing errors
It's amazing
just when i thought things were going great i get no triangle
here is some code try to fix it if you want but im going to sleep https://pastebin.com/s2ixFHQm
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.
nvm i got it working
i feel powerful
yes
very chad move
i know
the problem was that i was creating a vao at the end
before the enablevertexattribarray call
and that was bad i guess
interesting 
now i get cool triangle
is it a triangle or an empty space in the shape of a triangle 
its you fat ass mama
:(
its pixels
so neither i guess
wait
an empty space with the shape of a triangle is still a triangle
in terms of shapes
now im confused
Is The Triangle like vector or pixels?

Hamza you joined and it stopped working what did you do >:(
What how
Hamza why did my visual studio stop working @barren shale >:(
hax
You got alot of explanations to do
Chad moment
Do you see any errors tho
Because I no longer get fancy triangle
Ah there we go
I'm happy again :)
@barren shale when I'm using an ebo should I have a vbo
Now that I think about it I should
Couse otherwise it's not gonna know where to put the vertecies
I'm just watching this to learn how to actually make game engines https://www.youtube.com/playlist?list=PLlrATfBNZ98dC-V-N3m0Go4deliWHPFwT
My pc is lagging so hard because of the stream
lol
Hamza confuse
yes
i gotta ban you now for advertissing this
Ill be back in a bit
It's just a rick roll website 
downloading ram is possible
or something called cloud ram
but its slower than normal ram
MIGHT AS WELL USE THE HARDDISK

links works i checked now i got 69420 ram

cloud ram isnt slower than normal ram
and its used when you need a huge amount of ram
like 1 tb of ram
for machine learning stuff
it just has a latency
but that doesnt make it slower
AI workstations are usually around 40k$
that's why renting ones on the cloud is much cheaper
me acting like my question was answered : yes i agree and i totally understand everything you say
@orchid frigate nubstream when
Programmers of Bangladeshi government in a nutshell
amogus
im currently learning and reading about opengl so i dont think it will be that exciting
Can you believe this is a government website
This
what
fr?
Fr?
for real?
Yes
amogus government
This is a portal for teachers to schedule the online classes
iMaGiNe LeArNiNg
what a nub
But they somehow errored it
sigh
:0
Yes
world hunger no more
im trying to learn opengl so that i can defeat you
and then kil you
in robux simulator
join vc

for asmr
yea nor were computer programs
@barren shale come on
join the vc
do you like the asmr
im not talking now
because you didnt say if you liked it

Looking for mistakes
What about this

Hell yeah
https://youtu.be/GE-qEDjUJYY
👉 https://www.whitehouse.gov/briefing-room/statements-releases/2021/07/09/fact-sheet-executive-order-on-promoting-competition-in-the-american-economy/
🔵 IRP program: https://www.youtube.com/watch?v=rwgpTDluufY
🔵 IRP program: https://www.reddit.com/r/RealTesla/comments/ith4va/tesla_detects_unauthorized_modifications_after/g5g3vip?utm_source=share...
@barren shale :)
https://youtu.be/Aa55RKWZxxI
wow😄
He hates oracle
I bet he enjoys python
C# is best
We all nerd
yep
😳
😳
001001
still not as good as malbolge
not as good as physics making things work
not as good as brainfuck

and then
the best of the best
the one language
that makes every other language look like a joke
LOLCODE is an esoteric programming language inspired by lolspeak, the language expressed in examples of the lolcat Internet meme. The language was created in 2007 by Adam Lindsay, researcher at the Computing Department of Lancaster University.The language is not clearly defined in terms of operator priorities and correct syntax, but several func...
do you hate me daddy 
pls no
Assembly
c++ is pog
ha
gtfo
im gonna make a password generator
should i live stream ?
later today
in C#
im not watching then
bruh
i will make a cpp spam bot and make it spam you with cpp better
just to prove a point
C# GANG
Hamzah enjoyer
Hamza hater: 
Average Hamza enjoyer: 
Yeah exactly
i dont agree
hamza haters are chad because they like cpp and not c#
wha-
C# good
cpp better
cout << "This is better" << endl;
Console.WriteLine("Then this");
c# more like
C okay language but still bad because cpp better
hamza vc1
1v1 me coding
les go

actually vc4
while we wait can we talk about the fact vs 2022 is just a copy paste of 2019
i will not stop until cpp is best
i can hug you virtually
and im a real human
i have complex emotion

i can even listen to your problems
i can code a bot to listen to my problems and tell me to man up
that's not how things work-
if that how it works
nobody would have mental health problems

well it worked up to this
and i swear i am going to lose my mind because of orange
Why would this matter tho
jupe
ban orange for abuse
of power
he server muted me
:(
and defen
and sent me into a different country

actually
the sun is not orange
unless its in its red giant phase

it looks orange so it must be orange
plus orange orange came wayyy after universe and sun
I also did
the universe was a soup of quarks
wha-
and pixels if we in simulation
of course-
some pixels are orange => orange came before orange orange
password generator in like 5 mins
look up
i havent said anything
why would i
because im so much better
code minecraft 2d on stream or i have beaten you
ok
forfeit then
thats fine by me
yea
:(
i will draw it
cute little password generator 


Average language debater: 
Average language enjoyer: 
average malbolge hater: 
average malbolge enjoyer:
tbh that is true, i do complain alot about how incredibly stupid glfw with glad is
im fixing the 1000 EBO mistake at this point
but atleast i got em workking kinda not really
You don't need ebi
easy local password generator
done
ofc i do 
Oh man
i mean why wouldnt i
Yeah
the master password isnt stored at all so even if your computer got hacked your passwords are safe
because decryption just throws an error if the master password is wrong
and even if it didnt
the passwords youd get would be wrong
Congratulations
i do
you said yourself that sprites are just blox with textures
to make blox i need ebo
you copy pasted code so you wouldnt know smh my head
plus you did legacy
how tf does this
get translated to this
oh wait wrong file
brb
i tried to create a rectangle and created a triangle instead
these are wrong
that's why the cube is fucked
these are very wrong

you suck so bad

you copy pasted the code so much that you memorized it
i rewrited my own code so much that i memorised it
you fixed this ?
the first one should be 0.5f, 0.5f, 0.0f
i have been accepted in one of the best schools in town
2nd or third best
so thats pog
how does that make sense
show
one of the vertecies is on 0/0 for some reason
try
-0.5f, 0.5f, 0.0f,
0.5f, 0.5f, 0.0f,
0.5f, -0.5f, 0.0f
-0.5f, -0.5f, 0.0f
join vc1
-0.5f, 0.5f, 0.0f,
0.5f, 0.5f, 0.0f,
0.5f, -0.5f, 0.0f
-0.5f, 0.5f, 0.0f
0.5f, 0.5f, 0.0f
-0.5f, 0.5f, 0.0f
my head hurts
from these things
dont make me download opengl for C#
and draw a rectangle in 0.12896218312098 seconds
excuses
what if i download c++ and draw a rectangle in 0.12896218312098 seconds
like you ?
yeah
i will draw this rectang;e
one day
but until then
i need to
idk what to say here
just imagine i said something dramatic and smart
like you mom ?
fAt
You know you can just report that person.
can you guys program me a new personality

!rank
You aren't ranked yet. Send some messages first, then try again.

probably already exists
@orchid frigate where did you download the files for opengl from ?
asking for a friend
@fringe river @knotty root @next venture use bot commands in #🤖bot-commands
you dont download opengl its on your pc
you download some libraries
lemme give you a link
Web generator for the Glad tool
wait these are for cpp
Also stack overflow is fucking useless nowdays
i asked why my triangle wasnt being loaded and provided source code and basically got told to get better
for some reason someone asked me why im saying
sizeof(vert); //a vector
and not
vert.size() * sizeof(vector<float>::value_type);
when they are the exact same smh my head
Stack overflow seems to be 80% shitshow 20% actually useful stuff
why would you even use the second one if they're the same. It's just more unreadable way to write the same thing
exactly
but stack overflow people say that i should be using the second one
yes this was my question thank you
its just getting its size with extra steps
where is hamza
i need to prove myself to him
he told me i wont do it
after a fucking month...
but the book said i should be using ebos
anywhere* also im still reading the book
so i cant
yes you can
how the fuck you donwload this
oh....
um...
ok...
i will do this
i think
and what about this
i downloaded it
where do i put the files
the other one
no
you said you can
that's it
i will make my own
async memcache client

some of the lib is outdated
or straight up unsupported


See you in 92 years
Ok

I'm definitely doing this when I get home
https://youtu.be/X9fSMGkjtug
ENTER TO WIN a custom Raspberry Pi (pre-built with K3s): https://bit.ly/2VHhfwt
Learn more about SUSE Rancher: https://bit.ly/3rb8Ih0
Need help with Kubernetes?? (i did) Ask Boxboat for help: https://bit.ly/3izncVB
🔎🔎the WALKTHROUGH: https://bit.ly/3xIkQbV
I built a Raspberry Pi SUPER COMPUTER using Kubernetes (k3s) and Rancher. This project ...
the creator of that video made cpp higher rank because it can be used pretty much everywhere and everything is based on it plys C. It's just OOP version of C. You can still argue that C# is better because it's easier to use and way more friendly to the developer
Cool
What can use this for tho?Like servers?
woah thats a raspberry pi cluster
Web servers mostly. It's not very useful, it's just mesnt to teach kubernetes because it's rare but needed skill
:)
me :)













