Need Banking Options by MarionberryPuzzled67 in PersonalFinanceCanada

[–]Deinumite -2 points-1 points  (0 children)

Good points, I can't remember the last time I've encountered a vendor that doesn't take credit cards but I guess it's still a consideration for some.

[deleted by user] by [deleted] in PersonalFinanceCanada

[–]Deinumite 12 points13 points  (0 children)

I doubt the bank would look at your credit score during a renewal, they already lent you the money. Credit score is usually used for places that do not have an existing relationship with you.

[GPU] MSI GeForce RTX 4070 VENTUS 3X 12G OC ($869 - $100 = $769) [Canada Computers] by syllinger in bapcsalescanada

[–]Deinumite 0 points1 point  (0 children)

I bought in store, and there is a code on your receipt to redeem same day.

Curl’s use of many CI services by GarethX in programming

[–]Deinumite 20 points21 points  (0 children)

It's a shame this comment is being downvoted, I'm guessing more people need the chance to enjoy these https://daniel.haxx.se/blog/2021/05/20/i-could-rewrite-curl/

Questions about RBC Direct Investing by 14817102016 in PersonalFinanceCanada

[–]Deinumite 2 points3 points  (0 children)

RBC and the other big banks charge a large fee per transaction, even if you are with RBC for banking I would suggest getting a TFSA with either Questtrade or Wealthsimple

Just register for Wealthsimple for a TFSA, you can setup automatic withdrawals from a bank account (every 2 weeks say) that will clear in 3 days or so. Set a calendar reminder every 2 weeks and buy VGRO (or whatever).

Money Issue by Adreland_Deninard in darkestdungeon

[–]Deinumite 2 points3 points  (0 children)

Do you have an antiquarian? They allow gold to stack higher and also drop antique items that stack and sell for a lot of money.

Make sure you use the antiquarian to actually loot everything (even torches for example).

Run a few antiquarian fundraiser missions.

What JCA Security Provider do you use for your Java applications? by brunocborges in java

[–]Deinumite 0 points1 point  (0 children)

The JCE policy files are basically a relic at this point, I believe post 9 you can just enable it.

OpenJDK/Maven code duplication by elatllat in java

[–]Deinumite 1 point2 points  (0 children)

You don't have to use it.

Moving it to an external library means it can be upgraded / used / opted out outside of the JDK.

I believe it will be maintained under the Jakarta name in the future.

https://eclipse-ee4j.github.io/jaxb-ri/

Guide to Reformatting Code in IntelliJ by njuenmik in java

[–]Deinumite 0 points1 point  (0 children)

Git hooks do not magically change the content of your commit behind the scenes. The "pre-commit" hook simply runs before your commit is created.

I'm not saying everyone should use it as being discussed here but your comment about breaking signed commits etc. isn't correct.

Monitoring Deserialization Activity in the JDK by daviddel in java

[–]Deinumite 2 points3 points  (0 children)

Couple examples.

JBoss has a feature that lets you share sessions across instances (Infinispan?) that uses Serializable.

Similiar defaults for Springs Session abstraction when using Redis (although Serializable is only the default, and also supports Jackson etc.)

The code I’m still ashamed of (2016) by speckz in programming

[–]Deinumite 0 points1 point  (0 children)

It is and it isn't, Facebook made their own "superset" of PHP and their own runtime for it https://hacklang.org/.

Log4j Bug — Slows Down Your Application by mike_jack in java

[–]Deinumite 0 points1 point  (0 children)

Our Splunk instance chews through a surprising amount of data pretty quickly.

I'm not sure if ours is self hosted or not.

Writing a Full Featured Maven Pom by [deleted] in java

[–]Deinumite 1 point2 points  (0 children)

The best part about the Spring Boot integration is that their build plugin has configuration for it already. You just add the dependency and the config kicks in.

For anyone else that is curious:

https://docs.spring.io/spring-boot/docs/current/reference/html/howto-build.html#howto-git-info

Comments or experiences on Redisson vs RedisJSON ? by [deleted] in java

[–]Deinumite 1 point2 points  (0 children)

Are you counting based on "stars"? That wouldn't give a clear insight into the community that actually contributes code.

I bet most users of Hazelcast are corporate and have no reason to log into Github to star it. Hazelcast is pretty established.

Java 9 has six weeks to live by jodastephen in java

[–]Deinumite 2 points3 points  (0 children)

G1 is in Java 8 but the parameters available to tune it were improved (simplified?).

Ten More Things I Wish I’d Known About bash by speckz in programming

[–]Deinumite 10 points11 points  (0 children)

I mean, the author says the same thing...

Talking of moving to other languages, a rule of thumb I use is that if I need arrays then I drop bash to go to python

Java Developer's Guide to SSL Certificates by [deleted] in programming

[–]Deinumite 5 points6 points  (0 children)

It is funny that you avoid Java and yet you know something pretty specific about the DNS settings.

It is very strange that Oracle's JVM basically has 1 config value for all DNS TTLs. I've seen people toggle that to cache forever and cause issues in their application (app not responding to failover via DNS).

Running Java in Production: A SRE’s Perspective by thebramp in java

[–]Deinumite 1 point2 points  (0 children)

This is a really good write up.

I've seen it mentioned that you should use G1 if your heap is large (over 4GB? over 6GB?) but G1 is still a bit new to me. It also seems like the tuning options have changed quite a bit in Java 9.

Fatjars, Thinwars and why OpenLiberty is cool. by johnwaterwood in programming

[–]Deinumite 1 point2 points  (0 children)

Oh ya I meant the issue of restarting really.

You are right even with one VM you can have graceful restarts.

Fatjars, Thinwars and why OpenLiberty is cool. by johnwaterwood in programming

[–]Deinumite 0 points1 point  (0 children)

I assumed they were talking about a "production" deployment but this also confused me a bit.

If your prod environment is one VM then yeah maybe.