#💻︱programming

1 messages · Page 36 of 1

hollow glade
#

what's the difference between c++ and c# and c anyways

gaunt berry
#

c# uses dotnet

#

c++ is c with 2 pluses

minor roost
#

c is pure
cpp is swiss knife version with tons of stuff you won't use
c# is microsoft's java, somewhat sane

tawdry sorrel
#

Different syntax obviously

minor roost
#

please refer to this illustration

hollow glade
minor roost
#

it's for skids

hollow glade
#

, _ ,

#

i think lua is cool duh

#

its easy

#

and decent

minor roost
#

just a classic language from the 90s

#

nothing special

tawdry sorrel
#

C# is from 2000

hollow glade
#

like

#

uuuh

#

boblox?

minor roost
#

doubt that, if you're thinking about roblox, they use it as a scripting language

gaunt berry
#

roblox isnt written in lua

tawdry sorrel
gaunt berry
#

they use it for scripting

minor roost
#

not main development language

hollow glade
hollow glade
tawdry sorrel
#

Can't even swear or I'll get banned again

hollow glade
#

"again"

tawdry sorrel
#

Yep

#

I swore twice and got banned

hollow glade
#

is saying servers name allowed?

tawdry sorrel
#

Ye

hollow glade
#

i dont trust u

#

1 sec

tawdry sorrel
#

Nvm

hollow glade
#

fyiuhoiu

#

there's a famous discord server that i always get banned at least 8 times per month

#

just bc i say 1 bad word

#

😦

minor roost
#

you look like the kind of person who often gets banned yeah

hollow glade
#

ye duh

#

bro u can say so by looking at my pfp

minor roost
#

why don't you write plugins in lua

hollow glade
minor roost
#

where does it say so?

hollow glade
#

and if its possible, 99.99% u can't make cool stuff in LUA like in Java

minor roost
#

just make your own server impl with a lua runtime duh

hollow glade
#

lua sucked

minor roost
#

java is annoying

hollow glade
#

, - ,

#

wats annoying abt java

minor roost
#

verbose

hollow glade
#

, ________________________________________________________________ ,

minor roost
#

overusing objects

hollow glade
#

bro

#

like imagine making bedwars with lua

#

wth

minor roost
#

pick an another language then

#

that'll be your homework

hollow glade
#

java

#
  • i already have 102 pages of homework
#

English homeworks

#

satt

minor roost
#

make java plugins for bedrock

#

that'll be fun

hollow glade
#

wot?

#

i dont even have a bedrock account

#

I don't want to waste my money buying a game that I already have but java edition

#

unless its mommy's money >:)

minor roost
#

ever tried Javagony\™️?

hollow glade
#

wot

minor roost
#

java, with only try and catch

#

no for, no if, no while, no switch and so on

#

it's turing complete

hollow glade
#

soooo

#

its like

#

try{
console.log('hi')
}catch(error){
return};

#

?

minor roost
#
// implements basic prime checker
public class Primes {
    private static final int[] ints = {1, 0};
    private static int temp;

    // isPrime determines if integer is prime
    private static boolean isPrime(int n) {
        return isPrime(n, 2);
    }

    private static boolean isPrime(int n, int i) {
        try {
            temp = 1 / ints[((n - 2) >> 31) & 1];
        } catch (ArithmeticException e) {
            return false;
        }
        try {
            temp = 1 / (n - 2);
        } catch (ArithmeticException e) {
            return true;
        }
        try {
            temp = 1 / (n % i);
        } catch (ArithmeticException e) {
            return false;
        }
        try {
            temp = 1 / ints[((n - i * i) >> 31) & 1];
        } catch (ArithmeticException e) {
            return true;
        }
        return isPrime(n, i + 1);
    }

    public static void main(String[] args) {
        System.out.println("2: " + isPrime(2));
        System.out.println("3: " + isPrime(3));
        System.out.println("91: " + isPrime(91));
        System.out.println("101: " + isPrime(101));
        System.out.println("1001: " + isPrime(1001));
    }
}
hollow glade
#

1 sec

#

WTH

#

this is easier than javascript

minor roost
#

yeah it is 😄

#

wonder how a bedwars plugin looks like

hollow glade
#

pfft

minor roost
#

ah

#

you're not happy with it?

hollow glade
#

idk

#

i don't even develop

#

i rarely develop

minor roost
#

hahaha

#

alright I should try one of those one day

hollow glade
#

wth is this

minor roost
#

5D 5D Brainfuck With Multiverse Time Travel With Multiverse Time Travel programming language

hollow glade
#

5D 5D Brainfuck With Multiverse Time Travel With Multiverse Time Travel longest programming language name?

#

world record?

minor roost
#

possibly

hollow glade
#

we

#

w

minor roost
#

Ultimate Programming Language to Take Over a Prison, Then He World

hollow glade
#

yo check general chat

minor roost
hollow glade
#

i mean eng

hollow glade
eternal smelt
#

Where the devs at

tawdry radish
#

you can make clients on bedrock too

muted crest
#

So, this is a very contreversial opinion, but I don't like how python is using colons instead of curly braces ({ }), change my mind (fell free to send your opinion, just be respectful)

tawdry radish
hollow glade
tawdry radish
hollow glade
minor roost
subtle matrix
#

