Yes, most of the very rich have acquired their wealth through unfair means, be it through unfair government action like intellectual property, subsidies, bailouts, low-interest loans, etc., or violence, historic or current. Regarding pure socialism/communism, a war to fully redistribute the riches of the wealthy will likely never happen, and cause great devastation if it did.
In a libertarian system, even if everyone started out equally wealthy, some would end up richer than others, as people of differening competency and diligence should. But libertarianism makes things fair even if some are very wealthy.
One who owns a lot of resources can rent or loan it to others without much additional cost to themselves, and make a percentage return. But by making them compete with other rich people, assuming resources are plenty, the ones that offers it for the lowest price, ie., makes the closest to zero profit, will get all the customers.
As for why even partial wealth redistribution isn't preferred in a libertarian society, note that the company that provides the customer with the most value for their money wins. The riches of a wealthy person are assets to be used to finance their business, even if turned into houses or jewelery, since they can be liquidated when needed. Taking these away punishes the best company, which is counter-productive. If a lot of it is turned into stuff like parties and luxury vacations, the company isn't being very efficient, and will likely be replaced quickly in a free market. If not, that means people who can afford it are willingly transferring their money by overpaying due to their affinity for the entity, in which case libertarians would argue they have every right to spend that fairly earned money.
If the resource is replaceable, like fossil fuels, the free market will invest appropriately in alternatives as and when needed. As for irreplaceable resources, it would be a very rare situation for there to only exist a few sources of it globally, controlled by a few entities, and for them to all stop competing and fix prices. This would be a global crisis requiring international action and co-operation for diplomacy, sanctions, and acquiring new sources/technologies. Clearly not a usual scenario that can be used to dismiss libertarianism.
Segmentation by Ciro Santilli 35 Updated +Created
In x86 systems, there may actually be 2 address translation steps:
  • first segmentation
  • then paging
like this:
(logical) ------------------> (linear) ------------> (physical)
             segmentation                 paging
The major difference between paging and segmentation is that:
  • paging splits RAM into equal sized chunks called pages
  • segmentation splits memory into chunks of arbitrary sizes
