Thomas
- 0 Posts
- 22 Comments
Thomas@discuss.tchncs.deto Technology@lemmy.world•Android’s next big feature turns your phone into a desktopEnglish12·2 months agoMicrosoft tried the same idea about 10 years ago with Continuum, even including a hardware dongle: https://en.m.wikipedia.org/wiki/Windows_Continuum https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/continuum-phone
Canonical had something similar, too, back in the days with their Ubuntu Touch and named it Convergence: https://www.linux.com/news/first-ubuntu-touch-tablet-brings-convergence-last/
Thomas@discuss.tchncs.deto World News@lemmy.world•China's overqualified youth taking jobs as drivers, labourers and film extrasEnglish82·6 months agoFrom what I heard from a teacher who was on exchange to China is that traditional Chinese education values the memorization and ability to rephrase or reproduce previous scholars’ work, but neglects reflection and own ideas, especially if you are just a student. Western academic traditional to the contrast values the student’s ability to evaluate, compare, and reflect on previous work. Hypothetically, a report that would give you a pass with distinction at a Chinese university would make a plagiarism checker cry at a Western university and vice versa.
Thomas@discuss.tchncs.deto World News@lemmy.world•Sweden tells Germany: Reform your electricity market for power cable approvalEnglish21·7 months agoMany arguments call countries’ names, but actually prices are dictated by companies (directly or indirectly by their behavior) that want to make a profit. Sweden’s electricity prices, as a rule of thumb, are always lower than prices in Germany, so from an economic p.o.v. it makes sense to buy as much electricity in Sweden as can be transported south. Of course, that drives prices up in Sweden to historic level (but still cheaper than in Germany). Why are prices so high in Germany? Several reasons have been discussed here, but one I would like to highlight is that operators of gas and coal power plants, which are meant as reserves in cases of high demand and low supply, do not produce sufficiently much electricity: they simply earn more by selling little electricity at high prices than by selling more electricity at lower prices. The politicians’ fault is that they have created a mostly unregulated market where under the right conditions some actors can make huge profits at the cost of everyone else. This is why more nuclear power plants won’t help: even their operators will have to pay back the huge debts left from construction and thus also will try to maximize profits from high prices via low supply.
Thomas@discuss.tchncs.deto Technology@lemmy.world•Microsoft Edge gets "unfair advantage", browser makers claimEnglish932·9 months agoPlease submit a second copy of that letter, but replace Windows with Android, PC with Mobile, Microsoft with Google, and Edge with Chrome.
Thomas@discuss.tchncs.deto Selfhosted@lemmy.world•Router died - Replacement/solution recommendationsEnglish3·11 months agoMy setup is smaller, but when my venerable old router died about a year ago, I acquired an Asus TUF-AX3000_V2 where I installed FreshTomato. One can login via SSH and dump all settings for backup. Likewise, individual or all settings can be done on the command line instead of the GUI. I have a script on my computer that reads CSV files with MAC addresses and more to apply changes in an automated way.
Thomas@discuss.tchncs.deto Linux@lemmy.ml•How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?121·1 year agoKDE Connect has been mentioned before. You can supplement this and other tools by using a VPN so that both endpoints can see each other even if the underlying network does not allow this. My preferred solutions are Tailscale (managed, cloud-based) or Headscale (for self-hosting).
Thomas@discuss.tchncs.deto Selfhosted@lemmy.world•Suggest me a secure chat platform for my familyEnglish12·1 year agoYes, XMPP with proper TLS on the server side and Conversations or one of its forks (preferably fetched from F-Droid) using OMEMO encryption should be good enough. If you are brave or paranoid, give Tox a try: https://tox.chat/
Thomas@discuss.tchncs.deto Selfhosted@lemmy.world•NAS, Home Servers, and where do I even start?English91·1 year agoMaybe the first question is what your budget is, both regarding money and time. For example, you could buy a pre-configured NAS from Synology or QNAP, which requires less technical skills but more money, or a home-made solution reusing used components (but fresh disks for reliability). Depending on your electricity costs, you may want to choose a low-power solution or something which you power off when not used. For storage, maybe a three-disk RAID5 is a good compromise. For backups, plain S3 cloud storage encrypted via restic is a good idea.
Thomas@discuss.tchncs.deto Linux@lemmy.ml•Did I just solve the packaging problem? (please feel free to tell me why I'm wrong)42·1 year agoIf at all, you want to use Gentoo’s ebuild system, which can be seen as some kind of superset of PKGBUILDs. I guess one could write a Python script that “dumbs down” ebuild scripts to PKGBUILDs for simple packages (excluding complex stuff like kernel, KDE, …). The main challenge, as pointed to before, would be maintaining a table mapping package names between distributions in order to get the dependencies right.
Thomas@discuss.tchncs.deto Technology@lemmy.world•Stack Overflow bans users en masse for rebelling against OpenAI partnership — users banned for deleting answers to prevent them being used to train ChatGPTEnglish781·1 year agoThose would be harvested to train LLMs even without asking first. 😐
Thomas@discuss.tchncs.deto Technology@lemmy.world•Critical Rust flaw enables Windows command injection attacksEnglish1·1 year agoYes, one of the factors that contributed to the demise of Windows Mobile was the lack of backwards-compatibility for apps between 7, 8, an 10.
Thomas@discuss.tchncs.deto Technology@lemmy.world•Software Vendors Dump Open Source, Go For the Cash GrabEnglish4·1 year agoQt (the one used by KDE) has progressed not only through a number of owners (Trolltech, Digia, Nokia, …), but also licenses such as the QPL to be triple-licensed under GPL, LGPL, and commercial for most of its components.
Thomas@discuss.tchncs.deto Linux@lemmy.ml•What is the most visually pleasing package manager (in terminal)?English57·1 year agoThe “C” in the progress bar is alternating between “c” and “C” to give the impression of munching.
Thomas@discuss.tchncs.deto Linux@lemmy.ml•[Solved] VPN (tailscale) connection issue each time i open the laptopEnglish4·1 year agoThere is some information missing in the problem description. For example, if you close the lid, does the computer suspend/sleep/hibernate? It may be that when the computer sleeps something “breaks” or it may be that the act of physically closing/opening the lid has an effect (e.g. because the WiFi antenna is embedded in the display frame).
Some time ago I had a similar problem with Tailscale and sleeping. When Tailscale initializes itself (at boot), it has to interact with another service to communicate which DNS servers have become available (e.g. 100.100.100.100). Several implementations of such services exist (resolvconf, openresolv), in my case systemd-resolved. During normal operation,
resolvectl status
(if using systemd-resolved) shows which DNS servers and which search domains are configured for each network interface such astailscale0
. Now, there is a bug (or feature) that systemd-resolved “forgets” the DNS configuration it got from Tailscale when the computer is put to sleep. So, when the computer wakes up, name resolution via Tailscale no longer works, giving you the impression that Tailscale itself is not working, although Tailscale’s low-level functions are still operational. My “solution” was to write a small script that gets executed when the computer wakes up which sets again DNS server and search domain for network devicetailscale0
.
Thomas@discuss.tchncs.deto Linux@lemmy.ml•What is the most visually pleasing package manager (in terminal)?602·1 year agoArchLinux’s pacman with ILoveCandy option enabled.
There was choice, but not enough volunteers: https://www.debian.org/ports/kfreebsd-gnu/
Dropbox seems to be different than other companies. It is known to have migrated back from AWS to their own infrastructure at a time when ever other CEO was propagating to migrate into the cloud. Article is from 2019, though: https://techcrunch.com/2019/06/21/three-years-after-moving-off-aws-dropbox-infrastructure-continues-to-evolve/