#💻︱programming

1 messages · Page 24 of 1

gaunt berry
#

@dense zinc ncp pro anticheat

dense zinc
#

Agreed

#

NCP + a silent AC warz

gaunt berry
dense zinc
#

I’m stupid lmao

gaunt berry
#

hi stupid lmao, im quartz

dense zinc
#

I

minor roost
#

i need a anticheat thats updated to 1.16 i am going to use it on a surival world so cobat doesnt really mater

dense zinc
minor roost
#

no cheat plus in not 1.16?

#

its 1.12

dense zinc
#

Look for Updated No Cheat Plus

graceful ginkgo
#

If its just for a survival server why bother with an anticheat at all?

#

anti xray is all youll need

graceful ginkgo
#

who cares

#

its survival

#

just vibe

gaunt berry
#

i use ncp on my server

wheat relic
languid flame
gaunt berry
#

no

#

anarchy has no rules

languid flame
#

....

gaunt berry
#

survival can have rules

languid flame
#

You really think people are going to stick to them rules though?

gaunt berry
#

i mean

#

they should

signal drum
#

that's the idea

wheat relic
#

Anarchy = Play anything

languid flame
#

What

#

So a modded world by your defenition is anarchy?

signal drum
#

no he means that you can use hacked clients on anarchy servers

#

for instance

languid flame
#

Ik

gaunt berry
languid flame
#

But
Vanilla doesnt = survival
Survival = survival

gaunt berry
#

both are vanilla survival

signal drum
#

^^

gaunt berry
#

but anarchy cant have rules

languid flame
#

Exaaactly

wheat relic
timber sphinx
toxic saddle
#

RIP ovh

#

we lost our most important database

dense zinc
#

F

spice plaza
#

We lost our primary database but I had a week old backup from when we were having issues the other week

#

So somewhat pog

#

Think this is a good reminder though that having backups is a good idea babyyodasips

graceful ginkgo
#

If you dont care enough to get a backup, it aint important enough

#

zoop

#

For real tho just set up an automated backup, its extremely easy to do

icy owl
#

hi

#

im chicken nuget

spice plaza
wild shadow
wild shadow
#

⬆️ I want to be able to make the above.

spiral cave
#

I shall teach you

#

After I learn it

wild shadow
#

thank you <3

#

||i don't have a gpu||

quasi oasis
#

I want to start making some programming content. Any ideas or recommendations?

wild shadow
#

Build me a GAN.

#

I want to make dame da ne memes.

#

without that google colab research paper

quasi oasis
#

Would anybody be interested if hosted community coding sessions on Discord? I could share my screen while coding and testing as well as have a public GitHub repo and allow anyone to make contributions. Like community made mini games or something of the sorts. After making it I can host it and we could all play the game we just made. That sounds like that’d be fun. Get all of us nerds together. I know a lot of you are interested in the Minecraft development.

#

Obviously this wouldn’t be related to CubeCraft or any of the CubeCraft code and would be completely separate.

wheat relic
wheat relic
quasi oasis
#

Maybe I’ll do one this weekend. I’ll see about getting a programming voice channel made on this Discord.

spice plaza
#

Sounds fun :0

spice plaza
#

If we do this again in the future, I do have a minigame API I could port to spigot rainbowsheep

signal drum
#

Ooh nice!

rancid trail
#

I think it would be fun too if CubeCraft hosted some kind of coding competition but idk how may people would participate haha

spice plaza
#

Cubecraft game jam when :O

wet vortex
rancid trail
#

Same lol

minor roost
#

<id="I0:P1:F:00" V-bucks="Data_TopInitialSignatoryCOE" type="shown" value=""> <id="I0:P2:F:0" name="Common-Pistol" type="hidden" value="True" if rmc shoot if shoot trigger folder="A5184"><div lang="en" id="I0:P3:H" if use en make-option= Dutch,African>

#

Can someone tell me how to make a lobby system

#

FOr fortnite remake

hushed stream
#

Why would you even make a fortnite remake in mc

minor roost
#

no

#

Not in minecr

#

aft

hushed stream
#

oh lol

#

still why would u make a fortnite remake

minor roost
#

i found

#

the old map files

#

On a old desktop of mine

#

I transfered them

#

So it means if i have all the date and release it i can

#

Put the old maps in

#

old maps= S1,S2

#

About that seasons

#

<id="I0:P1:F:00" V-bucks="Data_TopInitialSignatoryCOE" type="shown" value=""> <id="I0:P2:F:0" name="Common-Pistol" type="hidden" value="True" if rmc shoot if shoot trigger folder="A5184"><div lang="en" id="I0:P3:H" if use en make-option= Dutch,African> <id="I0:P2:F:0" name="Common-Assault=Rifle" type="hidden" value="True" if rmc shoot if shoot trigger folder="A5195"> <id="I0:P2:F:0" name="Common-Rocket-Launcher" type="hidden" value="True" if rmc shoot if shoot trigger folder="A5194"><id="I0:P2:F:0" name="Common-Pump-Shotgun" type="hidden" value="True" if rmc shoot if shoot trigger folder="A6294">

