#⌨coders-cave

1 messages · Page 4 of 1

knotty root
#

aww babe 🥺

keen hollow
#

💀

ivory valve
#

~ traiteditor

#

~ traiteditor

#

~traiteditor

#

;-;

#

~

barren shale
scarlet plinth
#

best coding language?

barren shale
wet girder
orchid frigate
next lotus
#

i dont really get you guys

#

you always reply with "depends on the use case"

#

then when i ask the use case you guys would reply generic shit like "every language excels on a use case......" then 2 paragraphs of the same thing all over again

#

like bro

#

just tell me the use case

#

it doesnt matter anywhere be it discord, reddit, or facebook, always the same reply, i didnt ask for 3 paragraphs of statement i asked for a use case cmon

orchid frigate
#

But there isnt a best language

#

What assembly can do c# cant and visa versa

#

Plus its opinion based

next lotus
#

i

#

asked

#

for

#

a

#

use

#

case

#

also there are things assembly cant do

#

well uh

#

can assembly well

#

can it uh

#

uhh

orchid frigate
#

Be easy

#

No

next lotus
#

can you write hello world in one line :)))

#

yep it cant do that, c# can, therefore c# better :)))

orchid frigate
next lotus
#

alright im on my way to my microsoft bed

orchid frigate
next lotus
#

i believe it runs on ntfs

orchid frigate
#

Stupid filesystem for stupid bed ig

next lotus
#

alright lets sleep

#

good night

orchid frigate
#

Gn and remember

#

It call goes down to machine code

next lotus
#

go to sleep to your machine code bed

orchid frigate
#

I will

#

Its amazing

#

It runs on ext4

wet girder
next lotus
#

js frameworks can do that

#

there are no python, java, assembly, c++, rust and c frameworks for that

#

i can also make a game in godot/unity that runs in c#

#

c++ can do that with unreal

#

but other language dont have it

#

therefore c# best :) it has everything for anything

barren shale
#

you can use C#

#

but are you really ready for that

#

hint: you're not

#

hint 2: ive tried a lot

#

and lets say you want to get experience in android apps so you can get a job

#

dont do maui

#

because you wont find a job

#

I'd say C# is a really good language because you can do everything with it (if you're willing to sacrifice)

#

but if you want a job

#

I would choose C# if you wanna do backend and that only

#

even C# updates are a lot more focused on ASP.NET than anything else

#

if i'm not learning programming for a job any time soon i would choose C# if I want one thing that I can do a lot with

knotty root
#

Hi

#

how does software codings move hardware things?

next lotus
#

you can even train it yourself, on the backend ml.net uses tensorflow

next lotus
#

yes i said python

barren shale
#

python

#

more flexable

next lotus
#

but you can use pure c#

#

no slow

barren shale
#

if ur using tensorflow in python

#

idk why would it be slow

next lotus
#

still uses c and c++ on its libraries not even pure python lol

barren shale
#

you cant train everything on gpu

next lotus
#

no

#

well

barren shale
#

yes

#

i tried

next lotus
#

there is modelbuilder

#

but you can make a model yourself

knotty root
next lotus
#

sir this is a wendy's

#

xD i have no idea

#

that is uh

#

@orchid frigate's stuff

#

like hardware stuff idk how that works

#

maybe an api???

#

idk

knotty root
#

u guys just specialised in software?

next lotus
#

most ppl here are comsci

#

that is

#

com. eng. stuff

#

ig

barren shale
knotty root
next lotus
#

yes that means you can do much more gpu stuff

next lotus
barren shale
#

its not the model builder that locks it to cpu only

knotty root
next lotus
#

oh alr then

#

train the model on python and use it on ml.net :))

barren shale
#

why

next lotus
#

dont make me say it

#

pls

barren shale
#

go ahead

next lotus
#

sigh, you cant train gpu models on ml.net

#

ok

#

but

#

c# has bindings on tensorflow

barren shale
#

which suck

next lotus
#

so ig u can do it ther

barren shale
#

bruh think i didnt try

next lotus
#

there are 2 bindings

barren shale
#

