#💻︱programming
1 messages · Page 24 of 1
and a silent mod|| #💻︱programming message @dense zinc ||
I’m stupid lmao
hi stupid lmao, im quartz
I
i need a anticheat thats updated to 1.16 i am going to use it on a surival world so cobat doesnt really mater
If you don’t have many players I would recommend NCP, it’s updated for 1.16, has good support and few falses. Plus it’s very well known and reliable
Look for Updated No Cheat Plus
If its just for a survival server why bother with an anticheat at all?
anti xray is all youll need
People still cheat
i use ncp on my server
Yea survival not anarchy
That's the same thing
....
survival can have rules
You really think people are going to stick to them rules though?
that's the idea
Survival = play Vanilla
Anarchy = Play anything
Ik
no
But
Vanilla doesnt = survival
Survival = survival
both are vanilla survival
^^
but anarchy cant have rules
Exaaactly
No that’s modded not anarchy
hmm yes
the floor here is made of floor
F
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 
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

https://cdn.discordapp.com/attachments/304448571426603009/814586733014024192/senate.mp4 Can someone teach me how to write a GAN please, thanks.
⬆️ I want to be able to make the above.
I want to start making some programming content. Any ideas or recommendations?
Build me a GAN.
I want to make dame da ne memes.
without that google colab research paper
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.
Now you will experience the FULL power of the Dark side
Let me bug abuse on beta servers 😎
That sounds good!
yah
Maybe I’ll do one this weekend. I’ll see about getting a programming voice channel made on this Discord.
Omg yus!
Sounds fun :0
OMG YES! that sounds epic
If we do this again in the future, I do have a minigame API I could port to spigot 
Ooh nice!
Sounds fun 😄
I think it would be fun too if CubeCraft hosted some kind of coding competition but idk how may people would participate haha
Cubecraft game jam when :O
If they do, then they should make age restrictions but I think even without the age restrictions there wouldn't be many participants.
Same lol
amazing idea
<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
Why would you even make a fortnite remake in mc
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">
bruh i am just staring with html and javascript
@austere phoenix i can teach you
no need to
For 0.001 cents a month
Would be very cool
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
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
yeah thats right
kk let me try brb
hmm
nope... Im in Python IDLE, when I input "quit" it turns purple meaning its like a command
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
ahhhh yes I was missing play = false
you also had two while loops, one of which was always True 😛
oooor: ```py
while True:
user_input = input("Enter your command: ")
if user_input == "quit":
break;
elif user_input == "my_command":
# ... do something else
play = True
while True:
Quit = f"quit"
if input("Type 'quit' to quit") == Quit:
break
should also work
should also work, right?
why is there the f"quit"?
i dont remember
or if you want to use your code, just add the 8th line ```py
#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:
play = False
break
is it like String.format?
and in java :)
yes
aight, gonna take shower and finish my stupid JDA framework...
idk actually, i dont do java
D:
not good practice to use breaks inside while loops, especially True ones
ah, okk. didn't know that. is there a reason behind it or just that it may be confusing and breaks can get lost?
yeah basically that
its better to control the condition of the while loop than breaking it inside the loop
oki :) thanks
f"quit"```
vs
```python
"quit"```?
.
the f is format strings, new thing to python
in this case with the code, it is not necessary. "Quit" is enough
can you do like f"hallo %s".format("Majksa")
the f notation allows nice formatting like so:
my_text = "test"
my_string = f"hello {my_text}"
print(my_string)
>>> hello test
ohhh
no, what you are doing is redundant
that's cool
it would work without the f
so it's like PHP's 'string' -> "string $a" or JS's ``
not sure about those languages but sounds like it
basically the f notation makes your strings much more readable
yea :) don't have that much experience with py, just few small console tools
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)
very cool
does java have anything like this?
I hoped I missed it there too D:
but at least google told me the term :)
string interpolation
sounds cool xd
ya
lmao java doesn't even have string repetition with the * last time i checked
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
!rank
wow if i'd had know that earlier...
!rank
It's always sus when you test something for the first time and it just works
YES!
write unit tests
how aboouuuuttt, no
oop found a bug
I knew their had to be something, at least console wasn't complaining
it is
You’re just desperately waiting for the moment everything is going to break
yup
!rank set Palombo Developer
It worked!
!rank set Palombo Marketplace Quality Assurance
thank you so much 🙏
!rank set technoblade Moderator

congrats on mOd!!11! 
N O
Do not use the regular String#format
It's inefficient
Concatenate or StringBuilder
StringBuilder is better on larger strings
yes
what I was saying was how python has f-strings and java doesn't
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
I only found python f-strings the other day
Python best
@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
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?
dividing i believe
thats division
But the double one is something different
/ is normal division, // is floor division i believe
Yes this one
you're printing it between quotation marks. that makes it a string
Found this on Stack overflow regarding the issue.
you just need to remove those
You could make it into a variable, then convert it to a string 🙂
I would say you should have each plugin have a common theme
So; calc = 7425//550
print((str)calc)
You're doing this:
print('7245//550')
which would output:
>>> "7245//550"
you need to put it as:
print(7245//550)
like a damage plugin
an entity plugin
a single minigame plugin
etc
WAIT HOW DID YOU MAKE IT COLORED
And you could have a common plugin with code shared between all of em
Thank you @spice plaza
\`\`\`python
[text here]
\`\`\`
Just remove the backslashes
discord your formatting is a joke
oh
Still something wrong
Does it have an error? @lusty pagoda
Yes
pretty sure you don't need the double slash
just a single one
you're rearranging the speed = distance / time equation
Yes right
You could convert it to a int after the fact if you want to have it as a int.

<@&786990632676753468> hi

<@&786990632676753468> hi
<@&786990632676753468> hi
you'll need a forum account and connect it with discord. after you've done that wait for some time.
tHaT aIn'T pRoGrAmMinG
`
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.
are you using gradle or maven at all?
if there's a build.gradle chucking this in it should do the trick:
targetCompatibility = sourceCompatibility = '1.8'
If you’re using maven you can set the compileVersion to 1.8
I just run the decompile.bat and that is at the bottom of the error
How would I do that?
well what other files are in the folder with decompile.bat @-@;
Loads, but not at my computer right now :D
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.
I did just find a pre-decompiled repo for 1.8.8
Can you send me a link to one that supports 1.8.9 please?
Again, it depends on what you're trying to achieve
I'm trying to code a minecraft pvp client
Hi
IIRC Fabric's loom will do what you're looking for.
what's wrong with using forge 
theres no fabric for 1.8 is there
IIRC It works all the way back to alpha versions.
o
time to do a vanilla-plus let's play on beta 1.8 
mod code is weird