Paging came after segmentation historically, and largely replaced it for the implementation of virtual memory in modern OSs.
Paging has become so much more popular that support for segmentation was dropped in x86-64 in 64-bit mode, the main mode of operation for new software, where it only exists in compatibility mode, which emulates IA-32.
Spectroscopy by Ciro Santilli 35 Updated +Created
Transpose by Ciro Santilli 35 Updated +Created
Twin prime conjecture by Ciro Santilli 35 Updated +Created
Let's show them how it's done with primes + awk. Edit. They have a -d option which also shows gaps!!! Too strong:
sudo apt install bsdgames
primes -d 1 100 | awk '/\(2\)/{print $1 - 2, $1 }'
gives us the list of all twin primes up to 100:
0 2
3 5
5 7
11 13
17 19
29 31
41 43
59 61
71 73
Tested on Ubuntu 22.10.
Two different Lie groups can have the same Lie algebra by Ciro Santilli 35 Updated +Created
The most important example is perhaps and , both of which have the same Lie algebra, but are not isomorphic.
Ubuntu 23.04 boot broken on kernel 6.2 by Ciro Santilli 35 Updated +Created
Switching to the other installed kernel, 5.9 made boot work.
The solution on kernel 6.2 was:
sudo apt instal nvidia-driver-515
as per comments under: bugs.launchpad.net/ubuntu/+source/linux/+bug/2012559. This also made the nvidia driver work: Find GPU information in Ubuntu.
Previously I had:
nvidia-driver-510
and it blew up before reaching disk decryption.
I also tried:
nvidia-driver-525
but that broke in a different way:
Finished apport-autoreport.service - Process error reports when automatic reporting is enabled.
nvidia-modeset: ERROR: GPU:0: Idling display engine timed out: 0x0000947d:0:0:407
(1 of 2) Job systemd-backlight@backlight: nvidia_e.service/start running (32s no limit)
Ubuntu 22.04 by Ciro Santilli 35 Updated +Created
Unified Modeling Language by Ciro Santilli 35 Updated +Created
Unitary matrix by Ciro Santilli 35 Updated +Created
Applications:
United States Air Force by Ciro Santilli 35 Updated +Created
United States Department of Energy national laboratory by Ciro Santilli 35 Updated +Created
Where nuclear weapons and nuclear power, and a ton of derived research is made.
University of California, Berkeley by Ciro Santilli 35 Updated +Created
The closest site of the University of California to San Francisco. Berkeley, California is a small town on the East of the San Francisco Bay.
University of Chicago by Ciro Santilli 35 Updated +Created
University of Sussex by Ciro Santilli 35 Updated +Created
Vacuum engineering by Ciro Santilli 35 Updated +Created
Video 1.
Air-tight vs. Vacuum-tight by AlphaPhoenix (2020)
Source. Shows how to debug a leak in an ultra-high vacuum system. Like every other area of engineering, you basically bisect the machine! :-) By Brian Haidet, a PhD at University of California, Santa Barbara.
Pinned article: ourbigbook/introduction-to-the-ourbigbook-project
Welcome to the OurBigBook Project! Our goal is to create the perfect publishing platform for STEM subjects, and get university-level students to write the best free STEM tutorials ever.
Everyone is welcome to create an account and play with the site: ourbigbook.com/go/register. We belive that students themselves can write amazing tutorials, but teachers are welcome too. You can write about anything you want, it doesn't have to be STEM or even educational. Silly test content is very welcome and you won't be penalized in any way. Just keep it legal!
Video 1.
Intro to OurBigBook
. Source.
We have two killer features:
  1. topics: topics group articles by different users with the same title, e.g. here is the topic for the "Fundamental Theorem of Calculus" ourbigbook.com/go/topic/fundamental-theorem-of-calculus
    Articles of different users are sorted by upvote within each article page. This feature is a bit like:
    • a Wikipedia where each user can have their own version of each article
    • a Q&A website like Stack Overflow, where multiple people can give their views on a given topic, and the best ones are sorted by upvote. Except you don't need to wait for someone to ask first, and any topic goes, no matter how narrow or broad
    This feature makes it possible for readers to find better explanations of any topic created by other writers. And it allows writers to create an explanation in a place that readers might actually find it.
    Figure 1.
    Screenshot of the "Derivative" topic page
    . View it live at: ourbigbook.com/go/topic/derivative
    Video 2.
    OurBigBook Web topics demo
    . Source.
  2. local editing: you can store all your personal knowledge base content locally in a plaintext markup format that can be edited locally and published either:
    • to OurBigBook.com to get awesome multi-user features like topics and likes
    • as HTML files to a static website, which you can host yourself for free on many external providers like GitHub Pages, and remain in full control
    This way you can be sure that even if OurBigBook.com were to go down one day (which we have no plans to do as it is quite cheap to host!), your content will still be perfectly readable as a static site.
    Figure 5. . You can also edit articles on the Web editor without installing anything locally.
    Video 3.
    Edit locally and publish demo
    . Source. This shows editing OurBigBook Markup and publishing it using the Visual Studio Code extension.
    Video 4.
    OurBigBook Visual Studio Code extension editing and navigation demo
    . Source.
  3. https://raw.githubusercontent.com/ourbigbook/ourbigbook-media/master/feature/x/hilbert-space-arrow.png
  4. Infinitely deep tables of contents:
    Figure 6.
    Dynamic article tree with infinitely deep table of contents
    .
    Descendant pages can also show up as toplevel e.g.: ourbigbook.com/cirosantilli/chordate-subclade
All our software is open source and hosted at: github.com/ourbigbook/ourbigbook
Further documentation can be found at: docs.ourbigbook.com
Feel free to reach our to us for any help or suggestions: docs.ourbigbook.com/#contact