its much easier

next lotus
#

there's one implementation at github and microsoft's ml.net

barren shale
#

i tried tesnorflow and pytorch

#

on C#

#

using python is way easier

next lotus
#

but pytorch is made for python

knotty root
#

how does a camera take pictures?

next lotus
#

tensorflow is much

#

universal

#

rip internet now

barren shale
#

pytorch is the one used by most corporations

knotty root
barren shale
#

also things like stable baselines

#

dont exist in C#

knotty root
#

how big is the internet?

next lotus
barren shale
#

does all the settings shit for u

orchid frigate
#

Also what do you mean by hardware stuff

#

Pretty much every device is different

#

And every component is different

#

But basically

#

All the code that people write in high level programming languages gets compiled into machine code

#

This is hexadecimal code

#

This code code contains the exact instructions that the cpu needs to execute

#

But how does the cpu read it?

#

All the hexadecimal code then gets turned into binary code by the processor (the 0s and 1s)

#

And now it can flip its transistors to do what it has to do

#

Computers are basically just machines with many switches

#

That get flipped all the time

#

There is also writing to ports, communication between different hardware etc but thats really complicated stuff so I wont go into detail

cloud solar
#

i need help

#

basically i wanna move a spaceship between points

#

and

#

its not working

#

lemme send the code in a sec

#
public class TutorialScene : MonoBehaviour
    {
        public float speed;
        public GameObject[] waypoints;
        public int currentWayPoint = 2;
        bool isMoving = false;
        void OnTriggerEnter2D(Collider2D col)
        {
            if(col.gameObject.CompareTag("Finish"))
            {
                SceneManager.LoadScene("MainManu"); 
            }
        }
        void Update()
        {
            if(waypoints[currentWayPoint].transform.position.x - transform.position.x < 0.01)
                {
                    isMoving = false;
                }
            else
                {
                     transform.position = Vector3.MoveTowards(transform.position,waypoints[currentWayPoint].transform.position,speed);
                }
        }
        public void changeWayPoint(int wayPointDirection)
        {
            if(isMoving == false)
            {
                isMoving = true;
                currentWayPoint += wayPointDirection;
            }
            

        }
    }
#

in unity

#

btw

#

help

#

please

knotty root
#

idk, ask someone

cloud solar
#

bruh

#

i am asking you

knotty root
#

well idk that stuff, go ask someone who knows it

cloud solar
#

💀

knotty root
cloud solar
#

can sb that actually knows how to help help me?

knotty root
cloud solar
#

if you idk coding then why not learn?

#

i mean

#

if u want to help

#

or at least chat here

#

then....

knotty root
#

nah cuz I can, others can

cloud solar
#

but i wont

#

couse its stupid

barren shale
#

have you checked that

knotty root
cloud solar
cloud solar
barren shale
cloud solar
knotty root
barren shale
#

x += speed * direction.x

#

something like this

#

direction = the magnitude of ( target vector - pos vector)

#

and before u move make sure that you're not going to over step

cloud solar
#

gonna try it

#

thanks

barren shale
#

np

#

you can check for over stepping by calculating the direction after the movement and check if its the opposite of the direction before the movement

#

if it is

#

then you overstepped

#

and if that happened you would set the pos to the target

cloud solar
#

k

orchid frigate
#

@knotty root i need help with my assembly bootloader

#

How do I intergrate ext4 filesystem drivers

#

So that I can boot the kernel through those

#

????

knotty root
#

integrate ext4 filesystem drivers so that u can boot the kernel through those

#

ez

orchid frigate
#

Show me some example code

knotty root
#

cant, my computer broke

orchid frigate
#

Well just write it on your phone

#

Also I have been writing low level code for a while now

#

But I think its time I switch things up for a while

#

Im getting bored from creating an assembler (big endian to little endian is killing me)

#

So

#

I think I wanna do some unity stuffs

#

Get my back to my roots

#

Kinda excited for this ngl

main brook
#

doesn't like

#

the bios is supposed to

#

read ext4

orchid frigate
#

When you enter 32 or 64 bit mode

