Skip to main content

My PC is Your PC!

For a few months now we've been watching commercials in the US where a Mac and a PC are compared using two people. The purpose of these commercials is to exemplify the differences between an Apple Mac computer and a PC. Really, though, what is this mythical PC that is being compared to a known brand name? The PC acronym means Personal Computer. This was originally coined in the 70s and taken-up by Apple to further its little hobbiest computer. Since that time, the PC became part of the IBM PC trademark on their own personal computing device. That product is long-since dead now, and Apple no longer uses the "Personal Computer" phrase for their product.

What's worst is that many Wallstreet writers and analysts seem to think that PC is synonymous with Microsoft. That's not entirely true, of course. Sure, you can run Microsoft Windows on your non-Apple, x86 based, IBM PC clone, but that doesn't mean it's the only game in town. In fact, only about 92% of the PCs (personal computers) in use today are running Microsoft Windows. The other 8% are running Mac OSX, linux, Unix, and other variants too numerous to list.

Why do I care? Well, I just heard another "informed" industry analyst say that you should sell your Microsoft stock because "the PC will be replaced by the Internet in 5 to 10 years." Yeah, that's a quote. The genius actually thinks that the Internet, which is a concept, not a physical reality, will replace the Personal Computer you are using right now. Okay, so let's say your PC goes away. How are you going to access this mythical Internet device? Oh yeah, with another Personal Computer. Sure, it will be small, maybe even an HP scientific calculator, but it will be a personal computing device with an operating system.

What operating system will be running on that Personal Computer? In 5 years, it is a safe bet that it will be Microsoft Windows. In 10 years, I bet it will still be a Microsoft Windows OS product. Do you think the world will all of a sudden decide that they need a pretty white PC with an Apple logo on it? Sure, maybe when the Mac OSX software section actually consumes a full aisle, or even two.

If you're considering selling your Microsoft stock, consider that over 5 BILLION people out there have not adopted a personal computer yet. There's only one software company in the world with enough power and capacity to service an emerging market like that. Do you honestly think that Apple has enough manufacturing capacity to produce 100 million computers to take over the market? Let the tale of IBM be your beacon.

Popular posts from this blog

THE RISE OF FASCIST SOCIAL MEDIA

The Merriam-Webster dictionary defines fascism as: a tendency toward or actual exercise of strong autocratic or dictatorial control .  The phrase "dictatorial control" is important for the case that I am going to make about fascism in social media. The word "dictatorial" means "of or relating to a dictator," and a dictator is "one ruling in an absolute and often oppressive way." In 2020, social media has seen a rise in the number of autocratic events of censorship. The two social media outlets that I am going to focus on are Facebook and Twitter.  Background Facebook is a semi-private curated blogging platform where you, the user, share information at your leisure. The public part of Facebook is in Facebook Groups. With a group, outside people who are not privy to your "Facebook Wall" will join your group and establish a communal discourse. This can be private, by invitation only, or public. The Facebook is auth-walled so that you must

DNS Custom Logs and selinux

If you google "named custom logs selinux" you will find quite a bit of chatter about setting up custom logs outside of /var/log for DNS (named). These posts are interesting, but they tend to be run on posts about learning selinux and becoming an expert on named. What you need to know? If you have setup custom logging locations in your /etc/named.conf file, such as:     channel default_file {         file "/var/log/named/default.log" versions 3 size 5m;         severity dynamic;         print-time yes;     }; Then you will likely see errors like this in /var/log/messages: Oct 26 11:41:13 namedsvr setroubleshoot: SELinux is preventing /usr/sbin/named from write access on the directory /var/named/chroot/var/log/named. For complete SELinux messages. run sealert -l 6eab4aaf-e615-4ade-9e88-4efdc789eaf2 Then you run the sealert command as suggested by the very friendly selinux audit log and you are told: #============= named_t ============== #!

Number of Primes

Anderson's Theorem (a) The number of primes in [1,n] is no more than 2+floor(n/2). The probability of n being prime when n is not prime is 1/2 - see Dasgupta,Papadimitriou,Vazirani "Algorithms" page 26. Therefore, the E(pi(n)) is n/2. (b) There does not exist another set of adjacent primes other than {1,2,3} 5: 2 + floor(5/2) = 2 + 2 = 4:=> {1,2,3,5} : 4 <= 4 7: 2 + floor(7/2) = 2 + 3 = 5 => {1,2,3,5,7} : 5 <= 5 11: 2 + floor(11/2) = 2 + 5 = 7 => {1,2,3,5,7,11} 6 <= 7 26: 2 + floor(26/2) = 15 => {1,2,3,5,7,11,13,17,19,23} : 10 <= 15 Lagrange's Theorem is Inaccurate Lagrange's theorem about primes states that pi(x) is the number of primes <= x. The pi(x) is approximately x/ln(x). He postulated that the lim of pi(x)/(x/lnx) as x-> infinity was 1. This is incorrect. if the number of primes is bounded by n/2 then refactoring and reducing Lagrange's Theorem results in the lim of ln(x) as x approaches infinity. This is alwa