

That is not the same as building an OS in Python hahaha


That is not the same as building an OS in Python hahaha


You just cannot do it, I’m afraid. Python is an interpreted language, and requires de CPython library to be translated into machine code so that it can then be run, but that requires an underlying OS that makes the calls. The closest thing would be micropython, which can be run inside the Linux kernel, but that’s about it. The only thing I can think of is using a custom compiler that would generate either C/C++ or assembly code from a Python script, and then compile it using a standard C/C++/assembly compiler.


You can in fact statically type in Python. For example, defining variables:
six: int = 6
hello_world: str = "Hello World!"
Or defining functions:
def foo(x: int) -> int:
return x**2
If you only want to use static Python, you can use the mypy static checker:
# Install mypy if you don’t have it
pip install mypy
# Run the checker on the file (e.g., example.py)
mypy example.py


Why would you hate on it? It has its usecases. You won’t build an OS in Python, but I’d much rather do data processing in Python than in C


Or a “fantasma/casper”
I am well aware of what AOSP stands for, but what you say doesn’t really make sense. OneUI, MIUI, etc are all derivatives of Google’s Android i.e. all come with Google Play Services installed as a system app. So, however you might frame it, it is still in fact a sensible thing to use the term “Android” to refer to “Stock Android” with Google when talking about these topics. Moreover, this is also very useful to make it clear to people who are not aware of the intricacies of AOSP how some operating systems DO NOT depend on Google services. You can see this being used by companies like Tutanota on how to “Degoogle your life”. The simply put, as a replacement for Android, CalyxOS, /e/OS, LineageOS, etc. Despite these being AOSP based ROMs, using Android to refer to google based systems and AOSP to refer to independent ROMs that do not come with Google Play Services by default is VERY useful to make the point come accross. If you don’t believe me, look at any popular news media source that talks about GrapheneOS, for example.
PD: I still believe the fact that Android is a patented trademark of Google gives validity to the expression, regardless of how one might feel about patent law.
Hahaha, it’s always fun to find rude people who are wrong. “Android is a trademark of Google LLC. It is used to refer to the operating system and related products developed by Google”. /e/OS is based on LineageOS, which is itself based on AOSP. The fact he differentiated /e/OS to Android does make sense, since Android refers to the stock version, which is cluttered with Google stuff.


That’s some pretty big (rude) talk for someone who isn’t willing to back their opinions with any sort of argument. Saying things like “Your idea is idiotic”, “You don’t understand what you’re talking about”, “You are just making shit up” but then proceeding to say “Because of what I mentioned, I won’t go into an in-depth discussion around how you would be tracked” is a pretty cowardly stance in my opinion. “I will discredit your arguments with ridicule and no counter points”.
I for one do see the value in privacy protecting crypto currencies. I concede that they are not a viable option for utilitarian and common practices since the use of crypto is not common and does require specific know-how. However, they do have their usecases. Whistleblowers, for example. Regarding the second point you made: I guess you are implying the main vulnerability is the humans involved in the transaction. If that is the case, the responsibility on handling the transactions anonymously falls onto the interested party i.e. the one who is interested in keeping the transaction anonymous will also need to devise a scenario that is compatible with anonymity.
On the other hand, if anonymity isn’t imperative and the users just want a more privacy friendly solution to payment transactions, I think it also makes sense. You can prefer the banks not monitoring everything you do but also not need to live in anonymity and accept the fact that, if interested, the governing entities will most likely have the means to track down your transactions. But that is most likely only going to affect criminals, not privacy conscious citizens.


Oh, well I haven’t had problems so far with Orion+UBO!


You can have it on iOS as well. Use Orion browser instead of safari and install UBO from the firefox addons store ;)
But mypy will not accept it :)