main brook
#

and boot accordingly

orchid frigate
#

Bios functions no longer work

main brook
#

a

orchid frigate
main brook
#

well you can lile

orchid frigate
#

The bootloader loads the kernel

main brook
#

like

#

read like rpi

#

read the /boot/ partition

#

as fat32

orchid frigate
#

Its not that simple because

#

Where is it

#

You gotta read it

#

Sector by sector

#

For fat12 its easy

#

For ext4? Probably hard af

#

Considering how advanced it is

main brook
#

fat32

orchid frigate
#

Ah fat32

#

Yea

#

Actually

#

Its basically the same as fat12

main brook
#

just better

orchid frigate
#

But the header is kinda different

main brook
#

or the exFat

orchid frigate
#

Exfat is weird

#

Because the os dev wiki kinda treats it as its own filesystem not part of fat

#

It doesn't say alot about it

#

Recently I found out about the

#

Minecraft 20w14~ update

#

And im so fascinated by it

#

How tf it works

#

Any game devs here care to explain

main brook
#

what's with the update

orchid frigate
#

You know how Minecraft has two dimensions

#

Right

main brook
#

3

orchid frigate
#

Or 3 with the overworld

#

Well it adds 2^90 more

main brook
#

ohhh

#

you meant the

#

randomly generated dimensions

orchid frigate
#

Yea

main brook
#

ah

#

no idea either

#

but probably have to do with the seed of randomness

orchid frigate
#

The randomness part I get but somehow

main brook
#

when you drop a book

#

it'll probably read the book id

#

and use it as seed

orchid frigate
#

All of them are them are.... well you just answered it

main brook
#

or hashed object as seed

orchid frigate
#

They use the book as seed

#

That makes sense

#

Still really cool tho

#

I have been exploring dimensions all night

#

But im starting to see alot of basically the exact same places with different blocks

#

Which makes me believe this is not as random as it seems

storm panther
orchid frigate
#

alright I gave unity my best shot

#

I tried

#

but I cant

#

not for me

#

too library dependent

hazy niche
#

where do you get the mods?

next lotus
#

from stackoverflow

next lotus
#

if you cant

#

you wont survive js, where everything is a library

#

c#'s library dependencies are on a normal level tbh

knotty root
barren shale
#

what

#

library dependent

#

i mean it can be if you're bad xzibit

barren shale
#

i can give you my game base if you want

#

at the price of only 99.99$

#

best of the best

knotty root
#

can u code and program offline?

rose pawn
next lotus
barren shale
next lotus
#

is it project-wide

barren shale
#

wider than your mother

next lotus
#

whoah in that case

#

its too cheap for 99 should be a few 999$

coral gorge
#

any lua chads?

desert folio
#

Yes

#

Me

knotty root
#

What application is used to make c++ codes and programs for windows 10?

amber monolith
#

visual studio is good

knotty root
#

Ill just lesrn in yt

orchid frigate
#

This channel has long history of making fun of lua

knotty root
#

whos lua?

steady basalt
#

Lol

tame sapphire
#

lol richt

tawny carbon
#

the game program must be huge congratulations to all the developers

barren shale
rose pawn
#

A moderator of an app that i have known for 5 years has passed away im and really sad

fallow yew
wet girder
#

lua has 0 legitimate use cases

#

absolutely none

#

it's a disgrace to all programming languages

main brook
#

its embeddable

#

small

#

fast

next lotus
#

every language is embeddable

#

assembly is in all language

#

its also small

#

its as fast as your processor

eternal shale
#

Egg

barren shale
#

openai gpt-3 is now 2 to 3 times cheaper

#

did it really get that unpopular

#

or did they find out a way to make it more efficient

coral gorge
#

still luas better than

#

uhh

#

vbscript

#

if anybody even uses it

main brook
#

nobody

knotty root
#

can I sleep in a car run by autopilot?

wet girder
#

not if you're the driver

amber monolith
#

could definitely use its speed

barren shale
orchid frigate
#

The only way you could make gui with assembly is through a graphics API

#

Which is already really fast in any language