austere phoenix
#

bruh i am just staring with html and javascript

minor roost
#

@austere phoenix i can teach you

austere phoenix
#

no need to

minor roost
#

For 0.001 cents a month

austere phoenix
#

my mom makes websites so yeah

#

she's my html teacher

minor roost
#

I

#

RAN

#

OUT OF

#

...

#

COKE

ashen bramble
#

I need help with school

#

#Error 7
#add one line so that the program ends if you enter quit
play = True
while play:
while True:
Quit = f"quit"
if input("Type 'quit' to quit") == Quit:
break

#

thing is, when you type "quit" its something else in python

#

what should I convert it to to force it to be a string or something

hearty bloom
#

I would just do:

while input("Type 'quit' to quit") != "quit":
  continue;
#

idk if that would work as I dont use python often, but I think it should

spring tiger
#

yeah thats right

ashen bramble
#

kk let me try brb

gaunt berry
#

use codeblocks

#

they look nicer and have formatting highlighting

ashen bramble
#

hmm

#

nope... Im in Python IDLE, when I input "quit" it turns purple meaning its like a command

spring tiger
#
play = True
while play:
  if input("Type 'quit' to quit ") == "quit":
    play = False
#

or better:

play = True
while play:
  user_input = input("Enter your command: ")
  if user_input == "quit":
    play = False
  elif user_input == "my_command":
    # ... do something else
ashen bramble
#

ahhhh yes I was missing play = false

spring tiger
#

you also had two while loops, one of which was always True 😛

ashen bramble
#

yeah xD I have been stuck on this for like an hour

#

Thanks!

hearty bloom
gaunt berry
#
play = True
while True:
    Quit = f"quit"
    if input("Type 'quit' to quit") == Quit:
        break

should also work

hearty bloom
gaunt berry
#

i dont remember

hearty bloom
gaunt berry
#

ah right

#

fstrings

hearty bloom
#

is it like String.format?

gaunt berry
#

yes

#

but in py3

#

string.format was py2

hearty bloom
#

and in java :)

gaunt berry
#

yes

hearty bloom
#

aight, gonna take shower and finish my stupid JDA framework...

gaunt berry
#

idk actually, i dont do java

hearty bloom
spring tiger
hearty bloom
spring tiger
#

yeah basically that
its better to control the condition of the while loop than breaking it inside the loop

hearty bloom
#

oki :) thanks

wild shadow
hearty bloom
spring tiger
#

the f is format strings, new thing to python
in this case with the code, it is not necessary. "Quit" is enough

hearty bloom
#

can you do like f"hallo %s".format("Majksa")

spring tiger
#

the f notation allows nice formatting like so:

my_text = "test"
my_string = f"hello {my_text}"
print(my_string)
>>> hello test
hearty bloom
#

ohhh

spring tiger
#

no, what you are doing is redundant

hearty bloom
#

that's cool

spring tiger
#

it would work without the f

hearty bloom
#

so it's like PHP's 'string' -> "string $a" or JS's ``

spring tiger
#

not sure about those languages but sounds like it
basically the f notation makes your strings much more readable

hearty bloom
#

yea :) don't have that much experience with py, just few small console tools

spring tiger
#

because this:

f"Hello {name}, I am {computer} and I am {age} years old."

is much clearer than this:

"Hello %s, I am %s and I am %s years old" % (name, computer, age)
wild shadow
#

very cool

hearty bloom
#

does java have anything like this?

spring tiger
#

unfortunately not

#

you have to use regular format

hearty bloom
#

I hoped I missed it there too D:

#

but at least google told me the term :)

#

string interpolation

#

sounds cool xd

spring tiger
#

ya

wild shadow
#

lmao java doesn't even have string repetition with the * last time i checked

spring tiger
#

no, but java 11 comes with a .repeat(x) method on strings now, so while its not as short as python its definitely more faster than java 8 methods :P

jagged fiber
#

!rank

wild shadow
#

wow if i'd had know that earlier...

spiral cave
#

!rank

spice plaza
#

It's always sus when you test something for the first time and it just works

spice plaza
#

how aboouuuuttt, no

#

oop found a bug

#

I knew their had to be something, at least console wasn't complaining

signal drum
#

You’re just desperately waiting for the moment everything is going to break

spice plaza
#

yup

quasi oasis
#

It worked!

#

!rank set Palombo Marketplace Quality Assurance

spiral cave
#

!rank set mewbot124 mewbot124

#

damn

quasi oasis
#

!rank set mewbot123 Obsidian

#

I got you 🙂

spiral cave
#

thank you so much 🙏

dense zinc
#

It’s my dream

spiral cave
#

!rank set technoblade Moderator

dense zinc
#

Omg thanks

#

I will change my name in praise

spiral cave
spice plaza
hearty bloom
#

!rank set Majksa Youtuber

#

yay

forest jasper
#

A M O G U S

plush walrus
#

N O

toxic saddle
#