Minecraft

.getMinecraft();
Welcome to my tutorial on how to mod Minecraft so you can play Minecraft in Minecraft!
Lol
while (Minecraft.isNight()) {
Creeper creeper = new Minecraft.Creeper(charged);
creeper.Ignite();
}
thatd spawn a charged creeper 20 times a second xd
Could be multiple per tick. It depends where they put that loop in but if it's in the main thread of mc, it'd spawn as many creepers as there are frames rendered per tick :P
👀
boopcheat plus
chicken nugget
CheaTerminator
creativity 100
oh my god
SentinelRecker
Make it check packets 😖
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
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
Yes, but the client can spoof if it's on ground or not D:
Really?
What about testing for a player model on server
yeah, however using server side positions it's fairly easy to detect
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
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"
Idk, not something I believe i can share/ don't know myself
Rip
Partners probably get a bit of documentation on the packets at most
https://techno.is-super.cool/QCh6eKn9 First day of progress on my Anticheat 😎
else
Print („Kinda cringe bro“)
@dense zinc bedrock sentinel dev when?
That’s Java right
me who knows nothing about bedrock protocol uh Yeah
@dense zinc how did you learn it
@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
If player does not look at player
Ban 2938747373 years
The bedrock protocol is fun
/ban Sentinel 1y
It’s hard to find something to keep on going imo xD
Took a week to get the ChangeDimensionPacket working on my server :')
yeah, for a while I found it hard to find projects
That's why I started working for servers
as then they picked the project not me xD
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
I like being told to do, rather figureing out myself lmao
As my knowledge is 99% mc mechanics and logic
setting up a server is easy, setting up a custom one is hard
Yeah but normal servers are boring xD
Yea but Imo if you have something special other servers don’t have
Makes it more fun
True true
But obv harder
It's a lot of trial and error at first
Took me 4 full attempts to get one in a good state
I need a sensei haha
Even now there's a lot I want to rewrite :`)
Yeah I wanna rewrite a lot of things I've made tbh
what are some good tutorials on making custom plugins
rewrite essentials X
TheSourceCode had some pretty good YT tutorials iirc
https://www.spigotmc.org/wiki/creating-a-blank-spigot-plugin-in-intellij-idea/ I would follow this to start
The home of Spigot a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord, the cloud server proxy.
Except use a maven project
eclipse or intellij?
Or gradle 
Use IntelliJ
It has much more features, and is much easier to use
is it possible to program java using a cheap 10 year old laptop with windows 7 32-bits?
,_,
Why did everyone used to start out with eclipse 
yes but good luck xd
i mean programming doesn't take that much resources
ues
might be slow at time but no reason to not try!
uninstal dmg your not on a mac
Ok
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
no
pretty sure minecraft java is both 32 bit and 64 bit
but what if you have 16 bit 
then you should go back to writing basic and assembly 
lmao
yeah boi its asm time
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.
couldnt you just make a warp sign
Im already using colored signs though
you can just use command signs
Or use hacks
and set the command to /mv tp {player} {player}
Ahh thank you!
I beat elon musk.
if(TeslaAboutToHit) {
tesla.dont();
}
else {
int anarchyChance = new Random().nextInt(1000)
if(anarchyChance == 0) {
tesla.explodeRadius(100);
tesla.park();
}
}
for some added chaos
are u portuguese?
Ai 100
brazilian, why?
I'm learning assembly at uni D':
as you can tell, i error handle really well 
LOL
👀

