yeah, but it’ll be hard to make those Y Combinator vultures rich at that price
yeah, but it’ll be hard to make those Y Combinator vultures rich at that price
No, I don’t think so.
Tinc has weird limitations and Wireguard completely obsoletes it. There’s zero reasons to ever consider using Tinc when Wireguard exists.
How are the alternatives any better? Download a DEB that executes arbitrary code, signed with some .asc that’s sitting in the same webserver? Download an EXE?
Your comment is so rambley that I can’t understand whether you’re criticizing the distribution method or the packaging. Both of those are very different in terms of attack surface, if you’re talking about supply chain attacks.
The only way I can describe the Titanfall 2 campaign is it’s the giant robot game you always wanted subconsciously. It’s just great, perfect length.
The online favourite in Zandronum (multiplayer ZDoom) was Alien Vendetta, an awesome Doom2 campaign WAD. (av.wad or av20.wad) It’s just super solid with lots of variety and good pacing. Made by a bunch of different mappers.
I could be wrong here, but I think the common interpretation here is wrong. The risk is not that the wires overheat and cause a fire. The risk is that the card draws too much current from a single 12V power rail on your PSU, sustained for a long time, and that burns out the power rail on your PSU.
I have a 6950 XT that I used with a 850W PSU that was connected incorrectly according to the diagram, with multiple connectors coming off a single rail. After about 6 months, one day my SSD stopped working, and after some tinkering, I realized that if I plugged it into a different 12V connector, it started working! I had burned out one of the 12V rails on my power supply, and I strongly suspect it was my incorrect wiring into my 6950 XT that caused it. (edit: I got a new PSU and never looked back)
I haven’t tried it personally, but Mox looks like a nice modern mailserver. It might do what you want.
This looks like absolute garbage from the trailer, lol. The most bland art style, characters without character, terrible CGI in the trailer with bad animation and lack of effects… why even put this out? Gotta show the investors you’re doing something?
If this is how bad the CGI trailer is, I can’t imagine what the real game is going to be like…
I’m a huge Doom (1/2/3/2016) fan but I’m not sure how I feel about this. Eternal just seemed like more or the same so I never even bothered playing it. The Dark Ages is starting to feel a little too Anime and just outside the whole space-based Doom universe. This just doesn’t seem like Doom to me and the gameplay looks like more of the same basically from the trailer.
Every time I look at this, the value proposition makes no sense to me. The DIY V1 and V2 only have instructions for adding a single HDMI input port (??), and the V3 and V4 are like $350 CAD, which is way more expensive than buying a used KVM on eBay. What am I missing?
It’s a misnomer for sure, but that’s why it’s a funny label.
I paid $30 for early access to Tribes Ascend and then like 2 weeks later they were like “actually it’s going to be F2P lol!”
Is this game worth the money?
I have no experience with portainer, but some apps have an option to disable new user registration, and that’s what I would recommend first. (I do use Keycloak myself too)
I don’t see anyone else actually telling you how to figure out if you’re being DoSed, so I’ll start:
Check your logs. Look at what process is eating your CPU in htop and then look at the logs for that process. If it’s a web application, that means the error and access logs for it. If you see a flood of requests to a single URL, or some other suspicious pattern in the log, then you can try blocking the IPs associated with them temporarily and see if it alleviates the load. Repeat until the load goes down.
If your application uses a database, check your database logs too. IIRC postgres logs queries that take longer than 5 seconds by default, which can make it easy to spot a slow query especially during a time of high load.
I don’t think DNS amplification attacks over UDP are likely to be a problem as I think most cloud providers filter traffic with forged src addresses (correct me if I’m wrong). You can also try blocking all inbound UDP traffic if you suspect a UDP flood but this will likely break DNS lookups for you temporarily. (your machine should not have any open UDP ports in any case though if you’re just running Lemmy).
If you want to go next level, you can use “perf” to generate a system-wide profile and flamegraph which will show you where you’re burning CPU cycles. This can be extremely useful for troubleshooting performance or optimizing applications. (you’ll find that even ipfilters takes CPU power, which is why most DDoS protection happens on dedicated hardware upstream)
I’m not OP but Keycloak is pretty usable for SSO. I’ve configured about 8 different web apps to be integrated with it via OAuth2.
Steve/GN strikes me as the annoying guy who just waits you for you to make a mistake and then shouts GOTCHA and makes a video exposing why you’re an idiot to the world. There’s just this weird antagonistic tone/vibe I always get from Steve’s video. (IMHO LTT and GN are both great at what they do, and that’s why they’re both successful.)
Edit: this is also a “there’s no such thing as bad publicity” situation. GN makes a 44 minute long video about this (lol) and I’m sure LTT will make at least one reply video. If they go back and forth, it’s just more content and clicks for both of them. Win win.
The logic still applies. If you price something in CAD for a US or international audience, you might as well price it in beans because nobody’s going to have any idea how much it costs. Think of LTT as an Canadian exporter of video content.
I want to second Pelican for Python. Really easy to set up and get going. No need to learn a complicated templating language (it’s jinja2, which is what everything uses).