This design is so cute, it reminds me of the art style of HyperBeard Games. I hope something inspired by this gets chosen and not another boring “iOS flat design” icon.
Her sidder jeg, med mit hjerte brudt // Prøvede at skide, men slog kun en prut
This design is so cute, it reminds me of the art style of HyperBeard Games. I hope something inspired by this gets chosen and not another boring “iOS flat design” icon.
I brought up the social system because you can see that everyone in this thread arguing against you is saying that your “excellent welfare system” is the reason why your income is lower than the corresponding American programmer’s. The massive taxation is obviously a big factor to your reduced income, but let’s look away from that for a bit and just focus on the American companies.
American companies in America pay more because the costs of doing business in America are much lower and there is a greater availability of loans and funding.
American companies in Europe pay more because they have the advantages listed above that local European companies don’t have and they have the resources to invest in a global expansion.
That’s it. That’s the answer.
I don’t think that you, me and OP have different values on this issue, actually? We all agree that the state is supposed to provide us with a structure to live in that we couldn’t have on our own, and as payment for this safety net, we contribute taxes. My and OP’s argument is that with the current projection of the economy and population growth, the state cannot provide the current generation of tax payers with the structures and support that we will eventually need, and therefore many of us would rather pay lower taxes and lose the benefits, because we won’t be getting them anyway. We know what’s coming and we don’t want to be the ones “holding the bag” when the system collapses.
I’m trying to explain OP’s point to the Americans in this thread who don’t understand that European social security systems are currently under severe strain and are on the road to collapse, and how OP feels to have to sacrifice so much of his potential income to support a failing system. The 80s stereotypes of reliable, high-quality social security no longer hold true in Europe in 2023.
Federated actions are never truly private, including votes. While it’s inevitable that some people will abuse the vote viewing function to harass people who downvoted them, public votes are useful to identify bot swarms manipulating discussions.
Is renaming the instance domain without reinstalling Lemmy related to changing the WebFinger query? It’s the trick some instances use to have a different instance domain from their username domain, like @[email protected] while the instance is mastodon.domain.com.
This one is probably either small enough to fly under Disney’s radar or has already been shut down. Disney successfully copyrighted one Club Penguin revival project for using the art assets and logo, even though the code was completely rewritten. Maybe this is the one?
There is either no chance of that getting off the ground or the project you are talking about has already shut down. The Club Penguin IP is owned by Disney who aggressively copystrikes Club Penguin revivals.
Why do you have to use NGINX? Caddy does the proxying to the Lemmy containers for you. That docker-compose.yml file is my entire deployment, there is no hidden NGINX container or config file that needs to be added. Just remove your broken Lemmy deployment with docker compose down
and delete the containers, then docker compose up
my docker-compose.yml (after you edit the postgres variables) with config.hjson in the same folder.
Hardware companies have much deeper pockets because the initial investment for hardware design and manufacturing is much higher than software. This also helps them keep their profits because new companies can’t enter the industry and compete as easily.
I also realized that I didn’t mention the elephant in the room, selection bias. US companies in Europe are those who have already “made it” in their domestic market and are looking to expand globally, of course they’ll bring money that Arnes Webbyrå AB doesn’t have. I follow CS industry discussions that naturally end up talking about the US a lot, and there are stories about how retrenched developers with experience had to accept terrible wages like $30k a year with all of the lack of safety nets that living in the US comes with. Those positions exist, but they don’t hire foreigners, so we never hear about them.
But I agree with you that a high minimum wage also reduces how much a company can pay its top employees, because their expenses on lower-paid employees like customer support and janitors will have to be balanced out somehow.
Oh shit, I forgot that your Caddy would be running on a bridge network by default because mine is on the host network where all ports are already exposed to it! (It’s generally a bad idea to use the host network, so don’t do this if you’re only using Caddy with containers on the same network) I edited the Gist to expose 80 and 443 for HTTP/S on that container, the updated file uses the same Github link. Really sorry about that!
Ugh, that one is a problem with indentation because pasting the config into a Lemmy comment destroys the formatting. I uploaded it on Github to preserve the correct indentation.
I think it has to do with the higher rate of investor funding in the US that allows companies to spend above their actual assets by a huge margin, because of the significantly lower capital gains taxes there. The risk is much higher that US companies go bankrupt or investors stop funding the company during times of high interest rates (such as now), which is why US tech companies are disproportionately affected by the post-Coronavirus layoffs. Even Reddit itself (according to Spez) has not been profitable through all 18 years of its operation, but someone was clearly pouring money into it to keep it running. European companies on the other hand have a lot more administrative overhead when it comes to loans and investment than US companies, so they can’t use money they don’t have to offer attractive compensation on the level of US companies.
I’m not Danish (I’m the resident foreign invader on the instance), but if you are, you should come over to feddit.dk to complain with us. Privatization and the social system destroying itself is a hot topic right now.
I must admit though, the way you described your country made me think you were from Greece or somewhere that is bleeding citizens because its social systems are beyond salvaging at this point. Is the public pension in Denmark really unliveable? I would assume that it’s much worse here in Sweden but old people are generally still able to get by.
Yeah, the config file on the documentation sucks. I had to poke through several discussions on /c/selfhosting to find a config that wasn’t the extremely minimal one linked in the documentation. Your config.hjson
is fine from what I can tell, although I’m not sure why you censored the hostname
there as it’s supposed to be lemmy.emphisia.nl
and not anything confidential.
Honestly, I don’t have enough understanding of NGINX to debug its config, so I’ll just share my docker-compose.yml for leddit.danmark.party which worked correctly and federated out of the box, with a few adjustments to match your deployment. Note that you’ll have to tear down your existing deployment if you want to use this docker-compose.yml because they use the same ports.
version: "3.9"
x-logging:
&default-logging
options:
max-size: '10m'
driver: json-file
services:
caddy:
image: caddy:2
volumes:
- ./volumes/caddy:/data
- ./volumes/caddy:/config
# See Caddy's documentation for customizing this line
# https://caddyserver.com/docs/quick-starts/reverse-proxy
command:
- /bin/sh
- -c
- |
cat <<EOF > /etc/caddy/Caddyfile && caddy run --config /etc/caddy/Caddyfile
{
debug
}
(common) {
encode gzip
header {
-Server
Strict-Transport-Security "max-age=31536000; include-subdomains;"
X-XSS-Protection "1; mode=block"
X-Frame-Options "DENY"
X-Content-Type-Options nosniff
Referrer-Policy no-referrer-when-downgrade
X-Robots-Tag "none"
}
}
# Lemmy instance
lemmy.emphisia.nl {
log
import common
reverse_proxy http://lemmy-ui:1234 # lemmy-ui
@lemmy {
path /api/*
path /pictrs/*
path /feeds/*
path /nodeinfo/*
path /.well-known/*
}
@lemmy-hdr {
header Accept application/*
}
handle @lemmy {
reverse_proxy http://lemmy:8085 # lemmy
}
handle @lemmy-hdr {
reverse_proxy http://lemmy:8085
}
@lemmy-post {
method POST
}
handle @lemmy-post {
reverse_proxy http://lemmy:8085
}
}
EOF
lemmy:
image: dessalines/lemmy:0.18.1-rc.9
ports:
- 8085:8536
volumes:
- ./lemmy.hjson:/config/config.hjson
depends_on:
- postgres
- pictrs
restart: always
logging: *default-logging
lemmy-ui:
image: dessalines/lemmy-ui:0.18.1-rc.9
ports:
- 1234:1234
environment:
- LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8085
- LEMMY_UI_LEMMY_EXTERNAL_HOST=localhost:1236
depends_on:
- lemmy
volumes:
- ./volumes/lemmy-ui/extra_themes:/app/extra_themes
restart: always
logging: *default-logging
postgres:
image: postgres:15-alpine
ports:
- 5432:5432
environment:
- POSTGRES_USER=MyPostgresUser
- POSTGRES_DB=MyPostgresDb
- POSTGRES_PASSWORD=MyPostgresPassword
volumes:
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
logging: *default-logging
pictrs:
image: asonix/pictrs:0.4.0-rc.7
user: 991:991
hostname: pictrs
environment:
- PICTRS__MEDIA__VIDEO_CODEC=vp9
- PICTRS__MEDIA__GIF__MAX_WIDTH=256
- PICTRS__MEDIA__GIF__MAX_HEIGHT=256
- PICTRS__MEDIA__GIF__MAX_AREA=65536
- PICTRS__MEDIA__GIF__MAX_FRAME_COUNT=400
volumes:
- ./volumes/pictrs:/mnt
restart: always
logging: *default-logging
postfix:
image: mwader/postfix-relay
environment:
- POSTFIX_myhostname=lemmy.emphisia.nl
restart: "always"
logging: *default-logging
Oof, it sounds like your country is further along than mine on the “broken down social system” scale. My country is already dealing with reports about retirees who can’t survive off their pension despite working for an average income their entire lives, old people who are not able to find caretakers and people who have to wait in line for an unreasonably long time to get public healthcare and subsidized housing. All while politicians slash budgets and make privatized systems the only way to get timely and high-quality services. I can only see it getting worse from here and it makes no sense to pay so much for something whose quality only gets worse with every passing year.
I don’t use NGINX as my proxy server, but it’s a bit strange that you would need two configs for this while mine runs perfectly with one config and two open ports (:8536 for Lemmy-BE and :1234 for Lemmy-UI). And why are you using different versions of Lemmy-BE (18.1-rc9) and Lemmy-UI (18.1-rc4)?
If you are using the default docker-compose.yml
on the Lemmy repo, that part of the NGINX config uses https:// + the name of the Docker containers. And you always give NGINX the external port (the number on the right side of the colon defined in ports:
, like 1234 in 1234:5678
). The port on the left is only known to the container the port is defined for.
If it’s still broken after you correct the NGINX config, what are your docker-compose.yml
and config.hjson
like? There’s several versions of them floating around and you might have combined incompatible versions with each other.
You’re right that healthy, young working adults without children have very little to gain from socialized systems. I’m going to assume that OP, like me, is an early Gen Z who fits this description, and is about to enter the job market or has just entered it. For our generation, this statement
The state is not here to rob you, but to provide you with a structure to live in that you couldn’t have in the same way on your own.
does not check out mathematically. The taxes we pay today don’t get locked away in a box to be spent when we are sick or elderly and need them. They are spent on the sick and elderly we have right now. This means that at the age that we start needing benefits more than we contribute to them, it’s not going to be us, but our children’s and grandchildren’s generation who are footing the bill. But the birth rates across Europe are below replacement level and none of our countries have come up with a system that either raises birth rates above replacement level or successfully introduces foreigners who will be net tax contributors for all their lives. That means that despite paying high taxes and receiving miserable salaries (compared to American salaries) today, we won’t even be able to enjoy benefits from the state in the future because there won’t be enough tax contributors by the time we need these benefits.
It absolutely feels like getting robbed.
“Suddenly”? This has been happening for a long time. If you click on outbound links from built-in Windows apps, they used to always open in Edge unless you used a tool named EdgeDeflector to redirect them to your preferred browser. In 2021, they killed EdgeDeflector by making it impossible to redirect links with the microsoft-edge://
protocol baked in, even if you go deep into the registry settings to change this. They will eventually do this to Outlook and Teams too and get away with it, just like they got away with restricting EdgeDeflector.
https://leddit.danmark.party, because it’s running a bot named Leddit that pulls content from Reddit. And, uh, Denmark Party, because I love Denmark and I thought it would be really funny to own a domain named this. I also wanted to split my serious and silly projects into different domains, so I bought this extra domain and use it for all of my silly projects now.
(Not posting directly from that instance so I can leave the bot in peace, but federation definitely works because posts from it are getting through to other instances)
Is this like when they made the kilogram some function of the speed of light instead of the weight of a metal ball in a French museum?