

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.


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.


I would give you an Insightful vote but I don’t have any left. /s
Jokes aside, I like both limiting number of votes per day (or otherwise) and having different kinds of votes. The reason why something is up/down voted can make for a better discussion. But I am agnositc towards renewing votes bases on engagement. On one hand, it would increase engagement, and on the other hand, it could scare lurkers away from otherwise upvoting good content.
That makes sense if there is more than one user for a server (i.e. work environment). I would not care if it was on my home lab server, except that the root folder is deleted and remade on each boot.


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.
What’s so bad about that? Except that is trigger me to not have it organized.


Is it possible to view files in the root of the vault?
Also, is it possible to show non .md files?
My use case for the second question is that I have .pdf and .xml that acompanies my notes. Having HelixEditor showing them as well (or opening them in system default editor) would be nice.


How do you manage your containers?


Would a self signed certificate be an option? Not sure if the hassel is worth with the applications on the phone.


If you like compose files: https://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


Caddy makes HTTPS a breeze. I’ve tried nginx before but I never understood when and why I would need which setting.


What’s bad about hairpin NAT? Not having to maintain a local DNS server is nice.


Do you need one app for syncing caldav and another app for using the calendar?
I learned from anther comment that this picture is from the Birmingham Civil Rights Institute.
Thanks! Much appreciated.
Optimize builds and manufacture after a order is made could work. Would be even more expensive.
As the saying goes, it is expensive to be poor.
I’m not in the US.
I just read about “Racial segregation in the United States” on Wikipedia. Does signs like these still remain in places today?
Never heard about The Story Graph before, but it looked cool so I created an account to check it out. I could not find any way to create custom integrations (or make any integration at all).
One option would be to pull your data from ABS via its API and then use JavaScript to navigate The Story Graph’s website to “manually” update your progress.
Edit: If you want to work with Python, someone has created a library to work against their website as if it was an API: https://github.com/ym496/storygraph-api/tree/main
It uses an HTML parser to map the response from the website.