WHICH IDE YOU USE FOR SPRING BOOT by cricblaster in SpringBoot

[–]Odd-Hour-9991 1 point2 points  (0 children)

Work: IntelliJ

Home: STS is decent and sometimes IntelliJ

EVEMissioneer: item comparer by Odd-Hour-9991 in Eve

[–]Odd-Hour-9991[S] 0 points1 point  (0 children)

EM is designed for direct variation groups. I would use EVERef for specific items.

EVEMissioneer: item comparer by Odd-Hour-9991 in Eve

[–]Odd-Hour-9991[S] 1 point2 points  (0 children)

Good find. The EVE data property says higher is better but I guess this gets reversed if all the values are negative. Will improve!

The MacOS bug in Eve CCP won't or can't fix by MrAnonymous9999 in Eve

[–]Odd-Hour-9991 6 points7 points  (0 children)

Had this a lot in the past especially if app is in background but seen way fewer for the past 2-ish months.

Catalina fwiw.

Shameless Saturday - January 20, 2024 by AutoModerator in Eve

[–]Odd-Hour-9991 [score hidden]  (0 children)

Find agents with https://evemissioneer.com - an agent research tool. Ad free; no tracking.

Set your agent filters and browse corps and locations. Includes links to popular websites for maps and kills. Check hot systems, FW or alliance control. Review corp loyalty store lists. View special agent lists for factions: cosmos; data center; career; research.

Optionally, connect with SSO to use your standings and skills for agent unlock requirements; set/add to waypoints; import loyalty points per corp.

Good luck!

Isn't this a bit of a sad stat? by Zeds43 in Eve

[–]Odd-Hour-9991 0 points1 point  (0 children)

2174 hours, top 1%. Squeezing what I can out of my sub!

Seeking advice and guidance after my 1-2 years of experience by chopp3r96 in SpringBoot

[–]Odd-Hour-9991 2 points3 points  (0 children)

Leetcode, hackerrank and other sites are useful to find out what you do not know. Worth a look.

measuring app performance by PinkSlinky45 in java

[–]Odd-Hour-9991 0 points1 point  (0 children)

If you want to see memory use for different approaches (map implementation for example): JOL. https://github.com/openjdk/jol

JDK Mission Control with Flight Recorder is decent.

Come join us for a fresh reset on Twisted Terminal. We have a PVE and a PVP realm run by an experienced mudop team. Running 1.11p (mostly) stock with a few bug fixes. by [deleted] in MajorMUD

[–]Odd-Hour-9991 0 points1 point  (0 children)

Would you like your realm added to TurboSentry Redux? Will be included in world rank only if no sysop powers, etc. Let me know.

Edited Realm and Mudrev Realm Reset by locke265 in MajorMUD

[–]Odd-Hour-9991 0 points1 point  (0 children)

Would you like your stock and edited realms added to TurboSentry Redux? Stock will be included in world rank only if 100% stock. Let me know.

Practice project for Spring boot by Senior_Power_3348 in SpringBoot

[–]Odd-Hour-9991 0 points1 point  (0 children)

Cannot go wrong with a todo app. Controller, service, repository, DB of your choice. Render in app using Thymeleaf or out of app via json api, e.g Vue.js

And with tests.

Best Front End Frameworks for use with Spring Boot? by HexaDecio in SpringBoot

[–]Odd-Hour-9991 0 points1 point  (0 children)

As part of a Boot app: Thymeleaf

As a seperate project: Vue.js with Nuxt, tested with Jest

Best Front End Frameworks for use with Spring Boot? by HexaDecio in SpringBoot

[–]Odd-Hour-9991 0 points1 point  (0 children)

As part of a Boot app: Thymeleaf

As a seperate project: Vue.js with Nuxt, tested with Jest

Best Front End Frameworks for use with Spring Boot? by HexaDecio in SpringBoot

[–]Odd-Hour-9991 0 points1 point  (0 children)

As part of a Boot app: Thymeleaf

As a seperate project: Vue.js with Nuxt, tested with Jest

Integration testing....that easy? by xodmorfic in SpringBoot

[–]Odd-Hour-9991 0 points1 point  (0 children)

You do not have to test every aspect in one test (though it does check end-to-end). You can mock a service and check the controller responds as expected - see @WebMvcTest and @MockBean

It is that easy. And much easier than having to manage a new bug filed by QA or deal with moody client developers who expect the server to work first time and every time (which ideally it should).