It's inefficient

#

Concatenate or StringBuilder

#

StringBuilder is better on larger strings

spring tiger
#

yes
what I was saying was how python has f-strings and java doesn't

toxic saddle
#

Yeah but still

#

I don't see why someone would ever use String.format other than converting data types

#

It's like 600x slower than the other 2 methods

spice plaza
#

I only found python f-strings the other day

lusty pagoda
#

Python best

spice plaza
#

Python is nice for quick stuff but I find Java better for OOP projects :)

lusty pagoda
#

@ancient fractal HELLO hry can you help meh pls?

#

I can't understand what's the mean of
print ('<any nunber>//<any number>')

#

The underlined thingy

#

Or @gaunt berry

opaque lantern
#

How much segmentation would you recommend for Java development? In terms of should Plugins be separated into as many plugins as possible or would you recommend making larger plugins?

lusty pagoda
#

There are 2 /

#

I know / is dividing

ancient fractal
#

thats division

lusty pagoda
#

But the double one is something different

ancient fractal
#

/ is normal division, // is floor division i believe

lusty pagoda
lusty pagoda
spring tiger
#

you're printing it between quotation marks. that makes it a string

opaque lantern
#

Found this on Stack overflow regarding the issue.

spring tiger
#

you just need to remove those

lusty pagoda
#

Can't get it

#

Any example?

opaque lantern
#

You could make it into a variable, then convert it to a string 🙂

spice plaza
opaque lantern
#

So; calc = 7425//550
print((str)calc)

spring tiger
#

You're doing this:

print('7245//550')

which would output:

>>> "7245//550"

you need to put it as:

