HackerTrans
TopNewTrendsCommentsPastAskShowJobs

adl

no profile record

Submissions

Jetbrains unbundles AI Assistant and is now available as a separate plugin

blog.jetbrains.com
78 points·by adl·2 years ago·29 comments

comments

adl
·7 months ago·discuss
LibreOffice may be slow, but is UI is not build in Java, 90+% of LibreOffice is built on C++.
adl
·last year·discuss
Where they wealthy? That's the only thing the Opus Dei cares about.
adl
·2 years ago·discuss
I couldn't make this work with JDK 23, 21 or 17, I got the following error:

Failed to execute goal org.teavm:teavm-maven-plugin:0.6.1:compile (web-client) on project flavour: Unexpected error occurred: Unsupported class file major version 61

According to the Docs it seems it seems to only work with JDK 8: (https://frequal.com/Flavour/book.html#org1b5c5fc):

17.1 Prerequisties Making web apps with Flavour only requires two prerequisites:

Java (OpenJDK 8 or equivalent. Newer versions of Java are untested.) Maven (Apache Maven 3.8.6 or greater)
adl
·2 years ago·discuss
A good debugger can provide more than just stepping thru code.

In IntelliJ with Java, you can set conditonal breakpoints with complex evaluations, you can set filters (only hit a breakpoint depending from where it is being called), use exception methods that only hit on certain exceptions instead of a specific line code, you can also use logging breakpoints, that act like printf debuging, but you don't need to scatter your code with print statements all over the place.

You can group, add descripitons, disable, enable and add temporary breakpoints, they are pretty powerful! I just wish intellij had a time travel debbuger like Visual Studio Pro.

https://www.jetbrains.com/help/idea/2024.3/using-breakpoints...
adl
·2 years ago·discuss
Can you elaborate why?
adl
·2 years ago·discuss
I've known and used Stremio for at least 5 years, maybe more.
adl
·2 years ago·discuss
Here is the original paper in Spanish: https://www.ru.tic.unam.mx/bitstream/handle/123456789/1415/a...
adl
·2 years ago·discuss
I prefer to use Windows as my daily driver. I also help people (friends, family, co-workers, etc.) with Linux (desktop or server) all the time. I have almost 30 years of experience using Linux. (using it since 1995)
adl
·2 years ago·discuss
Raises hand Here! I have to work with Spock on a Java codebase and I think groovy sucks ;-)
adl
·2 years ago·discuss
Sounds great! I just subscribed to Cody, looking forward to testing the JetBrains support.
adl
·2 years ago·discuss
Thanks! I swear I put that direct link on the submission, maybe it got striped.
adl
·2 years ago·discuss
Does the Claude 3 support only apply to the VSCode plugin right now? I'm using the Jetbrains plugin and I don't see an option to use Claude 3.
adl
·2 years ago·discuss
Are you planning to offer plugins for other IDEs, like IntelliJ?
adl
·2 years ago·discuss
"Beginning with the Beta version of IntelliJ IDEA 2024.1, AI Assistant has been unbundled and is now available as a separate plugin."

This was a mayor complaint about a month ago:https://news.ycombinator.com/item?id=39238666
adl
·2 years ago·discuss
I've seen them pop up (hehe) while searching for multi-tools and bushcraft videos. Never seen one before.
adl
·2 years ago·discuss
There are several alternatives to Little Snitch on Windows (and Linux). https://alternativeto.net/software/little-snitch/?platform=w...
adl
·2 years ago·discuss
Families sharing an internet connection. Kids watch 1 o 2 hours each, mom and dad another hour each.
adl
·3 years ago·discuss
I live in Monterrey, Mexico, 3 to 4 hours from the US border with Texas. There are people who offer Whataburger delivery services.

They will collect orders throughout the week and on the weekend drive to Texas and pick up the burgers. I think they have a deal with a local whataburger because they pick the burgers disassembled.

The heat and reassemble them here in Monterrey. No fries, though.

They sell for 3x, I believe.
adl
·3 years ago·discuss
Well, according to his sister, he used to molest her when he was 13, and she was 4, so...

https://twitter.com/phuckfilosophy/status/163570439893983232...
adl
·3 years ago·discuss
Just a brief reminder: If you need to zip/unzip files from the command line on Windows, you can use BSD tar.

I needed to write a script that zips a directory from the command line, and found out that Windows 10/11 and at least Server 2019 includes BSD tar by default! You can use it like this:

'C:\Temp>tar acvf backup.zip directory'

So, no need to install any third-party zip/unzip CLI tool.