#

@main brook did you fix the laptop

barren shale
amber monolith
#

nah need the speed because python is too slow for my project

barren shale
#

if python is too slow

#

you dont know how to use python

amber monolith
#

probably not, but

#

I use as much c compiled libraries as possible

#

but some of the stuff that makes it slow is unavoidable

fallow yew
wet girder
#

Why tf would you learn with lua, embeddable was a good point from the Microsoft fanboi so lua is mostly used as a programming language in games and such

orchid frigate
#

I personally have nothing against lua

#

One of the games I really like but I dont remember which was made in lua

#

So I like it

amber monolith
#

for loops

barren shale
amber monolith
#

the for loops traversethe object arrays

#

which draw blits that move, eat stuff etc

orchid frigate
#

@amber monolith every time i see your name

#

I get reminded of

#

MacOS

#

And I read it as

#

MacOS BakOS

#

I just wanted to let you know

amber monolith
hoary hound
barren shale
hoary hound
#

sure if people want to risk their life to nap in a moving car

#

you do you

#

you are also putting other people in danger

fallow yew
naive oracle
#

/rank

fleet sparrowBOT
#

dynoError The Autoroles module is disabled in this server.

naive oracle
#

Bruh

fleet sparrowBOT
#

dynoError The Autoroles module is disabled in this server.

chrome oracle
#

I have a question

#

Is there a mod for NCMS that guarantees trait pass downs?

#

I know there is one bepinex

#

But it no longer works

hardy field
next lotus
#

whats the point

#

c and c++ compiles to assembly and it uses all tricks in the book it compiles it better that a human

orchid frigate
#

Stop saying it compiles to assembly

#

I get goosebumps every time I see it

#

It compiles to machine language

#

A disassembler is how you see the assembly

#

Plus writing straight assembly can be much faster than with a compiler because even if it optimises

#

It still makes much more code than usual

barren shale
next lotus
#

wait a second

#

machine language != assembly ???

#

what am i missing here

barren shale
#

machine code is zeros and ones

#

assembly is instructions and memory locations

orchid frigate
#

Not saying you should write gta 6 in it

orchid frigate
#

This means that
06(opcode) 00(arg1) 02 44(arg2)(machine code) == load eax 500 (example assembly)

orchid frigate
#

Not machine language

#

Srry

amber monolith
#

so does c++ compile directly into machine code

#

and so does assembly

#

i heard someone say that assembly was about as low level as it gets

#

(not actually writing it)

orchid frigate
#

everything gets compiled to machine code

#

thats what compilation is

#

assembly is as low level as human readable langauges get

#

binary is the lowest possible level of representing data

#

bit by bit

amber monolith
#

ah ok

#

i swear aswell that the reason quantum computers are so fast is that they dont use binary

#

they have 3 states instead of two i think? which means the numbers they can represent grows far more exponentially

#

is that why quantum computers are so much faster

orchid frigate
#

quantum computers are

#

a very very young technology

#

pretty much every processor is different

#

all I know is that they use qbits

#

which are somehow both states at the same time

#

using quantum physics

glacial fulcrum
#

Пон

main brook
#

qbits can be represented as

#

0,1, 1/0

#

1/0 is the interesting part here

junior crescent
#

E e e e e e e e

knotty root
#

can a potato pc run a super advance ai that can feel emotions like humans do?

wet girder
#

when did this channel become this

knotty root
next lotus
#

this only started when u came in lol

next lotus
#

but that potato pc will take forever

knotty root
next lotus
#

no you can be the kitten bring back the felix pfp

knotty root
#

noh I like paper planes more

knotty root
orchid frigate
#

@knotty root i wanna be your discord kitten<3

knotty root
orchid frigate
#

Nerdy!?!?

#

You lost me my guy

#

Only way to repay yourself would be with nitro

#

Or

#

Just money

knotty root
orchid frigate
#

I was gonna ask you the same thing

#

What you doin in my chat

knotty root
#

idk I can just access it

orchid frigate
#

I can make it so that you cant

#

💀 🚶‍♂️

knotty root
#