Assuming you have the best router and connection there is, is it possible to have 19ms in CubeCraft if you live in a country that's far away from the host (such as Jordan)?

#

Is it technically possible?

tawdry sorrel
#

Technically yes

subtle matrix
#

huh

ocean sparrow
# subtle matrix Is it technically possible?

Yup - quoting stuff from reddit - light travels ~300km/1ms, in fiber optics (internet cables) it's ~200km/1ms, going one way from France to Jordan would take a minimum of 17ms, getting back would take another 17ms

ocean sparrow
subtle matrix
#

so is it possible or not

#

considering all those things you mentioned

ocean sparrow
subtle matrix
#

thanks!

ocean sparrow
#

17ms is the absolute minimum in a straight line

subtle matrix
#

I see

gaunt berry
stray vale
#

`// implements basic prime checker
public class Primes {
private static final int[] ints = {1, 0};
private static int temp;

// isPrime determines if integer is prime
private static boolean isPrime(int n) {
    return isPrime(n, 2);
}

private static boolean isPrime(int n, int i) {
    try {
        temp = 1 / ints[((n - 2) >> 31) & 1];
    } catch (ArithmeticException e) {
        return false;
    }
    try {
        temp = 1 / (n - 2);
    } catch (ArithmeticException e) {
        return true;
    }
    try {
        temp = 1 / (n % i);
    } catch (ArithmeticException e) {
        return false;
    }
    try {
        temp = 1 / ints[((n - i * i) >> 31) & 1];
    } catch (ArithmeticException e) {
        return true;
    }
    return isPrime(n, i + 1);
}

public static void main(String[] args) {
    System.out.println("2: " + isPrime(2));
    System.out.println("3: " + isPrime(3));
    System.out.println("91: " + isPrime(91));
    System.out.println("101: " + isPrime(101));
    System.out.println("1001: " + isPrime(1001));
}

}`

#