print(7245//550)
spice plaza
#

like a damage plugin
an entity plugin
a single minigame plugin
etc

lusty pagoda
#

WAIT HOW DID YOU MAKE IT COLORED

spice plaza
#

And you could have a common plugin with code shared between all of em

lusty pagoda
#

OHHH

#

Lemme try

opaque lantern
#

Thank you @spice plaza

spice plaza
#
\`\`\`python

[text here]

\`\`\`
Just remove the backslashes
#

discord your formatting is a joke

#

oh

opaque lantern
#

Does it have an error? @lusty pagoda

lusty pagoda
#

Yes

spring tiger
#

just a single one

#

you're rearranging the speed = distance / time equation

lusty pagoda
#

Yes right

opaque lantern
#

You could convert it to a int after the fact if you want to have it as a int.

gaunt berry
#

same

#

<@&786990632676753468> give admin pls

somber slate
dense zinc
#

<@&786990632676753468> hi

somber slate
ocean drift
#

<@&786990632676753468> hi

lusty pagoda
#

<@&786990632676753468> hi

minor roost
#

you'll need a forum account and connect it with discord. after you've done that wait for some time.

spice plaza
#

tHaT aIn'T pRoGrAmMinG

gentle trail
#

`

unborn wigeon
#

can someone help me with decompiling the modcoderpack in 1.8.8

#

when i try in 1.8.8, it says error: Source option 6 is no longer supported. Use 7 or later. error: Target option 6 is no longer supported. Use 7 or later.

gaunt berry
#

use source option 7

#

also use 1.8.9

spice plaza
#

are you using gradle or maven at all?

toxic saddle
#

You're running java 6

#

Or attempting to compile

spice plaza
#

if there's a build.gradle chucking this in it should do the trick:

targetCompatibility = sourceCompatibility = '1.8'
quasi oasis
unborn wigeon
unborn wigeon
spice plaza
#

well what other files are in the folder with decompile.bat @-@;

elder void
#

It's MCP for 1.8.8

#

IIRC it doesn't use any maven or gradle

spice plaza
#

oh ;w;

#

welp

unborn wigeon
elder void
#

Depending on what you're trying to do, i'd probably not use MCP anymore

#

There are better tools out there, even for those versions.

spice plaza
#

I did just find a pre-decompiled repo for 1.8.8

unborn wigeon
elder void
#

Again, it depends on what you're trying to achieve

unborn wigeon
#

I'm trying to code a minecraft pvp client

quaint gorge
#

Hi

elder void
#

IIRC Fabric's loom will do what you're looking for.

spice plaza
#

what's wrong with using forge PugVibe

gaunt berry
elder void
gaunt berry
#

o

spice plaza
#

time to do a vanilla-plus let's play on beta 1.8 linkvibe

gaunt berry
#

mod code is weird

spice plaza
dense zinc
rancid trail
unborn wigeon
#

while (Minecraft.isNight()) {
Creeper creeper = new Minecraft.Creeper(charged);
creeper.Ignite();
}

gaunt berry
#

thatd spawn a charged creeper 20 times a second xd

torpid crypt
gaunt berry
#

oh

#

i dont do mods so i didnt know that :p

sinful pollen
#

Hi

#

Can help in djs

#

Or no

plush walrus
#

👀

dense zinc
#

Yo

#

I’m going going to make a new Anticheat I plan on releasing and I need name ideas

graceful ginkgo
#

boopcheat plus

spice plaza
#

chicken nugget

dense zinc
#

Ooh

#

It’s creative

signal drum
#

oh my god

wheat relic
#

And see what keys the player is pressing and check movement patter

#

And if it is correct with keys clicked

#

Player is safe but if player clicks x and they randomly start moving weird ban

#

Idek how hacks work but that they are hacks it prob fakes the keys getting pressed lmao

dense zinc
#

You can not detect the users key press

#

I already know how to make anticheats, I’m just trying to make a brand new and improved one

wheat relic
#

Can you make it check how high a player is off the ground?

#

Or from y 0

dense zinc
wheat relic
#

What about testing for a player model on server

dense zinc
wheat relic
#

Ahhh

#

Cause I saw this one guy fly for a very long time on cube and just not get bannef

#

Xbox lobbies too, well should have been i was solo controller

dense zinc
#

Bedrock Anticheats are so hard

#

As you don't have the source code so you can't try to say "This is what a vanilla client does, this action the player just did isn't vanilla"

wheat relic
#

Breh

#

Does microsoft do nothing with mc partners?

dense zinc
wheat relic
#

Rip

spice plaza
#

Partners probably get a bit of documentation on the packets at most

dense zinc
gleaming zenith
#

@dense zinc teach me

#

Sensei

dense zinc
#

if (p.isHacking()) {
p.ban();
}

#

yw

gleaming zenith
#

else
Print („Kinda cringe bro“)

zinc steppe
#

@dense zinc bedrock sentinel dev when?

gleaming zenith
#

That’s Java right

dense zinc
#

me who knows nothing about bedrock protocol uh Yeah

gleaming zenith
#

@dense zinc how did you learn it

dense zinc
#

@arctic narwhal got me into Minecraft coding (I already knew Java), but then looking at a bunch of other anticheats and cheat clients I started to teach myself

wheat relic
spice plaza
#

The bedrock protocol is fun

wheat relic
#

/ban Sentinel 1y

gleaming zenith
#

It’s hard to find something to keep on going imo xD

spice plaza
#

Took a week to get the ChangeDimensionPacket working on my server :')

dense zinc
#

That's why I started working for servers

#

as then they picked the project not me xD

gleaming zenith
#

I always wanted to make a server.. I have so many ideas and stuff but I never was able to get the backend stuff to work

wheat relic
#

I like being told to do, rather figureing out myself lmao

gleaming zenith
#

As my knowledge is 99% mc mechanics and logic

dense zinc
#

setting up a server is easy, setting up a custom one is hard

gleaming zenith
#

Yeah but normal servers are boring xD

dense zinc
#

Coding your own plugins isn't always the best way tbh

#

Why reinvent the wheel

gleaming zenith
#

Yea but Imo if you have something special other servers don’t have

#

Makes it more fun

dense zinc
#

True true

gleaming zenith
#

But obv harder

spice plaza
#

It's a lot of trial and error at first

#

Took me 4 full attempts to get one in a good state

gleaming zenith
#

I need a sensei haha

spice plaza
#

Even now there's a lot I want to rewrite :`)

dense zinc
minor roost
#

what are some good tutorials on making custom plugins

gleaming zenith
#

rewrite essentials X

spice plaza
#

TheSourceCode had some pretty good YT tutorials iirc

dense zinc
#

Except use a maven project

minor roost
#

eclipse or intellij?

spice plaza
dense zinc
#

Use IntelliJ

spice plaza
#

imo intellij is better

#

Yeah

dense zinc
#

It has much more features, and is much easier to use

zinc steppe
#

is it possible to program java using a cheap 10 year old laptop with windows 7 32-bits?

#

,_,

spice plaza
#

Why did everyone used to start out with eclipse CH_OmegaLUL

minor roost
#

i mean programming doesn't take that much resources

dense zinc
#

might be slow at time but no reason to not try!

zinc steppe
#

Its downloading

#

👀

#

I clicked it and downloaded 2 things

#

Is that normal?

minor roost
#

uninstal dmg your not on a mac

zinc steppe
#

Ok

zinc steppe
#

didnt worked

gusty ore
#

Better yet, is that an outdated version of windows?

#

Oh its a 10 year old 32 bit laptop

#

Seems like it would be hard because minecraft requires 64 bit to run, doesnt it?

#

If not point me in the direction of a compatible linux distro for raspi

gaunt berry
#

pretty sure minecraft java is both 32 bit and 64 bit

brisk badge
#

but what if you have 16 bit Oof_dab

spice plaza
#

then you should go back to writing basic and assembly Oof_dab

brisk badge
#

lmao

gaunt berry
#

yeah boi its asm time

arctic ether
#

Yo

#

Who knows how to teleport someone to another world (multiverse core) by using a command block? (1.16.5)

#

/mvtp @p world doesn't work.

gaunt berry
#

couldnt you just make a warp sign

arctic ether
#

Im already using colored signs though

plush walrus
#

you can just use command signs

minor roost
#

Or use hacks

plush walrus
#

and set the command to /mv tp {player} {player}

arctic ether
#

Ahh thank you!

red flax
#

I beat elon musk.

if(TeslaAboutToHit) {
    tesla.dont();
}
spice plaza
#
else {
    int anarchyChance = new Random().nextInt(1000)

    if(anarchyChance == 0) {
        tesla.explodeRadius(100);
        tesla.park();
    }
}
#

for some added chaos

mild mango
zinc steppe
torpid crypt
spice plaza
#

oh god xd

#

the most I have to know is branching :')

ancient fractal
#

as you can tell, i error handle really well haha

hearty bloom
#

LOL

ancient fractal
ancient fractal
#

honestly, i can't wait to work with other people so they're forced to read my error handling messages and useless comments evilelmo

toxic saddle
#

geez wtf

wild shadow
harsh ginkgo
#

Guys i have a plan im filling nether with ices if anyone want dm me but in bedrockl

wild shadow
#

unless you plan on automating it with code

red flax
wild shadow
#

You have made the checkstyle very unhappy.

quasi oasis
spice plaza
#

that hurts me more

hearty bloom
#

I would never do such thing palombo, dw

#

putting brackets on new lines? ewwww

plush walrus
#

ew

quasi oasis
#

We have so many people on the dev team now and everybody codes differently and that is true pain.

wheat relic
#

I’m trying to block trap and it’s already hard enough on controller because I can’t instantly turn around like on keyboard and mouse or touch screen.
And I’ll build a 3 high wall and either none or only 1 will place so I’ll run away thinking I placed it

#

So I turn around to eat and I see them jump through the wall I just placed

nova bear
#

Big sad

languid flame
ancient fractal
languid flame
wheat relic
#

It’s too common for it not to be funny but annoying

spice plaza
quasi oasis
#

I forgot the word for that style

spice plaza
#

well at least it isn't total anarchy

#

should just be called "default"

quasi oasis
spring tiger
#

I follow the IntelliJ Format Code style kappa

spice plaza
hearty bloom
#

There should be one for java too, I hope

#

And I plan on using it soon anyways

brisk trout
brisk trout
#

Unacceptable

brisk trout
#

No buts

hearty bloom
#

That's not my code sadcat

#

Blame JDA

#

I would never do that

brisk trout
#

Well that is an acceptable but

#

bless up 🙏

hearty bloom
#

Xd

brisk trout
#

If you're using IntelliJ and you want to format code correctly

#

ctrl + alt + l

#

option + command + l for mac

hearty bloom
#

Yeah, that's lock windows keybind I think lol

#

I set it to alt+f

brisk trout
#

you mad lad

hearty bloom
#

After locking my pc couple times lol
But thanks :)

