• 1 Post
  • 169 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle





  • 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.


  • From Creative Commons FAQ:

    We recommend against using Creative Commons licenses for software. Instead, we strongly encourage you to use one of the very good software licenses which are already available. We recommend considering licenses listed as free by the Free Software Foundation and listed as “open source” by the Open Source Initiative.

    Unlike software-specific licenses, CC licenses do not contain specific terms about the distribution of source code, which is often important to ensuring the free reuse and modifiability of software. Many software licenses also address patent rights, which are important to software but may not be applicable to other copyrightable works. Additionally, our licenses are currently not compatible with the major software licenses, so it would be difficult to integrate CC-licensed work with other free software. Existing software licenses were designed specifically for use with software and offer a similar set of rights to the Creative Commons licenses.

    Version 4.0 of CC’s Attribution-ShareAlike (BY-SA) license is one-way compatible with the GNU General Public License version 3.0 (GPLv3). This compatibility mechanism is designed for situations in which content is integrated into software code in a way that makes it difficult or impossible to distinguish the two. There are special considerations required before using this compatibility mechanism. Read more about it here.

    Also, the CC0 Public Domain Dedication is GPL-compatible and acceptable for software. For details, see the relevant CC0 FAQ entry.

    While we recommend against using a CC license on software itself, CC licenses may be used for software documentation, as well as for separate artistic elements such as game art or music.









  • infeeeee@lemm.eetoAndroid@lemmy.worldFond memories
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    16 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