`\

full sphinx
#

hi

#

Does anyone know the programming language of the command blocks?

#

is it c++?

#

@west helmS

tawdry sorrel
gaunt berry
minor roost
#

I need help

#

What is blur.fragment and how can I use it

#

I don't wanna know the height,breath and x thingy

#

I just wanna know if I should add the #endif on it or nah

indigo nacelle
#

Do you need help with something?

gentle patio
#

Or website

#

Or app

#

Or system

#

Or other words

tawdry radish
tawdry radish
gentle patio
tawdry radish
#

skill issue

bold fable
#

😂

full sphinx
crimson walrus
full sphinx
crimson walrus
#

I know java but I cant get python

#

What software do u use? I use eclipse

full sphinx
tawdry radish
#

pythong cringe

full sphinx
#

for python it is better than eclips

tawdry radish
#

pythong bad why do you use it

#

learning an other better language not gonna hurt tbh

full sphinx
#

bru

#

google use python

#

yt use python

tawdry radish
#

cause they cringe

full sphinx
#

Youtube.
Google.
Instagram.
Dropbox.
Quora.
Pinterest.
Spotify.
Reddit.

tawdry radish
#

also i doubt they still use python

tawdry radish
tawdry radish
full sphinx
tawdry radish
#

who is the dumb non who wrote that

full sphinx
#

he can use 2
lenguages

tawdry radish
#

no

#

spotify uses javascript

full sphinx
#

languages*

full sphinx
tawdry radish
#

no

full sphinx
#

like sites

tawdry radish
#

they use javascript for frontend c++ for running js, and c++ in the backend

full sphinx
tawdry radish
#

they don't mike

full sphinx
full sphinx
#

google could be wrong

tawdry radish
tawdry radish
full sphinx
#

and you can be right

tawdry radish
#

idk where they use java mike

full sphinx
tawdry radish
#

Tbh
i don't care what languages they use for those apps
python is just bad

full sphinx
#

like the aplle site

tawdry radish
#

it has been nothing but annoying ever since i tryed it out

full sphinx
#

i understand

full sphinx
tawdry radish
#

so i left it to learn rust

full sphinx
#

you wana play?

#

on cubcraft?

full sphinx
tawdry radish
#

i am not gonna play cubecraft am thinking a bout my life choices

full sphinx
tawdry radish
#

._.

full sphinx
#

it's much easier than c++ or java

tawdry radish
#

no one asked you to learn c++ or java

#

c++ hard for even me

#

just don't use python

full sphinx
#

you are programing c++ now right?

tawdry radish
#

but i can't realy make a client in rust so ya

full sphinx
#

@tawdry radish
thanks for the tip, i'll try to learn another language later

tawdry radish
#

it is not a tip
it is me just making you learn better language :)

spark peak
#

why he shows me this

orchid depot
spark peak
tawdry radish
cyan lotus
tawdry radish
#

@gaunt berry lets gooo

#

i finaly found render function

gaunt berry
#

we should start a bedrock documentation

#

that is actually good

spice plaza
#

all effort should probably go there as its currently the most complete community effort

gaunt berry
#

thats rp and bp

#

i was thinking memory documentation

spice plaza
#

oh like, the actual codebase then?

#

yikers

gaunt berry
#

where functions are n stuff

spice plaza
#

fair enough, would be interesting ^^

#

I just saw "documentation" and thought of that

gaunt berry
#

addons are a joke

#

an april fools gone wrong

#

lets hope gametest will change that

spice plaza
#

yeah, I wish they actually worked on the js api a bit more

#

that and they create better official docs on addons

tawdry radish
#

doe i agree

plucky dune
plucky dune
gaunt berry
#

no

plucky dune
#

I think you don't know about Link download Minecraft Bedrock By free

gaunt berry
#

its literally the same price as java

plucky dune
#

Account bedrock need Xbox Account only

gaunt berry
#

actually

#

its more expensive than java

plucky dune
#

Whyy?
Java is good then Bedrock

#
  • ohh So bedrock is free in mobile only
gaunt berry
#

bedrock is never free

#

pirating is uncool

plucky dune
#

Bro there are

#

OUT Link to download Bedrock for mobile

#

I think you understand
Like MediaFire
And YT And other

marble slate
gaunt berry
marble slate
#

Yes, but bedrock edition has better pvp

#

No hit cooldown

#

And mobs only attack, don't avoid hits

gaunt berry
marble slate
#

And on latest versions lol

#

Like 1.16

#

And 1.17

#

Haha

gaunt berry
#

you can disable that on there too

#

there are mods and plugins for it

#

and im pretty sure its possible in vanilla too

marble slate
#

On servers I am saying

marble slate
bleak sluice
#
while (true) { System.out.println('CUTEEE') }
gaunt berry
untold grail
spice plaza
#

m e

plucky dune
tawdry radish
gaunt berry
tawdry radish
#

java is linked to dollor

#

while bedrock is different from region to region

#

in some contries it is like 5$ mike

gaunt berry
#

java price is converted already iirc

#

oh

#

i get you

tawdry radish
#

they never told me about that

#

i would have used vpn to buy bedrock

gaunt berry
#

the ms store price is 1:1 while the minecraft.net price is properly converted

tawdry radish
#

it is weird not 1:1

gaunt berry
#

java is $27

#

bedrock is 27€ for me

#

1:1 confirmed

tawdry radish
#

:bruh:

minor roost
# marble slate Shut up bedrock is better because: 1. Better framerates 2. Crossplay 3. Faster w...

java > bedrock for 10 reasons
#1: bedrock is significantly harder to make clients/mod for
#2: more multiplayer servers
#3: has more blocks/features
#4: contains 1.9 pvp
#5: anticheats are alot better on java than bedrock (every server on bedrock has trash anticheats atm)
#6: way more mods (kinda similar to #1)
#7: you cant scaffold without the use of cheats (bedrocks bridging skill gap is alot more small when compared to javas because u just need to look forward)
#8: the community is alot more mature on java (ive seen bedrock players talk about how its hard to bypass bans on java when its not that hard and its even easier on bedrock)
#9: can be ran on alot of operating systems (since java can basically run on anything)
#10: NOSTALGIA!!!!!!

spring tiger
#

Uhhh right this is #💻︱programming not Java and Bedrock debate 😆 both versions are good in their own way, we can leave it at that

minor roost
#

thats like saying no memes in general 😉

#

also tbf java is a programming language so technically im not being off topic

tawdry radish
dense zinc
#

Just spent 5 mins playing around with Dart

#

Not a bad lang tbh, good syntax

minor roost
#

dart sounds interesting

wheat relic
#

therefore

#

your opinion is wrong

gentle patio
#

He's not wrong

minor roost
#

As C=C+1 performs better, its good for low end devices; also custom skins pog, this makes it the superior client, For java tho, there’s so many resources already and skillsets for programmers, it makes for a good serverside especially when you’d have to create a server software from scratch as there’s no good be ones in existance- Now you just gotta pay someone to make a packet translator- oh. <3

#

@minor roost ^

plush walrus
#

C=C+1 umwut

ocean sparrow
minor roost
#

Client version, not your problem 😂

minor roost
ocean sparrow
#

My late IT teacher just loved Java

#

I used to hate it, a year ago I loved it and now I'm trying to move to C#

minor roost
#

Genuine question: How did you get the motivation to keep studying Java?

ocean sparrow
#

But you can't make Paper plugins in C# so I'm stuck with it xD

ocean sparrow
minor roost
#

Keep learning Java

#

What did you do

ocean sparrow
#

I got into plugin making

#

And I just learned it I guess

minor roost
#

Each time a problem popped up you just googled it? I see

#

And you started to memorize them, cool

ocean sparrow
#

I guess so

#

Once you get how it works you just try doing stuff yourself and it eventually works

minor roost
#

I see

ocean sparrow
#

Class names are intuitive, syntax is too

minor roost
#

Should I start learning C#, JS, Java or C=C+1

ocean sparrow
#

Depends on what you want to do

#

C# games/desktop apps

#

JS web

#

Java bots, mc plugins

#

C/C++ i have no idea probabky desktop apps too

ocean sparrow
#

Since afaik it doesnt have types and doesnt really enforce it

minor roost
#

The reason I included JS is that we’re learning it at school

ocean sparrow
#

I would've ran away if some1 forced me to learn JS

minor roost
#

They dont, I chose it (Website developement class) over art/english/cooking

#

So I’d call it a win

#

The thing is, I’d really like to actually get to do something, So that’s why Java is kinda tempting-

ocean sparrow
#

Also there isn't a single number that would make this equation true C=C+1

minor roost
#

C++

ocean sparrow
#

Ik

minor roost
#

Also I know-

#

Wait hmm

#

No there is

#

Infinity

#

Infinity+1=infinity

ocean sparrow
#

In Europe we don't consider infinity a number

#

Americas do

ocean sparrow
#

Wait Nuclide it's you

#

I just looked at your nickname lmfao

minor roost
#

YES MY DEAR FRIEND

#

meerkat ❤️

minor roost
ocean sparrow
#

Idk I don't chat anywhere else in this server

minor roost
#

😂

#

Fair

ocean sparrow
#

Minecraft plugins are cool for learning Java

#

Since you can kind of see the results in a world

minor roost
#

Yeah

ocean sparrow
#

It's more understandable for humans to see the results in an in-game world than a console

minor roost
#

Yea

#

Errors in mc console tho-

#

How are you even supposed to read them

ocean sparrow
#

It's stack trace it's useful

minor roost
#

And how’d i read it 😩

ocean sparrow
#

The first line is the exception with the message

#

Next there are classes that were called for this exception to happen

#

And in which line

minor roost
#

Oo

ocean sparrow
#

So iirc
some.package.Class#15
some.library.AmazingLibrary#78
...

#

Class at line 15 called AmazingLibrary at line 78 which caused an error

#

Or the other way I can't remember atm

minor roost
#

So that’d mean you used Amazinglibrary wrong @ line 15

#

Right?

#

Like ur code row 15 called Amazinglibrary wrongy causing it to break once at row 78?

ocean sparrow
#

The other way

#

Idk

minor roost
#

Oh :c

ocean sparrow
#
Exception in thread "main" java.lang.NullPointerException at com.example.myproject.Book.getTitle(Book.java:16) at com.example.myproject.Author.getBookTitles(Author.java:25) at com.example.myproject.Bootstrap.main(Bootstrap.java:14) ```
Bootstrap class main() method called Author's getBookTitles() then it probably called each Book's getTitle() where an exception happened and that's where you're supposed to look for it and try to fix it
tawdry radish
minor roost
#

