#dev-general
1 messages · Page 272 of 1
u said "your kids"
"my kids" gives the impression that you're a father of multiple children
17 kids
it rly does
that's a lot of children
Introduce my "empty" disco floor...
he's a very odd guy. but only 14 yo
love it.
In case for someone who doesn't know what my minigame is about, it's a minigame which people have to avoid tiles running in waves
so musical chairs but no chairs
Each wave will be a specific pattern running, lasting around half a minute for each, and in sync with music if possible
Touching death tiles (red by default) will cost damage
Other colors are fine
The main core of this development is the pattern idea and coding
And coding needs a lot of math..
k then gl
roblox 🤢
So I got this issue where its kinda like a round-off error
like when i make a loop involving double:
for (first = 2d; first <= 10000; first += 0.1d)
On the third iteration, it turns into 2.3000000000000003
and im like wtf lol
i don't assign first anywhere in my code
i only increment it in the loop header
bruh
that's how floating point numbers work
0.1 + 0.1 + 0.1 is 0.3000000000000000000000003
Aww man
it's a precision error
Yeah
strictfp 😮
won't help
whats strictfp for then?
bigdecimal works around it I think
strictfp, afaik, ensures that the same floating point algorithm is used, no matter the JDK
it's something like that
ah
it guarantees the result will be the same across all platforms
if we don't use it, JVM is free to use any extra precision available on the target platform hardware.
A popular real-world use-case for it is a system performing highly-sensitive medicinal calculations.
so i have to use bigdecimal?
probably
i guess google forces me to this
lol
i found the formula
oh nvm
yeah
rip hm
well
it got the job done
but its very ugly
anyone that wanna take part in a lombok discussion?
?plsnolombok
Why is Lombok bad?
- It's a compiler hack - the Java compiler isn't designed to modify code, so it can cause difficult to debug errors, or worse
- It requires an IDE plugin, so unless you've properly configured Maven, Gradle and your IDE, you'll get hundreds of compilation errors. This process takes time too, it's not easy
- Lombok'd code won't show in Javadocs
- The code generation is often unpredictable and difficult to debug, and often you'll have to do it "the hard way" anyway
- Java is supposed to be explicit, Lombok hides a lot of key functionality into a subtle annotation which can be easy to miss
- While IDEs support it with a plugin, it's usually more difficult to find specific things, like usages of a getter because they don't exist in the source code
- Finally, Lombok'd bytecode doesn't match the source code, so it causes a pretty annoying warning in IntelliJ
- Enforces everyone that touches your code to use lombok
- Not meaningful, it simply provides a tiny if no shortcut and IDE can simply generate something similar.
- Just use kotlin
^ if you only have @Getter for generating getters, the chances are that the method only acts like a vessel on the object meaning that you could technically use a public field.
generally you dont wanna use public fields in java right? make things private and add a getter
no
apparantly foo bar problems are public
i was so stuck on this one cause i had to know angular velocities and im like wtf
when do i ever need to study gears in life
lol
...
im not writing in python
im using that for the logic
lol
though python has a Fraction class
idk why java doesnt have that
😦
It's weird to do in a statically typed language
is gson good?
my json class is da best 🙂 even tho i never tested it yet
yes
k. time to learn how to use it I guess
its epic
its really easy to use
How so?
bcs fractions own a weird spot in the numerical tower. If you divide two ints, should it always be a fraction? And what would the coercion rules be? After all, most of the time you can't convert fractions to int or double without information loss. So you'd have to write methods specifically for fractions/other types
Hmm good point
You could always return a Fraction and require explicit conversion to a double or int
But yeah I see the issue
yeah you can make it work and I haven't thought it completely through but I don't think there are many statically typed languages doing this
challenge for elara?
hmmm
Tbf we have a slight advantage
In that we can do like type Number = Fraction | Float | Int, any division returns that, and then all the math methods use Number
Ik that's just inheritance
But
I think it would work
Theoretically
try it 🤷
yeah sounds like it's worth a try
reflecting on when I was learning java, I've decided that static variables/methods were the worst part of learning, but not because they were hard to understand. I had some people telling me to never, ever use static unless I really had to and others saying that using it a bunch was just fine if it was easier and it was really hard to sort through the advice and find an actual definition for when static should be used
never never never ever use static
go away
😊
Well the problem is
When you're new
Unless you understand it, it's super easy to abuse it
So it's easier to just say "never use it"
Cuz good luck explaining static to someone that doesn't know what an object is
"You should never ever use static under any circumstances except when suitable".
- development, 2020
"and others saying that using it a bunch was just fine"
Every spigot dev ever
Most*, saying every is false
I use static for everything
Stop offending me
My 12 param util method actually works!!!
"Kotlin bad, static good, spigot is well designed, the single responsibility principle doesn't exist, Eclipse is better than Intellij"
Lol
"oh yeah, and eclipse > intellij"
oh yeah ofc
thanks
do u guys prefer eclipse or netbeans
and don't say none
just curious 😄
Fuck off with both is the official answer
obviously eclipse
hmm ok thx
NetBeans is barely integrated development environment in my opinion
You havn't used Netbeans RCP!
I bet it's just as fun as Eclipse RCP
Yes in the fact that I couldn't get either working 😦
So you havn't used it either?
eclipse is easy for new devs though
no it's not
because 99% of tutorials use eclipse
That's their problem
if u dont finish ur tutorial by the end of this week then I'll just record it with google translate voice
No because eclipse is the cause of eclipse fanboys
then get @weary epoch to edit
public int hashCode() {
return ThreadLocalRandom.current().nextInt()
}
My new hashing method. Collision-free guarentee!
What year is that laptop from. Can see a parallel port lol.
idk, probably quite old
Take It Easy, Globehead, They're Just Flat Earth Memes refers to a series of snowclone memes based on an image of actor and retired professional wrestler Dwayne "The Rock" Johnson making a "palm down" gesture. Utilizing Take It Easy, X, They're Just Y snowclone, the memes are often used to ironically mock the opponents of religion, conspiracy th...
Doctor Who.
?
that's not doctor who lol
yeah but it is doctor who.
ok
A bit random but, 10 most loved languages according to stackoverflow in 2020
Correct
This is what a fair and just comparison looks like.
RUST
This looks fake
Official sources would put rust higher up!
The top 5 most loved is very understandable tbh
- Me, who has used rust a couple of times but doesn't do any projects in it because I don't even know lifetimes ☹️
Rust is kind of weird. you wouldn't think everyone would love it, but I love it, loads of people love it, in fact, no one loves Rust more than me.
Yeah i think so too, is like better c++
i mean i agree it should be one of the bigger ones
What's wrong with python?
It's one of the easiest languages and you hardly ever have issues with it so understandable that people that use it love it
yeah seems like. I haven't tried it yet. I'll have to think of a way to save all that data to a file. Because rn my brain is melted.
Oh wait you're talking about the wanted, i mean python is the most popular language, the amount of jobs for it is insane
is Kotlin more used than java?
Rusty Spigot
Kotlin is like 18th most used
Johnny I didn't see the images, I just saw what Pulse said and assumed that he means in terms of usage.
52% of respondents think “Hello, old friend” when they search for a coding solution online and find that the first result link is purple because they’ve already visited the link.
haha this is cute xD
who the f uses VB
Microsoft
I find this one funny
Like, duh, it's the StackOverflow developer survey
what do you expect
Me
@ocean quartz how come i didn't know about this: https://github.com/Holovid/Holovid
Lol
No idea lol
final @NeveR#8326Null Map<@NeveR#8326Null Class<@NeveR#8326Null ? extends List<@NeveR#8326Null ?>>, @NeveR#8326Null Collection<@NeveR#8326Null CompletableFuture<@NeveR#8326Null ?>>>
Oops
lmao
Gj lol
Lovely annotation lmao
Heh
Finally, let's bang this class out and then we can get to the factory factory implementation and then it'll only be a few more abstractions until I can get to the real stuff
🥲
lol
new FactoryBeanProviderWithASliceOfMozzerellaAndThickCrustSupplierProvider
give them some clout https://twitter.com/ctrlshifti/status/1352103674030432257
developer: so i have good news and bad news
manager: what's the good news?
developer: i've discovered that the "5 second rule" only applies to food
manager: and the bad news?
developer: i dropped our tables
1222
6871
Kat maddox makes some great posts
truth
any idea why on cpp when I set an int variable through a setter to 100 and then print it to console it shows 100 but next time I try to use that value it is 0?
code?
sec
You need to use rust. I bet this would not happen in rust.
In fact, nothing can happen in Rust since you never get past compile time
// Deposit money into an account
void deposit(int sum) {
this->balance = this->balance + sum;
}```
Cant really show code cuz it's too big but I have a deposit and withdraw method and it one I do `Account#deposit` and in the other `Account#withdraw` but somehow the balance stays 0 even though after deposit it is 100
what type is balance
cosmic radiation is flipping the bit
int
and we do need more code please
defo
ok johnny
especially withdraw and the callsite
banks actually have protection against cosmic radiation flipping bits in bank balances
don't want £100 to become £100 million lol
class Account {
private:
string name;
int balance;
public:
void deposit(int sum) {
this->balance = this->balance + sum;
}
void withdraw(int sum) {
this->balance = this->balance - sum;
}
int getBalance() {
return this->balance;
}
}
// It is more than that
void deposit(string accountName, int sum) {
for (auto &it: list) {
//check if the account name is 'accountName'
it.deposit(suma);
}
}
void withdraw(Account account, int sum) {
if (account.getBalance() < sum) {
cout << "Not enough funds" << end;
return;
}
account.withdraw(sum);
}
int main() {
Account account;
deposit("test", 100);
withdraw(account, 100);
return 0;
}```
Something _like_ this
Die
The top level deposit and withdraw functions are call by value
and what does that mean?
It means the account is copied and then passed to the function
the value is not updating?
you want to pass a reference
&
fuck pointers
no need for a pointer here
Pointers are both really cool and never seem to like cooperating
Yo give my recent plugin some love https://www.spigotmc.org/resources/deluxeasyncjoinleavemessagefully-optimizedasync-everythingopen-source.88129/
Damn, you're moving up on your shitposting
version infinity
ikr
i love it and hate it at the same time
holy shit
@lunar cypress The thing is, the method I run before withdraw() is most of a transfer between accounts, I get the accounts by their id (string) from a list and then attempt to remove the sum from first and add it to second
Account sender;
Account receiver;
for (auto &it: accounts) {
if (it.id == sender.id) {
sender = it;
continue;
}
if (it.id == receiver.id) {
receiver = it;
continue;
}
}
sender.withdraw(sum);
receiver.deposit(sum);```
If I debug receiver.getBalance() inside this method it shows the right value but when I call it from another method on the same account is still 0, I understand is something to do with references and such but I don't know the format =/
@steel heart implementing that many interfaces should be illegal
you're again copying the account when assigning it
ok but how do I do it right 😦
sender and receiver should be of type Account&
Declaration of reference variable 'sender' requires an initializer
what is greater than infinity
infinity + 1
infinity^infinity+1
Hmm I need somehting more verbose
There are things that are greater than infinity
for instance you might have an infinite vector space but it becomes infinitely bigger the more dimensions you add
eh, you could use a pointer here
I think
idk how 😦
haven't done enough c++ for this but can't you just declare it as a pointer and grab a pointer instead of a reference in the loop
the set of real numbers is a bigger infinity than the set of natural numbers
also an easy example yeah
Thinking about this stuff blows my mind
yeah it's very confusing
In my last live session for my linear algebra class (we have those every week as a recap and to expand on things and so on) we talked about the subsets of the real numbers
and it is really confusing
The numbers we know are an infinitely tiny part of the real numbers
For example there's a thing called "normal numbers" which are numbers that contain every natural (I think?) number at some point in their decimal points
And it is estimated that almost all real numbers are of this format
And you can prove that if you pick a random real number the chance of getting one is literally 100%
even though we only know like 2 lol
yes
you see, that's not random
randomness is another funny thing
While a general proof can be given that almost all real numbers are normal (meaning that the set of non-normal numbers has Lebesgue measure zero),[2] this proof is not constructive, and only a few specific numbers have been shown to be normal. For example, Chaitin's constant is normal (and uncomputable). It is widely believed that the (computable) numbers √2, π, and e are normal, but a proof remains elusive.
I think its for any specific base maybe?
wiki mentions that the number must have same "natural density" for each digits of the base to be normal
Lebesque measure zero
that's probably what the prof meant by that
I obviously wouldn't be able to explain this circumstance to you
Chaitin's constant is also incredibly confusing
we talked about that as well
you know, as long as I don't have to prove shit like that I'm good
ty @lunar cypress
I havent actually done cpp at school or smth, just learned it for a friend and tried to stay away of pointers as much as possible xd
you know that c++ has an api similar to java streams, yeah?
no
perhaps that could be of use as well to you
couldnt get my head around making a method to return the account or null 🤣
I just realized that in the code you sent above you access sender.id and receiver.id which doesn't make a lot of sense
but I guess you've noticed
I mean that you didn't initialise the variables
that makes more sense
I would have gave you the actual code but is not in english =/
bad
help or leave
what's your issue
why if you're not writing for school 🤔
is for a friend, for school
You're writing their homework?
yea
you are doing the work for a friend, but don't exactly know how to do it yourself
so in the end
oof
🌝
sleep is good, you should give it a try
smh
I just have a flexible job
.
lmao
:)
lmao
there isn't really much to pointers
I can recommend an excellent video series on C though if you'd like
sure
Cherno
we are gonna do C for one semester and I dont mind understanding these stupid stuff
yuh
Introduction to the C programming language. Part of a larger series teaching programming. See http://codeschool.org
ty fellas
ew imagine not removing embeds
ew
ew
mfs
Why are you not using English tho?
stop saying that
Lol true
No lies detected
Well immutability could be used more tbf
May I introduce... Le Clojurino?
Lmao
lol
Omg just spent 30 minutes trying to literally just space 2 buttons apart
Basically this
Someone kill me
lmao
lol
https://i.imgur.com/Toryw6W.png I was looking for a domain with imbuster in it and this was a suggestion
lol
you better get that
@surreal quarry a couple of peculiar facts about LP and its API :>
The inner workings of LP itself don't implement the interfaces the API provides, and it barely uses them at all if any. It works with a "handles" model like CraftBukkit implements Bukkit and uses handles between NMS and OBC
I was quite baffled when I found out about that
I think BKCommonLib has the same concept
And secondly you can just subscribe to LuckPermsEvent and your listener will be called on all events lol (unlike Bukkit)
One magic LP does that surprises me is that it knows exactly what permissions your plugin has even without having them in the plugin.yml
it caches them as they are checked
If you ever check hasPermission it'll know
It's amazing
yea but they would need to run the command or something for the specific command perm node to be cached
if you want them all cached from the start you gotta have them in the plugin.yml
In other news, I spent the entire day making this, please someone kill me
rip
lol
Also what's with the color on the side lmao
^
For now just playing around with this thing and getting beaten up
Dw about it
Nah, nothing works xD
Likey
hi
hi
hi 🙂
hi
are there any guild plugin files in Turkish
?spigot
Spigot Account Linking
To get support for a premium plugin owned by Clip or Glare you will need to verify your spigot account using =spigot in the #bot-commands channel. After you have successfully linked your spigot account you should ask your question in the coresponding channel for that plugin. If you have already linked your account and want to update your roles, run this command =spigot check.
theres a guilds support channel once you link your spigoit
I've completed this process
when did you purchase the plugin?
Fr
i have
[tag] [player] >> [message]
but i want to have name of guild at the front to
what i have to put on?
did i stay at the wrong chat?
You should see the placeholders and put the one you need in essentials config.yml (if you use EssentialsChat). To find the format just press Ctrl + F and search "format:"
xue hua piao piao
u ok Pulse?
STREAM AND DOWNLOAD XUE HUA PIAO PIAO BEI FENG XIAO XIAO TYPE BEAT ON ALL PLATFORMS: https://ampl.ink/1jklJ
Links:
Beatstars: https://bsta.rs/f3f3db6
Instagram: https://www.instagram.com/goated_beats
This beat is free for non-profit use, and must have (prod. Goated) in the title.
Email goatedbeats@gmail.com to buy for profit use.
- Premium L...
if I apply for dev role
Show the projects Remence
I will

