Comments

4

bunnies wrote

Better start preparing for C++25 "2 C 2 PlusPlus"

4

bunnies wrote

Frogger 2: Swampy's Revenge is generally not regarded as canon in the Frogger fandom.

2

bunnies wrote

I think "wherever you drop the coins / they roll the same way" is some fucking powerful lyrics.

6

bunnies wrote

sorry, prohibition is prohibited in this zone

2

bunnies wrote

Some bulbs in the IKEA Ledare series perform very well in terms of CRI, and they're pretty cheap.

I bought some really fancy super good CRI bulbs a while back, but I can't say it was worth it. I barely notice a difference between those and any of my other led bulbs. It's probably better to go with cheaper bulbs, and then do some experimentation with color temperature and illumination level to find a configuration that you like.

3

bunnies wrote

I think you can configure nginx to do proxying based on the HTTP Host header. You'd have each service listen to a different port on the loopback interface, and then do something like this in the nginx config:

server {
    listen       80;
    server_name  mastodon.mysite.xyz;

    location / {
        proxy_pass   http://127.0.0.1:3000;
    }
}
server {
    listen       80;
    server_name  blog.mysite.xyz;

    location / {
        proxy_pass   http://127.0.0.1:3001;
    }
}
server {
    listen       80;
    server_name  cloud.mysite.xyz;

    location / {
        proxy_pass   http://127.0.0.1:3002;
    }
}

For https, you would have to set that up in nginx, since it needs the decrypted request in order to know where to forward it to.

3

bunnies wrote

oh right, I didn't realize that 3D world is actually a 3D game lol. your whole vision makes a lot more sense now. :P

3

bunnies wrote

I think it comes down to the level editor. Can they make one where it's possible to create a good 3d level with a reasonable amount of effort? It's going to be tough, especially with the input possibilities on the switch.

My money's on SMB2 DLC, but with way more cool blocks and stuff compared to the original game.

2

bunnies wrote

I love "The Minister for Human Resources" being challenged by "the Socialist Alliance Party" in "the Uber Room of Government Buildings". It's very 2019.

3

bunnies wrote

Yes, a fraction is a rational number.

Is this actually true? 1/(2*pi) seems like a perfectly reasonable fraction to me. My intuitive feeling is that a fraction is just one quantity divided by another quantity, no matter the set membership.

3

bunnies wrote

I'm pretty curious about whether it's could be illegal to try to hack your own computer in the cloud. I wonder if there's a precedent.

5

bunnies wrote

In the acceptable use policy, they write

Vulnerability Testing

You may not attempt to probe, scan, penetrate or test the vulnerability of a Linode system or network, or to breach the Linode security or authentication measures, whether by passive or intrusive techniques, without Linode's express written consent. If you are a Linode customer and need to perform a penetration test, let us know beforehand by emailing support@linode.com.

Probably best to start there.