You line 16 is the issue, thats the main point yes?

ocean sparrow
#

Yeah

#

There's also a Caused by in some stack traces :}

#

Also stack trace isn't only for exceptions, you can get a thread's stack trace just to see what's been called

minor roost
#

Fancy words I totally understand meerkat

tawdry radish
#

@gaunt berry alr am bored of making client again. lets make chat triggers on bedbock

tawdry radish
minor roost
#

@ocean sparrow teach me java uwu

ocean sparrow
#

Im not teaching programming anyone

minor roost
#

w3school it is then meerkat

ocean sparrow
#

Speaking from experience - most of the time it's too complex for people

#

And then I don't know how to explain that to them

minor roost
#

Do you have any beginner plugin ideas / how do you get ideas

tawdry radish
#

we don't

#

they come to us

ocean sparrow
#

Yeah basically I'm doing what I need atm

#

That's why I havent touched Java for 2 months now

tawdry radish
#

well you basicly program to fix your daily issues

#

unless you work

ocean sparrow
#

Nothing to work on 🤷‍♂️

minor roost
#

U got any old plugins you made when you were starting?

ocean sparrow
#

All gone

#

I got rid of everything a few months ago

minor roost
#

Do you know any good websites / resources to learn plugin developement?

ocean sparrow
#

Just google when you need sth specific

minor roost
#

Alright

#

^ me listening to your fancy words

#

@ocean sparrow one last thing before I stop disturbing you; What IDE?

ocean sparrow
#

Idea

#

You can apply for github student with your student id/documentation proving you're a student and get the ultimate version

plush walrus
#

^

#

It's really cool that they do that

ocean sparrow
plush walrus
tawdry radish
#

i like it ngl

#

quartz told me

ocean sparrow
plush walrus
#

When I launch it, it's takes longer than vscode to load my project

tawdry radish
#

even vs is bad

spring tiger
#

I personally use both. Intellij has always felt much easier to develop java on than vscode
Whereas I use vscode for almost everything else

#

but I noticed that vscode can start to get a bit clunky if you don't use workspaces to disable/enable plugins
having lots of them enabled is bad

tawdry radish
#

i was planning to make a pull req about plugin issue

#

but my brain smol

spring tiger
#

Yeah, it would be nice if it could automatically detect which plugins to disable based on your workspace, seeing that vscode already supports automatically detecting plugins to use

#

they just need to do the opposite
and then suggest to you to save that workspace

tawdry radish
#

yesp

ocean sparrow
#

It's java it's obviously memory hungry

tawdry radish
#

auto enabling plugins is a big features everyone wants

#

but no one impling it yet doe ;/

ocean sparrow
tawdry radish
ocean sparrow
spring tiger
#

😂

ocean sparrow
#

But yeah

spring tiger
#

I've never used any other editor for files tbh, atom and notepad ++ are nice but vscode just loads so fast I just use that lol

ocean sparrow
#

Notepad++ loads in less than a second

#

I gtg for class

tawdry radish
ocean sparrow
#

VS and VS Code are 2 entirely different things

spring tiger
tawdry radish
#

yeah monkey_look_away

plush walrus
#

Didn't have any issues with autocomplete

ocean sparrow
#

Intellij has way more extensive checks

#

For Java at least

#

