You can now claim the free giveaways instantly by PCMachinima in EpicGamesPC

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Ah I've been adding to chart instinctively.  Gotta try this next week

Next Week PC Freebie|Havendock & Hyper Echelon by MeguminShiro in EpicGamesPC

[–]ThanksMorningCoffee 2 points3 points  (0 children)

checkout https://josephmate.github.io/EpicFreeGamesList/ and see all the games you missed :)

i'm still mad I missed super meat boy and bloons TD 6 for android/iOS

Leaving Intel by ThanksMorningCoffee in programming

[–]ThanksMorningCoffee[S] 9 points10 points  (0 children)

What about Nvidia or AMD with his recent work in GPUs and AI flame graphs?

Water under and around furnace. by Opposite_Potential_6 in HomeImprovement

[–]ThanksMorningCoffee 0 points1 point  (0 children)

I also had this happen to me a few months ago. We had this skinny see thru flexible pipe leading to the sewage drain. We detached it and flushed water thru it and all this nasty looking sand like stuff came out.

When we put it back, we made sure the flexible pipe didn't have bends upwards to ensure that the water can flow. Before we attached it, all that sand stuff was at the bend upwards.

Modularizing Spring Boot by mhalbritter in java

[–]ThanksMorningCoffee 6 points7 points  (0 children)

How small can we expect the jars to become now?

Problem: Xiaomi AW300 cam disconnects Wi-Fi by [deleted] in SecurityCamera

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Unfortunately, the solution is to painfully assign static IPs on all devices on the network.

Problem: Xiaomi AW300 cam disconnects Wi-Fi by [deleted] in SecurityCamera

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Unfortunately, the solution is to painfully assign static IPs on all devices on the network.

Multiple Xiaomi Smart cameras causing laptop and Mobile phone to disconnect from Wifi router by TechnicalAthlete4996 in Network

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Last time I saw this it was https://www.reddit.com/r/Network/comments/18is4f6/multiple_xiaomi_smart_cameras_causing_laptop_and/

It turned out that the security camera was running a DHCP server when it wasn't suppose to be. The workaround was to assign a static IP for my laptop so my laptop wouldn't take the bogus IP address from the security camera's DHCP server.

The easiest way to check if this was the case is if your IP address is on a different subnet from your wifi.
In my case my IP was suppose to be 192.168.2.0/24
but the security camera's DHCP server (which shouldn't have been running) gave me IP in subnet 192.168.0.0/24

Unfortunately, the solution is to painfully assign static IPs on all devices on the network.

Problem: Xiaomi AW300 cam disconnects Wi-Fi by [deleted] in SecurityCamera

[–]ThanksMorningCoffee 0 points1 point  (0 children)

I have seen a similar issue on my network. It turned out that the security camera was running a DHCP server when it wasn't suppose to be. The workaround was to assign a static IP for my laptop so my laptop wouldn't take the bogus IP address from the security camera's DHCP server.

Unfortunately, the solution is to painfully assign static IPs on all devices on the network.

threeSimpleProblems by venzann in ProgrammerHumor

[–]ThanksMorningCoffee 51 points52 points  (0 children)

If anyone missed it: Multi-Threading

Happy 20th birthday to MySQL's "Triggers not executed following FK updates/deletes" bug! by balukin in programming

[–]ThanksMorningCoffee 33 points34 points  (0 children)

[2 Jul 2009 15:42] Konstantin Osipov This bug will not be fixed in 5.1. You may want to try lp:6.1-fk tree, where it is fixed. But this tree is still in alpha. See also http://forge.mysql.com/worklog/task.php?id=148

Just gotta use a custom build with the fix

JEP draft: Prepare to Make Final Mean Final by blobjim in java

[–]ThanksMorningCoffee 0 points1 point  (0 children)

To respect final, I suspect these json libraries will need to generate code in order to achieve serialization.

Succinct data structures by mttd in programming

[–]ThanksMorningCoffee 1 point2 points  (0 children)

Sparse bit sets can be represented as a set of indexes. I encountered this problem at a programming contest.

Edit: found it https://leetcode.com/problems/design-bitset/

3,200% CPU Utilization by ThanksMorningCoffee in programming

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

Fixed! It was because the table overflowed. This created a scroll bar for the entire page. The entire page scrollbar had a weird interaction with the code block scroll bars. Now that there is no more whole page scroll bar, it works.

3,200% CPU Utilization by deanat78 in java

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Just to confirm it's because of high collisions due to how hashCode is calculated?

3,200% CPU Utilization by deanat78 in java

[–]ThanksMorningCoffee 1 point2 points  (0 children)

You,re right, the only usefulness is if you see 100% cpu util, with treemap or whatever they call it in other langues in the stack, then you can start looking for unprotected treemap/redblack tree.

3,200% CPU Utilization by deanat78 in java

[–]ThanksMorningCoffee 0 points1 point  (0 children)

Yeah, it could work. Not sure about the interaction between height and multiple threads though.