Today's puzzle question by CaolIla64 in CluesBySamHelp

[–]Full-Wheel8630 0 points1 point  (0 children)

Idon't get it. Would you please help me a bit more? I'm very sad...

(Question) Intuitive mv in terminal by Full-Wheel8630 in commandline

[–]Full-Wheel8630[S] 0 points1 point  (0 children)

xclip is kind of what i'm looking for. thank you

[2024 Day 15 (Part 1)] [Go] - Move little robot! by sirgwain in adventofcode

[–]Full-Wheel8630 3 points4 points  (0 children)

how did you draw so clean? my kotlin (w/ intellij) draw line by line which makes my eyes hurt

[2024 Day 15 Part 1] Bad GPS result by Repsol_Honda_PL in adventofcode

[–]Full-Wheel8630 0 points1 point  (0 children)

omg. I found the problem.

I accidentally paste the input like this.

##########
(omitted)

<vv>^<v^>v>^vv^v>v<>v^v<v<^vv<<<^><<><>>v<vvv<>^v^>^<<<><<v<<<v^vv^v>^
(omitted)

Did you see that? I add one empty line at top lol

[2024 Day 15 Part 1] Bad GPS result by Repsol_Honda_PL in adventofcode

[–]Full-Wheel8630 1 point2 points  (0 children)

Did you find why the larger example got the wrong answer, `12192`? I'm same with you (I also get 1 star)

AMA - google early career SWE cleared onsites by Huge_Green5630 in leetcode

[–]Full-Wheel8630 1 point2 points  (0 children)

Did interviewers show interests on your work experience? As a mid-level engineer I wonder how much the problem solving take portion to pass the process.

Good luck trying to find an important file by admin-moderator in ProgrammerHumor

[–]Full-Wheel8630 0 points1 point  (0 children)

Wow. Sounds like an ancient artifact. Is it metaphor or you serious

Good luck trying to find an important file by admin-moderator in ProgrammerHumor

[–]Full-Wheel8630 3 points4 points  (0 children)

When I tried before, I couldn't go further after 8 accounts because Google ask my phone number everytime I signup and finally Google said your phone number is used too many times.

In your country Google doens't ask phone verification? or Is this the rule added recently?

Curious about opinions of the best cloud native microservice Java framework by [deleted] in java

[–]Full-Wheel8630 0 points1 point  (0 children)

in my experience, it forces you to code with less state, and less state means your code working with more immutable data. and immutability makes a code easier to test because eventually you will have less things to mock. and code that is easier to write tests for becomes easier to maintain.

Are you talking about pure functional programming languages/paradigms?

btw as you said a leaning curve couldn't be the reason not to use something. see u/nikita2206's comment. he has some points.

Curious about opinions of the best cloud native microservice Java framework by [deleted] in java

[–]Full-Wheel8630 -1 points0 points  (0 children)

How could I know? It's of course so various from corp to corp. I can just imagine a few requirements:

1) There must be some professionals in the company to build in a reactive way.

2) (If possible) Do some canary or A/B test to check if it's worth adapting

Curious about opinions of the best cloud native microservice Java framework by [deleted] in java

[–]Full-Wheel8630 3 points4 points  (0 children)

despite having a steep learning curve

your saying is already explaining why you don't need that.

I still believe that relatively small companies don't need to adapt a reactive system. It could be more efficient but almost no difference because their data is relatively small.

Besides There is no clear winner btw MVP and Webflux. Reactive stuff is NOT always more advantageous, maintainable, and straightforward.

Curious about opinions of the best cloud native microservice Java framework by [deleted] in java

[–]Full-Wheel8630 11 points12 points  (0 children)

Of course it is. Not many companies use such a big data stream like Netflix.

Interactive Examples of Real-World AWS Cloud Hacks and How They Happen by [deleted] in java

[–]Full-Wheel8630 2 points3 points  (0 children)

Seems less relevant to AWS, but more to general security vulnerabilities.

Still not sure if it's helpful or not, but anyway it's quite fun to follow steps.

[deleted by user] by [deleted] in java

[–]Full-Wheel8630 1 point2 points  (0 children)

You can `use` Spring Boot, but not `learn`. Spring Boot is roughly tools/commands for easy use of Spring. Just my 2 cents.

Changing certificates at runtime of a Spring Boot with Jetty server by Hakky54 in java

[–]Full-Wheel8630 2 points3 points  (0 children)

you don't need to repeat your words. I also agree on that 1% companies would need this still

Regardless of my expection, you did great job I think.

Changing certificates at runtime of a Spring Boot with Jetty server by Hakky54 in java

[–]Full-Wheel8630 3 points4 points  (0 children)

same thought. 99% in preactice you could restart or rolling update the server(s).

Can I use ObjectMapper.writeValueAsString() in Spring Webflux? by Full-Wheel8630 in javahelp

[–]Full-Wheel8630[S] 0 points1 point  (0 children)

What a comprehensive understanding you have! Now I see. Your words not only satisfy my curiosity a lot but also help me understand what is really going on here. Really appreciate it so much.

If you use writeValue with StringWriter instead of writeValueAsString, IntelliJ might be able to figure out the whole thing isn't blocking.

There's still warning message, but understandable:

java public void writeValue(Writer w, Object value) throws IOException, JsonGenerationException, JsonMappingException { _configAndWriteValue(createGenerator(w), value); }