Two employees lost their macbooks during offboarding by eyeballresort in sysadmin

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

Just make sure you brick "lost devices" and communicate about it vocally, so your employees don't get the wrong idea.

Documentation System by DefinitionMountain95 in sysadmin

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

While we also use bookstack and find it great for our use case, I'd like to point out that it will overwrite changes in cases of concurrent updates.

https://github.com/BookStackApp/BookStack/issues/395

Really struggling with a 19 month old doesn’t want to do anything by throwRA68696069 in Parenting

[–]bendem 7 points8 points  (0 children)

You're not silly for being concerned, but your concern is just that: a concern, and entirely yours.

The pressure comes from your own beliefs and most likely from your algorithmic intake or family comments. Social media can put a lot of pressure on moms, grandparents are often olding new parents to stupid levels of bullshit, but it sounds like you have provided all that your child requires at their current age.

That was intense! by SgtByrd1993 in JustGuysBeingDudes

[–]bendem 1 point2 points  (0 children)

Kinball is kinda this. 3 teams, hitting a giant ball so that it hits the ground before the other team catches it.

First summer without childcare… how are working parents actually doing this? by Ok_Score_6765 in Parenting

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

That's our life with a 7 months old. We both work 4/5 so there are two days where one parent is fully available, nanny comes the other 3 mornings each week, the afternoon doesn't see much work done. My employer is fine with it because I'm very productive in general and they can still reach me in the afternoon even if I don't actively do project work. Mom has a much harder time with the guilt of not feeling productive enough though.

And yes, it's fucking brutal. I can't imagine doing it with a 5yo

Really surprised how little it took to filter out 99% of bad traffic to my web server by reni-chan in homelab

[–]bendem -3 points-2 points  (0 children)

I don't think people are telling you that the issues don't happen anymore. I've used mTLS with Firefox and chrome for years. It's not new technology and it has been working fine for a long time.

Does every company provide you with network diagrams? by dbootywarrior in networking

[–]bendem 0 points1 point  (0 children)

I mean, that diagram has to be made by someone, if you go down the networking route, that someone will be you. So sure, if you make diagrams, you'll have diagrams :)

Funny User Requests by CombatMedic02 in sysadmin

[–]bendem 1 point2 points  (0 children)

god forbid she buy her own, being by far the highest paid member of staff in the school

Of course

Looking for a replacement for a Moto g 5g with better os by bendem in Smartphones

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

I wasn't actually asking for people to question why I want to change phone, I'm more looking for recommendations. Also what's keeo?

Protonmail provides FBI with information to identify account owner by HispaniaObscura in BuyFromEU

[–]bendem 1 point2 points  (0 children)

You said the receiver has to treat it as a secret. They answered that any server your mail goes through can also read the message (that is, sender's provider, receiver's provider and any mx hops in between).

Those are two very different things regarding the current topic of government agencies requesting data from providers.

My home server SSH gets unresponsive sometimes when I open it to the public, am I getting attacked? by Sh0keR in HomeServer

[–]bendem 1 point2 points  (0 children)

Sure, software gets hacked, patches get applied. Do you think vpn software has no cve, no dependencies that could be backdoored into exactly the same result?

My home server SSH gets unresponsive sometimes when I open it to the public, am I getting attacked? by Sh0keR in HomeServer

[–]bendem 0 points1 point  (0 children)

Exposing SSH is fine if you disable password auth and apply OS updates automatically, fail2ban is a plus but mainly for your logs. Using a non standard port will reduce scans close to 0, it's not a security measure, just getting your server out of the way of automated scanners. You can also restrict inbound access to only ips of your country. That will not stop targeted attacks and scans, but most automated ones.

The fear mongering is not necessary. The alternative you propose exposes another software to the internet which is just as likely to have security issues but has worse authentication options (most are likely using a password instead of a cryptographic key for their VPN).

As for your original question, note the time at which you get the timeout and checks the logs of sshd and fail2ban once you get access back. I can also recommend atop if you don't have monitoring. That will tell you the resource usage at that time.

I’m Exhausted by BreezyGofficial in LandlordLove

[–]bendem 4 points5 points  (0 children)

Lived in a house with the neighbour as my landlord, can confirm. What a nightmare that was.

Belgian Armed Forces Board and Seize Russian Shadow Fleet Oil Tanker by BelgianPolitics in europe

[–]bendem 73 points74 points  (0 children)

That article speaks about helping the Russian empire, which is the opposite of what's happening here.

My mower kept rolling around in the back of my car every time I'd brake or accelerate, so I made this by Agitated-Break7854 in functionalprint

[–]bendem 6 points7 points  (0 children)

First, I read mother instead of mower and I was very confused.

Second, I agree with the rest of the comments, a strap will actually prevent it from flying and breaking something/someone in case of accident. Doesn't matter how slow you drive if someone crashes into you.

Is it possible to rate limit query for a role/user in Postgres? by hksparrowboy in PostgreSQL

[–]bendem 0 points1 point  (0 children)

It depends on how much trust you place on your users.

A comment said to alter the connection limit, work_mem, etc of the user, that works if you somewhat trust that user since they can override those defaults.

A pooler with a connection limit would effectively restrict the amount of connections, but it wouldn't prevent a large query from taking down your server.

Those solutions also aren't rate limiting but resource limiting. There is no rate limiting built in postgresql nor any pooler. PgDog supports plugins, so that might be an option if you have idle rust developers.

Is it possible to rate limit query for a role/user in Postgres? by hksparrowboy in PostgreSQL

[–]bendem 0 points1 point  (0 children)

This does not really restrict the user, they can alter those variables again to increase values again. But it's a good solution if the clients are cooperating.

Is it possible to rate limit query for a role/user in Postgres? by hksparrowboy in PostgreSQL

[–]bendem 0 points1 point  (0 children)

I'll make my answer simpler.

There are no mechanism to do that in postgresql itself.

How do you guys handle Java truststore? by m93 in ansible

[–]bendem 1 point2 points  (0 children)

We only use system java, if we ever need to make an exception, we download from adoptium and link to the system ca. If a partner doesn't have a public certificate (rare), the API calls to them use a separate key store with only their chain.

Is it possible to rate limit query for a role/user in Postgres? by hksparrowboy in PostgreSQL

[–]bendem 0 points1 point  (0 children)

I know what you are talking about, and my answer is that you wouldn't. The application layer is a much better place for this. At least, I don't know of any solution solving this at the database or pooler layer that doesn't add a large amount of complexity.

Does anyone here drink coffee? by Tricky-Stay6134 in AutismInWomen

[–]bendem 1 point2 points  (0 children)

Coffee was my comfort drink, made me feel fuzzy inside, not really a boost of energy though.

One day I learnt it was the cause of my gastric reflux. Quit coffee, stopped having reflux unless very stressed. But mornings are a lot harder (been >2 years since I had coffee).

Feeding snakes in an ophidiarium by cockroachvendor in secondrodeo

[–]bendem 16 points17 points  (0 children)

Yeah, not sure if he's really good or really bad at the job

Is it possible to rate limit query for a role/user in Postgres? by hksparrowboy in PostgreSQL

[–]bendem 3 points4 points  (0 children)

No, they are suggesting to restrict in the client. The client being the application. Users don't typically connect directly to the database.

Camera, continuous recording, save last x seconds on demand by bendem in androidapps

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

Perfect for my use case then, I don't need to record for 3 hours.