im breaking up w u

orchid frigate
#

Hahaha

#

You thibk yoy have a choice with that

#

I decide when you can break up with me

knotty root
#

nah im going now byee

orchid frigate
#

Wait that illigal

#

If yoy leave me

#

I will leave you

#

🚶‍♂️

knotty root
#

byeeee then

orchid frigate
#

No you cant

#

Thats not how this works

#

Dont you understand

#

You are breaking the rules

knotty root
#

were def breaking up, ur very manipulative

orchid frigate
#

Exactly

#

Why arent you getting manipulated

#

Get manipulated

fallen vessel
#

101110010110111000010000010110011001010010101

knotty root
orchid frigate
#

Your two favourite things 🚶‍♂️

#

Also

knotty root
#

nope

orchid frigate
#

You cant leave me because

#

Im higher rank so you have to listen to me

#

Also

#

@knotty root

knotty root
orchid frigate
#

Anyway

#

As I said

#

You cant leave

wet girder
#

I'm gonna be graduating a year earlier than planned and now I'm stressing out because idk where I want to study after vocational school

#

I know I want to get a higher education

#

but I'm having doubts about every single choice

knotty root
main brook
#

considering you want it to explode

#

yes

orchid frigate
#

But it would most likely just completely freeze afterwords

main brook
#

i like how

#

like

#

when computer freezes

#

its components are hot

#

which is ironic

orchid frigate
#

I swear im just going from app to app

#

Trying to figure out what to do for four hous

#

And yoy always end up typing right as I enter this chay

#

How

orchid frigate
#

Hottening

#

My computer is hotted

#

It doesn't do anything

main brook
#

maybe

#

should be stuck

#

because it relates real life

#

if you're stuck

#

there's something hot inside you

#

inside the case

#

if you know

#

you know

orchid frigate
#

I dont

#

I dont get the translation to real life

main brook
#

help me stepbro

#

that reference

orchid frigate
#

...

#

I mean

#

Its a good name but for all the wrong reasons

main brook
#

yes

orchid frigate
#

I was more thinking like

#

Idk

#

A hot brain

#

When your stressed

#

Your brain oberworks

#

So it just kinda gets hot

#

And like the cpu also gets hot

#

And a cpu is kinda a brain

#

In a way

#

If a computer was a human

#

What would its hardware be translated to human parts

main brook
#

probably the brain sections

#

which for short term

#

and long term memory

#

eyes for camera

#

ears for microphone

#

limbs for utilities

#

vocal cord for speaker

#

heart for its time clock

#

lungs for regulating temperature

orchid frigate
main brook
#

yes

#

which is in some brain parts

orchid frigate
#

I was surprised to learn that

#

Windows still uses this shit

#

It sucks

main brook
#

yes

#

but like i was thinking it was for

#

water cooling

orchid frigate
#

Idk im thinking the heart is more

#

Power supply

#

Or motherboard

main brook
#

motherboard would be again

orchid frigate
#

And the legs are the little wheels that cost 700$ on macs

main brook
#

some brain parts

slim dirge
#

rate the pc build

#

The total cost was around 170 dollars and I don’t play much games outside of roblox

#

the farthest I go is probably gta 5 performance wise

#

so

#

gtx 660 for 50 bucks

#

i5-4590t for free my friend gave me

#

16 gigs of ram for 19 bucks

#

ddr3 to be specific

#

750 watts for 33 bucks

#

67 dollar mid tower case that came with 6 pre installed fans and can hold 8 fans

#

12 dollars cpu fan cooler

#

using hdd for storage will get ssd as soon as possible

#

and the motherboard was 10-19 bucks

#

lga1150 btw

#

what do you guys think

main brook
#

what the fuck

#

what is this sorcery

#

for $170

#

at most without the gpu

#

its like

#

$300

#

and with gpu its $600

#

or less

#

talk about different region

#

and different prices

slim dirge
#

I live in america

#

and I got it from eBay

barren shale
#

if you live in america you should be able to afford better

#

just a couple of months of part time job should get you a top tier computer

wide dirge
#