brisk trout
#

Mine doesn't lock windows luckily so we move

hearty bloom
#

There is probably a way to disable it too, just to lazy to do it xd

#

And already used to alt+f anyways

#

Since that's the keybind Vscode uses, or Ctrl+alt+f

#

Wait

#

WHen did you change your name?

#

D:

brisk trout
#

From what?

#

I just wanted to feel special

hearty bloom
#

utf-8, right?

brisk trout
#

Si

ancient fractal
brisk trout
#

I’ll forgive you this time

hearty bloom
ancient fractal
hearty bloom
#

Ah 😂

ancient fractal
#

The only time i touch settings is to set it to dark mode and occassionally select a library, anything else i dont care/cba rubikfaceplant

spice plaza
#

The only settings that get touched are colour scheme related

ancient fractal
#

That

hearty bloom
#

So if you do ctrl+right it skips to the next word and not to next "CamelHump"

spice plaza
#

I like my syntax highlighting to be autumn colours comfyblob

ancient fractal
#

The fact you call it camel hump and not camelcase is traitorous

#

Jk

hearty bloom
#

But

#

That's not really the same thing

#

I think

#

I hope

#

It is called CamelHumps in settings

ancient fractal
#

Ive only ever heard it be called camel case lmao

spice plaza
#

^

ancient fractal
#

But honestly, considering ive done reinstalls/changed laptops/switch constantly between vs code and intelij recently i have no clue what my theme is anymore fine

hearty bloom
#

But I would still say that CamelCase is the case and CamelHump is the part of the word, but doesn't really matter 😂

ancient fractal
#

Nah same thing

#

Searching it up it just comes up with camel case lol

lusty pagoda
#

How to make this

#

¿?

#

I know there's a thing about *n*

#

Which is the new line

#

<@&174846441678700544>

#

@gaunt berry come here

gaunt berry
#

its \n

lusty pagoda
#

I know

gaunt berry
#

not n\

lusty pagoda
#

OH.

#

I'm blind enough

#

😁

gaunt berry
#

xd

lusty pagoda
#

I got it

gaunt berry
#

gj

lusty pagoda
#

Thank you so much chimken

#

I luv you x

gaunt berry
#

np

#

lyt

lusty pagoda
#

🥺

#

Okay so

#

I learnt that the ' ' are the strings

#

And "" are just quotes and not too much useful it's just for like

