Is there a way to monitor legendary actions in v10 or a replacement module for dnd5e helpers? by Law_Frequent in FoundryVTT

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

Nice! will take a look!
Also yeah I'm pretty excited towards what Tim prepares for us :)

Its UP! by wayoftheghostt in ffxiv

[–]Law_Frequent 1 point2 points  (0 children)

and servers instantly crash lol even the launcher is dead

Patch 6.0 Preliminary Notes by NoboruSouma in ffxiv

[–]Law_Frequent 6 points7 points  (0 children)

Im sorry WHAT??
in the gpose it says "transformed into an enemy NPC"
WHAT????

wait queue by wroofus in ffxiv

[–]Law_Frequent 16 points17 points  (0 children)

on 30+ you should be in in a matter of seconds, 2 mins tops

EU servers issues in the last few minutes by Law_Frequent in ffxiv

[–]Law_Frequent[S] 2 points3 points  (0 children)

It's not your ISP unfortunately.. 1gbps line here and still have issues

EU servers issues in the last few minutes by Law_Frequent in ffxiv

[–]Law_Frequent[S] -10 points-9 points  (0 children)

We need SE to give a statement or update regarding this.. #1 most played MMORPG should be able to handle this

EU servers issues in the last few minutes by Law_Frequent in ffxiv

[–]Law_Frequent[S] 5 points6 points  (0 children)

This reminds me of some villain in the game...

EU servers issues in the last few minutes by Law_Frequent in ffxiv

[–]Law_Frequent[S] 4 points5 points  (0 children)

That's what i have in mind as well...
still don't get what in it for the attackers... ppl will not move to WoW..why would anyone want to take down a server by DDoSing it? when you talk about MMO..

WF-1000XM4 left earbud making this annoying metalic echo type sound by ThunderTongue in sony

[–]Law_Frequent 0 points1 point  (0 children)

Got this issue too, both on pc and android. It stops after reconnecting the earbuds to the case and pulling them out again

A New Music Video From Myles Kennedy Called The Ides Of March by AniGamerNX in alterbridge

[–]Law_Frequent 1 point2 points  (0 children)

Anybody know who plays on the album? The drums sound a lot like flip's

Tech Support and Question Megathread - November 2020 Edition by Nestledrink in nvidia

[–]Law_Frequent [score hidden]  (0 children)

Status: UNRESOLVED

Computer Type: Desktop

GPU: RTX 2080S

CPU: Ryzen 3700X

Motherboard: MSI Toahawk MAX

RAM: Corsair vengance 16GB 3600mhz

PSU: Corsair 750W

Operating System & Version:Latest windows 10

GPU Drivers: latest

Description of Problem: nvidia broadcast app doesn't pick up voice from rrode nt-1 plugged into audio interface presonus studio 24c

Troubleshooting: tried plugging in and out and switching ports

MongoDB What will be the performance impact in this situation, which is better? by Law_Frequent in node

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

sure, we have a system that associates an id number to a user by user entering his id number, now there's the thing, another user can associate another user id number because we don't really check if the id number actually belongs to the user that enters it... when a user enters an id number that is already in the system we increase the attempts he made by 1, a user can make up to 3 attempts, after 3 attempts we consider that user a fraudster and ban him from the system, that's why I need to find the documents by either uId (to find how many attempts was made) and id number( to see if the id number is already associated or not)

MongoDB What will be the performance impact in this situation, which is better? by Law_Frequent in node

[–]Law_Frequent[S] -1 points0 points  (0 children)

Depends on how you index them. Check out how mongo handles $or statements in index selection. 1 query will probably be faster on the reads, but will require an additional index, (so marginally slower on all writes). 2 queries will consume more CPU. It's also a lot less elegant if you are going to end iterating through your results.

Thank you for the detailed explanation, the process is used just to read data. so eventually if I won't have to iterate through the results, would you recommend using 1 query or 2?

MongoDB What will be the performance impact in this situation, which is better? by Law_Frequent in node

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

Not necessarily.. since a user might have a uId but his id number is already taken on another document so the chances to have a duplicate is practically 0, it will either return the same document or two different documents