r

#

he

#

saw the ship

#

they use the ship

#

scotland

barren shale
#

@wide dirge you dont get xp for spamming

#

you only get a ban

knotty root
#

I'm surprised nobody did /report on him for sending 113 consecutive messages in a row without interruption

clever gazelle
#

lmfao

half warrenBOT
#

⚠ Warned TalkingBen#8830

knotty root
#

unfortunately

#

it always has though

wide dirge
#

Brooo

#

no way

slim dirge
#

and I can’t drive alone yet

slim dirge
amber monolith
#

people underestimate the free time they get

#

like u only need 6 hours sleep

#

7-8 hours school

#

4 hours work

#

rest go drinking or whatever

#

Fits in very comfortably

barren shale
#

as a teenager u shouldnt sleep only 6 hours

#

and its different from one person to another

slim dirge
#

^

#

plus I’m a band kid

#

so I get like 2 hours of free time

main brook
#

starts at 6:30

#

ends at 17:00

#

and there's homeworks

peak shadow
#

D

orchid frigate
orchid frigate
#

You bet I'm either not doing homework

#

Or doing it at school

main brook
#

everyone does it at school

orchid frigate
#

I aint spending 12 hours a day for school

main brook
#

i joined 3 extracurricular

#

so i go home at 5pm everyday until Friday

#

school is okay

#

but it has a computer lab

#

with a fuckin rgb setup

#

is it for a test or gaming

#

headphones rgb

#

mouse rgb

#

even keyboard

#

like what

#

school is weird

#

but also termux usually fills my free time

#

in school

orchid frigate
#

For me the less time I spend in school

#

The better

orchid frigate
#

I usually do cmatrix

#

Put in under my desk until someone notices

#

And I tell them I'm hacking the school

amber monolith
#

still

#

U still got 6 hours free time

#

If you sleep for 8 hours

barren shale
rose pawn
#

@main brook remember that one web scraper code you helped me make

#

Dev of that website told me to not use it anymore

#

Because it slowed down the page

#

Goodbye scraper script 😦

#

😦

#

"=("

barren shale
#

bro one scraper is slowing their website

#

what kind of shitty server is that

#

I made a scraper that scraped the results of 200 students per second from the shitty ministry of education website

#

and they didnt do shit

orchid frigate
#

I can chug 10 shots of vodka without passing out

#

Before ypu ask

#

I have tested it

#

What else...

#

Im quite caffeine resistant

#

Once again tested

barren shale
#

i am

#

a person who doesnt care

orchid frigate
#

You are

#

Cool?

orchid frigate
#

Anyway

#

But you wanted a contest

#