#

print ('"hi"')

#

Now I just moved to variables

#

It's like.... Java?

gaunt berry
lusty pagoda
#

I know it marks the strings

#

Doesn't it?

#

It's like

#

It marks that in it is the string

gaunt berry
#

yah basically

lusty pagoda
#

I know

#

now uh

#

Variables are the start of Java

#

Isn't it

gaunt berry
#

no

lusty pagoda
#

gud

#

name = input("what's your name?" )

austere phoenix
#

printf("I am doing this good")

#

is this line of code correct ~

spring tiger
#

If you're using python 3 you don't need the f in front of print

austere phoenix
#

phyton 3 sucks tbh

#

i dont like it personally

spring tiger
#

I don't really see much difference from 2 other than syntax changes and much better performance

#

Plus python 2 is end of life now

austere phoenix
#

i started programming in phyton 2

#

my mom was teaching me

#

it sad it's gone

lusty pagoda
hearty bloom
lusty pagoda
#

😁

#

Hi Java man/woman

plush walrus
#

java ~~nub ~~ man

whole thicket
#

nukes

gaunt berry
#

imagine using oracles java, real gamers use micrsofts java

spice plaza
#

Just write your own jvm

brisk trout
lusty pagoda
#

?

brisk trout
#

Trying to tag developers 😠

lusty pagoda
#

Pls don't be mad it's just a prank bro

#

You've got to watch dayum

#

o utf

#

🇺 🇹 🇫

dense zinc
#

just manually tag all devs banter

plush walrus
languid flame
#

@daw.son @d.riima <@&786990632676753468> and I think that's it

hearty bloom
#

@untold grail ?

gentle patio
somber slate
hearty bloom
#

@somber slate :)

#

hallo

somber slate
#

Hi

#

I can program

hearty bloom
somber slate
#

I CAN

dense zinc
#

@somber slate

#

@somber slate

somber slate
dense zinc
#

What have you programmed

hearty bloom
somber slate
dense zinc
#

Nice

somber slate
#

I was following the vid I sent Majksa CAEweirdgrin

somber slate
#

I sent

hearty bloom
#

aaaaa,

somber slate
#

The 8 hour video

hearty bloom
#

I didnt notice the I

somber slate
hearty bloom
#

yeye

#

EwwScript

somber slate
somber slate
minor roost
#

it’s not letting me join cubecraft

lusty pagoda
lusty pagoda
somber slate
minor roost
#

like the ping is really high for me and I spawned under the map and got stuck there and it wouldn’t let me switch lobbies and nothing was loading, no error though

somber slate
#

Did you check your connection

minor roost
#

yes, it’s supposed to be full bars

somber slate
#

Oh -

#

Restart? :)

minor roost
#

yeaaahhh...

#

okay! I’ll try that! thanks!

somber slate
hearty bloom
#

@minor roost what's your ping to cubecraft (/ping)?

somber slate
#

352372546194243584

#

That's someone's user ID lol

#

Idk whose tho

dense zinc
#

@minor roost

hearty bloom
#

Killer Manjaro

dense zinc
#

Oops

hearty bloom
#

didnt wanna ping...

dense zinc
#

Sorry Manjaro

minor roost
#

?

somber slate
#

Oh I warned him an hour ago Awkwardkid

minor roost
dense zinc
#

Sorry didn’t mean to ping you

minor roost
#

It's alright man, no worries

somber slate
minor roost
#

yeah it’s like really high

gentle patio
#

Uh my god-

minor roost
#

uhh yeah

gentle patio
minor roost
#

yeahh so I’m not sure what to do

gentle patio
#

I hardly even get that ping in td

minor roost
#

yeah it’s only been that high once

gentle patio
#

Is ur Internet not good?

minor roost
#

no actually it’s pretty good

hearty bloom
#

@minor roost windows/mac/linux?

gentle patio
#

Are u from USA

minor roost
#

yes

#

mobile👁👁 I’m poor

gentle patio
#

Servers are far away from yoh

lusty pagoda
#

Are you far from host?

#

(France)

minor roost
#

ohh yeah

#

I’m from the u.s

hearty bloom
lusty pagoda
#

This is why

gentle patio
#

In the future they'll put us servers

#

Then it should eb better

minor roost
#

okay

#

so should I just wait an hour ish and try again maybe

gentle patio
#

Prolly

#

Is it usually this bad?

#

Maybe reset stuff

minor roost
#

almost never

hearty bloom
#

US ping to cube is ~60

minor roost
#

it’s never been that high it’s usually like 70 ish

gentle patio
#

If my Internet is bad I use mobile data

hearty bloom
minor roost
#

okay

hearty bloom
#

this channel is for programming

minor roost
#

yeah

rancid trail
#

I programmed last night <o/

#

xdd

hearty bloom
#

👀

dense zinc
#

It's very cool

wheat relic
#

It’s from like 60-200

hearty bloom
wheat relic
#

I have good wifi and get 180

#

And I get 100+ ping to all other servers but mineplex where I get 80-90

