• 0 Posts
  • 148 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • It’s not the browser but the websites.

    Two way video streaming will be always resource intensive.

    But for the other websites the choise is yours, you don’t have to use amazon or goog, there are alternatives.

    Also if you doesn’t have enough ram close the tabs. My 10 years old low end laptop with 8GB ram, I know I can’t have more than 6-8 tabs open at the same time.






  • Afaik Bayern German is closer to Austrian German, than Hochdeutch. Hungarian doesn’t have that kind of variants because the language is the same everywhere, but 1 million Hungarians live in neighbouring countries.

    Do you expect every South American user to set that up correctly? What about languages without country, I guess you show the spanish version to basques living in France?

    And I could continue if you want.







  • Xiaomi’s reasoning was they produce different phones for Chinese internal and for global market. A lot of scalpers bought the Chinese version, took it outside China, flashed a global rom and sold it. Chinese versions have limited frequency support and sometimes different chipsets, the problem was buyers of these phones nagged to Xiaomi’s support and left bad reviews, even though it wasn’t Xiaomi’s fault.

    Yes, it sounds bullshit, I’m just illustrating, that if you ask companies for reasons, they can tell you some similar stories.

    The good part, is that bootloader opening workflow was not the best, but at least acceptable for me compared to Asus’. You had to register your IMEI with a Xiaomi account, than wait a week and you could open it (This was the workflow like 5 years ago, and I still have the same phone, I don’t know if they changed it). This way they could slow down the scalpers, and they could see if someone want to mass open a lot of phones at the same time.




  • infeeeee@lemm.eetoAndroid@lemmy.worldFond memories
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    18 days ago

    Early iOs and Android icons were one of the last offshoot of the style called “Frutiger Aero

    Flat icons don’t necessarily bad and undetailed, it’s just harder to create something more recogniseable with less tools, but I actually like the order, that they look like they are related to each other. Back in the day I created icon packs for the programs I used on pc, so my desktop would look clean and uniform.

    Design styles are in a cycle, just wait some years and they will show up again, I’m sure. There is already some connection with the new style of windows 11.




  • One of them is a laptop, why ssh to the server isn’t an option? Set up tmux on the server so it always connects to the same session, so you can just continue where you left last time. If you need desktop support, rdp in gnome works really well.

    E.g if you connect with this command, and tmux is installed on the server, it will start a new session named “main”. If a session with that name exists it will connect to that:

    ssh -t pi@192.168.1.2 tmux new-session -A -s main

    Add something to .bashrc on the server to always do the same if you work on that phisically:

    if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
    tmux new-session
    fi