And code generation

plush walrus
#

Ye, I'd rather get faster response than pretty much anything else

tawdry radish
#

intellij for java
vs for c#
vs code for everything else 😉

#

tbh you can just use vscode for c# too

sharp crystal
gaunt berry
#

for the immersion yk

tawdry radish
gaunt berry
tawdry radish
lusty pagoda
#

sus duck.

#

sus chicken.

#

sus bird.

tawdry radish
#

@gaunt berry looks like there is a rhino c++ thing

#

we have chakra native doe

gaunt berry
#

chattriggers rhino best

#

ngl

tawdry radish
#

tbh i just want to make auto gg, auto gl, @dawn parcel 's level calc

gaunt berry
#

ill make that calc in uwu++ now

#

but without a gui

tawdry radish
#

:bonk:

dawn parcel
#

Who pinged

tawdry radish
#

god

dawn parcel
#

Oh

gaunt berry
dawn parcel
#

my level calculator for cubecraft is epic!

gaunt berry
#

what was the formula again

tawdry radish
#

800+ (x* 200)

gaunt berry
#

thanks

dawn parcel
#

^

gaunt berry
#

200x+800 is correct too

tawdry radish
#

i just put it there for programing languages
and easyer to understand

minor roost
#

public static final int bedrockDurability = Integer.MAX_VALUE;
public static final long javaDurability = Long.MAX_VALUE;

#

although one thing bedrock is better than at java is the language it uses

#

c++ is faster

gaunt berry
#

not necessarily

minor roost
#

well tbf mc javas code is horribly optimized
that prob explains why bedrock runs much faster

gaunt berry
#

java runs alot faster for me 🙃

minor roost
#

do u use any mods

gaunt berry
#

no vanilla

minor roost
#

damn nice

gaunt berry
#

was like 700 fps bedrock and 2k fps java in a superflat

minor roost
#

nice

#

for me its kinda the other way around

gaunt berry
#

tbf tho i used onix on bedrock idk how much that affected my frames

minor roost
#

ok

gaunt berry
#

@tawdry radish github copilot also works with uwu++

#

eaerarfasfefsaef

gaunt berry
wheat relic
#

At some point the island would no longer exist while bedrock does

wheat relic
#

And 300 in bedrock

#

But both cap around 1000fps

quasi oasis
#

Hello programmers

gaunt berry
#

hi

hearty bloom
#

hello

gentle patio
tawdry radish
#

and don't ask me why i am awake at 3 am

copper ice
tawdry radish
quiet marlin
tawdry radish
muted crest
# minor roost Any reason? It makes sense for python

The reason why is because of the IntentationError and I don't like how i need to pay attention to indentation if i want to know if something's inside a function, class, match statement, etc. Lastly, I don't like it because in curly braces, indentation doesn't matter (like if its afunction, class, match statement, etc. alone).

muted crest
gaunt berry
#

its minecraft commands

muted crest
gaunt berry
#

but ok

muted crest
minor roost
#

why don't you code everything in one line then

spring tiger
#

I mean while you don't need to indent code in lots of languages, you should at least be trying to so its readable.

minor roost
#

yup

gaunt berry
minor roost
#

the school I'm at enforces a strict syntax for C, and it's actually better that way, you avoid most of the unsafe practices

muted crest
gaunt berry
#

i mean, if you do something simple, it just looks neater if its all in one line

muted crest
#

I agree

minor roost
#

one logic per line is the way to go

muted crest
#

yes

minor roost
#

switch statements while people hate python's colon indentation be like

muted crest
#

true ngl

dense zinc
wild shadow
#

anyone know how to work with b-trees, priority queues, and disjoint set ADT's?

tawdry radish
#

can't they fix there token issue first doe ;/

steep dagger
#

How much damage do zombies do when they have a sword? I can't find it anywhere on the wiki. The only mob I can find is the Vindicator, which seems to have predetermined damage.

tawdry radish
steep dagger
#

so if a zombie picked up a wooden shovel it would do less damage?

tawdry radish
#

ya

steep dagger
#

idk if that sounds right tbh

#

bc it would also eliminate the effect of difficulty

#

if u can confirm it that would be great but i can't find anything

tawdry radish
#

all swords have different damage

wild shadow
#

cursed_java

steep dagger
#

woa pog

wild shadow
#

i need to sleep

worn pumice
#

?av @fossil jasper

fossil jasper
minor roost
wild shadow
#

I know.

tawdry radish
#

elo

dense zinc
#

Probably but still a cool concept

tawdry radish
#

server discovery was not used since it was put in place where everyone would forget about it

#

it would be noticed a little more if it was placed here

spring tiger
#

go-pher!!

tawdry radish
#

:0 smol blue mouse
yum 😋 🍴

tawdry radish
#

@gaunt berry how gud your luck?

gaunt berry
tawdry radish
#

i need lucky person so uninject hotkey works

gaunt berry
#

when i didnt even have a calculator

tawdry radish
#

wish me luk then

gaunt berry
#

2nd best grade actually

tawdry radish
gaunt berry
#

its hard without a calculator ok

#

25-9=14

#

do you understand

tawdry radish
#

no

#

my brain shrunk 200% after uninject did not work sadcat

wheat relic
#

I was best in class no calculator

#

And did the tests twice as fast as everyone else