#

Still in US though

#

Unless you mean only your ping yes, but u said US

plush walrus
#

good wifi is not everything

hearty bloom
dense zinc
#

I'm from the US and get like 120-180

wheat relic
#

Yes I did see it

#

Is that website or game server?

hearty bloom
plush walrus
#

not really

wheat relic
#

Ping is good wifi and distance you are to the server?

hearty bloom
#

yes

wheat relic
#

I live 5,000 miles from the server

hearty bloom
#

if you are on the same spot: the better your wifi is, the better ping you have

wheat relic
#

No way I’m getting sub 100 ping especially when I’m behind the cascades and rocky mountain ranges

#

Unless it’s hosted in japan

plush walrus
#

well it depends on internet speed, ISP and your geographical location and maybe firewall settings

wheat relic
#

I get the same ping to Japan as I do to US Virginia

#

And japan is 2000 miles further

lusty pagoda
#

?

quasi oasis
rough elm
#

its like from 100-250 lool

lusty pagoda
#

Python is becoming kinda hard

#

@gaunt berry help

#

Oh dnd

#

Oops

#

nvm when you're online reply

gaunt berry
#

hi

#

how may i help you

lusty pagoda
#

My brain is lost in a field of wheat

#

5 meters

gaunt berry
#

find the way out then

plush walrus
#

Wanna help 👀

hearty bloom
quiet gorge
#

Who ever knows a decent amount of python please message me

#

I need some help with some code...

quasi oasis
#

@quiet gorge I’d probably recommend just posting the code in here and explaining the problem. I know for Python specifically I’ve seen people get help with it. 😃

#

Unless of course it’s confidential code 👀

wild shadow
#

Or here if you want. I can maybe help.

brisk badge
#

@wild shadow wait what there are chinese translators?

ivory flume
#

Yeah we have Chinese translators

ashen bramble
#

I made python’s font the minecraft font 😂

woven heart
#

how long did it take xd

gentle patio
#

7minutes

latent nacelle
#

OMG OMG IS THAT THE REAL RELATED NOOBS OMGGG

#

haha lol

gentle patio
#

:OOOO

latent nacelle
#

OMG IS THAT REALLY HIM OMGGGG

#

haha

ivory flume
#

😳

sweet barn
#

omg

plush walrus
#

yes

gentle patio
#

K

hazy storm
#

@eternal ridge lets not advertise

eternal ridge
#

Ok

wild shadow
#

The proof is left as an exercise to the grader.

wild shadow
rancid trail
#

Loool

plush walrus
#

Guys I need help with Linux :)

#

How to run .sh scrip on every system startup

#

(Debian 10)

hearty bloom
#

there is probably a startup script somewhere

#

oh wait, nvm

#

that's terminal start script

plush walrus
#

:(

hearty bloom
plush walrus
#

did not work 😔

spring tiger
#

look at the second answer

plush walrus
#

tried that but did not really understood

#

Am I suppose to just add @reboot /home/user/test.sh into crontab -e?

hearty bloom
spring tiger
#

yep, but the path of your script

hearty bloom
#

this should help with cron

plush walrus
#

luv u both

#

hmm, added it to the crontab but did not work

spring tiger
#

have you rebooted

plush walrus
#

yes

spring tiger
hearty bloom
#

chmod +x file

plush walrus
#

gimme sec

#

Have an idea

#

okay it worked I just... never thought if the commands in the screen works

#

so it worked, thanks guys

dense zinc
#

Anyone know any root server hosts

gaunt berry
#

whats considered a root server

#

server with root access?

errant laurel
gaunt berry
dense zinc
hearty bloom
torpid crypt
#

Googling is better xP

gaunt berry
#

duckduckgo-ing

plush walrus
#

ew

errant laurel
gaunt berry
#

bing is trash

plush walrus
errant laurel
hearty bloom
#

bing hot

gaunt berry
#

never

waxen wigeon
hearty bloom
#

bing in internet explorer satisfaction5

gaunt berry
plush walrus
#

Opera GX better

#

cmm

gaunt berry
#

ew chinese spyware

plush walrus
#

lmao yes

errant laurel
gaunt berry
gaunt berry
#

discord caching is weird

minor roost
#

@gaunt berry does this person exist

gaunt berry
#

hmm

rancid trail
#

no

gaunt berry
#

it exists in our imagination

dense zinc
#

Yes bigbrain

gaunt berry
#

which is a shame

rancid trail
#

It's an AI that constructs human pictures of what it has learned about thousands of visual examples of humans

gentle patio
plush walrus
#

Already fixed

gentle patio
#

awk that was a joke im a comedian

plush walrus
#

oh

viral kiln
#

💻⌨️🖥

#

*~~**🤶🏻***~~

languid flame
spice plaza
timber grove
signal drum
gaunt berry
#

:csharp:

minor roost
#

yes

gaunt berry
#

how to name variables like a pro:

hearty bloom
grand mulch
#

thats a new level of naming varibles

minor roost
dense zinc
gaunt berry
#

why

#

vs is gud

dense zinc
#

Why would you not use different variable names

gaunt berry
#

because im smart

dense zinc
#

I

#

Ok

torpid crypt
hearty bloom
plush walrus
#

sus

wide helm
#

!yt

gaunt berry
#

ty microsoft very cool

#

i migrated from .net framework to .net 5

spice plaza
#

Fun

gaunt berry
#

im just gonna copy paste the code to a new project

#

which will hopefully fix it

minor roost
#

Hi just gonna copy paste the code to a new project

#

I'm Molly

wild iron
#

Does anyone know where it is the API documentation of modals/panels of Minecraft Bedrock? Thanks

sweet barn
#

There isnt any api documentation available, but there are a handful of libraries that exist which let you use them

spice plaza
wild iron
#

Thanks

red flax
#

so yes.

#

normally it takes 500mb memory, and here i am with 6,000!

brisk badge
#

jeezz i dont even have that much memory

toxic saddle
#

Ain't much

#

But it's honest work

gaunt berry
#

the most powerful button in existence

hearty bloom
#

just used google to get the image, don't judge the name plz

gaunt berry
#

that kinda comes with merging tho

dense zinc
#

Merging is fun

spice plaza
#

merging belongs in S tier

#

closing an issue is like B tier

gaunt berry
#

how to make good looking guis:

#

also hi ben

dense zinc
#

That is

#

Definitely a GUI

spice plaza
#

compact guis mmm comfyblob

#

where's the turn into a potato button

gaunt berry
#

im the smortest

#

i just deleted the solution file

#

and i dont have a backup

spice plaza
#

not even recycle bin?

gaunt berry
#

nop

#

reee

#

wait nvm i have one on github

spice plaza
#

pog

minor roost
graceful ginkgo
#

guis bad

#

cli masterrace

gaunt berry
#

also a cli is ew for what im writing

graceful ginkgo
#

works every time

gaunt berry
graceful ginkgo
#

Windows has man actually

#

at least, fairly sure it does

spice plaza
#

cli is nice

#

I always use the -nogui flag on servers :^)