give me a second
Well
I mean link em here
oh they aint on github yet

LOL
anyway
is my github linked to my dsicord proof that I ownit
or do I need extra proof
nice formatting
lol
=github
I didn't touch that plugin at all
lmao
Oh god
Get rekt
what about u
Piggy wanna judge this old project with a quick glance?
k
yay lol
bs
Lol
you applied 5 days ago
frosty it's 7 months old ofc it's gonna be shit
back in the day I thought rpf was top notch code
and i look at it now and i'm just why
what am I missing https://i.imgur.com/nn0uhM1.png
yes remence
Rpf is still nice
I mean I'd say it's still better than most of the plugins found on spigot kek
@steel heart I saw your join plugin
omgomg
Haha lol
Wanted to go hang from somewhere
its soo good
how do you disable update plugin notifications?
Lol
how many hours?
It’s so good what you talking about
1.2k is really on the lower end for rust
You're so close, just some really minor things:
- Follow the liskov substitution principle, and by extension all of the SOLID principles. e.g. returning HashSet instead of Set, when Set would've sufficed.
- Follow naming conventions
- Cache reflective objects as constants so you don't have to get them on every run of a method
- https://github.com/Ponclure/BlockUs/blob/main/src/main/java/com/github/ponclure/blockus/throwable/IllegalInstantiation.java this should extend AssertionError
🥲
sometimes
Imagine not following liskov!!
Piggy, you don't bother with srp checking do you? So long it's to a reasonable amount
I do check srp
I have been fooled my entire time, why did I never think of using apaches reflection utils
just not on spigot main classes
porky, if I complete ur challenges on github do I have a chance at dev role
Ah
no remence
d;Apache
public final class Matcher
extends Object
implements MatchResult```
Matcher has 1 extensions, 1 implementations, 27 methods, and 1 all implementations.
An engine that performs match operations on a character sequence by interpreting a Pattern.
A matcher is created from a pattern by invoking the pattern's matcher method. Once created, a matcher can be used to perform three different kinds of match operations:
-
The
matchesmethod attempts to match the entire input sequence against the pattern. -
The
lookingAtmethod attempts to match the input sequence, starting at the beginning, against the pattern. -
The
findmethod scans the input sequence looking for the next subsequence that matches the pattern.
Each of these methods returns a boolean indicating success or failure. More information about a successful match can be obtained by querying the state of the matcher.
A matcher finds...
This description has been shortened as it was too long.
unless it's very high quality
@NotNull
String getName()```
Gets the name of this command sender
Name of the sender
if it's very high quality
@NotNull
EntityType getType()```
Get the type of the entity.
The entity type.
I think I should have it https://github.com/Conclure/DeluxeAsyncJoinLeaveMessage/blob/master/src/main/java/me/conclure/wtf/FinalProUltimateDeluxeAsyncChatJoinMessagePluginImplFactoryAbstractCommonMainProviderBootstrapExecutorHandler.java 
https://www.spigotmc.org/resources/deluxeasyncjoinleavemessage-fully-optimized-async-everything-open-source.88129/ - Conclure/DeluxeAsyncJoinLeaveMessage
might remove previous versions of final releases of minor versions
fuck that's a sentence and a half
i.e. 1.8.8 only, not 1.8.7 and below
🥲
Pro static
literally @heady birch
Piggy what do you consider high quality?
ur mom
😮
Funny
lol


porky wanna carry me in rust
So basically enterprise java code = accepted or what
o_o
piggy has a league account?
Wait Niall has developer
Niall what did you do?
you live like so far lol
I heard barry now has a feature that automatically approves requests if the code contains "Factory" "Bean" "@Autowired"
like oceania
niall got in from his plane tracking project iirc
I'm sorry Niall but I have to ask
Is the AA up yet?
Poorly written code though
Hmm okay so basically Ima mix guice, Spring and then just add some random abstraction library
🔥
Challange: Make Essentials but you can only use bitwise operators and no other operators

lol
I consider high quality code code that strictly abides by the widely accepted quality related principles of your chosen language
in java that's oop/solid, dry, and blah and blah and whatever
Hmm okay fair enough
Of course if you were writing stuff in spring, it would actually need to be decent spring stuff
yeah even though spring does 99% of the work for you, it's still possible to write bad code
look at enterprise fizz buzz for an example
porky is piggy's nickname?
yes
can i start calling him that
yes
i don't like that name honestly
Hi porky
No further mention of Elara. I don't want to hear about it until my emoji feature is implemented.
just define each operation with them once and it should be pretty much just reusing those 😌
Though it was some years ago that fizzbuzz code was written
D:
these principles have been around for yonks conclure
why you have to always ruin everything lol
Which?
probably before a lot of us were born
🥲
Wait indian?
emoji leaderboard
enum Status {
☹️, 😐, 🙂
}
lol
lmao
the what? xD
piggy are you a kotlin karen too?
Yeah well they’re more known now than for 4 years ago prolly
am i a fucking what?
a kotlin karen
define
Status.🥲
someone who simps over kotlin
Yes that possible rn
no
identifiers can be emojis
simper
i'm for the most part indifferent towards kotlin
big smiper
but i'm a believer that kotlin is an ugly language to look at
Java is prettier with all of its verbosity
It just gets hard to follow sometimes when you do too much with less in kotlin
but isn't kotlin objectively better
Idk
lol
especially when you're using eclipse
depends who you ask
Do any other languages even have built in static and oop both
Do you have an eta for elara or no
as in?
Damn
that's free cash
It will be ready when it is 🥲
Probably not so efe
No
C# is just microsoft's Java
There was a lawsuit against microsoft for using Java somewhere or something
I forgot what it was
Like Java can use the static modifier or you can define an object with encapsulation with it that way. Some languages aren't oop but are function so they are kinda static?
c++
smalltalk
C++ is actually god
no
Idk
c isn't oop
is discord dying or just me
c is not OOP
machine code
Circuits
DFA
punch cards
any finite state machine 🥲
mother of most modern languages is c
but who's the husband
Yeah java has lots of native methods doesn’t it
java is c++
jna
I think
lol
it is
its a vm
openjdk is
So basically it’s fast cuz of that 
JVM -> java virtual machine
so it runs kinda an os
idk im not super good around this
He means Open Source
oh
Well of course its open source lol
you can look at the methods and stuff inside
that's how a lot of the big o and shit was found out
when using them
Wasnt there an issue with sun having copyrights to some part of the stdlib or something?
idk yugi
efe most new languages these days compile themselves
i.e. you write a simple compiler in something like c++
then from there on out you write the compiler in your own language
I remember someone telling me that thats the reason googled switched android's "main" language to kotlin
I think it may have been sx
Javac is also written in java
oh, didn't know that
Hotspot is in C though I think
JayJay
help i accidentally build a shelf
Holy shit that's ancient
public class PlayerBedEnterEvent
extends PlayerEvent
implements Cancellable```
PlayerBedEnterEvent has 1 extensions, 1 implementations, 9 methods, and 1 all implementations.
This event is fired when the player is almost about to enter the bed.
Probably when they click on the bed
void setTime(long time)```
Sets the relative in-game time on the server.
The relative time is analogous to hours * 1000
Note that setting the relative time below the current relative time will actually move the clock forward a day. If you require to rewind time, please see setFullTime(long)
time - The new relative time to set the in-game time to (in hours*1000)
6000
@ocean quartz Will chat have a chat moderation feature as well? (Caps, links, etc)
If yes, I'd love to work on that :p
Yeah!
Will also have a per player option, for example for some people it'll appear fuck for others it'll be censored, will have an option for players to toggle it, or be disabled in the config
If you want, go for it
Sure that'd be neat, need to figure out how to structure it out so I don't mess anything up lol
Yeah, for now you can filter the rawMessage in the BaseMessage class

You need to opt-in
Noob
Report to author
hey it no work. how fix?
casual spigot user ^ xD
damn my phone amazes me even now. this super charge is fucking awsome
Nah, casual spigot user is more like just posting the error and just saying "fix"
o
is it? hmm
or just leaving a 1 star review with error
saying nothing else
xD
Or leave a completely unrelated review
mhm
Actually the plugin was cancelled already
my first ever review is a 5/5. and its my only review xD
no iwanio
you're wrong
spigot reviews. maybe. internet reviews no
Let me show you my first review lmao
they are like 77% fake
It's great
also they had option to delete it back then didn't they?
I didn't know i wasn't Mattew before
well maybe another Mattew
You still can delete reviews if the author doesn't comment on them, which is kinda dumb
get out of this chat and stop dodging
wait is your name Mattew? Like is that the name or is it Mateus or something like that?
ik im intimidating
oh man I should really read documentation lmao.
I didn't know you can customize messages for MF Commands
Yeah it's Mateus
yeah found it on github
MM 
Actually my name is MMM
You got a middle name as well?
MNM
Yeah
let me guess
You'll never guess it xD
My name is MultiPlayer 
my name is rather self evident
Discord being a slow twat again
iwanio
is it Marcus?
My middle name contains a ç
one more hint. what's middleName.length gonna return?
MissingU
The ç is the 7th letter
Discord is dying wtf
Lmao
xD
A rule of portuguese, after a "ç" there will be a vowel, normally it's used between vowels since "s" would have a "z" sound
ur portuguese?
Half
👀
I guess Blitz gave up xD
ok
Maixence
Manoluck
Markeece
Markeice
Markiece
Maronica
Marquece
Marquice
Martrice
Matraica
Mattlock
Maurence
Maurkice
Maverick
Maveryck
Mavrrick
Meldrick
Meschack
Miagrace
Mikolicj
Moireach
Montrece
Montrice
Mortlock```
any of these?
had to make a program to go thru like 7k names lmao
oh
didn't add the last rule
1 sec
Nope
Maixence
Markeece
Markeice
Markiece
Maronica
Marquece
Marquice
Martrice
Matraica
Maurence
Maurkice
Miagrace
Montrece
Montrice```
they all end in e
oh fuck 😦
I can give you more hints, it starts with Me and ends with ça
I mean if its not there then this 7k names list doesn't contain your name lmao
Likely not xD
wait you are portuguese?
Half portuguese half brazilean
That's like
ç what language is that?
Really dkim?
Imagine reading
It's literally written 4 times on top of your message lol
That letter is also used in english btw
is it?
Yeah
i can promise u now ive never used ç 
The word "facade" normally would use it, but most people don't
Yeah
o
There are a few others that are also commonly used but i don't remember them
is that a cedille? looked like some other type of c "modifier"
Basically it makes the letter "c" sound like "s"
So technically without it, the word facade would be pronounced "fakade"
fasade
weird to me how it looks in this font idk
french have ç as well.
Oh didn't see you were talking about the letter name xD
Yeah, in portuguese we call it "cedilha"
dev-general
Not configuration help
hmm didn't github have a function like IntelliJ where you could click a method and it would show you where its used?
yes
Hmm 3fa would be nice
in that case, infinity factor authentication would be nice 
true true
i find this very incosistent, sometimes it works when clicking classes / imports, sometimes it doesnt. very annoying
yeah that's why I asked. because it seems to not work on a lot of stuff but after testing some more it works on others so I guess it is what it is
it's considered a rare feature
it's not as good as IJs
i love how intellij keeps its formatting when copying and pasting the rich text
back and forth from the ide
objection, if it doesn't work and if it's buggy then it's more of a feature /s
what a great feature!
How do i make my IJ use an existing git repo?
I always either
- Make the repo in intellij
- Already have the .git folder
but I want to use a URL
also i dont have intellij rn 🙂
new project -> from vcs repo?
but an empty github repo
and then I can put in a git link without losing any files?
Yes
github repo
@ocean quartz ain't got time to test rn but your @Permission("perm.1", "perm.2"). does it check for the player to have both or one of them?
Well, you can't do that, it's just one xD


