#off-topic
1 messages · Page 95 of 1
yourMethod {
yourRunnableHere();
}
and Objects are singleton classes
which is so useful
any ideas? Kotlin does sound appealing, it just scary to move to an "unknown" space, specially when I am already at a certain level and want to try to do more complex stuff with java. I am not sure moving to kotlin and doing those with it is a good idea.
Feels like I would be strapped to a rocket and go from 0 to the moon
Ive started learning kotlin like 8 months ago
Here you can see the difference, it's just really the inlining
got into it after like 2 weeks
but understood it more in dept in like 4 months?
you can literally code in kotlin as you do in Java
and slowly you find new features & such
and tips, etc.
Yeah start off writing it like you do in Java, then slowly move to a more "Kotlin idiomatic" way
oh I see now
can I compile mc plugins straight away with kotlin or do I need a library?
This really helped me to get into it. I havent read any docs, etc. Ive just tried to create classes in Kt and code as I did in Java and slowly realized that this does not work, etc. And searched up why
which taught me
Kotlin gradle plugin (same way you'd add the java gradle plugin) and shading the kotlin std lib
Yes you can keep it in Kotlin
but you need to add kotlin std8 to libraries in plugin.yml
otherwise thats it
alreay use kotlin dsl so I guess only missing kotlin
isn't that one hella of a size bump?
how so?
why would it
you dont have to compile the lib
as mentioned just put it into plugin.yml
The std lib is like 1mb depending on what you use
oh it is a lib?
I prefer depending on a library that provides the stdlibs tbh, but yeah not huge
what? Why?
Standard library, every language has it
Java's is just included in the jdk
So I don't have to provide the stdlibs in 20 spots
Different plugins
Honestly I hate that, specially on mods, I download a mod and boom I need to download 5 other dependencies
I much prefer a single jar and be done with it
They each would provide stdlib
thats not tru
bcs you can just put it into libraries in plugin.yml
and then you do not have to compile it
I don't use bukkit idk
oh I see
ye idk how it is abt mods 
bukkit itself can install libraries
so this is something that you dont have to care abt
funnily enough, was about to convert a small project to kotlin to see the changes, and intellij even adds it automatically
IJ's conversion is really bad though
I mean, better than nothing just to see a bit of the changes myself
not gonna use it
It'll make everything nullable and mutable and all sorts of stuff for no reason
yea
I get it for single projects, but if I have multiple then it just makes sense.
And frankly modern mod Launchers will automatically install deps, I hardly think this is a dev ended problem
its not even great for learning tbh
Better to look at your Java code and write it in Kotlin on your own so you learn the differences
many times the code can be so simplified
what in the world is a companion object?
oh
it's not exactly static, but yes if it makes it easier to understand think of it that way
or the changes can be only done thru GH
It's optional, so you can
well I havent used it much
There is a bot you authorize and any changes from github are pended on the web ui so you can accept and publish, and vice versa, if you commit on the web ui the bot commits to the repo
Ive got it synced with GH already
but can someone else pull it to his Gitbook tho?
and make the changes thru Gitbook and send the changes to GH which creates the PR
I cannot test it myself as am owner of it
They'd fork your repo, commit, pull request, you accept it and commit to main and then it's pulled into gitbook
(Well if that doesn't work out for u, I will happily host docusaurus for u)
Unless they have write access yeah
think what he is asking is if others can fork it, sync it with their own gitbooks, do the change in the web ui, and then pull request
All changes by others has to be done in the github, sounds bad but it's fine
yea I see
If you pay
they setup their own personal gitbook, separate from the original
I dont see how that wouldn't work?
you are not using the web ui from the main gitbook
Sounds like a nightmare to do that but sure if you're willing to try lol
yea
You'd have to configure both projects very similar
yea
Well, I guess my adventure with kotlin shall start after my exams.
And it might not even work without committing wrong files when doing a pr because some config files generated might be unique
might finally understand matt after this xD
lmaooo
Yup, it has been against TOS for years MD5 doesn't care
Afonso has me muted, so they think you're talking about them.
Maven Central asks uses to not pull from central constantly and instead use a proxy to cache whatever is downloaded
libraries? are you speaking with someone else or me?
I am talking about Spigot's labraries download feature
aren't paper loaders also against it technically?
I mean, they do allow the use of private repos, but they also allow maven central
Paper loaders?
kinda outdated since I am pretty sure they allow non maven repos too now like jitpack, etc.
Uh probably, if you're getting the library from maven central it is against tos, if you are getting it from yours then it's not
yeah
When Yugi and I were working on SlimJar which is basically the same, we asked them and they told us it was against TOS so we just setup a reposilite as a proxy to cache everything
But I guess it's too much work for Spigot 
like jitpack kinda does (I think)
Omg I don't think I could pay for enough storage to cache all 
yeah def not haha
it appears for paper too
unless they do it under the hood and we dont know
Well paper at least lets you use other repos
So it falls more on the dev for using central than on them 
Always was the case
Just make your own Library loader instance.
correct it then :^)
bro that has taken a while
xDDD
literally 40 minutes to write down docs about AquaticString
pain
xD, I guess a lot more to go? Could try using AI
might help a bit
But thanks a ton for taking the time for documenting it either way.
well I havent told that imma finish it
LOL
but I will eventually need to make it
bcs my devs are using the lib
if you use a Paper plugin, you can use any repository instead of Maven Central
i just use that and have my repository mirror Maven Central so that I don't break ToS but still load libraries 😌
or I guess if you really cared you could manually download the jar and sha and put it in the libraries folder of your server, then it wouldn't even talk to Maven Central
I guess after I start understanding kotlin I may be able to understand the library with docs? Maybe? Idk. Your library is just perfect for what I wanna do in the future.
well the lib is very complex
I see that xD
and really complicated at some point too
Well, it is either that or doing one myself
don't think there are any other libraries that handle multiblocks, interactables, or simply packet based blocks like yours
the biggest thing for me is the fact they are packets, huge thing if you want several players to be in the same location but see several different things.
Ive got the interactables, right
Aaaand Ive made it so each interactable type can be temp/persistent & real/packet
so basically Ive had to make it bit uh
bit more logic complicated I would say
Ive created WorldObject
which is a virtual Object that is cached in World
on defined location
and can be also persistent
there's automatic serialization when chunk w the location loads
& it does support children
So basically Ive separated caching & serialization from Interactables
and moved it to WorldObjects
and now each interactable has its own WorldObject instance that is as a Base
here you got bit of java code
please ignore the code quality xD
it is way more simple now, I just did not do the changes
however as you can see there's the Base instance created in the Interactable initialization
override fun spawn(location: Location, register: Boolean): AbstractSpawnedInteractable<*> {
val spawnedBase = base.create(location)
val spawnedInteractable = SpawnedBlockInteractable(location, this, spawnedBase as SpawnedInteractableBase<*>)
return spawn(spawnedBase, spawnedInteractable, register)
}
override fun spawnPacket(
location: Location,
audienceList: AudienceList,
register: Boolean
): AbstractSpawnedPacketInteractable<*> {
val spawnedBase = base.create(location)
val spawnedInteractable =
SpawnedPacketBlockInteractable(audienceList, location, this, spawnedBase as SpawnedInteractableBase<*>)
return spawn(spawnedBase, spawnedInteractable, register)
}
private fun <T : SpawnedInteractable<*>> spawn(
spawnedBase: SpawnedInteractableBase<*>,
spawnedInteractable: T,
register: Boolean
): T {
spawnedBase.appliedInteractables += id to spawnedInteractable
val wo = spawnedBase.worldObject
if (register) {
save(wo, spawnedBase, spawnedInteractable)
}
registerChildren(spawnedInteractable, spawnedBase)
WorldObjectHandler.registerSpawnedObject(spawnedBase)
return spawnedInteractable
}
& then there are methods "spawn" & "spawnPacket"
which then uses the base
so ye Ive had to think abt the logic quite a bit
and I can imagine that this can be incredibly hard to understand
it is
xD
I guess this could be easier if you used pdc on the chunk, with the data of the block, the thing is, these are packet based blocks, so, that does not really work xD
well
Ive used PDC on the chunk
but this does not really help
bcs if you want to support both TEMP & Persistent Objects
and then both Real & Packet based
then it kind of has to be somewhat like this
yes
bcs packet based are meant to be visible to just some players, right
so basically it just creates an audience list
which is empty
and you can make it show to some players
however I dont think thats gonna be used
like I cannot find this useful
however it is possible 
I literally have an use case for this
Lmao
Imagine you want different buildings to show on the same location, for different players
For instance, plots
Instead of having a world with plots, etc. Just have a single plot and all players use the same but is all packet based.
Ofc this is not practical maybe, but you can make other similar stuff for different gamemodes
hello
i dont know if is the right channel, but i have issue with my server.. i created it last year and now its doesnt let me change the name
Not sure if by server you mean discord server but if it is then not only it is the wrong channel but the wrong discord server entirely :')
?not-discord
Looking for discord support?
HelpChat is a Minecraft plugin and development support server and is not affiliated with discord in any way.
If you require support from discord, we recommend you to visit their official support website at https://support.discord.com
On this website, you can read their FAQs, or open a support ticket if necessary.
@long summit funnily enough might learn kotlin while also learning minestom xD
sounds like a Win / Win situation
On a side note, doesn't MCCI use minestom somewhere?
Yeah, on the limbo server
Do they actually use paper or a fork of it on prod? I'd assume they could easily cut costs by a ton using minestom everywhere.
Although I guess that is a lot of extra work.
Custom fork of paper
Cut costs? It'd add a lot more cost since you'd have to re-write so much
Yeah, meant hosting costs xD. That is literally what is currently really appealing to me in minestom, since I have an idea of an MC project that MAYBE work, but I do not want to monetize a ton, so cutting hosting costs is 100% needed.
Hell for my use case, each instance in minestom would be a few KB in comparaison to paper where if I were to do it, it would be whole worlds lol.
- paper cannot handle that many NPCs lol
I wanna do this project more for fun, but if I ever need to scale it, I really want it to be easy to scale
lol
Is the hassle really worth it? Wom't you have to write basically every plugin?
Anyone here can recommend me a shader pack that is lightweight and works with Distant Horizons 2.2? I found Complementary but it doesn't seem to work with 2.2 (I have tried both unbound and reimagined)
I really like Sildur’s Vibrant
Solas maybe?
oh, lightweight, not sure abt that
Hmm. Just tried the light version and it doesn't seem to work with DH 2.2. The shader works but seems DH doesn't. This is how the game looks with Bliss. It isn't the worse at performance, and it looks decent but I don't like the transparent leaves.
same LMAO
it is a fully custom gamemode lol
so yes? I guess?
Also way more performant
cool
can anyone recommend a relatively cheap monitor stand for two 27inch monitors? (not necessarily a dual, I will probably buy two of them)
the issue is I cant drill a hole inside it, nor I have space for a clamp
closest way I can describe the edge of the table is if you take the letter L and mirror it horizontally (it has a back board or whatever)
so, basically, I need something that would connect the arm and I could attach the plate to the back board from the back
The shader looks great but the insane render distance makes it even greater
@fallow crow No bumping in our service channels!
@vernal root md
@arctic cobalt A lot of grey in that scoreboard. Makes it hard to actually see what is important: The values.
Ah good point, the main color theme of the server is brown-grey so i figured it should fit with the scoreboard
Unsure what colors to replace it for to not make it too distracting either though
Grey and white?
^ Totally agree here, everything else about it is pretty sick, just needs more coloration
👍 ❤️ will work on it thank you
You got it!
Thank you!! I didn’t make them my buddy did but I made the font :D
Heyy Together... I joined here to find some help for working with resourcepacks and "invisible characters" is this a server where i can ask for help?
Thanks!
old mc sigma rizzed a gyatt
skibidi ohio
and on that gyatt there was a alpha
skibidi ohio
with a alpha
and a alpha there
alpha here alpha there alpha everywhere
old mc sigma rizzed a gyatt, skibidi ohio
SQUIRREL with a gun is out on steam!!!!
totally didn’t rage a bit but it was fun
Adam check it out
It’s a lot of fun
You’re a literal squirrel with a gun
def not paying $18 bucks for such a game
LOL
that will last 3 days
Fairs
my homies trying to force me to buy BO6
Oof
andddd its not looking so appealing tbh
Borderlands 4 got announced too recently
tbh gaming got boring
Agreed
been playing battlefield 1
Games are fun for a bit
with blitz
Till they get boring
yaa 100%
I mean it’s mainly my little getaway from doing content design/development all the time
The last games I've played are TLOU 2 and GOW: Ragnarok... several months ago 
Then I get bored and go back to it anyway 
Rip
I was thinking to start playing GTA 4
Randomly
I heard it is a great game though
But I don't really have time and now it makes me feel bad if I game for 6 hours straight
adulthood sucks (and I don't even have a kid or big bills to pay yet lol)
hahaha
i remember trying to play it with my old shitty pc
I got so bored of gaming
shit is hella unoptimized
if you really wanna try I recommend installing some mods that fixes a lot of its issues, for example:
https://youtu.be/2Gfd9lQGrxg?si=JV4lrZzmxeQYoEuo
⍟ How to Install These GTA IV Mods? Watch this video: https://youtu.be/1MYXy4M2xs0
⍟ How to Downgrade GTA 4? Watch this video: https://youtu.be/2YnhC7gSUD8
Improving GTA 4's Gameplay (With Mods)
Welcome to a GTA 4 Mods video! 🗽! In this video, I will be showcasing mods to improve GTA 4's gameplay! 💖
📌 Video Timestamps 📌
• 00:00 - 00:47 | Int...
this has some gameplay mods, but I saw a video with only mods that only fixes things (prob from this guy too)
DONT.
why
I can't take them serious trying to claim 16 unique maps on launch is impressive
When they have 500 GB's to work with and their game 10+ years ago had 13 unique maps on launch
It's bringing back the same matchmaking so basically you'll get paired with noobs until you win a bunch of games, then you'll get paired with good players and think you suck so it'll make you think of buying skins, then the process repeats, etc
Some of the maps are literally just taken from another affiliate company so it's not even going to have like actually unique maps
And there's just a bunch of issues I have with COD in general after seeing some videos of how modern COD operates
I forget all the things I saw but it just looks like COD cash grab #32
Backed with nostalgia to make up for how shallow it's going to most likely be
that's actually cool
#showcase message i dont want to upvote nor downvote since i hold a middleground, although it looks nice, the general concept of server wide fonts are pretty bad in my opinion, they create a layer of accessibility issues that just cannot be overridden
Yeah I see what you mean, but what accessibility features do you sense would come with this change?
I’m typically not a big fan of server wide fonts myself, but the development process is way easier from that change and it’s also just a pretty looking thing in game lol
I know the general issues a new font causes but this font is pretty similar to the vanilla one so
Can’t make it an option lol
At least, not this way
well, players can always download their own resourcepacks?
server resource pack will always overwrite
the only option is having two separate resource packs which is a lot of work
on a side note, couldn't you simple make a lambo server, make them choose which version, then depending on that you send them a different resourcepack?
idk, might just be dreaming, kinda sleepy af
well, they will download the resourcepack IF they want that font, not the other way around
can't you make separate fonts
or does item stuff not work with text components like that
i forgor
You can probably make separate fonts but the main reason I set the default font to that was to simplify editing all the plugins messages and just to give the entire server a “style”
i'm gonna have a general blanket statement for it, which is, if i have issues with my vision or with reading, let's say dyslexia as a basic example. a lot of people i imagine could use a custom font to make the words easier to read. overwriting that poses inaccessibility problems
well you can use different fonts in chat and stuff, but yea im guessing it dont work for item lore and stuff
write your own library to generate custom resourcepacks based on player option :>
issue is when that style conflicts with accessibility
I personally have not had anyone let me know of any issues they had with it
But I do see that point yeah
is your server open to public?
do you put the discord links in that font too :kek:
ofc they haven't complained, they can't read it!
It’s a project yeah
how many players?
None yet lol it’s in progress
Idk what you mean lol
dw about it
You will get a part of the players that will become your main playerbase
but then, you might lose several cause they can't read anything when they first join
lol
i'm saying that dyslexic players aren't going to let you know that they can't read it if they can't read the support links / takes too much effort (survivorship bias)
Yeah that makes sense, I mean my only argument is it’s literally the same font with 4ish pixels missing per character
It makes sense though
for a reason, it is different, even if it is only 4 pixels
I wonder if I can somehow make the font not… override other pack fonts
That’d be ideal
I’ll have to check because there was some new pack settings introduced recently
only option is giving them the option to choose like stated before
costco lookin' pizza
😂
I’ll consider that
external client download or multiple packs is your best chance
Have to plan out how things are going to work
i don't think any of us are doctors so we can't actually speak on impaired vision and how a different font would impact someone, but no one should wait until someone has the issue to consider it
if you're actually worried about dyslexic stuff, monospaced block-style fonts are considered good
an optometrist is a doctor
I will say it is very satisfying to play MC in a new font that still fits Minecraft
F3 looks weird but pretty
Why are you not blue?
@twin dune
"Non negotiable" ... "$200 / mo"
🤦 good luck with that.
All the key words as well, and a familiar name. 
they say so much but tell absolutely nothing
Lmao fr
I dmed him asking him how many hours are expected to work per month
If it is more than 10 then fk that
1000 online no queue... for a single anarchy server? I'm assuming they are just copying 2b2t.
"6b6t"
the newest anarchy server in minecraft
Ahh this is the guy who was asking me loads of questions about Analyse only to not use it 🫣
drop the shaders name :/
hot
joins recently made anarchy server
sees "rules:"
That sounds fair though, asking questions to make sure it fits his use case.
missing the point
Ahh this is the guy who was asking me to create an analytics system 💀
Yeah, he asked a ton of questions about Analyse, only to end up wanting his own thing
Charlie have you heard about Laravel cloud?
To clarify, I don’t have an issue with people asking pre-purchase questions, it’s normal anywhere you go - it’s just always funny when it comes from people who end up asking them just to make their own thing
Yeah, looks soooo cool! Are you gonna use it?
If I had a Laravel project, sure
At least to try
I don't know about pricing, I've always tried to avoid serverless as much as possible because I like having a fixed rate I pay
But if the pricing is nice and hibernating works well as they say it will, I'll only need to keep one offsite backup ideally
And all that managing has been one thing keeping me from creating a larger scale application
I do have one project I'm making as a learning experience, but developing that will only start in a few weeks when I get other stuff sorted
Well lacked that last piece of info xd
Yeah I’ve always been the same, the thought of serverless does scare me as a single VPS does well
Analayse is hosted serverless or not?
how can u host without a server!!!!
why are we storing data in clouds, what if it rains!!!
Ah nice
You lose the data ofc
Imagine getting wet of hashed passwords
arrghhh!!
Nah always hosted it off a single dedicated machine, never believed in serverless.
One thing I'm concerned about with serverless is not isolated apps, like when they have to interact with other services via for example webhooks
anyways, just bought my monitor arms and some stuff for my soon-to-be a simple home server while on vacation, hopefully they come in time when I get back 😎
Been working on a new reworked analytics platform and I’m gonna run it on https://www.ovhcloud.com/en-gb/bare-metal/advance/adv-4/
(AMD EPYC 4584PX - 16c/32t - 4.2GHz/5.7GHz, 128GB DDR5 3600MHz)
Absolute beast
How do you manage different server locations around the earth?
He doesn't
He doesn't need to
Analytics don't need to be in real time lol
How long they take to reach the server is irrelevant
hows ovhcloud as a server provider? we are planning to move our current minecraft server to either hetzner or something else
the prices of our current provider are outrageous
also, main thing we are worried about is ddos, the server is getting ddossed probably daily lol
Tbh always heard hetzner is the best
Netcup's root servers are apparently also a good deal
Both ovh and hetzner won't fix ddos issue
Just use neoprotect or tcpshield
It is basically a need nowadays
yeah, well, we have ddos protection with the current provider
But all of them suck most of the times
Well ovh and hetzner def. Do
Their servers are beasts
But ddos protection sucks
Def. Recommend tcpahield or neoprotect
yeah OVH and Hetzner are as good as it gets, basically every other service is just reselling them
my server is run off of two OVH dedis, runs everything great
the cpu is actually 7800x3d
we asked them to swap it
and its like ~200euros monthly
the only plus is that its in our country, so we get lower ping
other than that we are considering ovh or hetzner
i mean for a 7800x3d, you'd probably end up paying like $200/month lol
that's a pretty new cpu
Analyse actually was using Hetzner, they’re an amazing brand overall but they randomly banned me. So looking to use the above box for the new version.
I never worry about DDoS protection for websites as it’s behind Cloudflare anyway
yeah, well another provider offers 7950x3d and more disk storage for cheaper lol
phew well yeah that's pretty solid then
@twin dune
Ovh is fine
Not the best sure but its by far not the worst
Heck most antiddos providers are ovh with additional filtering
Apple rocks tho
I could never use apple for that
I feel being so slow on it
Hello
How did you know
How did you consider buying apple product/s
meow
I saw the Apple logo and went boom 😂 but jokes aside the Apple Silicon stuff rocks, I’m on the M3 Max series and it blows it out the water compared to other cpus
am really not a big fan of the system overall
What don’t you like about the system?
Snapdragon coming for u
Snapdragon laptops already have more battery than macbooks
Yeah but not power
Only thing m3 still wins is power
so depends what you actually need
Is it?
They are not far no
Idk man, latest LTT video said otherwise
Some stuff doesn't work at all, the emulation isn't great
Yeah ik
Win a Hennessey Velociraptor, a gold-plated Cybertruck or $100,000 in cash, with the Ridge Super Truck Summer Sweepstakes! Check it out at:
https://www.ridge.com/LINUS
Thanks to MANSCAPED for sponsoring today's video. Get 20% Off + Free International Shipping with promo code LTT20 or visit http://manscaped.com/LTT20
After using Qualcomm's new ...
Yeah but it will probably take a while to get there
Hmm they already did this awesome progress for their first chip
Maybe gen2 wins
Who knows
One thing is for sure, snapdragon laptops worth buying for students.
Unless you in engineering lol
Idk man, if all you can really do is browsing, sounds more like a chromebook
maybe wait a bit
for drivers and emulation to get better
Also, ty, will watch it after
Eh think everything a student would need works tbh
And it runs some games
And way better than a chromebook
Lol
I still think it's wild that many college students spend $3,000 on a laptop and all they do is use a web browser and Microsoft word. That's crazy I wish I had that kind of money to waste
I personally will stick to cheap(er) gaming laptops
Hmm. I personally haven't seen any of that in Romania
Must be a US thing. Kids here love their apple devices
Well, that I know. Its a stupid status symbol. Even though they are in 100k debt bcz of student loans
Biggest apple market
i mean most people buy an air right which is like $800
People are brainwashed easily in america
if ur buying a pro for web browsing sure thats dumb
Is it? If so that's not too horrible, if they get at least 4 years out of it
yeah i'd think so?
it's more the phones which people spend loads of money on
you can get a 2020 air for like $600 now and it should last a good few years yeah
4 years? Isnt bachelor + masters 5 years?
It definitely depends
What is ur degree if I may ask?
cs
In US it's 4 for bachelor's, 2 more for masters, 2 more for doctorate (generally)
what
And you go till 13th grade instead of 12th
Yes
I'll just go ahead and delete. no one laughed
I technically lose 2 years
Compared to you
Lose one cause HS goes till 13th grade and 1 year in masters
Lol
Well you don't lose them if you learn
(I do not learn)
oh
At least not in 13th grade
They be doing java stuff I did when I started
Just as an example on how stupidly easy it is
OHH sorry i only just got it lmao
i thought you meant versions of the go language or something hahaha
13th grade, final HS year right, you have final exams, I scored max marks in the programming exam lol.... I am literally, historically, the first person in the country to do such since the new school system was implemented
theres a 13th grade? 👀
Yeah here yes
It is not as stupid as it sounds, it helps a ton to prep you for uni
Well... besides in java for me...
But yeah, me, someone who is no expert in java, are now the first person in 18 years to have gotten max marks in the programming final exam
Technically the best student of the country in programming
You do 13 years here as well. But you start earlier
does your school/area have IB
in the US there are AP classes and apparently there's an alternative called IB which is used worldwide...?
You start at the age of 6 instead of 7 which was before
Th is IB
Th?
lol
oh ok nvm
was asking since here there's AP Computer Science A which is a java course that can be accepted for university credit
international baccalaureate
and I have to wait until (mid?) september to see if I got a perfect score
probably didn't bc silly mistake but can hope :)
gl!!
thanks 🥲 (although it can't be used for any official purposes - just a cool feeling)
But yeah, makes no sense lol, I hate it even more when other students come congratulate me and teachers, saying how impressive it is, and I am like (in my head) "bruv, I did this when I was 12..."
did you do IB courses?
computer science ones?
nah but some schools had the option
ah
I heard IB courses in general were a lot more challenging though compared to AP
honestly i couldnt say
i think theyre more wide-ranging?
you have to do a big range of subjects right
yeah for like every subject lol
or not have to but it's common to do like the math ones especially
yea
Oh here in 10th grade, you choose a "section" of your liking, it is not any extra classes, your whole program is around that topic. For instance, I had to go engineering from 10-11th grade and then switch to IT for 12-13th grade, IT only has 2 years but yeah
Idk if this is the so called IB or not
ohh hmm
I think some schools have "career pathways" here but it's per-school (my school doesn't)
Yeah you can call them that yeah
It just helps you learn exactly what you want
Well, not exactly
Cause I sure as hell don't want maths
But yet here I am
🥲
I’d say that’s a long time if any though, don’t forget the M4 Max will be dropping this year.
Snapdragon are prob the only company I’d say Apple should be thinking about though, but they’re still far away power wise
It’s good to see more competition tho, as I’ve always gone by.. competition breeds innovation
well am not into linux and ye am just way too used to windows
like having tabs opened next to each other, having big monitors, simple tab management, alt tabbing, etc.
Ive used to have a Mac
in 2022
Ive gave it a chance
Ive also tried to learn the new keybinds
however Ive bought the machine just to be more quick in working
Honestly that makes sense, if you’re used to something it’s hard to change
which I was not
You should be able to have big monitors on Mac though, if you mean plugging it in
Ive also had issues with the scrolling
I have mine plugged into a 40” 5k2k display
Yep I relate here 😂
and I could not find a way to disable it
yea xD
it is just so bad
and like Ive missed so many settings in the system
Make Your $10 Mouse Better Than an Apple Trackpad
This is what I use
As otherwise my mouse feels terrible
wait what
mhm?
what? :d
Scrolling on a mouse is quite bad with Mac (like it’s the opposite direction etc)
theres mouse acceleration and scrolling acceleration
But the Mac Scroll Fix seems to be the solution
nah
the movement and scrolling is just so off
I have mine set so scrolling down actually scrolls down now
it is alright on touchpad
the touchpad feel is so epic
but
why would anyone use touchpad
YESSSSS I LOVE NORMAL SCROLLING ON A MOUSE
honestly except for games i love the macbook trackpads
no complaints
yeye, but like
for regular stuff
like searching
working with docs
etc.
but like coding and actually working
is not that great w just touchpad
yeah i enjoy using the trackpad for that personally
at least Ive had this feeling
but that's just preference
yee it is
I don’t mind it on a trackpad scroll for normal stuff, but when using a mouse I have to get the scroll thing to go in the direction I want
however It is really strange that apple does not care more about the regular mouse feel
Apple have a setting for it but it also changes the touch pad
bcs I can bet that there's loads of people that didnt buy mac just bcs of it
So that app lets you have both
however overall Ive liked how mac manages the battery health, the luxury design & overall premium feel
but it is just not for me
am not hating it tho I would say
But actually for the pricetag I would imagine bit more
I mean makes sense, everyone has different needs and preferences. It’s why I always say that you’ve just got to go with what you’d prefer
I’ve always gone Apple mainly because I have a nice dev workflow now, and the apps I use are Mac exclusive
In overall comparation I would say that Windows system is better. You got more freedom I would say? Meanwhile apple is better in regular performance and battery life
and I also like how you can connect apple stuff all together
having stuff from whole apple ecosystem is surely a benefit
For me personally, I find Windows better for gaming so I have a desktop PC for that. Then for programming I much much prefer Mac, I just find the apps are better, nicer quality, they look better UI wise, lots of options too
But I guess you could argue that I'm very deep in the "Apple eco system" now https://charliej.com/uses
so clean setup ffs
huh? In progress
what the hell are u planning w it
I thought that you have sold it to tebex
I made a screw up, supposed to be gone 😂 but I have something better and exciting coming
ooo
Hehe thanks, I am very OCD about it looking tidy and simple
if only you have seen my setup
Work starts on it next week after a 3 week break
yeee
xDDD
bcs
Ive got like all black right
but my case is white
bcs black was not in stock
xDDD
hahaha really, more rgb is supposed to show on my case but i wired up fan rgb wrong
so :D
they spin but no lights, only the ram has rgb
Agreed
@frank pasture
ignore the case btw
it is on wrong side
xDD
your OCD would scream
It is screaming
Apple event is in one week this Monday, will cop the iPhone, maybe the new mac if its a big jump 😂
so clever using the ipad 😂 i recently got an ipad and its so useful for showing stuff like youtube, rather than covering the main screen
yea hahahah
my ocd mainly is you having mc on your main screen and coding further away 😂 but lovely setup
oh 😂
oh shit 😂
how did she manage that?
she dropped it outside
2 headphones 👀
directly on the power button
What iPad was it?
Since we're sharing setups, here's mine, pretty simple one
(no cable management because I'll need to move it at some point)
Also we have the same headphone Larkeyy :)
Oh that was a good one
this mouse
bro no
xD
What's wrong with the mouse?
cool fish tank
Ive heard loads of bad stuff abt it
but i hate theeee holes in the mouse
xD
it just gives me so bad feel
Did you solve all those rubix cubes
Has been really good for like 2 years now, I don't mind the holes
Yeah
Will be cooler when the plants grow 😔
the scroll wheel stopped working
ffs
oh shit that case
I absolutely love this case
I've had logitech, razer, and some others and they hardly last like 6 months, glorious has been the longest lasting I've had
Scroll wheels love to have a problem
they can be shotty, i had to buy a new G403 because the scroll wheel just.. stopped scrolling.
Ive had the superlight pro
now Ive got superlight v2
It's a very pretty case https://www.fractal-design.com/products/cases/north/north/charcoal-black/
It isss
do you have wired or wireless?
Wireless
For me the razer one
I could not scroll down w mine
I really like your setup
Lasts about 5 days or so I think, gotten too used to charge it that I don't even know how long it lasts anymore, charges really fast though
I'm looking at Glorious mice, maybe when my G403 dies i'll go with one of these..
the logitech?
Should try hyper x pulse fire haste wireless
Every razer mouse I've had always and I mean always started to double click after a few months
im 16 and haven't ever been bought my own technology, I just inherent my dad's stuff 😭
OOH no worries hahah
I don't like the screen design (with the holes) personally
i think my record was going through 3 razer mice within 6 months
lmaoo
They really love to double click
don't they have a setting to prevent that?
they are.. not good lmao
Ive been thinking abt buying the wireless logitech ones
I currently got wired
and I hate it
I keep dropping them
Glorious Model O have a thing that you can increase and it won't double click
It’s Razer 🦖
bcs the cable just gets around the chair hand rest
and when I move w my chair, then I just drop the headset
xDD
painful
Mine is the wired one too, it is quite annoying
Yep which is a great feature ngl
wireless logitech is good
Ive got the Sony wh
Probably, but like if you need a setting to fix a problem you have a big problem
my glorious has lasted me I think 2-3 years, maybe more
but thats great just for listening to music
well I mean, double clicking is arguebly intentional for some stuff
I like HYPERX a lot
I'd understand if it either was a setting or came out of the box double clicking, but if it happens after use you know it's something wrong with the mouse
I want to get a monitor that I can connect my laptop to, do you guys have any advice?
Am currently using Cloud Stinger Pro headset from HyperX, lasted a long time big W
HyperX has some great quality stuff.
The image kinda cuts a lot of them, I have from 2x2 till 6x6 and 2 megaminx (3x3 but 12 faces)
I'd get more but my wife would kill me 😔
I was once able to solve 3x3s in like 19 or 20 seconds
But now I completely forgot the trick!
Nice, I can do in about 20 seconds too, I was going to try learning speed cubing but can't be bothered I just find them fun :')
Yeah I don’t see them as a race, just a really good thing to pass your time with
Specially knowing that the world record is currently 3.13 seconds 
Exactly 💩
IDK if its specific to minecraft but has anyone that uses windows had an issue typing console commands in command prompt lately?
I start the server (via batch script) and when I go to type commands I have to press the keys a few times...
probably some issue on your part
what kind of fish is this
... how lol
Like the server starts everything works but when I start typing in the console I have to press keys a few times before it actually starts typing
windows, ubuntu?
Windows
seems like a similar issue
did you try running via a different terminal? git bash, windows terminal app?
No fish in there yet, tank is pretty new so it needs to cycle first, there are 2 zebra nerite snails in there though ;p
aquarium, nice
we have an aquarium on my wife's desk
sadly the fishes are gone
not sure what we are doing wrong, we had all the required equipment, tried to upkeep it as best as possible, but the fish just keep dying for some reason
only one of the guppies that we bought like a year ago outlived every other resident, died couple weeks ago tho
How big is the tank?
its a small one, 20 or 25 liters, idrm atm
at first we had a betta and some shrimps (pinocchio shrimps or whatever) the shopkeeper told us the shrimps would be fine, only to find out the betta ate all of them lol
yeah, we knew, thought the shrimps would be fine tho, as told by the shop
then got some guppies, since they are kinda hardy and can live in harsher environments
You doing water tests? Idk how available those are for you
Well could have been the thing I mentioned on my message, tank cycling, not sure if you're familiar with aquarium nitrogen cycle but fish and stuff produce ammonia which is toxic to fish, bacteria turns it into nitrite which is also toxic to fish, then other bacteria turns it into nitrates which is safer but also slightly toxic, that's when you do water changes or have plants in there to do the job
Also I feel like guppies are not really good for such a small tanks
they were doing fine, but we kinda didnt have much time to look after the tank when the baby was born
yeah, we did, we have those test strips for various chemicals or whatever
Ngl, I'm just relieved it wasn't a goldfish
We used to keep a salt water. Would give them a shot of vodka occasionally 😌
Salt water is scary
There's risk, but honestly if you get an established tank, maintaining isn't that bad.
Research is a must obviously, knowing what fish and coral can go together is important.
To me is just the idea of salting the water the correct way for water changes and also salt water disease are terrifying
sadly we dont have any shops around that sell salt water fish
thou afaik it's quite more difficult than regular (fresh water?) tanks
It's not much different than doing like water conditioning on a water change
it's the fiddling with an RO/DI unit and remineralizing the water that gets me with saltwater 🥴
hello it's me

She's the nerd in that stuff
We never got that far to get those lol
i almost started a saltwater tank at one point, but bristleworms scared me away
I'm just regurgitating what she taught me
if you are interested in more fishy talk theres discord/aquatica server (not sponsored)
I always like to peep at the showcase channel
people make some amazing tanks
I'll dig out an old picture, I miss her
i wish i was talented
my skill with plants is ,, not great
Anyways, look at this little guy
That looks great!
that snowflake clownfish 🥺 🥺 🥺
finding nemo?
They were all so cute, I miss them so much 😭
We had to take it down when we moved
lmaooo
i'm a huge softie for clownfish, i adore them
if i ever did saltwater, it'd be 100% for clownfish
It's just a phase dad
i still think the most cursed clownfish morph is the naked ones
they feel ,, wrong
like i'm sorry but who went out of the way to make this a reality 😭 they took his clothes and everything
i should see if i have some old pics from when i used to keep bettas; i used to always nab the saddest-looking bettas from pet stores and treat them like kings
Omg yes, I feel so bad for them.
I used to work in a pet store and we'd be pulling deads daily 😭
yeah I dont get why the stores keep them in such small "tanks"
its basically a cup of water lol
I mean yeah I know that they cant be held together, but still
could if they were females
Which petstores already do gendered animals sales with mammals, so it's not like a huge stretch per se.
wowie!!
I remember buying an albino pleco for my mom's tank, little monsters
was it a bristlenose?? their little whiskers freak me out 😭
ouohogohooguohuguohugouho it looks like little tentacles ougouhoguohuoguhuhghh
lol yeah I remember those too, at first we had no idea what it was (didnt do much research on bettas, was just starting out with fish aquariums)
Wet naked mole rat
i miss having bettas so much, they were so fun
i used to play with mine using laser pointers; they'd chase them and it was really cute
used to frequent pet stores to get supplies for my other bettas, and i'd see a lot of bettas over and over for weeks and see them decline over time, so this was one that i'd gotten after i saw him like every week for almost a month :( super washed out and bottom-sitting
it feels so good to stop using inheritence except when it ACTUALLY makes sense
composition + interfaces carry
damn bro has no fins at all
hes just chilling
he was a koi plakat!!
this was him two days later
handsome ,,
The long finned ones have so many issues with getting their fins damaged 😔
bad pic, but this is what he ended up looking like once he fully colored up
looks like two different fish
HES SO CUTE
SHUT UP
'N BOOTIFUL
The glow up is crazy
ikr, getting bettas from awful petstores is like buying an irl loot crate
you never know what you're gonna get

my other betta, gilbert, was a pretty handsome boy too 🥺
he had the most beautiful, flowy fins
Oh my, he's gorgeous
we had these silly boys

pinnochio(?) shrimp???
he IS handsome!
they look terrifying
Reminds me of a ghost shrimp, but not quite the right color
i'm hoping to get back into shrimp when i get my 19 gallon tank up and running
i'm hoping to get some red cherry shrimp c:
shrimp taste good
Prawn
we had those too
they're just cute little guys!! !
there should be a picture somewhere if I could find it lol
i'm aiming for a colony of cherry shrimp, a trio of honey gouramis, and possibly a small group of emerald dwarf rasboras if the tank can handle it
my whole gallery is just my wife and our baby lol
