bunnies

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.

2

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

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.

3