tawdry radish
#

;-;

#

1 hour and still can't figure4 out what wrong

frigid snow
#

Hello

tawdry radish
#

elo

lusty pagoda
#

I always get the highest grade 🥲

wheat relic
#

I had a C in english. I can write I just don't want to be limited to a certain thing

#

especially on political essays

lusty pagoda
#

Noice

wheat relic
#

and poetry

#

🤢

lusty pagoda
#

wut

#

I'm..

wheat relic
#

I had poetry in my english classes

lusty pagoda
#

I'M STILL LEARNING SILLY VEGETABLES NAMES...

wheat relic
#

uhhh

#

you are atleast 13 right? (discord tos)

lusty pagoda
#

I'm 16...

#

But my classmates are too dumb to understand "How are you" in English

wheat relic
#

OHH

lusty pagoda
wheat relic
#

you are not from english speaking country?

lusty pagoda
#

no :(

wheat relic
#

I c I c

tawdry radish
#

every time i see there is a unread message in this channel i get exited
but then i just see no messages or messages not related to programing ;/

lusty pagoda
#

LMAO

gentle patio
gentle patio
#

It's real programming

tawdry radish
fast vault
gentle patio
#

ikr

gentle patio
fast vault
#

.teach @fast vault [property.speed set =100w/s, property.time set =1000s]

#

Didn’t work

tawdry radish
gentle patio
tawdry radish
#

you are*

gentle patio
#

if user = correctsMatriox:
user = bad

fast vault
#

var Matriox = Matriox’ message count
var iTBD = iTBD’s message count
if Matriox > iTBD, run
@gentle patio is noob

tawdry radish
gentle patio
minor roost
#

idk anything about programming ;-;

tawdry radish
#

is she holding a yum mouse? 😋 🍴

tawdry radish
#

@sweet barn red sensei, what would happen on cube if i sent these different types of chat text in text packet?
would they get sent to clients but formatted as normal chat or just discarded? or i get kicked

#

also what is this thing?

sweet barn
tawdry radish
#

whaa

#

i mean i can send it to server if you want
but what would happen if i send it thonk

copper ice
#

I just wonder, what website that offers free, self-learning C#? (I dont like vid tutorials)

plush walrus
copper ice
#

I just wonder, if CC wants to create an Australian server, do they go there and install the server there?

gentle patio
untold grail
#

apparently doing market research on local beaches and tourist attractions isn't a good spend of money

gentle patio
#

lmaoo

tawdry radish
tawdry radish
sweet barn
#

Lots of bedrock packets are bound both directions but it doesn’t mean data sent both ways is handled the same

tawdry radish
#

ahh i see

#

so the client can only send 0, 1 while server can send all of them

lethal mirage
#

Anyone here know of a $300 laptop capable of playing cubecraft bedrock smoothly-ish

tawdry radish
lethal mirage
#

I dont have a spot for it and i can just keep moving a laptop

tawdry radish
#

hmm

#

@visual nest teach him how to buy laptop

visual nest
lethal mirage
#

No

#

Im not sending money to someone i don’t know

visual nest
#

but sath know me

lethal mirage
#

Im just looking for recommendations

lethal mirage
#

K

#

Is lenovo t450 good?

#

i5 processor and 8g of ram

visual nest
#

cant manage to find any good ones

lethal mirage
#

I have an ipad 7 i might just get a keyboard and mouse

#

It runs cubecraft really good

visual nest
#

minecraft/cubecraft runs great on mobile too

lethal mirage
#

I think thats what i will do thanks!

visual nest
#

np

#

or u can buy controller

lethal mirage
#

Mouse and keyboard are useful for more stuff than Minecraft so i will get the keyboard/mouse

visual nest
#

true

lethal mirage
#

And im only 14 so i dont make much money

visual nest
#

im 17 and i still dont make money monkey_look_away

lethal mirage
#

I get like 30 a week from mowing

gaunt berry
#

im 16 and i spend money

visual nest
gaunt berry
#

yes :(

lethal mirage
#

Well thanks for the help!

#

Cya

visual nest
#

cya!

tawdry radish
copper ice
dense zinc
tawdry radish
#

unless you want to start something your self

copper ice
tawdry radish
#

then i think it is above 10

copper ice
#

And the law is so reinforced

copper ice
tawdry radish
#

hmm let me guess then

copper ice
#

Asia

tawdry radish
#

china

copper ice
#

End of discussion

#

Nope

tawdry radish
#

oke no worrys

tawdry sorrel
#

Canada u only have to be 14

tawdry radish
#

in india you have to be 14 to work in factorys or "unsafe workplaces"

copper ice
#

Actually, the law was reinforced during 1990s because kids at that times do "illegal" jobs. (Dont ask what jobs plz)

tawdry radish
#

oke

tawdry radish
#

bois is there an artical about "entity occlusion system?"

tawdry radish
#

@zinc steppe is there fourms post abot this?? thonk

gaunt berry
tawdry radish
#

i noticed it today in lobby but idk what it

quiet marlin
#

hi

gaunt berry
#

but i roughly know how it works if u wanna know that @tawdry radish

tawdry radish
#

ik roughly too

#

it just does not send entitys to client if they are not being rendered

tepid chasm
#

i cant work out how to use server gui

#

how to get rid of the banner

#

how to exit the menu

#

and how to bring back animations

unreal bobcat
wheat relic
#

depends

#

on where you live

dense zinc
#

And the company

wheat relic
#

because state/country laws

small hare
#

In C# it seems like I can't use if statements within a do while?

#

This gives absolutely no output ("getal" = "number", "onderGrens" = "lowerLimit") assignment is to display all even numbers from 10 to 20

#

LMao my teacher apparently just did getal = getal - 2; which in theory, yes, it'll only be even numbers but cmon what a ghetto way is that

grave lagoon
#

getal --;

#

:D

small hare
tawdry radish
small hare
#

it's supposed to be >=

tawdry radish
#

mm what is getal before loop starts?

small hare
#

getal = 20

tawdry radish
#

ondergrens?

small hare
#

if 20 / 2 = 0 -> WriteLine ${getal}
ondergrens = 10

#

so as soon as getal < 10, loop stops

tawdry radish
#

@small hare change >= to <=

#

the loop should run when getal is greater then 10

small hare
#

<= means smaller or equal

tawdry radish
small hare
#

but i only want it to run when the number is greater or equal than

tawdry radish
#

ya

small hare
#

didnt change a thing lol

#

still not working

tawdry radish
#

hmm

small hare
#

bro i only want it to run while getal is greater or equal than onderGrens

#

so what u mean

tawdry radish
#

nvm i thought it was reverse

small hare
#

you CONFUSING me

#

hahaha

#

do u know how to fix this tho

#

really annoying

tawdry radish
#

if you give me whole code block ya

#

i can

small hare
#

what if i told u

#

it's just that

tawdry radish
#

let me test it

small hare
tawdry radish
#

@small hare i found issue

#

you put / instead of %

#

:bonk:

small hare
#

wtf

#

why can i not use /

tawdry radish
#

only 2/2 = 0
but that condition is never met so ya

tawdry radish
#

use %
it will give you reminder

small hare
#

ok so give an example of how / doesnt work

#

OOOOOOOOOH

#

OMG IM SO DUMB

tawdry radish
#

np took me time to understand it too

small hare
#

I just thought of 14/2 and DUH thats 7 not 0

#

OMFG

tawdry radish
#

ya

small hare
#

ITS WORKING

#

im so proud of myself

#

and of you

#

of course

tawdry radish
#

np

#

i have homework but instead worked on this for 15 mins despair

tawdry radish
#

rust, js, c++, c#

copper ice
tawdry radish
tawdry radish
#

i found typo in mc code lmao this is just decompiled version not actual code

wheat relic
#

I do not suggest doing it in school though, atleast at my school the teacher knew nothing

copper ice
#

Anyone can suggest me good IDE that will code any programs without bugs?

dense zinc
gleaming merlin
#

VS 2017

#

Atleast my school that teaching C tells us that

tawdry radish
gleaming merlin
#

Vs code is the only visual studio

tawdry radish
#

no

#

vscode = supior vs

gleaming merlin
#

Yes

tawdry radish
#

delete vs, turn to vscode™️

gleaming merlin
#

But the prof doesn’t know how to use it

#

So it’s bad

tawdry radish
#

vscode better then everything else

small hare
#

I spent 4 hours yesterday on 4 lines of code- is that what programming life is like? sadcat

gleaming merlin
#

then thats a hard days work!

small hare
#

i'm not

#

it was just an exercise for uni, to do with the fibonicci numbers lol

tawdry radish
#

add last two numbers in the array B)

small hare
muted crest
#

can somebody tell me why I cannot run my C# code in vscode?

cobalt marlin
#

I use code lite so idk man

small hare
#

Does it give errors?

minor roost
#

Lol

molten quartz
#

Hi

versed jungle
#

No

tawdry radish
#

on my way to become top programer on leet code 💪

versed jungle
#

69 ms

#

What’s rust used for btw?

gaunt berry
#

its a programming language

tawdry radish
#

it is even the first thing i got right 😳

versed jungle
gaunt berry
versed jungle
#

I see

tawdry radish
#

@gaunt berry sensei chickon pls teach meh how am i suppose to use oop properly?

tawdry radish
gaunt berry
tawdry radish
gaunt berry
#

hes writing a minecraft client

tawdry radish
#

i want to use rust but mc is written in cpp and not rust

rancid trail
#

What

tawdry radish
#

mc written in c++

rancid trail
#

ok but your sentence still doesn't make sense lol

rancid trail
tawdry radish
#

lmao i edited it, forgot to read it lmao

rancid trail
#

ah yeah, there you go xd

rancid trail
tawdry radish
rancid trail
#

Go

#

It's a language

#

Similar to c++ but with memory safety

tawdry radish
#

gime github link

rancid trail
#

Uhh

#

GitHub link of what?

tawdry radish
#

tbh i don't realy like go-lang, rust better imo

rancid trail
#

Oh you tried it already

#

Yeah I meant golang/go

#

Kinda confusing name sometimes lol

long quest
#

Hi

tawdry radish
#

there are many server softwares written in go

#

ya

#

java takes 20% of ram sadcatblanket

#

if cc people shifted to rust or c++ we would have so much better stuff

#

i don't think tcp and udp require you to use a single language for server and client

#

they have forked bungeecord for making a proxy for bedrock

#

or they just wrote everything

tawdry radish
#

les go i completed an other leetcode chalange gg

dapper ginkgo
#

Python

tawdry radish
dapper ginkgo
#

Bruh

tawdry radish
#

gg i completed 3 leet code chalanges

#

am gonna become leetgramer in no time :0

indigo nacelle
#

On easy difficulty 🥵

tawdry radish
#

well it is progress non the less

#

the secound ez sum was medium ngl

#

ok this is improvement 100

minor roost
#

true

tawdry radish
#

@untold grail ya guys have a private internet cable??? 😳

#

how much it costs to maintain it doe??

indigo nacelle
tawdry radish
#

@gaunt berry this might be the worst feature in github edu pack

muted crest
spring tiger
tawdry radish
#

.net required
also don't use run button
just use command line

muted crest
#

ok, thanks guys

tawdry radish
#

not the place to ping bots, even if you do it won't work since bots only for admins and mods

#

and devs

jovial pine
#

the middle one isn't a bot tho

tawdry radish
#

eh

hearty bloom
#

does anyone here know how bedrock development works? :))

