JetBrains

Hilarious UI glitch! The UI asks your country of residence, wants you to pick it from a list. No search, and the list is looooong. In the German version of the UI, country names are offered in German ✅ . The list is sorted alphabetically - but not by the German country names as displayed, but alphabetically BY THE ENGLISH VERSIONS! "Deutschland" is somewhere in more or less G 🤦‍♂️ ! Seen at the checkout page of [@jetbrains](https://programming.dev/c/jetbrains)'s Python dev survey that [https://pypi.org/](https://pypi.org/) currently advertises.

3
0

On se retrouve mardi prochain à Bordeaux pour parler de [#ComposeMultiplatform](https://techhub.social/tags/ComposeMultiplatform) ! Compose Multiplatform permet d'écrire de l'UI en Kotlin, dans le style de [#react](https://techhub.social/tags/react). Compose est la manière officiellement recommandée de développer des applications Android, et est compatible iOS, desktop, et web. À l'occasion de l'événement, [@jetbrains](https://programming.dev/c/jetbrains) offre deux licences annuelles, qui seront tirées au sort. En savoir plus, et s'inscrire (gratuitement) : [https://BordeauxKt.io](https://BordeauxKt.io) [\#kotlin](https://techhub.social/tags/kotlin) [#JetpackCompose](https://techhub.social/tags/JetpackCompose) [#AndroidDev](https://techhub.social/tags/AndroidDev) [#iosdevelopment](https://techhub.social/tags/iosdevelopment) [#KotlinMultiplatform](https://techhub.social/tags/KotlinMultiplatform) [#composemultiplatform](https://techhub.social/tags/composemultiplatform) [#webdev](https://techhub.social/tags/webdev)

-1
0

After seeing people use the [@jetbrains](https://programming.dev/c/jetbrains) UI to commit to git I understand where all those - sorry: shitty - commit messages come from.... 🙈 An improvement would already be to have a "Subject" line and the text box. And have the subject line follow the Beams Rule. Sonthat the first line of the commit message finishes the sentence "When this commit is applied it will..." And please: No longer than 56(?) characters (Unicode). Keep it short. You got the textbox to explain \*why\* in full length.

1
34

The JetBrains Developer Recognition Program is expanding! Recognized [#GitHub](https://techhub.social/tags/GitHub) Stars can now enjoy free access to all JetBrains IDEs. Learn more ⬇️ [https://blog.jetbrains.com/blog/2024/10/08/github-stars-join-the-jetbrains-developer-recognition-program/](https://blog.jetbrains.com/blog/2024/10/08/github-stars-join-the-jetbrains-developer-recognition-program/) [@khalidabuhakmeh](https://mastodon.social/@khalidabuhakmeh) I was expecting this toot from you 🕺 I still wonder which one is the real jetbrains account below, anyway it would not hurt mentioning more accounts, this is a good news [\#jetbrains](https://techhub.social/tags/jetbrains) [@jetbrains@programming.dev](https://programming.dev/c/jetbrains) [@jetbrains@mast.socialspill.com](https://mast.socialspill.com/users/jetbrains)

8
17

Dlouholetým partnerem ne-konference [@jopenspace](https://mastodonczech.cz/@jopenspace) je společnost [@jetbrains](https://programming.dev/c/jetbrains) tvůrce integrovaných vývojových prostředí, které většina z nás denodenně používá. Tři nejlepší talky se mohou opět těšit na roční licence IDE dle svého výběru! [#JOSCZ24](https://mastodonczech.cz/tags/JOSCZ24)

-1
0

Good news from today, I got my open source licence from [@jetbrains](https://programming.dev/c/jetbrains) for [https://github.com/ozkanpakdil/swaggerific](https://github.com/ozkanpakdil/swaggerific) thank you [#jetbrains](https://techhub.social/tags/jetbrains) 🤓

6
0

Not a fan of the [#AI](https://infosec.exchange/tags/AI) hype at all, but [@jetbrains](https://programming.dev/c/jetbrains) [#RustRover](https://infosec.exchange/tags/RustRover) new full line code completion feature is impressive [https://blog.jetbrains.com/blog/2024/04/04/full-line-code-completion-in-jetbrains-ides-all-you-need-to-know/](https://blog.jetbrains.com/blog/2024/04/04/full-line-code-completion-in-jetbrains-ides-all-you-need-to-know/)

15
4

Do you find it tedious to build a file tree with snake-case text and dates to create the file for your blog posts? I do too! In this blog post I show you how I automated that with Webstorm. I'm pretty sure it works with all other [@jetbrains](https://programming.dev/c/jetbrains) IDEs! [https://blog.charlesdesneuf.com/articles/create-a-new-file-at-the-right-place-with-prefilled-content-thanks-to-jetbrains-ides/](https://blog.charlesdesneuf.com/articles/create-a-new-file-at-the-right-place-with-prefilled-content-thanks-to-jetbrains-ides/)

5
0

Kicking off afternoon sessions (after sponsors [@getsentry](https://fosstodon.org/@getsentry) and [@jetbrains](https://programming.dev/c/jetbrains) ) at [#Laracon](https://phpc.social/tags/Laracon) is [@rissabubbles](https://hachyderm.io/@rissabubbles) talking about how D&D can be applied to software dev. (Should have sent earlier but cell network issues)

4
0

[@jetbrains](https://programming.dev/c/jetbrains) Looks like some of your k8s ingresses are presenting self-signed. Lots of workers got this dialog pop up just now. DMs open ``` codewithme-lobby.api.jetbrains.comcodewithme-relay-europe-north1-1.api.jetbrains.comcodewithme-relay-europe-north1-2.api.jetbrains.comap-help.api.jetbrains.comoauth2-proxy-api.api.jetbrains.com ```

8
1
stackoverflow.com

Link to a (frustratingly) deleted question on Stack Overflow. Text and image copied below incase you don't have the ability to see it. (Not sure why the image shows multiple times.) --- Is there any way to more granularly control IntelliJ IDEA's inspections' "Nullability and data flow problems" option "Treat non-annotated members and parameters as `@Nullable`"? Preferably for unboxing specifically? I am aware I can use a variety of `@Nullable` annotations in a variety of places in the code to make the warnings appear. That's not always an option as the place the boxed primitives are coming from may be other libraries you don't have control over. *(Imagine if the `Holder` record below was from a different project.)* I included other examples below to illustrate my point. public class Sample { private final Boolean value; public Sample(Boolean value) { this.value = value; } private boolean isValue() { return value; // I would like a warning here } private static Boolean boxedTrue() { return true; } private static boolean unboxedTrue() { return boxedTrue(); // No warning here, but that's understandable since never null } private static Boolean boxedNull() { return null; } private static boolean unboxedNull() { return boxedNull(); // Only warning in the file (by default) // "Unboxing of 'boxedNull()' may produce 'NullPointerException' } public record Holder(Boolean value) {} public boolean openHolder(Holder holder) { return holder.value(); // I would like a warning here } } When "Treat non-annotated members and parameters as `@Nullable`" is enabled, the following gives warnings. While that makes sense given the name of the option, there is code like this literally everywhere. It adds hundreds of warnings to my project. I'm trying to find more granular choices. public static ZonedDateTime timeStuff(LocalDateTime localDateTime, ZoneId zoneId) { return localDateTime.atZone(zoneId); // I do not want warnings for this } I see that the Java Class Library has JetBrains annotations despite not actually being annotated. Is there perhaps some way to add these automatically to libraries if there is no better way to control the inspection? ![Showing `@NotNull` and `@Contract` annotations on `LocalDateTime.atZone(ZoneId)`](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Fi.sstatic.net%2F3KU4Iqbl.png)

3
2

Just installed the new version 2024.2 of [@jetbrains](https://programming.dev/c/jetbrains) [#webstorm](https://digitalcourage.social/tags/webstorm) I really really hate the new UI and I am very annoyed how Jetbrains tries to force me to use it. Now it's even just a plugin 😠 Jetbrains, I'm a paying customer. This will stop at the moment when you no longer support the classic ui.

6
5

What de hell is this ? (PhpStorm 2024.2) [#phpstorm](https://techhub.social/tags/phpstorm) [#jetbrains](https://techhub.social/tags/jetbrains) [@jetbrains](https://programming.dev/c/jetbrains) [#php](https://techhub.social/tags/php)

1
5

Someone (maybe a company making software development tools, e.g. [@jetbrains](https://programming.dev/c/jetbrains) 😉) should do research and design properly ergonomic keyboard shortcuts for code editors. It's tiring to see different and mostly "accidental" shortcuts everywhere.

6
5

All popular IDEs (and most apps) seem stuck in a single-monitor paradigm. When are we going to get an IDE that sets the bar for working with multiple monitors? For inspiration, look at multi-monitor audio engineering consoles. Please [@jetbrains](https://programming.dev/c/jetbrains)

42
18

Messed around this weekend trying to make a desktop app with [#Kotlin](https://mastodon.social/tags/Kotlin) and [#ComposeForDesktop](https://mastodon.social/tags/ComposeForDesktop), and it's clear to me that it still has a long way to go. The documentation for it is severely lacking and [#KMP](https://mastodon.social/tags/KMP) libraries really seem to be focused on mobile rather than desktop. Then there's [@jetbrains](https://programming.dev/c/jetbrains) Slack, which would be cool to use to ask questions if only I could figure out how to get access. You can read archives, but if people link to other threads or messages, the link simply doesn't work.

6
0