:(

amber monolith
#

🏴󠁧󠁢󠁥󠁮󠁧󠁿

orchid frigate
#

Did I say those were the mains

#

Thats just the appetizers in the Balkans

#

To get you warmed up for the main course

slim dirge
#

in the Midwest in america thats what you drink at work

#

no main course

barren shale
#

drinking is the most cringe shit imo

orchid frigate
#

The best alcoholic is the one that is able to be physically sober but mentally drunk

#

So you arent dangerous to the ones around you but you have a great spirit

barren shale
#

the best alcholic is still a cringe person

orchid frigate
#

Well your clearly fun at parties

#

Whats your representation of a great spirit

tidal elbow
#

any of yall used remix.run?

#

we're using it now for a remote device management software and it's awesome

amber monolith
#

although i question some of my friends sometimes

main brook
#

above 5pm there's no work

#

but technically yes

#

free time

#

to do homeworks

#

usually 3 in a day

#

not to mention practices

amber monolith
main brook
#

good for you

#

i only have recess

#

which is only 1 hour 30 minute

#

divided by 2

#

plus a pray group for 30 minute

amber monolith
#

That sucks

main brook
#

yes

#

it is

amber monolith
#

how do you have any time to play football or anything at lunch etc?

#

45 minutes is piss

slim dirge
#

ok so

#

I decided to get myself a better cpu

#

but stay with 8 gigs of ram

#

from 4590t to 4590

#

a whole 1.3 ghz increase

#

unbelievable

#

well believable

orchid frigate
#

Bad mistake

#

8 gigs is hell

#

I know that because im 8 gigs

barren shale
#

ram is really cheap

#

but if you dont have a decent cpu i dont see why you would need 16 so yeah 8 is alright

barren shale
next lotus
#

i can barely survive on 12gb

#

i run youtube, spotify, adobe photoshop, vs 2022, discord and task manager

#

its the things

#

u run

barren shale
#

why would you run youtube and spotify at the same time

#

you're just stupid

orchid frigate
#

Because

#

Im not about to save my ram every time im using my pc

#

Im not using it just for work

barren shale
orchid frigate
#

I also play games on it

#

Alot

#

Ram is easily the most important thing you need

#

Even a gpu doesnt matter as much

barren shale
#

depends

orchid frigate
#

For every day use

barren shale
#

ofc the gpu doesnt matter for everyday use

#

but also 8 gb of ram is good enough for every day use

orchid frigate
#

Yea if every day use is not playing games

barren shale
#

every day use means normie stuff

orchid frigate
#

But I bet 99% of people here use their pc for that

barren shale
#

like browsing

#

listening to music

orchid frigate
#

The majority plays games

barren shale
#

trust me

#

no

orchid frigate
#

Wdym no

barren shale
#

in countries like the us

#

everyone has a computer

#

most of them rarely play games

#

you can tell because they have a mac

orchid frigate
#

💀

#

I guess your target audience matters

#

Macs are like

#

Why would you buy a mac

#

And not just do windows with linux in dual boot

#

Basically the same thing

barren shale
#

i mean the new macs

#

are worth it

#

really good price

#

for a really good laptop

#

the M1 beats all the laptops at its price point

orchid frigate
#

Idk the fact you have no control over it

barren shale
#

and its not even close

orchid frigate
#

Makes it kinea

#

Eh

barren shale
#

why would

#

people care

#

99.99% dont care

orchid frigate
#

They ma change their mind

barren shale
#
  • you can always jail break
orchid frigate
#

And start caring

barren shale
#

and if they dont change their mind

#

they wouldve wasted 1000$ to get a laptop of the same power

#

probably worse

orchid frigate
#

We are talking like macs marking team

#

Lets talk like a user

#

"hi im joe and I have no idea how computers work but steve at work told me macs are good so I bought one in happy with it"

#

Damn so macs are good

next lotus
#

while watching youtube

#

spotify is only audio, yt runs an entire video

barren shale
#

so you watch youtube videos

#

without audio

next lotus
#

drawing tutorials?

cobalt bay
#

guys

#

wait

#

isnt this for code?

barren shale
next lotus
#

yes

next lotus
#

everything is

#

code related

#

discord is running of code

#

so liek

#

when u send message here

#

its always related to this channel

barren shale
#

your mum isnt code related though

#

or is she?

fierce inlet
barren shale
orchid frigate
#

Actually

#

Correct

midnight sun
#

Noice

main brook
#

i play volleyball

#

and its after school

#

its a club

main brook
#

aka DINAS PENDIDIKAN

wanton veldt
tame nest
#

Game

heady oak
amber monolith
amber monolith
orchid frigate
#

I have never played rugby

#

But it sounds like a fun sport

#

I also play volleyball its really cool

main brook
#

we won the state contest

#

actually 2nd place

main brook
#

because Indonesia

#

you see many kids play football in the street 24/7

old mural
#

What language is worldbox coded on

orchid frigate
#

C-

#

Nah c--

#

Search it up its a real thing

next lotus
#

i believe worldbox is in machine code

#

everything is machine code

main brook
#

atoms

amber monolith
#

Quarks

orchid frigate
#

What if

#

Quarks are assembly

#

Atoms are C

#

And molecules are rust (because they are obviously superior)

amber monolith
#

Then python is the universe 🥰

barren shale
#

and your mum is ||fat||

orchid frigate
#

@main brook remember our conversation about filesystems

#

I decided to make iso9660 drivers only for now

#

because im gonna be booting from iso anyway

#

so yea little update

#

this filesystem strange af

#

it only uses uppercase

main brook
#

what

#

that reminds me of windows tbh

#

sometimes making a folder to an external drive

#

it forces all caps

#

for files and folders

knotty root
#

can constantly evolving robots invent teleportation and time travel themselves?

fierce inlet
glossy flicker
#

wow their mom is pretty cool

patent bramble
#

translate: did you just learn the stupid word?

orchid frigate
#

What word

#

Mom?

#

Yea @barren shale did you just learn about m@m

knotty root
barren shale
knotty root
orchid frigate
hot ingot
#

Settings+multiple times per burger=developer panel

next lotus
#

se x

amber monolith
#

😱

knotty root
#

🤯

knotty root
#

Anyone here know how to check if someone is subscribed to a channel in C#-

next lotus
#

what

#

c# discord?

knotty root
#

hello fellow coders hows the.. lua and... python going dudes

next lotus
#

because those are english dialects not coding

west sedge
glad prairie
#

how do i install rulerbox

timid field
serene cargo
# timid field

except no coder would be at a party nor solving the bug💀

barren shale
#

the programmers dont leave their houses stereotype is kinda becoming cringe ngll

amber monolith
#

dont use that namespace

#

😡

timid field
#

We can replace party with a bed

serene cargo
timid field
#

I go to the gym 3 times a week

amber monolith
barren shale
#

i go out with my friends 7 times a week

#

sometimes 8

timid field
#

I only went out once when few of my friends asked me to go

#

Rest of the time no requests

#

From irl friends

amber monolith
barren shale
#

because i dont drink

#

i live in a small town

#

so even if none of my friends wanna hangout

#

i can probably go take a walk and see someone i know and hang out with them for a few hours

#

i'd say i know 5% of the people i see on the street

amber monolith
orchid frigate
#

I go to Volleyball trainings every day and go out with the guys every other day

barren shale
orchid frigate
#

Yesterday me and the guys reserved a few benches for a fight that should have happened

#

But the guys never showed up

#

Just some guy with a scooter and a motorcycle smh

barren shale
#

sounds like some 13 yrs old action

orchid frigate
#

Everyone there was 17/18

barren shale
#

they probably watched too much action movies

orchid frigate
#

They know how to have fun

barren shale
#

fights are not fun

orchid frigate
#

They are

barren shale
#

someone gets knocked down

#

hits their head

#

and dies

orchid frigate
#

Plus when you have a thing with someone

barren shale
#

fun

orchid frigate
#

You gotta settle it

#

He chose it

#

Why should I care im there to watch

#

He has beef he fights

amber monolith
#

fights are better than beef imo

#

One fight and it’s settled most of the time

barren shale
#

beef is better than chicken though

barren shale
amber monolith
#

i meant In school and maybe uni

#

after like 20 if your still having scraps for no reason then that’s a bit petty

coral gorge
unreal sinew
#

@next lotus @fair zinc keep the channel on topic

errant trail
#

Hamza#6629 and Dakata#1126 too (msg above)

#

😎

tame nest
#

Aioaiwwoodkwow

#

Soswowooxeosso2so

#

Sqooqeooe

barren shale
orchid frigate
#

As hamza said

#

As if we didnt talk

#

This channel would have been removed months ago

#

We are literally the channel topic

next lotus
#

since when was the last time i havent talked of code in this channel lol

next lotus
#

the last language i talked before he sent that was python

knotty root
#

how does random world generation work in wb?

errant trail
humble wasp
#

@orchid frigate @barren shale what's the worst coding software and how is the worst compared to the best

humble wasp
barren shale
#

you dont need to know

#

use the vs shit

#

vs code for any language

#

and vs for C#/C++/C

humble wasp
#

alright thanks

barren shale
#

no worries

wet girder
#

I have a school course in c and for the life of me I can't figure it out no matter what I try

barren shale
#

i used vs code for my first year of uni

#

oh

#

you just make a C++ project

#

and rename files from .cpp to .c

wet girder
#

oh lol

#

that's stupid lmao