gaunt berry
hearty bloom
#

that's what I found out the hard way too lol

gaunt berry
torpid crypt
hearty bloom
hearty bloom
gaunt berry
#

geyser is love 😍

wild shadow
plush walrus
wild shadow
hearty bloom
#

real devs write tests anyways lol

wild shadow
#

ew junit

wild shadow
#

and how do you use debugger on asynchronous stuff, especially when there's a race condition involved

hearty bloom
wild shadow
#

so I just keep running the UI and see if I can break it?

hearty bloom
#

if you write quality code, you can just test the logical part and design can be tested manually

hearty bloom
plush walrus
tawdry radish
#

you want server or to make some kinda client/mod?

tawdry radish
tawdry radish
#

@shadow garnet make gui design for birb client 🔫

tawdry radish
#

what happens on jan 19

shadow garnet
tawdry radish
shadow garnet
#

The community has gotten to toxic towards me

tawdry radish
#

who cares abot community sadcatblanket

shadow garnet
#

when im getting told to kms

#

Well then

#

yh

tawdry radish
shadow garnet
#

arl

hearty bloom
#

with plugins ofc

tawdry radish
#

but it lacks survival features

plush walrus
#

why is $url undefined in this case?

$url = ($_POST["url"]);
echo url;
``` `Warning: Undefined array key "url" in C:\xampp\htdocs\create.php on line 2`
tawdry radish
#

idk php :peaceout:

bold fjord
gaunt berry
plush walrus
bold fjord
plush walrus
#

okay, thanks

tawdry radish
#

if you want a server we should just write the backend bc it better than using those half made stuff which does not have half the features you need

tawdry radish
#

anyone alive?

plush walrus
#

Yes thank you copilot

dense zinc
minor roost
#

nah man, dont remove it

indigo osprey
#

How can i get all roles of a user that wrote the command?
allready figured out how to get id/name of the message author. but i cant get their role list
my code:

indigo osprey
#
async def list_roles(ctx):
  author_id = ctx.message.author.id
  author = ctx.message.author.name
  await ctx.send(author_id)
  await ctx.send(author)```
