It’s the DENNIS system.
- 0 Posts
- 43 Comments
Yeah if it’s anything like being a manager your entire day ends up being meetings and managing others and less programming. Don’t ever become a lead if you enjoy programming.
BlackPenguins@lemmy.worldto
Selfhosted@lemmy.world•I am attempting to get into Selfhosting after a shockingly frightening experience, but I am very lost.English
2·11 months agoNote taking? Joplin. It’s been amazing for me and replaced Evernote after they started with their BS.
Photo storage. Been using Photo prism but I’m open to a better one.
What’s your hardware setup for all of this? I’ve got an 8 core, 16 GB, 5TB external NUC but it starts struggling after I add a few services. BitWarden in particular so I just used their services instead. I’d love to run everything myself for same reasons but I def might need an upgrade first.
BlackPenguins@lemmy.worldto
Linux@lemmy.ml•According to Pornhub data (yes seriously!) Linux market share in 2024 increased more than 40% relative to 5.1% of all users.
6·1 year agoIs that supposed to be they watch videos in vertical…or they get off on watching vertical videos?
“Oh yeah, tilt that camera. Tilt it harder. There we go. Oh yeah! It’s standing straight up.”
Part of being a senior developer is knowing when to act. Can you do it? Probably. Is it worth the time and money? No.
I enjoy refactoring and making legacy code better.
The DMR in call of duty years ago. “Here’s a bug with a gun that instakills from 4 miles away that breaks the game dynamics. It’s literally unplayable. Instead we added more features that make us money.”
There’s a udemy course by Maximilian that is only $20 that helped me immensely. Highly recommend.
Damn she has a ton of these helpful tech guides on her site under “Comics”.
BlackPenguins@lemmy.worldto
Linux@lemmy.ml•I got SWAT'ed and handcuffed live while Linux development streaming!
1·2 years agoI mean I would too. Capitalize on the shitty injustice you were given. He deserves it.
BlackPenguins@lemmy.worldto
Linux@lemmy.ml•I got SWAT'ed and handcuffed live while Linux development streaming!
11·2 years agoAre you saying he hired the police?
I use a Java backend with a React frontend at work. It works fine with us and it’s not going anywhere anytime soon.
Oh good as long as it’s only a recent update.
What. Da fuck. This always existed?!
BlackPenguins@lemmy.worldto
Selfhosted@lemmy.world•Self hosting is hard. How do you overcome?English
2·2 years agoI only use it for reverse proxies. I still find Apache easier for web serving, but terrible for setting up reverse proxies. So I use the advantages of each one.
BlackPenguins@lemmy.worldto
Selfhosted@lemmy.world•Self hosting is hard. How do you overcome?English
3·2 years agoI updated my comment above with some more details now that I’m not on lunch.
BlackPenguins@lemmy.worldto
Selfhosted@lemmy.world•Self hosting is hard. How do you overcome?English
1·2 years agoReverse proxy is actually super easy with nginx. I have an nginx server at the front of my server doing the reverse proxy and an Apache server hosting some of those applications being proxied.
Basically 3 main steps:
-
Setup up the DNS with your hoster for each subdomain.
-
Setup your router to port forward for each port.
-
Setup nginx to do the proxy from each subdomain to each port.
DreamHost let’s me manage all the records I want. I point them to the same IP as my server:

This is my config file:
server { listen 80; listen [::]:80; server_name photos.my_website_domain.net; location / { proxy_pass http://127.0.0.1:2342; include proxy_params; } } server { listen 80; listen [::]:80; server_name media.my_website_domain.net; location / { proxy_pass http://127.0.0.1:8096; include proxy_params; } }And then I have dockers running on those ports.
root@website:~$ sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e18157d11eda photoprism/photoprism:latest "/scripts/entrypoint…" 4 weeks ago Up 4 weeks 0.0.0.0:2342->2342/tcp, :::2342->2342/tcp, 2442-2443/tcp photoprism-photoprism-1 b44e8a6fbc01 mariadb:11 "docker-entrypoint.s…" 4 weeks ago Up 4 weeks 3306/tcp photoprism-mariadb-1So if you go to photos.my_website_domain.net that will navigate the user to my_website_domain.net first. My nginx server will kick in and see you want the ‘photos’ path, and reroute you to basically http://my_website_domain.net:2342. My PhotoPrism server. So you could do http://my_website_domain.net:2342 or http://photos.my_website_domain.net. Either one works. The reverse proxy does the shortcut.
Hope that helps!
-
BlackPenguins@lemmy.worldto
Selfhosted@lemmy.world•Self hosting is hard. How do you overcome?English
3·2 years agoOff-site backups that are still local is brilliant.



Or the hip soccer mom