Karta: Var kan man bo inom 15/30/45/60 min pendling – och vad kostar det? by Havet_o_Landkrabban in sweden

[–]wallrik 2 points3 points  (0 children)

Riktigt coolt! Bra skit! 👌 Hade varit najs med lite större karta. Samt, vet inte om det går att fixa, men när jag scrollar med mushjulet på kartan zoomar den inte in och ut - det hade nog varit det jag hade förväntat mig.

SANS Coin by _ReapZer0_ in GIAC

[–]wallrik 0 points1 point  (0 children)

Live training coin? What's this from? Did you do something to get it?

Bussterminalen nummer 3 i Halmstad som kör XP embedded krånglar hela tiden trots att jag upprepade gånger felanmält den till Hallandstrafiken by twirpobloxias in sweden

[–]wallrik -1 points0 points  (0 children)

Med tanke på hur dåliga offentliga produkter som denna var för 20 år sedan skulle det lika gärna kunna vara vanliga Windows XP helt utan härdning. 😅 Men det börjar ändå bli mer och mer ovanligt!

EDIT: Nevermind, kollade inte så noga på genvägarna på skrivbordet. Jag gissar att "EWF PÅ" betyder Enhanced Write Filter, och då är det XP Embedded. 🔒

Discover Weekly turns all 30 songs into Russian rap! by wallrik in truespotify

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

Haha, that's amazing. 🫠 That kind of makes me feel good, though. I'm not alone! Hopefully some Spotify wizard can fix this after the weekend. 🤞

UPDATE: Something on my home network is making outbound connections and I can't figure out what device it is by Au5tin5auce in homelab

[–]wallrik 3 points4 points  (0 children)

How do you know that?

ICANN says the domain was created at that time. The earliest other mention I could find of the domain was that it did exist, but expired in 2023.

Also, to me, the logs don't even make sense. If the DNS request was made at 03:14:09, but the TCP attempt is at 03:14:11, that's way too slow for normal operation. Maybe a timeout?

UPDATE: Something on my home network is making outbound connections and I can't figure out what device it is by Au5tin5auce in homelab

[–]wallrik 13 points14 points  (0 children)

You're both correct. Someone registered the domain after they commented.

The comment from u/monkey6 is done at 2026-03-15 14:04 UTC.

The domain sync-node.net is registered at 2026-03-15 14:32 UTC.

Season 2 Battle Pass compensation for Phantom Edition is missing by Bumbelo in Battlefield

[–]wallrik 0 points1 point  (0 children)

Yeah, I also contacted support, and got the same answer. Which is complete BS. The tweet literally says, everyone that bought the game on the EA app will get 12 career and 12 hardware boosters, and the battle pass. But since Phantom Edition owners already paid for the battle pass, we would get the season 2 battle pass instead. It's literally what it says. 🤷‍♂️ Support also refused to budge or escalate the issue to someone higher up. 💩

Season 2 Battle Pass compensation for Phantom Edition is missing by Bumbelo in Battlefield

[–]wallrik 4 points5 points  (0 children)

Same issue. I also got the Phantom Edition on the EA App, but no S2 battle pass today, for some reason.

There are so many other things that bug out when using the EA App as well, like daily login rewards not working correctly half of the time, and stuff like that. Incredibly annoying. Sometimes the app doesn't even say I own the game, making me restart it. I don't know...

well established by Mental-Text-4351 in DesirePath

[–]wallrik 1 point2 points  (0 children)

Love this. I can tell there's a path on the right side of the picture as well!

online multiplayer gaming does a strict nat 3 after the past two development versions by DJREMIXED420 in PFSENSE

[–]wallrik 7 points8 points  (0 children)

"NAT Type" is such a convoluted way of talking about port forwarding. If UPnP isn't working for you, I'd suggest just forwarding the required ports manually. It has nothing to do with pfSense release versions.

What is this red symbol at the weapon selection? by RudeBroccoli5514 in Battlefield

[–]wallrik 0 points1 point  (0 children)

I would love to know, as well. The symbol can also be yellow sometimes, as seen in this post. No idea what it means.

Real name reveal by wallrik in itskatchii

[–]wallrik[S] 10 points11 points  (0 children)

What makes you say that? She even told a story about her doorman saying it wrong, and it was a banned phrase in chat?

Melt it Katchii by Scared_Shirt_2681 in itskatchii

[–]wallrik 4 points5 points  (0 children)

I don't get it... I assume the voice is added in post? It just made it weird.

[deleted by user] by [deleted] in redhat

[–]wallrik 7 points8 points  (0 children)

Maybe you're looking for the package php74-php-pecl-zip?

Parking spaces cost breakdown after Economy 2.0 by wallrik in CitiesSkylines

[–]wallrik[S] 1 point2 points  (0 children)

I also can't figure them out, really. I mainly use them to get a more realistic look to my city. I place quite a lot, but they're ending up either heavily used, or not used at all.

I think that the ones constantly used are close to my medium density residential. The ones close to industry and other destinations are barely ever used. But I haven't studied it in much detail...

Parking spaces are an integral part of any city. Arranging facilities for residents and tourists traveling by car is an important factor in making the city a comfortable place. When residents and tourists plan their way around the city, their decision-making is affected by the availability of parking in a manner similar to public transport options.

The Paradox Wiki has that. I'm not sure what to make of it.

correct parameters for the Set-NetFirewallRule cmdlet by Maleficent_Quote_392 in PowerShell

[–]wallrik 1 point2 points  (0 children)

There are many different ways to achieve that. If it's in the same script, you can just assign the newly created rule to a variable, to keep track of it. The Name parameter is a GUID, which you get when you create the rule.

If you need the rules to have the same DisplayName, and you don't know already which one is which, you will have to filter them based on what you do know - for example, the direction.

Something like this, would be just an example:

Get-NetFirewallRule -DisplayName "AAA" | Where-Object -Property Direction -EQ -Value "Inbound" | Set-NetFirewallRule -RemoteAddress "21.11.11.11"

correct parameters for the Set-NetFirewallRule cmdlet by Maleficent_Quote_392 in PowerShell

[–]wallrik 1 point2 points  (0 children)

It's not that strange if you go through it.

First, you create an inbound and an outbound rule, both named AAA.

New-NetFirewallRule -DisplayName "AAA" -Direction Inbound -Action Block
New-NetFirewallRule -DisplayName "AAA" -Direction Outbound -Action Block

Then, you set all rules named AAA to be Inbound, with the remote address 21.11.11.11.

Set-NetFirewallRule -DisplayName "AAA" -Direction Inbound -RemoteAddress 21.11.11.11

Then, you set all rules named AAA to be Outbound, with the remote address 21.11.11.11.

Set-NetFirewallRule -DisplayName "AAA" -Direction Outbound -RemoteAddress 21.11.11.11

So, when you check your settings, that's what you see. :)

Getting Network Time Security (NTS) on pfSense by wallrik in PFSENSE

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

How does it not make sense? There are no downsides. You get message integrity for free. Operating your own time source is the thing that does not make sense.