honestly, i can't wait to work with other people so they're forced to read my error handling messages and useless comments 
geez wtf
idk who names variables like that >:(
Guys i have a plan im filling nether with ices if anyone want dm me but in bedrockl
unless you plan on automating it with code
haha
You have made the checkstyle very unhappy.
Your bracket style hurts me 😦
that's not mine 😂 blame JDA
I would never do such thing palombo, dw
putting brackets on new lines? ewwww
ew
Yes, that also kills me
We have so many people on the dev team now and everybody codes differently and that is true pain.
Bug fixes 🥲🥺
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
Big sad
You should do my method of using print in python and thats it
its efficient alright 
That is so relatable tho
It’s too common for it not to be funny but annoying
PHPCS :)
you mean there isn't even a style guide? 
I think there might have been at one point. I'd imagine it's just not realistic to reteach somehow how to format their code when they've been doing it a certain way. However we at least all do:
method() {
}
I forgot the word for that style
https://google.github.io/styleguide/javaguide.html
This is what I think I follow personally
I follow the IntelliJ Format Code style 

Just use a library to make all these formats for you. In PHP it's called PHPCS. You have a XML file with rules inside, but you can just use someone's ruleset. It saved us a lot of time
There should be one for java too, I hope
And I plan on using it soon anyways
WHERE ARE YOUR SPACES
The only way 🙏
But
No buts
Xd
If you're using IntelliJ and you want to format code correctly
ctrl + alt + l
option + command + l for mac
you mad lad
After locking my pc couple times lol
But thanks :)
Mine doesn't lock windows luckily so we move
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:
utf-8, right?
Si
It was lab alright, efficiency c'mon i did it in like 20 minutes

