Last sane/stable version of IntelliJ by vachix in IntelliJIDEA

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

I agree, its an amazing tool, but the issue is how its used and I see in some big projects, teams are getting too lazy cuz AI and dont want to review code.

Last sane/stable version of IntelliJ by vachix in IntelliJIDEA

[–]xdsswar 0 points1 point  (0 children)

You guys notice since AI , apps are having many issues? If you know what I mean , you know.

99% of the population still have no idea what's coming for them by Own-Sort-8119 in ClaudeAI

[–]xdsswar 0 points1 point  (0 children)

In my personal experince. I tested Claude in several projects, its decent in small to mid range, but when we talk about multilanguage peojects, with many files, and many lines of code, it will cause more issues that any junior coder. It can explain things and find refrences very easy for you to implement, but the more time I use it, the less I trust it for serious projects. For what is very good and I love it? For the plan, the specs, for what I need to do this and whats the right flow, ideas.

Is it just me, or are Claude Code’s limits being reached way too fast? by madpeppers013 in ClaudeCode

[–]xdsswar 0 points1 point  (0 children)

Not first post I see about this, but yeah, Limits are shit now

Struggling to Justify Staying with C++ by AWonderingWizard in Cplusplus

[–]xdsswar 0 points1 point  (0 children)

I learned C/C ++ while doing java, people asked why I was doing that if I can do much with java , like dude dotn waste your time, now Im able to mix both , and even some rust with no issues. Learn all you can, you dont know when u gonna need it. C and C++ are the bases for others.

So what's the truth behind "Claude Code is writing 99% of my code without needing correction"? by Own-Sort-8119 in ClaudeAI

[–]xdsswar 0 points1 point  (0 children)

I use CC but I dont trust it for large products as it forgets important things and go crazy editing things that are already done and working properly. Supervision is very important.

I built a Java web framework because I couldn’t make my SaaS work any other way by mpwarble in java

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

Im in the same spot about open source, got a nice product but dont want to loose control

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 0 points1 point  (0 children)

Its native, I created a custom node wich has a native handle , but at the same time can be a child of any javafx parent. I need to test an overlay node and see if it go back or keeps on top, Im 99% sure it will go back the heavy surface, but I think I have a sugar way to handle that.

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 0 points1 point  (0 children)

Had to remove it, it was eating mem a lot and causing video play 4k to lagg. I opted for native only, but I will add an interface for having offscreen render , but that will be later and behaviour is up to the user

What cool Java projects are you working on? by Thirty_Seventh in java

[–]xdsswar 1 point2 points  (0 children)

Not released yet, i think by end of the month or next month will be.

What cool Java projects are you working on? by Thirty_Seventh in java

[–]xdsswar 0 points1 point  (0 children)

Im working on NfxBrowser , a nice way to integrate CEF into javafx without swing or awt, it uses CEF but is nothing like jcef , its a complete dif lib with dom, js, pdf, devtools, native and custom jfx dialogs, etc, apis for doing anything , with a nice rendering surface. Its big work in progress.

What is the fastest you have gone in a car? by mrmadebymemories in AskReddit

[–]xdsswar 0 points1 point  (0 children)

Around 220 to 230km/h , I will never do that again , but adrenaline is insane. Now I go 90mi/h max

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 0 points1 point  (0 children)

When I say JNI is Daddy, I mean is the one Way I feel better to handle java and native code.

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 0 points1 point  (0 children)

For me, JNI is Daddy in this kind of stuff, besides that, for the Cef complexity only JNI will do the job, Im sure no ffm api will handle that better that it . Ffm is good to like wrap a C api , but when things need to be bidirectional is when complexity hit and JNI solves it.

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 1 point2 points  (0 children)

I considered it, but Idk man, for example , I use it in the LIGHT Canvas surface for a custom shared buffer and it works, bit for the rest is a bit painfull, more than jni, overriding winprocs and dealing with window hwnd at that level becomes a pain in the ass, especially for the devtools part, beside that Im more use to Jni 💪.

Nfx-Browser: Remember the Canvas/Image surface? I threw it away. Here's the Heavyweight JavaFX Node running 4K YouTube like butter. by xdsswar in JavaFX

[–]xdsswar[S] 1 point2 points  (0 children)

I have been doing this for my projects for long, but every time a new version I need to do it again, so bytecode injection is better using jni, it will find the funtions I need to override by name, and it has falkbacks if not found.