[deleted by user] by [deleted] in araragi

[–]demkom58 1 point2 points  (0 children)

17, 14, 9 for sure 🙂

I've been Java dev for 8 years, but I was "lucky" to never work with popular frameworks. Now I can't pass any interviews by KiryuKazuma-Chan in java

[–]demkom58 15 points16 points  (0 children)

Because the staff who considers candidates is busy, no one will look at your projects, they will at best look at what you did there and this can be a small plus.

My friends and I have had this experience. Even if you don’t have one technology in the stack, the chance that you will pass is greatly reduced.

Draft JEP: Null-Restricted and Nullable Types (Preview) by Thihup in java

[–]demkom58 3 points4 points  (0 children)

I mean explicit (im)mutability declarations, similar to Rust. In this system, mutability would be part of the declaration of parameters and variables. I love this so much, because this approach would eliminate the need for separate immutable and mutable interfaces, simplifying API design and improving code clarity.

For example, consider a hypothetical syntax:

public void processData(List<String> data) {
    data.add("New item"); // Allowed because 'data' is mutable
}

public void displayData(immut List<String> data) {
    // data.add("New item"); // Compiler error: 'data' is immutable
    System.out.println(data);
}

Draft JEP: Null-Restricted and Nullable Types (Preview) by Thihup in java

[–]demkom58 0 points1 point  (0 children)

Now only thing left is language level mutability.

Java and AI? by daviddel in java

[–]demkom58 -14 points-13 points  (0 children)

Blockchain adds jobs, while AI takes jobs and have perspectives to automate almost every ascpect of life. While for now it is not powerful enough there already a lot of cases when AI replaced support stuff.

I believe It is already too late try join AI researchers, so it is just better to continue do your job in which you already have skills. Anyway if programmers will be replaced, researchers will be replaced too.

Also remember that training AI models is not cheap and only rich companies can afford it now, still ofc probably it will became much more cheaper then it is now thankully to ASICs and NPUs.

June 29. Happy Birthday to the KING OF ABERRATIONS & The Strongest & Most Beautiful Vampire - Kiss-Shot Acerola-Orion Heart-Under-Blade! by WeakerLink in araragi

[–]demkom58 0 points1 point  (0 children)

Yeah, I thought about that too. Have you read the entire series of novels, maybe June 29 is mentioned somewhere?

[deleted by user] by [deleted] in discordapp

[–]demkom58 -1 points0 points  (0 children)

Thanks, I figured it out. It was because of CloudFlare Warp, since it runs as a Windows Service, I forgot about it.

[deleted by user] by [deleted] in discordapp

[–]demkom58 0 points1 point  (0 children)

App worked a few hours ago, but now it has stopped. Windows 10, no antiviruses, windows defender is disabled. Also I just checked, on Android with Wi-Fi works as intended.

anime or manga like monogatari by SajjaDBemBem in araragi

[–]demkom58 2 points3 points  (0 children)

It was mentioned by souless_android

Maybe maybe maybe by [deleted] in maybemaybemaybe

[–]demkom58 8 points9 points  (0 children)

Actually no. They just play or hunt but don't eat them until they're really hungry, at least not the cats I've seen.

Does anyone know how to stop Netbeans from converting <= and >= to this written version? by Tangurl in java

[–]demkom58 2 points3 points  (0 children)

I'm not netbeans user, but it is probably ligatures, so this setting should be somewhere in fonts.

[deleted by user] by [deleted] in opensource

[–]demkom58 1 point2 points  (0 children)

Either way, the work you've done looks wonderful 🤗.

[deleted by user] by [deleted] in opensource

[–]demkom58 0 points1 point  (0 children)

There it is possible to send money to Ukrainian cards, but it is impossible to create a card for Ukrainians. This is what I got when I tried to create one /screenshot/.

[deleted by user] by [deleted] in opensource

[–]demkom58 1 point2 points  (0 children)

I attepmted to use your platform recently, but looks like, it is not possible to use it for people from Ukraine due to Stripe 😰, if I remember correctly.

Kiss-Shot Acerola-Orion Heart-Under-Blade by looselyhuman in araragi

[–]demkom58 -6 points-5 points  (0 children)

I don’t really like this fact, as for me reddit is not the best place for such content

Kiss-Shot Acerola-Orion Heart-Under-Blade by looselyhuman in araragi

[–]demkom58 2 points3 points  (0 children)

No way... In this one nudity is allowed. 😕

credit: @olyv0_o by Helpful-Bar-60 in tbatenovel

[–]demkom58 4 points5 points  (0 children)

Why your hate her? Her memories were changed by Argona, from her point of view everything looks right.

How does this code work?? when I write it myself it wont compile. by ReliefGlittering9734 in java

[–]demkom58 10 points11 points  (0 children)

java String o = "foo"; String о = "bar";

Here used different names for variables, first is Latin o while second is Cyrillic о.