I’ll forgive you this time
Just enable Autoformat on file save :)
Ah 😂
The only time i touch settings is to set it to dark mode and occassionally select a library, anything else i dont care/cba 
The only settings that get touched are colour scheme related
That
So if you do ctrl+right it skips to the next word and not to next "CamelHump"
I like my syntax highlighting to be autumn colours 
But
That's not really the same thing
I think
I hope
It is called CamelHumps in settings
Ive only ever heard it be called camel case lmao
^
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 
Fair enough
But I would still say that CamelCase is the case and CamelHump is the part of the word, but doesn't really matter 😂
How to make this
¿?
I know there's a thing about *n*
Which is the new line
<@&174846441678700544>
@gaunt berry come here
its \n
I know
not n\
xd
I got it
gj
🥺
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?
the ' ' arent strings
I know it marks the strings
Doesn't it?
It's like
It marks that in it is the string
yah basically
no
If you're using python 3 you don't need the f in front of print
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
I'm still at python for beginners
LOL
java ~~nub ~~ man
nukes
imagine using oracles java, real gamers use micrsofts java
Just write your own jvm
fuming
?
Trying to tag developers 😠
just manually tag all devs 

Ok
@daw.son @d.riima <@&786990632676753468> and I think that's it
@untold grail ?
Then ban for mass ping staff


I CAN

What have you programmed
doubt
I forgot, it was 3 days ago
Nice
I was following the vid I sent Majksa 
what vid did I send?
I sent
aaaaa,
The 8 hour video
I didnt notice the I

I can tell

it’s not letting me join cubecraft
Challenge?
What does it say?
@minor roost #💌︱staff・help, but what error do you get? :)
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
Did you check your connection
yes, it’s supposed to be full bars

@minor roost what's your ping to cubecraft (/ping)?
@minor roost
Killer Manjaro
Oops
didnt wanna ping...
Sorry Manjaro
?
Oh I warned him an hour ago 
dont leak smh
Yeah and thanks very much for that, no need to big yourself up about it
Sorry didn’t mean to ping you
It's alright man, no worries