plush walrus
#

should be ctx.author.roles

indigo osprey
#
async def list_roles(ctx):
  author_id = ctx.message.author.id
  await ctx.send(author_id)

  author = ctx.message.author.name
  await ctx.send(author)

  guild = ctx.message.guild
  await ctx.send(guild)

  tk = guild.get_role(896133362899619871)
  await ctx.send(tk)

  tkm = tk.members
  await ctx.send(tkm)


  for row in tkm:
      a = row.name

      await ctx.send(a)```
#

It's working properly till "tkm= tk.members"
and to be exact the line "await ctx.send(tkm) prints "[]" for some reason

plush walrus
#

if yes, you could just do

await ctx.send(ctx.author.roles)```
vast edge
#

I mean

#

Just get good man

gentle patio
#

yea

broken zephyr
#

I'm sorry @whole raft ;(

tawdry radish
#

...

#

proof rust is best language

#

but i swear typecast in rust is the worst thing despair

tawdry radish
glossy schooner
tawdry radish
#

me who always gets exited to see someone online in this chat
but it turns out to be pointless message despair

paper rain
#

thank you so much ❤️

plush walrus
#

do not use names to check if the member has the role, use role ID instead (role.id) so that if you change the name of the role, your bot will keep working

#

so it would be like this:py for element in authorRoles: if element.id == 720637031071350795: #example ID, change it in your code roleFound = True

paper rain
plush walrus
# paper rain yea ik that id's are better, but in this command i check if an argument(clan) th...

sooo for that, you should use this:

async def list_roles(self, ctx: commans.Context, clan: discord.Role, action) 
# this will convert the clan var to disocrd.Role and then you could do clan.id etc.

discord.Role: https://discordpy.readthedocs.io/en/stable/api.html#role
They can then put the name or id as the argument ant it will get converted automatically.
It is better to use the id or just mention the role, that will work too

paper rain
tawdry radish
#

on my way to make rgb minecraft 🦾

viral ocean
#

Hey this isn’t exactly Minecraft related, but I want to try making some 2D games??? I guess on unity??? Does anyone know what code I should start to learn or any advice lol

sharp crystal