captcha_incorrect
@captcha_incorrect@lemmy.world
- Comment on 2 days ago:
So Anna’s Archive is legal now?
- Comment on Another suggestion post 3 days ago:
Have a look at tasks md. github.com/BaldissaraMatheus/Tasks.md
- Comment on I gotcha, boss 4 days ago:
Did she die or something?
Almost. I found this article: news.com.au/…/363ca9fa59e720e41bdb4e257a529ffb
A DETECTIVE investigating former mixed martial arts fighter War Machine’s grisly attack on his ex-porn star girlfriend says she was too battered after to give her account.
“I just couldn’t understand what she was saying but it was because she didn’t have teeth,” Mr Tomaino said at the trial. - Comment on Lenovo’s New ThinkPads Score 10/10 for Repairability— Repair goes mega mainstream with the launch of Lenovo's new T-series laptops 1 week ago:
I have an X1 Carbon Gen 9 (so a few years old now). I wanted to replace my HDD and they (Lenovo) had videons on how to do it.
I’d say yes. But stick to ThinkPad series. I have an IdeaPad for work and I really which I told my boss to buy a ThinkPad instead. Keyboard has broken twice in 2 years.
- Comment on nothing really matters 1 week ago:
That absolutly depends on the type and quality of the rice.
- Comment on Continuwuity v0.5.6 1 week ago:
I tried to set it up the other day and failed as well. Looking at their docker-compose examples for reverse proxy, there are a lot of environment variables not included in their original example. After adding all those variables, the container started with a message about first registration.
I haven’t tested more than that yet.
- Comment on Looks fine to me 1 week ago:
Picture from OP’s meme can be found here (via article in OP’s link): theartnewspaper.com/…/the-potato-head-of-palencia…
It lookes like they ruined more than just the face. All the decorations to the right of the face looks different as well.
- Comment on ntfy alternative with file attachment on iOS 1 week ago:
There is not alternative that is selfhosted to my knowledge. There is PushBullet with a free tier that allows for sending files. You could also use Discord and send messages via their API, and I assume that Matrix has something similar (but I have not looked).
You could also upload them to something else (Paperless or some web/file server) and send a link in your notification. A link can be displayed as a button with actions tag.
- Comment on U WOT M8?? 1 week ago:
Is the joke that “init” sounds like “innit” (isn’t it)?
- Comment on Selfhosted News Feed 1 week ago:
Added to my Glance page. :-)
- Comment on bold words 1 week ago:
Buy AMD stocks.
Would have been rich!
- Comment on Element/Matrix Official Docker Install Method? 1 week ago:
it’s not like I have thousands of containers running
I feel you. I have ~20 container files (some are multiple containers in one file, e.g. db and web server) and I seldom have to do changes to them. Once properly configured, I don’t really have to do anything.
- Comment on What us the best way to add remote access to my servers? 1 week ago:
Do you want to expose port 80/443 and set up a reverse proxy or do you want to use a VPN tunnel? You could just use SSH to port 80 and 443 like so:
ssh -L 80:<local-server-ip>:80 -L 443:<local-server-ip>:443 <username>@<domain>I expose port 80/443 and use Caddy as a reverse proxy together with Authelia to protect anything that I deem needs an extra layer of security. I followed this guide: caddy.community/t/…/20465
Once setup, it is easy to remove or add a backend to Caddy and Authelia. This way does mean that you sometimes need to log in twice, but that is a small price to pay if your backend app does not support SSO (like n8n community edition).
- Comment on Does anyone have any experience with Sync-in for online files? 1 week ago:
A very simple way to do it is to use SSHFS, mounting the drive via SFTP. It may not be as fast as other protocols but it is simple and requires minimal setup on your server.
- Comment on Digital "bulletin board" for tasks. 1 week ago:
Everything was .md files on the backend, which was nice. Should make automation simple (but time consuming since you most likley have to create it yourself). The only reason I stopped using it was because I didn’t really need it.
- Comment on Digital "bulletin board" for tasks. 1 week ago:
Have a look at Tasks.md. I’ve used it before and I liked it. You can customize the CSS as well.
- Comment on Selfhosted, multiplayer, browser based games 1 week ago:
probably also selfhosted.
Here is a link do selfhosting it: github.com/TeamHypersomnia/…/README_SERVER.md#doc…
- Comment on Element/Matrix Official Docker Install Method? 1 week ago:
Have you considered replace the name with input from stdin? So instead of
name=synapseyou could doname=$1and have one script to use for all containers. - Comment on How should Lemmy & Piefed handle voting activity from banned/deleted accounts? 2 weeks ago:
Or disabled until a certain number of upvotes are reached. It could potentially be disabled again of upvotes falls down under the threshold again. Or just have them time gated.
- Comment on The RAM shortage is coming for everything you care about 2 weeks ago:
I like the function some cars have when you can old down the lock button to close all windows (and unlock to open them), without starting your car.
- Comment on HelixNotes - a local-first markdown note-taking app (Rust + Tauri, AGPL-3.0) 3 weeks ago:
Is it possible to view files in the root of the vault?
Also, is it possible to show non.mdfiles?My use case for the second question is that I have
.pdfand.xmlthat acompanies my notes. Having HelixEditor showing them as well (or opening them in system default editor) would be nice. - Comment on Element/Matrix Official Docker Install Method? 3 weeks ago:
How do you manage your containers?
- Comment on How to use Radicale with iOS 4 weeks ago:
Would a self signed certificate be an option? Not sure if the hassel is worth with the applications on the phone.
- Comment on Element/Matrix Official Docker Install Method? 4 weeks ago:
If you like compose files: www.composerize.com
docker run -it --rm -v <your-data-path>:/data -e SYNAPSE_SERVER_NAME=<your-public-address-subdomain> -e SYNAPSE_REPORT_STATS=no matrixdotorg/synapse:v1.136.0 generate:name: <your project name> services: synapse: stdin_open: true tty: true volumes: - <your-data-path>:/data environment: - SYNAPSE_SERVER_NAME=<your-public-address-subdomain> - SYNAPSE_REPORT_STATS=no image: matrixdotorg/synapse:v1.136.0 command: generate
docker run -d --restart=always --name synapse -e SYNAPSE_REPORT_STATS=no -v <your-data-path>:/data -p 8008:8008 matrixdotorg/synapse:v1.136.0:name: <your project name> services: synapse: restart: always container_name: synapse environment: - SYNAPSE_REPORT_STATS=no volumes: - <your-data-path>:/data ports: - 8008:8008 image: matrixdotorg/synapse:v1.136.0
- Comment on How to use Radicale with iOS 4 weeks ago:
Caddy makes HTTPS a breeze. I’ve tried nginx before but I never understood when and why I would need which setting.
- Comment on How to Use Local IP for Services when at Home? 4 weeks ago:
What’s bad about hairpin NAT?
- Comment on How to use Radicale with iOS 4 weeks ago:
Do you need one app for syncing caldav and another app for using the calendar?
- Submitted 4 weeks ago to selfhosted@lemmy.world | 12 comments
- Comment on Start-up idea 4 weeks ago:
Optimize builds and manufacture after a order is made could work. Would be even more expensive.
- Comment on Start-up idea 4 weeks ago:
As the saying goes, it is expensive to be poor.