Uh my god-
uhh yeah
:V
yeahh so I’m not sure what to do
I hardly even get that ping in td
yeah it’s only been that high once
Is ur Internet not good?
no actually it’s pretty good
@minor roost windows/mac/linux?
Are u from USA
Servers are far away from yoh
aaah, was about to ask to do ping cubecraft.net
This is why
almost never
US ping to cube is ~60
it’s never been that high it’s usually like 70 ish
If my Internet is bad I use mobile data
@minor roost ask in #💌︱staff・help btw
okay
this channel is for programming
yeah
👀
It's very cool
wdym wrong? 😂 this is the real ping with good wifi
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
good wifi is not everything
did you see the screenshot?
also ^
I'm from the US and get like 120-180
ping wise? yes, it is
not really
Ping is good wifi and distance you are to the server?
yes
I live 5,000 miles from the server
if you are on the same spot: the better your wifi is, the better ping you have
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
well it depends on internet speed, ISP and your geographical location and maybe firewall settings
This is a funny joke
its like from 100-250 lool
Python is becoming kinda hard
@gaunt berry help
Oh dnd
Oops
nvm when you're online reply
find the way out then
Wanna help 👀
I didn't count it myself, ok? 😂
Who ever knows a decent amount of python please message me
I need some help with some code...
@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 👀
StackOverflow
Or here if you want. I can maybe help.
@wild shadow wait what there are chinese translators?
Yeah we have Chinese translators
I made python’s font the minecraft font 😂
how long did it take xd
7minutes
:OOOO
😳
omg
yes
K
@eternal ridge lets not advertise
Ok
The proof is left as an exercise to the grader.
but is it monospace?
Loool
Guys I need help with Linux :)
How to run .sh scrip on every system startup
(Debian 10)
there is probably a startup script somewhere
oh wait, nvm
that's terminal start script
:(
did not work 😔
look at the second answer
tried that but did not really understood
Am I suppose to just add @reboot /home/user/test.sh into crontab -e?
@plush walrus https://vitux.com/how-to-setup-a-cron-job-in-debian-10/
yep, but the path of your script
this should help with cron
have you rebooted
yes
when you run startup.sh manually does it work?
did you make it executable?
chmod +x file
gimme sec
Have an idea
okay it worked I just... never thought if the commands in the screen works

so it worked, thanks guys
Anyone know any root server hosts
google it 🙂

Smart
more like stackoverflow it
Googling is better xP
duckduckgo-ing
ew
Bing better tbh
bing is trash

you wot
bing hot
never
It is the 2nd biggest search engine tho
bing in internet explorer 
its still trash compared to google
ew chinese spyware
lmao yes
that thing gives me 50 tabs every time I open it so no 
https://stackroboflow.com/ i stumbled upon this
@gaunt berry does this person exist
hmm
it exists in our imagination
Yes 
i wanted to make that with this https://thisfursonadoesnotexist.com/ but theres no api afaik
which is a shame
It's an AI that constructs human pictures of what it has learned about thousands of visual examples of humans
lol xD
turn it off and back on again
Already fixed
oh




:csharp:
yes
how to name variables like a pro:
this is killing me
thats a new level of naming varibles
i prefer a1 a2 a3 and a4
pls delete ur IDE
Why would you not use different variable names
because im smart
@waxen wigeon be like
hi applehead
sus
!yt
Fun
Does anyone know where it is the API documentation of modals/panels of Minecraft Bedrock? Thanks
There isnt any api documentation available, but there are a handful of libraries that exist which let you use them
Nukkit has a basic way to create them and uses events for handling responses
Thanks
jeezz i dont even have that much memory
the most powerful button in existence
well, I know one more powerful
just used google to get the image, don't judge the name plz
that kinda comes with merging tho
Merging is fun
not even recycle bin?
pog
please click the ban button
gl teaching @drowsy terrace how to use a cli
also a cli is ew for what im writing
Just tell them to use man
works every time
this is windows my guy
most servers dont even have a gui :^)
as it should be :^)
oh it actually does
didnt know that until now
cant github just have a simple upload button
it does
Just use github desktop if you dont know how to use git yet
Its pretty good for learning
for my i5 laptop it is
what does it do im dumb with that type of things
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
It broke my project tbh
Just use IntelliJ
gh desktop is weird
i either use the website or command line or visual studio
mostly visual studio tho
flex
same
and I have 16gb ddr4 laying around from upgrading my main laptop
I rely on intellij's source control ui too much 
I use a laptop but I have it docked at all times
external displays, keyb & mouse plugged in
¯_(ツ)_/¯
pls tell me the laptop has an SSD
when you decide to document an interface....
This is what I do when I procrastinate a new task
SAMEEE XD
Hey
Guys
Can anyone code me a 24/7 minecraft bedrock server for 10 people? The help is greatly appreciated!
no
You again? Lmao
i literally told you before to use google
^
A tutorial online + free software is better than a developer who expects to be paid
K
Not better for the developer ;P
What laptop of this era has no ssd... ,_,
xD
Google is your friend 👀
I survived for the longest time with a hybrid drive :')
mhmm
nvme ssd gang

Testing client stuff with @civic bison & @quiet arrow going wrong for my laptop
Rip server.
testing client stuff at 3AM (gone wrong) (gone sexual)
Seems good
D:
Dam
That’s very good ping for sure
Haha
Lmfaoo
sometime word of mouth from a real person in real time feels better
nice status
yeah but how much is available?
wdym available?
like, not used by the os?
go to your windows settings
then go to your system info
should say how much is available
how do I open windows settings
ok 1 sec let me boot it up rq






