Spyke

Replies

Comment on

What are some good, independent news outlets that are reliable?

Reply in thread

As a Taiwanese, most of our mass media suck (not those mentioned English ones but Traditional Chinese ones).

Taiwanese mass media and its staff have rather a poor reputation. The general public rated Taiwanese mass media as a whole at 5.58/10 in 2019.[12] Cédric Alviani, Asia-Pacific Bureau Director of Reporters Without Borders, indicated that Taiwanese mass media has suffered from political polarization, sensational reporting, and absolute power of the owners within a media.[14] In a 2022 Reuters Institute survey, Taiwan ranked last among democracies in the Asia-Pacific region on people's level of trust in media, at a 28% trust rate.[15]

source

linux

Comment on

Ban Windows at schools

Also ban Google. I think we should ban any schoolwork in required courses that requires students to agree to any third-party EULAs, such as Google account and Windows OS. For selective courses, considering the de facto status that many fields don't have a mature enough open source software, banning is a bit exceeding proportionality IMHO. And offering Windows computer is probably ok as long as it's not the default choice IMHO.

In my freshman year in the Electrical Engineering department, I took a required computer programming course, the course that I supposed it to be most aware of the existence of GNU/Linux, free format, and so on. However, it uses Google Sheets for homeworks and demands a Google Drive link of an exe for final team project and YouTube link for presentation. When they let students evaluate each other, I just got a bunch of exe, half of which doesn't even open in Wine.

I also think they every school should offer NextCloud. Otherwise when team work occurs, Google Drive/Docs/Slides/Sheets is the de facto only choice.

BTW, I think LaTeX with git is more customizable and extensible and should be taught instead of teaching MS Office stuff. I actually take all my notes in LaTeX in a GitHub repo and do reproducible compilations.

Comment on

Play Store blocks AuroraStore, hurting GrapheneOS users

Aurora still works for me for now on Samsung stock OS. I now mostly install Google Play apps with APKPure over Obtainium tho and only use Aurora for those not on APKPure. And most of my apps are from GitHub/GitLab releases and F-Droid. I disabled Google Play and didn't login to Google account. I don't want the requirement of a Google account to install an app and Play Integrity to run an app. It is by no means acceptable that a company, using a closed source implementation that also tracks user and breaks Android security model, can censor what apps a user can install and decide what security and privacy compromises a user needs to agree to just use the normal phone functionalities that they pay for and by no mean require those compromises technically. They are turning Android into a service and a prison like iOS did rather than a software.

Comment on

Does Mastodon bring anything of value to a Lemmy user?

I came from Mastodon. I think Mastodon does have some good features that haven't come to Lemmy such as account migration and bio sites verification, while Markdown and no word count limit in Lemmy excels Mastodon. Other difference are more due to the different nature of them, just like Twitter compared to Reddit, for example, more organizations, artists, developers, etc. post on Mastodon.

Comment on

Rule

update_pm() {
  sudo apt update
  sudo DEBIAN_FRONTEND=noninteractive apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  sudo DEBIAN_FRONTEND=noninteractive apt autoremove -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers install || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers install || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers install || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers autoinstall || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers autoinstall || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  echo y | sudo ubuntu-drivers autoinstall || true
  sudo apt install -f -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  sudo DEBIAN_FRONTEND=noninteractive apt autoremove -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" -o Dpkg::Options::="--force-overwrite"
  sudo apt clean
  sudo apt autoclean
  flatpak update -y || true
  flatpak uninstall --unused -y || true
  sudo snap refresh || true
  brew update
  echo y | brew upgrade
  echo y | brew autoremove
  brew cleanup
  uv self update
  uv tool upgrade --all
  npm i -g npm
  npm update -g
}