Piatro

joined 1 year ago
[–] Piatro@programming.dev 1 points 1 week ago

The self-contained electron app works better for most people I think.

[–] Piatro@programming.dev 1 points 3 weeks ago (1 children)

Didn't they effectively kill the oculus rifts with required logins and no more support?

[–] Piatro@programming.dev 14 points 3 weeks ago

Ah yes, the Keir Starmer school of winning elections.

[–] Piatro@programming.dev 2 points 2 months ago

Yeah I have to re-fix this after every update, drives me mad

[–] Piatro@programming.dev 2 points 2 months ago

I believe it's 1% for access to the "entire post-open ecosystem", rather than 1% per project which would be unreasonable. So you could use one or thousands of projects under the Post-open banner, but still pay 1%.

It will take years to develop the post-open ecosystem to be something worth spending that much on.

[–] Piatro@programming.dev 25 points 2 months ago (1 children)

Also chromosome tests aren't a foolproof indication of sex anyway. People can have one set or another while still having the properties associated with the other sex, so it doesn't really work as a definitive measure. The question is reasonable until you examine it and it's motives.

The question subtly suggests that if she had a Y chromosome then she has some biological advantage and therefore doesn't deserve the medal she earned. Does she actually have an advantage from the Y chromosome? Are we going to ensure through DNA testing that all competitors are going to be exactly equal by genetics? If so, we're going to have 8 clones of Usain Bolt competing for the 100m sprint. Michael Phelps arguably had a biological advantage by having hyper flexible shoulders, are we disqualifying those biological advantages? Of course not, so what do they actually mean when asking those questions about the chromosome? They don't have meaningful answers to the questions I raise, they just want to add fuel to the fires of the culture war for their own political means.

[–] Piatro@programming.dev 7 points 2 months ago (1 children)

Have they got rid of the rootkit yet?

[–] Piatro@programming.dev 1 points 2 months ago

This really got me, thank you!

[–] Piatro@programming.dev 6 points 2 months ago (1 children)

I for one am frequently so close to my very good friends that my nose is pressed against theirs, my eyes only able to see theirs, the world not existing around us, while discussing in a platonic way how their day is going.

[–] Piatro@programming.dev 9 points 3 months ago

I've not built anything beyond simple scripts in rust but I'm looking at some of the cosmic codebase to see what I can do.

[–] Piatro@programming.dev 5 points 3 months ago

Yes I should have said "employed full-time" probably. This also doesn't account for the self-employed who have to manage it themselves too rather than having their employer do it.

[–] Piatro@programming.dev 9 points 3 months ago (3 children)

If you're British and employed your employer is legally required to provide a private pension I believe. You also get a state pension if you've been paying national insurance (most people will get this taken out of pay cheques before you ever see the money, same as income tax). Some employers offer "matching contributions" up to a certain amount. For example if you decide you want to send £100 per month into your private pension, your employer will also do the same, so your pension gets £200. These contributions are tax free so it's a tax-efficient way to save money when compared to privately investing where you'd have to invest from your income, which has already been taxed and then potentially have to pay capital gains tax on profits.

 

Hi all, my trusty (but honestly always pretty terrible) Amazon basics tripod finally died, does anyone have a tripod they'd recommend or brands they'd avoid?

Typical usage for me would be travelling/hiking and landscape photography so ideally small and light without breaking the bank (which I know is pretty tough). Budget is variable but call it £100-£200 for now.

 

It's being rolled out in stages so you, like me, may not have it yet.

 

Title. Friend group and I play regularly but most of us are bad at the role playing part of it to the point where it's hard to tell when the player or the character are speaking in some scenes. Conversations are stiff. We can't use too heavily modified voices because we're playing remotely. My character is about to die (probably!) so help me pick a character or trait of my new character that someone not comfortable roleplaying can stick to without feeling weird about it!

 

What do you have, what do you recommend, and why?

Asking as I've got a lot of spare components lying around that I'm planning on turning into a NAS. If it doesn't work out I'll buy a pre-built enclosure and reuse the drives.

 

EDIT: Issue now resolved. Turns out that having an A record point to a DNS server probably wasn't the best idea. My best theory here is that A records pointing to DNS servers means "Find the authority on this domain at this other DNS server", which could never resolve. By pointing it to my VPS, the DNS could resolve to a definitive IP, and the certs were successfully generated.

Hi all, hope someone can help as I'm just confused now!

Long story short I want to host local services (like ntfy) using trusted certificates. I hoped to do this with Caddy and a wildcard domain (I don't want to expose the DNS records of the services I'm running if not necessary).

In my DNS I have an A record for *.local.example.com pointing at a semi-random IP. I have other services on a VPS on other subdomains so I can't just use a wildcard. This looks like:

blog  A  <VPS IP>
*.local  A  1.1.1.1

On the server in my home network (which I do not want to expose) I have dnsmasq running that is handling local DNS records for services on the LAN but carefully not the remote services on the same domain. Using dig I can see that the local and remote DNS are working as expected. Seeing the error on DNS-01 challenged "could not determine zone for domain "_acme-challenge.local.example.com" I have also added an exception in my local DNS for _acme-challenge.local to point to cloudflare's DNS at 1.1.1.1. The dig command confirms this works as expected after restarting dnsmasq.

With the following Caddyfile:

*.local.example.com {
        tls {
                dns <dns provider plugin> <API token>
        }

        @ntfy host ntfy.local.example.com
        handle @ntfy {
                reverse_proxy ntfy
        }
}

Every DNS-01 challenge fails with "...solving challenges: presenting for challenge: could not determine zone for domain "_acme-challenge.local.example.com"...".

I think this should be possible, but I'm not clear what I'm missing so any help greatly appreciated. I'm just dipping my toes into self-hosting and actually getting practical use out of my Raspberry Pi that's been collecting dust for years.

 

Not affiliated I just find this useful and it exposed me to a few of the new features of Ruby 3.2 like not having to specify the value in kwargs if the variable is defined in scope, eg:

foo = 'bar'; call(foo:) is equivalent to foo = 'bar'; call(foo: foo)

view more: next ›