- 0 Posts
- 16 Comments
vane@lemmy.worldto
Technology@lemmy.world•Windows 12 release date in 2026 possible, with AI features that may force CPU upgradesEnglish
2·4 days agoI think it will be Copilot OS not Windows 12. They will kill Windows brand with Windows 11.
vane@lemmy.worldtoHacker News@lemmy.bestiver.se•Porn depicting sex between step-relatives set to be banned in the UKEnglish
3·6 days agoSomeone will have to watch all of it to make sure it is properly categorized. I suspect a new ministry of porn categorization or something.
vane@lemmy.worldto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
1·7 days agoyeah but I don’t mind having duplicated scripts, it’s just easier to go to single script and don’t have to worry about everything else, I keep them like
bin/synapse/run,bin/synapse/stop,bin/synapse/logsetc. What I haven’t figured out is better way to keep all ports in one place instead ofports.mdfile but on the other hand it’s not like I have thousands of containers running.
vane@lemmy.worldto
Technology@lemmy.world•Car Wash Test on 53 leading AI models: "I want to wash my car. The car wash is 50 meters away. Should I walk or drive?"English
18·13 days agoI want to wash my train. The train wash is 50 meters away. Should I walk or drive?
vane@lemmy.worldto
Technology@lemmy.world•Privacy researcher debunks Microsoft Edge’s free VPN marketing, says it's "NOT a VPN"English
111·13 days agoIt’s also not a web browser.
vane@lemmy.worldto
Technology@lemmy.world•AI contributes to inflating global debt, already approaching $346 trillion or 310% of GDPEnglish
5·14 days agoConcept of money only applies to poor people. Rich people just take couple million dollars loan that they write off in taxes.
vane@lemmy.worldto
Technology@lemmy.world•Hetzner (European hosting provider) to increase prices by up to 40%English
17·14 days agoThank you AI.
vane@lemmy.worldto
Technology@lemmy.world•The U.S. spent $30 billion to ditch textbooks for laptops and tablets: The result is the first generation less cognitively capable than their parentsEnglish
20·15 days agoDon’t forget that Google made big bucks on that deal.
vane@lemmy.worldto
Technology@lemmy.world•Microsoft claims "2026 is the moment" for AI PCs, but its essay-length beginner explanation only creates more confusion — Is it any wonder adoption is slow?English
32·15 days agoMicrosoft is basically an equivalent of Nazi in private market.
vane@lemmy.worldto
Privacy@lemmy.ml•Under British and UK Legislation anyone using or developing end-to-end encryption is now a “hostile actor”
14·16 days agoDon’t talk without electronic devices around because it might be hostile activity.
vane@lemmy.worldto
Technology@lemmy.world•Talents leave AI companies: "They are putting profits over sanity and safety"English
7·17 days agoAfter $1T poured into global warming, why can’t AI replace them ?
vane@lemmy.worldto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
0·24 days agoI have a git repo with some directory convention and bash scripts. Ex stop is just
#!/bin/bash name=synapse docker stop $name docker rm $nameetc. depending on what actions I need to do against container I have bash script for that and if I need to perform same action against other container I just copy paste this file and change name variable. I pull this repo to my containers host and just type ./bin/synapse/stop and I stop synapse.
Hope that makes sense.
vane@lemmy.worldto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
0·25 days agoI don’t like compose files :)
vane@lemmy.worldto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
0·25 days agoIf you’re proficient it’s 30minutes
Something like this for server.
generate config
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 generaterun
docker run -d \ --restart=always \ --name synapse \ -e SYNAPSE_REPORT_STATS=no \ -v <your-data-path>:/data \ -p 8008:8008 matrixdotorg/synapse:v1.136.0register user
docker exec -ti synapse register_new_matrix_user http://localhost:8008/ -c /data/homeserver.yaml -u <username> -p <password> --exists-okProxy it using ex. openresty / nginx
location / { proxy_pass http://127.0.0.1:8008/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $remote_addr; proxy_connect_timeout 600; proxy_read_timeout 86400; }For UI if you want element on your domain, download and unpack tar.gz from.
https://github.com/element-hq/element-web/releasesPoint this location to your proxy server ex. openresty / nginx
location / { root /opt/element-v1.11.109; index index.html; }Modify
config.jsoninside/opt/element-v1.11.109to point location to<your-public-address-subdomain>By default it’s using sqlite if you want postgres or other database then modify
homeserver.yamlto use postgres

Meeting in Microsoft 2026:
Meeting in Microsoft 2028: