Warning: Constant ABSPATH already defined in /home/public/wp-config.php on line 27

Warning: Cannot modify header information - headers already sent by (output started at /home/public/wp-config.php:27) in /home/public/wp-includes/feed-rss2-comments.php on line 8
Comments on: Thoughts From The Sideline https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/ On-line Opinion Magazine...OK, it's a blog Mon, 05 Nov 2012 17:36:13 +0000 hourly 1 https://wordpress.org/?v=6.4.3 By: Badtux https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60997 Mon, 05 Nov 2012 17:36:13 +0000 http://whynow.dumka.us/?p=27544#comment-60997 Just checked out his blog that you forwarded. Heh. Yeah, we seem to do a lot of the same things. Except that I finally abandoned Ubuntu and went to Fedora, if I was going to dump Unity and install Gnome Shell on top of it I might as well just go to a distribution that ships with Gnome Shell in the first place. (Plus I do virtualization with KVM and am experimenting with BTRFS, and in both cases Fedora gets those things first).

Interesting that you mentioned kernel security. One of the first rules of kernel security is that every parameter passed into the kernel should be checked for validity before being passed further into the kernel. It’s called “defense in depth” — you should never be able to trigger a crash by passing garbage into a kernel call. Sure, deeper layers of the kernel should also handle the situation, but in production kernels with 3rd party drivers installed you can’t guarantee that, thus that first line of defense. Guess what Linus stripped out of recent kernels in pursuit of the goal of “improving performance”? Yep. πŸ™„

]]>
By: Kryten42 https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60993 Mon, 05 Nov 2012 07:26:31 +0000 http://whynow.dumka.us/?p=27544#comment-60993 Oh, I should add, from the *horses* mouth… πŸ˜‰

“For anyone that doesn’t know, I am mainly interested / involved in Free & Open Software hackery, hitting hardware with hammers and have a passion for gambling, snowboarding and other foolhardy exploits with my own health.”

And BTW, he has Cerebral Palsy and other serious ailments, and like me, has been told be assorted *Medical Practitioners* (I have yet to meet a *Medical Expert*) that he would be dead before since he was born. So, we have that in common at least! πŸ˜‰ πŸ˜†

We even discovered that as well as working well together on IT problems, we work well together at the blackjack table! We went to Crown Casino once, and after an hour had at least 3 dealers and a couple Security guy’s giving us the *evil eye* trying to figure out how we were cheating, ’cause we must have been! πŸ˜† (We weren’t BTW), PD played and I’d suggest now and then when to stay or hit. Don’t ask me, I have no idea how it worked! (There was a bit more involved, PD and I were having a lot of fun with it to the dismay of the dealers, who were changed often, to no avail!) πŸ˜‰ *shrug*

heh.

]]>
By: Kryten42 https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60992 Mon, 05 Nov 2012 07:13:28 +0000 http://whynow.dumka.us/?p=27544#comment-60992 Yup!

My m8, PD, now works at Operational Dynamics and has a blog you might be interested in. πŸ™‚

Operational Dynamics / Blogs / Paul Drain

There’s a lot there, on several topics (including WP annoyances, some you might find useful Bryan) πŸ˜‰

I’ve known PD since about ’98, and he’s a really amazing young man. πŸ™‚

Some of his patched 2.4 kernels (circa 2002) are still on Packet Storm:
Files from Paul Drain

PD was also a developer for several projects such as as Firestarter (with Tomas Junnonen).

Firestarter – Contacting the authors

Actually badtux, I’d be surprised if you haven’t come across him somewhere in linux World! πŸ˜‰ πŸ˜€

We created a security company together in ’98, but for various reasons (mainly health) I had to resign in 2002. We used to go spend our afternoons in our favorite cafe with a stack of napkins (I kid you not! It started one day when an idea struck and we knew we *HAD* to get it down or lose it forever! So We started scribbling madly on napkins (the only paper we had), and yelled for more when we ran out!) and pens, and work on our dream project. The Owner and staff of the Cafe thought it was funy and worderful, and they kinda adopted us and we became a *feature* ! People actually came to see us work (several from the nearby Melb. Uni.) We didn’t mind, and we enjoyed endless free (fantastic) coffee and treats! πŸ˜† When PD and I were working on a problem, not even the *end of the World* could interrupt us. Our #1 Waitress (who was far from dumb, and was the owners daughter) would some times listen to us working on a problem in amazement. She said to us one day (paraphrasing) “You two must be twins! You know you finish each others sentences, and sometimes you just know what the other is thinking! It’s freaky.” We could do more work in one afternoon together than we could do in a week alone. We had an amazing synergy that I miss.

Yeah… good times! *sigh*

]]>
By: Badtux https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60990 Mon, 05 Nov 2012 05:18:06 +0000 http://whynow.dumka.us/?p=27544#comment-60990 Kryten, Linus has always had an ego. I had some go-arounds with him back in the beginning, when I was a thirty-something industry veteran and he was a student still in school, over Linux’s lack of loadable device drivers. I pointed out that expecting my mother to compile kernels was an exercise in futility and that his notion that loadable device drivers would never be needed was silly because the hardware supported by Linux was expanding every day and there was no possible way to compile a kernel with all the drivers in it, you’d have a 500 megabyte kernel! (This back in the day when most desktop computers had 128 or 256 megabytes of RAM and a few very lucky duckies had 512 megabytes of RAM). I lost that argument and 1.2 didn’t have loadable device drivers. Red Hat hired Alan Cox and implemented loadable device drivers anyways for the 1.3/2.0 kernel, at which point it became Linus’s idea all along :twisted:.

And let’s not talk about some of the architectural decisions he made that are still annoying me today. I recently did some work at the block layer to work around locking bugs and bio delivery bugs (in prior Linux kernels you were always guaranteed to get an endio if you did a submit_bio, but on a device pull current kernels just throw the bios away rather than endio’ing them with an error, so I had to deal with that at a higher level by keeping track of my submitted bios and marking my submitted bios as invalid if I got a device pull then invalidating my RAID stripe — since I have no idea what actually got written — and return a write error to whatever filesystem called me). Thing is, this whole block API is a horrific hack to begin with, which was another argument I got into with Linus back in the day when I pointed out that if you were going to have kernel threads and queues anyhow you might as well make them a general purpose thing that was easy and transparent to use, like on Mach or the Amiga, but instead they’ve turned into this horrific mess that is all sorts of inscrutable macros and allocators and deallocators that have magic fields that do magic things that you as a block layer user don’t know about and can run into issues with when their underlying implementation changes especially when locking changes, and … well…. GRRRRR!!!!! I had that discussion with Linus back in I think 1995. I’m still working around Linus’s ego in 2012, 17 years later. SIIIIGH!

And the funny thing was that Linus’s argument in 1995 was *performance*. Well, the only way to make this bogus block layer thingy work in today’s multi-threaded multi-core CPU environment is via spinlocks all over the friggin’ place every time you touch something other than a local variable. Do you know what spinlocks do to performance? Hint: SUCKITUDE! We are no way no how taking advantage of all the CPU power available because the spinlocks are sucking us dry doing nothing but spinning! AGH!

So anyhow, so goes the lament of the unknown Linux kernel programmer :). (Okay, so I do have my name in one module, but all my kernel work other than that has been for commercial companies where I only have to deal with the results of Linus’s ego rather than with Linus himself πŸ˜‰ ).

]]>
By: Bryan https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60985 Sun, 04 Nov 2012 22:05:56 +0000 http://whynow.dumka.us/?p=27544#comment-60985 When people start believing their press releases they are lost to humanity and join Badtux,s ‘lizard people’. After some success, some people believe that whatever they do is unquestionably ‘the best thing since sliced bread’ for no reason other than they did it.

It is very hard to talk to them when they miss the point that while the code is elegant and and the logic creative, it doesn’t solve the problem. When people are gathering groups and heating tar, they are not going to appreciate what a great thing the new code is, because it doesn’t do what they need done. I watched a lot of really neat start-ups circle the drain because they forgot they were supposed to be providing customers with solutions.

As soon as Google surrendered to the ‘corporate culture’ they were lost. Everything becomes subsumed to improving profit margins, and nothing else matters.

]]>
By: Kryten42 https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60983 Sun, 04 Nov 2012 17:24:51 +0000 http://whynow.dumka.us/?p=27544#comment-60983 LOL (Sorry, my PC I use for general internet stuff had a meltdown, almost literally. The CPU cooler fan decided to die on a 28C day a couple days ago. Typical.)

