sbeak
@sbeak@sopuli.xyz
Hi, I’m sbird! I like programming and am interested in Physics. I also have a hobby of photography.
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 13 hours ago:
Oh that is a good bit of evidence!
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 15 hours ago:
I will note that indeed. Don’t worry, they do believe that the Earth is round, they’re not that nuts!
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 23 hours ago:
That was really helpful, thanks! I will try bring up some of those points in the future. Makes sense that going to the moon is expensive especially given that NASA’s budget is so much smaller now.
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 23 hours ago:
Woah that is kind of insane, I did not know that the modern budget was that much lower! :0
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 23 hours ago:
They don’t say that it was definitively faked, but claims that there isn’t enough evidence that it was not. They say that “we will see” once China lands on the moon.
- Comment on How to I prove to someone that the U.S. moon landing wasn't staged? 1 day ago:
Okay that is actually kind of cool. I never knew this was done! I am anticipating that they would ask whether they were placed by humans or rovers/landers/non-human methods, so was it possible (at the time) to put these retroreflectors on the moon without human intervention? I’m assuming, like the collection of moon rocks, it was not (otherwise why would they bother with having humans doing it with all that human error?)
- Submitted 1 day ago to [deleted] | 103 comments
- Comment on W10 EoL and possibly switching to Linux (various tech questions) 1 day ago:
-
Yes, that is correct, if repositories of proprietary repositories is asked (on distros that only install open-source software by default, like Fedora), you should enable that for Nvidia and Steam. This won’t have any downside really, it just lets you install a few proprietary/closed-source software. It won’t even significantly take up more space either, as what it’s essentially doing is telling the app installer manager to check these URLs in addition to the default ones when searching for things to install. If you don’t select this option then you won’t be able to install Nvidia drivers or Steam without manually adding the repos in the menu hidden somewhere. If you are going with a gaming specific distro they might also have an Nvidia-specific version for you to download.
-
LearnLinuxTV, the YouTube channel, is super useful, as well as Veronica Explains (who has both Peertube and YouTube channels)
Bread on Penguins is another channel I follow and they recommend a bunch of neat little command line tools and tips and tricks regarding the shell (like RMPC, which I really like as a music player!)
Most importantly, always read the documentation! Of your distro and of the software you are using. It can really help a lot!
Another thing, even if you don’t use Arch, ArchWiki has excellent documentation on a lot of things that apply to all Linux users.
-
- Comment on W10 EoL and possibly switching to Linux (various tech questions) 1 day ago:
Yeah, the people there are really knowledgeable when it comes to Linux! I always get good answers there
- Comment on W10 EoL and possibly switching to Linux (various tech questions) 1 day ago:
Some more tips if you end up switching to Linux, specifically on methods of installing programs (because that can be confusing)
There are five main options to install programs on Linux:
- The ones packaged for your specific family of distro (like .deb for Debian based distros, .rpm for Fedora/RHEL based distros). These will work the best and should be your default.
- Flatpak, a universally compatible Linux app format that most desktop programs support. They have what’s called “sandboxing”, which basically means that apps don’t have full system-wide access by default. This can be annoying for some applications, but with a bit of configuration it seems that you can get it working. Additionally,
- AppImage, another universally compatible format. This one is more similar to a standalone exe on Windows, where it doesn’t install itself anywhere, it just runs as a program. Optionally you can get a program called “AppImageLauncher” which handles the “installing” part (e.g. adding entry in the applications menu, moving it to an applications directory) if you need that.
- Executable w/ some other stuff wrapped in a tar.gz (Linux equivalent of .zip, both formats work but tar.gz will remember Linux-specific information like symlinks and can offer better compression too I think). The executable usually doesn’t have a specific file extension. This would be similar to installing a portable application in a zip file on Windows.
- There are also snap files, but the community doesn’t really like them since they are sourced from a centralised and not-so-open repository controlled by Canonical, the company behind Ubuntu, and it isn’t as widely adopted as Flatpak. Unless no other alternatives exist, I wouldn’t really go for this option.
Most distros have a graphical user interface to install programs, usually letting you install programs via either specific packages (like rpm for Fedora) or via Flatpak. You can also install those two through the command line (“sudo apt/dnf install [name]” and “flatpak install [name]”, note that flatpak doesn’t require admin privileges! You can update programs using “sudo apt update” and “sudo apt upgrade” on Debian-based distros, “sudo dnf update” on Fedora-based distros, and “flatpak update” with Flatpak. You need to update repos and then upgrade packages separately on Debian-based distros, while on Fedora with dnf it is done with just one command)
You can also go to the website/git repo of the software you wish to install and download the respective file to manually install stuff, as well as to get programs that come in AppImage or as tar.gz archives.
The community can’t agree on which distro is the best, because there is no best. They’re all good. Pick and choose! Personally, I have used Fedora, Linux Mint, and am currently using EndeavourOS. As long as your hardware is compatible and you aren’t using something super unstable, you should have a good experience.
For beginners, I would recommend either Linux Mint (Cinnamon) or Fedora (Workstation/GNOME or KDE, other DE spins also exist), which faster release than Mint, so it’s better for newer hardware. These are the ones I’ve personally used and was happy with. I have not yet used Bazzite, Nobara, or similar gaming-oriented distros. Nobara is a fork of Fedora that is gaming-centric, and it seems that most people are happy with it. Bazzite is also Fedora based, but it’s an atomic distro, meaning there’s some stuff you can’t do on the system (which can be good, less likely to bork it, but also bad, as it gives you less control and there are limitations on what stuff you can install)
Although Pop! OS used to be a recommended option (you can find it in a few articles here and there) they are currently transitioning to their new DE called COSMIC, which sounds really cool but is a bit buggy it seems, given that it only recently went into beta, so it needs a bit more time in the oven. Just a note so you don’t do a Linus Tech Tips and translate a bad experience with buggy COSMIC as a bad experience on Linux.
If you want to experiment and don’t mind tinkering a bit to fix issues with a more unstable distro, you could try out a rolling release distribution. If you’re a beginner simply looking for an alternate OS and don’t want to do that, I wouldn’t recommend these. You of course have the Arch-based ones, like EndeavourOS (which is more standard) and CachyOS (which has gaming optimisations) that are easier to install than vanilla Arch Linux, but you also have openSUSE Tumbleweed, which sounds like a decent option. I currently use EndeavourOS as there were a few specific software that I wanted to try that were built for Arch-based distros but weren’t built for non-Arch distros (like rmpc, an awesome mpd music player which requires manual building if you don’t use Arch), and I also wanted to experiment with being on the “bleeding edge” of software. The package manager on Arch is called “pacman”, and you can get the loading bar when installing programs to look like a yellow C pacman eating little dots rather than through hashes (e.g. [#### ]), it’s amazing!
What are the differences between GNOME, KDE, and Cinnamon? Those are desktop environments, and most distros allow you to interchange between them since Linux is super modular! I started out with Fedora Workstation, which uses GNOME, and I was able to install KDE Plasma and then after remove GNOME. If you want, you can install multiple DEs and switch between them from the login screen (but then you would get duplicated system apps, like file managers and stuff). Different desktop environments give you a different user interface with different features and theming options, and it truly is simply which one you like more! GNOME, KDE, and Cinnamon are the most established options, but you also have ones like XFCE and MATE.
Between the “big three”, GNOME is the most “minimal” with lots of padding and it looks very nice (but some people hate it), especially when you install apps that match its aesthetic, but is not as customisable by default (it’s kind of like macOS in a way where you need to install extensions and apps to add additional functionality). KDE Plasma is the most feature-rich and customisable out of the box, so much so that some people have mentioned that there could be too many options. It’s really polished and intuitive to use, and their default Breeze theme (which is more boxy and contrasty) looks equally good as GNOME’s libadwaita, it’s just a matter of taste. I personally use KDE for its extensive theming options, you can really make it looks like anything you want! Cinnamon is Linux Mint’s homegrown DE. It’s somewhere in the middle in terms of customisability, and out of the box (!), it is the most similar to the Windows 10 interface.
- Comment on W10 EoL and possibly switching to Linux (various tech questions) 1 day ago:
Last year I switched to Linux, so I’m a recent “convert” and have learned a lot. I would highly recommend moving to Linux over paying Microsoft more money!
1a) As far as I understand, Linux is usually installed using ext4 or btrfs, while Windows uses NTFS by default.
1b) Most programs should work fine through Wine, and the ones that don’t usually might have a few visual glithchs or simply crash. Usually there isn’t loss of data, unless you’re running a program where you are editing, say, a document, and it crashes before you are able to save (that would count as lost data. There are a bunch of Linux-native document editors though so that wouldn’t be a problem)
1c) To copy bookmarks, you can export them as an HTML file. Specific settings can be easily synced with Firefox sync or, if you don’t want to make a Mozilla account, I think you can also just copy the profile directory (go to about:support and there’s a button to open the directory) or the stuff in that directory that you want to keep, quite handy!
1d) Aside from .exe (and similar Windows-specific stuff, like .msi for installers), most file types should work fine (PDFs, images, videos, MS Office files, audio, all that should work!). Even some extensions related to proprietary software (like .ai for Adobe Illustrator files) can sometimes work with Linux-native apps (like Inkscape) but there might be compatibility bugs here and there.
1e) Everything stored on the USB isn’t saved in a live boot environment, it’s meant for you to test out the feel of the operating system, see if WiFi/Bluetooth/etc work, that sort. I highly recommend trying Linux distributions in a live environment first as you can test basic compatibility as well as see if you like the desktop experience (e.g. if you are deciding between GNOME, KDE Plasma, and Cinnamon)
1f) Linux is thought to be more secure not just because it has a lower desktop market share, but also because it’s open-source (meaning anyone can check the code for vulnerabilities and exploits). This is one of the reasons why Linux has a very high server market share. They do exist, so you still have to be mindful as with any operating system!!!
If you accidentally run Windows malware through Wine, unless it’s some really sophisticated stuff, it is unlikely that it will spread to your Windows drive. Even if it was likely, it’s not really a reason to not go with Linux, as Windows malware would be worse on Windows.
1g) Most distributions have the option for including Nvidia graphics drivers, but do your research as there are some cards that don’t have great compatibility. If you have very new hardware, I would recommend you go for a distribution that has a faster release cycle (like Fedora or, if you’re a tinkerer, a rolling release option like Arch-based distros) over ones that have slower ones (like Debian or Ubuntu-based distros).
If you go for Fedora, make sure to enable “third-party repositories” or “proprietary repositories” when installing the distro, as it is needed to install Nvidia drivers, Steam, and a few other things, and the option becomes hidden in a bunch of menus if you don’t click that during the setup screen. I did not select this option when installing Fedora, so it took me ages to find out how to install Steam. Don’t make the same mistake as me!
- Comment on What to do with an old iPhone that I no longer use? 1 day ago:
I could give it to a younger sibling once they are old enough to be responsible with a smartphone.
I did not know you could use a phone as a Stream Deck, that’s pretty cool :0
- Submitted 2 days ago to [deleted] | 30 comments
- Comment on Why is the USA attacking Iran? 4 days ago:
Yes, I do know of the coup against the democratically elected Mossadegh in favour of the autocratic Shah. Wow, the U.S. removing democratically elected leaders in foreign countries in favour of autocratic ones that support American business interests? I wonder how often that happened! (a lot, that is)
- Comment on Why are Americans so hung up on Epstein and his egg head island and "the files"? 4 days ago:
I understand that these people should, of course, be held accountable and shouldn’t just run free after doing all that horrible stuff on his island. What I don’t really get is why it is so often brought up in off-topic discussion. I get that people want to spread awareness and all that, but screaming “release the files!” on internet posts doesn’t really help.
- Comment on Why are Americans so hung up on Epstein and his egg head island and "the files"? 4 days ago:
Fair enough, everyone should be upset that the uber-rich can evade the law as they are now. Yes, they are horrible people. That I can understand.
What I don’t understand is why many people (not all people, but some certainly) bring it up in off-topic internet discussions.
- Comment on Why is the USA attacking Iran? 4 days ago:
For your information, in a later comment I did note that the weakening of Russia due to their invasion of Ukraine is playing a part in making Iran more vulnerable. In terms of their ties with China, that is correct, their relations are an additional reason why the U.S. doesn’t like them very much. It doesn’t look like China would support them in a conflict though, at least not with troops on the ground.
- Submitted 4 days ago to [deleted] | 19 comments
- Comment on Why is the USA attacking Iran? 4 days ago:
and many of the naughty Iranian proxies have also been weakened through a hellfire of Israeli and American bombing, like the Houthis in Yemen, Hamas in Gaza, and Hezbollah in Lebanon.
- Comment on Why is the USA attacking Iran? 4 days ago:
In the past, there have been moves against Iran (sanctions and the sort that are worsening their already mismanaged economy) but the recent strikes have been down mostly because Iran doesn’t really have any allies that are able to support them should they get attacked. Russia has their invasion of Ukraine that they are grinding soldiers in, and the Assads have been overthrown in Syria. Their bad bad economy also means they have lots of domestic issues too, making them super vulnerable.
- Comment on Why is the USA attacking Iran? 4 days ago:
Note that America’s support for Israel has exist since pretty much when it was founded after the end of WWII by Britain, this certainly isn’t a new thing. As for the dislike of Iran, that has been a thing for ages too (see the coup against the democratically elected leader when they were against American business interests, Iranian revolution that propped up the new government and had Americans living in the embassy taken hostage by protesters)
- Comment on Why is the USA attacking Iran? 4 days ago:
Israel allows the U.S. to maintain a foothold in the Middle East and have an influence in the region (which is plentiful in natural resources like oil), that’s the gist of it. The U.S. also has a large Jewish community that is generally pro-Israel (not all of them, but many are. In recent events, many Jewish groups in America are now condemning Israel for their war in Gaza, starving the population, all that heinous stuff)
Iran’s government has made it clear that they don’t like Israel’s existence (due to their displacement of Palestinians, various war crimes, that sort. They also don’t like that they are so heavily American influenced). They don’t like the U.S. either, as they believe that they are an imperialist power that wants to take advantage of the Middle East. That is one reason that the United States deems Iran an enemy. Note that Iran’s government’s viewpoint is not necessarily the same as those of the Iranian people. Additionally, the state of Iran funds many proxy terrorist groups across the Middle East, all of which do terrible terrorist things, which the U.S. doesn’t like at all (especially when they do terrorist things against American citizens living in the Middle East).
Israel and Iran’s rivalry (and you can include the Saudi Arabia, UAE in this too) is mostly down to wanting to be top dog in the Middle East, having the most influence and power, and it doesn’t help that they have very different beliefs (not just religion, different styles of government, different policies, that sort)
TLDR:
U.S. supports Israel for Middle East influence
U.S. don’t like that Iran’s government is anti-America and anti-Israel, and they don’t like that they support terrorist groups either
Israel competes with Iran for power in the Middle East, and have very different beliefs
Please note that I am not trying to incite a political debate. America and Israel has done bad stuff (war crimes, imperialism, etc), Iran has done bad stuff (terrorist proxies, political repression, etc), both are bad in my book.
- Comment on Do you think Lee Harvey Oswald and Mark David Chapham would be friends? 4 days ago:
Simply because Oswald was accused of murdering (there are arguments for and against this, I will not get into that) and this Mark guy murdered Lennon (just found out that today, never knew that before) doesn’t mean they would be best friends.
Let’s say you have maybe-murderer Alice and murderer Bob. That alone does not mean they must be friends, as murderer-ness is not the only defining characteristic of friendship. Most friendships are where murderer-ness is equal between friends (that is, both zero) but correlation != causation. Alice and Bob could have different hobbies, interests, and beliefs that could clash with each other.
- Comment on Under the most ideal circumstances, how 'clean' is drinkable tap water by the time it reaches our taps? 5 days ago:
Depending on where you live, you could have great tap water or terrible stinky tap water. Generally, developed countries (UK, Ireland, etc.) have better quality tap water (due to better infrastructure, cleaner working conditions, etc.) but it could even vary between whether you’re somewhere rural or urban. If the tap water doesn’t make you sick, doesn’t look muddy, doesn’t smell, etc. you are probably fine (and if you’re extra-cautious, you can test tap water for concentrations in certain minerals and such). You can always grab a water filter if your tap water is bad.
If you’re wondering how tap water can stay clean, there are a bunch of steps to treat unclean water. There is coagulation, which clumps dirt and other particles into larger, easier to remove particles using various chemicals. Then there is flocculation, which makes the particles even bigger, turning them into “flocs”, through mixing. Then there is sedimentation, which is basically where the flocs are so big they sink and form a sediment at the bottom. After that, you have filtration (which removes even more particles) and disinfection (which uses UV light, chlorine, or similar to kill microbes). I had to search for the specific words (coagulation and flocculation in particular), but I do remember the actual steps from geography lessons.
- Submitted 1 week ago to [deleted] | 6 comments
- Comment on We're just scanning for the bear... 1 week ago:
I recently watched a BobbyBrocolli video on it, the controversy mostly surrounded UofU, a quick search shows that Pons and Fleischman are from UofU. The video also mentioned that BYU also claimed to discover cold fusion, but not the energy of the future self sustaining kind.
- Comment on What Lemmy/Piefed communities are YOUR personal favourites? 2 weeks ago:
I enjoy the Linux programming.dev community since they have been very helpful to answer any questions I have :D
- Comment on New to android ROMs and degoogling and I have questions. 2 weeks ago:
Then an older device it is. Sucks that modern smartphones are so obscenely priced…
- Comment on What else can we do with sugar (sucrose)? 2 weeks ago:
I read an article somewhere about how solar panels can (and are by some countries) keep the ground below cool enough to grow plants and crops and such when the climate is otherwise not suitable to do so. Quite interesting indeed!
- Comment on New to android ROMs and degoogling and I have questions. 2 weeks ago:
I mean, you could go with a Fairphone is you want something that will last (may not be within budget though)