graceful ginkgo
#

most servers dont even have a gui :^)

spice plaza
#

as it should be :^)

gaunt berry
#

didnt know that until now

unborn wigeon
#

cant github just have a simple upload button

gaunt berry
#

it does

graceful ginkgo
#

Just use github desktop if you dont know how to use git yet

#

Its pretty good for learning

gaunt berry
#

or just use the website

#

upload button is here

brisk badge
fleet siren
gaunt berry
#

it merges a pull request

#

with the repository

rancid trail
#

Upload files to github through the UI? :Pepega:

#

I checked out github desktop once and I found it really confusing lol

#

Just use the command line or like WSL if you really want to work on windows

#

You need to know like 4 commands

dense zinc
#

Just use IntelliJ

gaunt berry
#

gh desktop is weird

#

i either use the website or command line or visual studio

#

mostly visual studio tho

graceful ginkgo
gaunt berry
graceful ginkgo
#

peasant

#

my secondary laptop has 16

gaunt berry
#

same

graceful ginkgo
#

and I have 16gb ddr4 laying around from upgrading my main laptop

gaunt berry
#

imagine using a laptop

#

couldnt be me

spice plaza
#

I rely on intellij's source control ui too much spookydance

graceful ginkgo
#

external displays, keyb & mouse plugged in

#

¯_(ツ)_/¯

spice plaza
#

pls tell me the laptop has an SSD

hearty bloom
#

when you decide to document an interface....

dense zinc
hearty bloom
gritty heron
#

Hey

#

Guys

#

Can anyone code me a 24/7 minecraft bedrock server for 10 people? The help is greatly appreciated!

gaunt berry
#

no

gritty heron
#

You again? Lmao

gaunt berry
#

i literally told you before to use google

ancient fractal
#

^

dense zinc
#

A tutorial online + free software is better than a developer who expects to be paid

gritty heron
#

K

torpid crypt
rancid trail
rancid trail
#

Google is your friend 👀

spice plaza
rancid trail
#

Oh well

#

Better than a regular hdd I guess xdd

spice plaza
#

mhmm

graceful ginkgo
#

nvme ssd gang

spice plaza
torpid crypt
#

Testing client stuff with @civic bison & @quiet arrow going wrong for my laptop

quiet arrow
#

Rip server.

gaunt berry
dense zinc
quiet arrow
surreal comet
#

Dam

brittle quarry
quiet arrow
#

Ikr

#

I'm going to be getting your egg from my last game

#

:dabbin

brittle quarry
#

Haha

surreal comet
bleak thistle
minor roost
#

nice status

minor roost
graceful ginkgo
#

like, not used by the os?

minor roost
#

go to your windows settings

#

then go to your system info

#

should say how much is available

graceful ginkgo
#

how do I open windows settings

minor roost
#

uhh....

#

go to your search bar

#

then search settings

#

in the bottom left lmao

graceful ginkgo
#

ok 1 sec let me boot it up rq