As someone who has had to try to mediate between Linus Torvalds and one of the top kernel and device driver developers, I can report that he has an ego that rivals Gates & Jobs (RIP). And I sometimes think he’s worse than both. It got so bad (over some serious security concerns my friend had about the kernel code), that my friend told Linus to drop dead and went to work for the BSD consortium as one of their 7 global Code Auditors. He eventually went on to work for Red Hat to develop and manage the security code for their kernel. trust me, Linus can definitely be a *control freak* m8! πŸ˜€

You know that Steve Jobs was the only guy to pull a fast one over Bill, not once, but at least 3 times! The first was in the 70’s (when he got the rights to BASIC for the Apple II for peanuts), the 2nd was in the late 80’s when he had to negotiate a new agreement for that BASIC, and screwed Bill again! gates actually is on record stating that 8that was the biggest mistake he ever made*! I bet Steve is still laughing in his grave. πŸ˜‰ The third was in the late 90’s, when he caught M$ using code stolen from Quicktime (and other Apple code), and forced M$ to settle out of court and give the code to IE and guarantee to maintain IE, Office and other code for OS-X for a decade, pretty much for free! To save face, and show that *they were really good friends*, M$ bought $150M worth of non-voting Apple stock (which was peanuts as Apple was worth about $4B at that time). Turned out to be not such a bad thing for Gates though, he sold the stock when it was worth a lot more and made a decent profit. Still, Apple was the real winner as they were able to use some of the M$ code to develop their products, and M$ had to *STFU*! πŸ˜†

Jobs was always smarter than Gates, and he was way more creative… but I think he lost the plot when he was forced out and started Next, etc. He was a very changed man when he eventually returned. Sad really.

yes, there is a definite role for thin clients. I think android devices will evolve quickly to fill that niche. You do realize that Google will be even worse than it is now, and worse than M$, Apple and PayPal put together! Now there’s a horrifying thought!

Ahhh, well… πŸ˜‰

]]>
By: Bryan https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60980 Sun, 04 Nov 2012 16:34:54 +0000 http://whynow.dumka.us/?p=27544#comment-60980 My Mother’s television takes care of that chore. The pictures are sent on CDs, DVDs, or USB drives, and she can see them all. In her case it is the great grandchildren that occupy so much media.

]]>
By: Badtux https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60975 Sun, 04 Nov 2012 05:21:07 +0000 http://whynow.dumka.us/?p=27544#comment-60975 Well, my Mom does use the computer to keep photos of her grandkids handy. So there’s that, which current appliance-type tablets and etc. currently don’t do well. Her first thought if handed an Android tablet would be, “how do I get my grandkids’ pictures into this thing?” The second thought would be, “how do you expect me to see this tiny little screen?” Not happenin’ ;).

]]>
By: Bryan https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60972 Sun, 04 Nov 2012 01:21:31 +0000 http://whynow.dumka.us/?p=27544#comment-60972 There are a lot of people who would be happy and content with a thin client for e-mail and browsing; they just don’t use anything else. Something using a Raspberry PI board would be enough for them and cost a lot less than a regular box.

Aside: just had a feline- caused minor problem with the system and had to kill power to fix it. When I powered back up Firefox came back here and had saved the paragraph above, even though I hadn’t. That was a nice piece of user programming.

The majority of users need an appliance, not a computer.

]]>
By: Badtux https://whynow.dumka.us/2012/10/29/thoughts-from-the-sideline/comment-page-1/#comment-60968 Sat, 03 Nov 2012 06:26:12 +0000 http://whynow.dumka.us/?p=27544#comment-60968 Indeed, reminds me of Linux geeks who are irate that Gnome 3 doesn’t have all the neat bells and whistles to let them customize it the way they could customize Gnome 2. At which point I say, WTF? Most people do only one customization to their desktop: They change the background picture to be a picture of their kids or something. After that, they don’t customize anything about their desktop, because it’s a place to launch tools they need to do their job, it’s not a lifestyle. Geeks just do not understand actual real human beings. They don’t. You’d think that they have mothers and grandmothers who might give them a clue, but maybe all their moms and grandmas are like Dilbert’s mom? Baffling.

My mom uses the computer for two things: To send email to her far-flung clan, and to keep up with their Facebook pages. That’s it. So it goes.

]]>