Slashdot Mirror


Linux Action Show Returns

BJ writes "The Linux Action Show, the Linux-podcast to end all Linux-podcasts, is returning with their 11th season after over 7 months off the air. Kicking it all off with a live streaming event this Saturday at 5pm. Topics are set to include: Maemo/Moblin merging into Meego, Open Source Nividia drivers with 3D, KDE 4.4 and much, much more."

8 of 61 comments (clear)

  1. Hmm by Anonymous Coward · · Score: 5, Funny

    Must have been re-compiling their Kernel.

  2. Wow? by grub · · Score: 3, Funny


    Awesome!

    A show I had never heard of for a full 10 seasons is making a triumphant return for an 11th!

    .

    --
    Trolling is a art,
    1. Re:Wow? by grub · · Score: 5, Funny


      apt-get remove me and I shall become stronger than you can possibly imagine...

      --
      Trolling is a art,
    2. Re:Wow? by Tetsujin · · Score: 4, Funny

      apt-get remove me and I shall become stronger than you can possibly imagine...

      If you phrase this as a shell command:

      > apt-get remove me & I shall become stronger than you can possibly imagine...

      It's important to note that you could become stronger than the caller can possibly imagine before you are removed - thereby giving you the ability to prevent your own removal. It's very important to handle race conditions like this correctly...

      --
      Bow-ties are cool.
  3. Lack of professionalism by cerberusss · · Score: 4, Insightful

    When I got into the whole podcast thing, I downloaded basically everything that had to do with either mobile tech, Apple and Linux. To my surprise, most Linux-related podcasts are really, really bad. The quality was often lacking in almost every area, be it pacing, sound quality, speakers, intro/outro, interviews you name it. This all in sharp contrast with podcasts that are related to mobile news and Apple or iPhone.

    So I'm very interested in this (for me new) podcast, but it better have at least some semblance of quality.

    --
    8 of 13 people found this answer helpful. Did you?
    1. Re:Lack of professionalism by TheModelEskimo · · Score: 3, Interesting

      To my surprise, most Linux-related podcasts are really, really bad.

      This surprises you how exactly? Linux users are almost never involved in media production, most coming from orthodox IT-related areas. I do a lot of creative production work, and I have to laugh every time I talk to somebody who is both a Linux user (as I am), really into tech, and somehow passionate about getting something produced. They really have no clue what is up or down, and most of their anecdotes come from being really pissed off by Flash-driven websites, even when they ARE dealing with time-bound, linear media where something like an "animated intro" is considered a staple of production. I still chuckle about it.

  4. Stupid podcast by RPoet · · Score: 4, Interesting

    These clowns put on a hysterical "morning zoo"-style charade with forced "energy" and falseness throughout. They are also very anti free software, to the point that free software makes them hysterically angry. They constantly try to manufacture conflict where there is none, and go on crusades against pointless minutia. No thanks, it's a waste of time.

    Give me LugRadio back any day.

    --
    "Oppression and harassment is a small price to pay to live in the land of the free." -- Montgomery Burns.
  5. Shell syntax lesson by Tetsujin · · Score: 2, Insightful

    > apt-get remove me & I shall become stronger than you can possibly imagine...

    Uh, fail.

    Why do people talk like this? It's so tacky.

    The command is:

    apt-get remove me && I shall become stronger than you can possibly imagine...

    I don't know if you made an HTML fail or a shell fail, but either way, you botched it. Having two ampersands prevents the race condition and preserves the meaning of the statement; in this context, and means iff.

    No, I said what I meant. (If I had meant to put two ampersands in there, why would I be talking about asynchronous jobs and race conditions?)

    See, if I use the version of the command that accurately reproduces the meaning of the sentence instead of getting it wrong, then that's not much of a joke. Maybe you thought my joke wasn't funny anyway - that's OK, they're not always funny. But that line of dialogue could actually have either meaning. "and" could mean "if you do this, then this will occur", or it could just mean that two unrelated things are to take place. ("Do the dishes and I'll go take a nap") In the original line from Star Wars I think there was an "if" in that sentence - but the line as stated in this thread could take either meaning, depending on context.

    The ampersand shell syntax originally was infix: "cmd1 & cmd2" meant "run cmd1 and cmd2 concurrently". This predates job control, I believe, and I think the shell waited until both processes exited before returning. Nowadays you can still say "cmd1 & cmd2" but in Bash, at least, the meaning is a bit different. "cmd1&" is run as a background job, and "cmd2" is run as a foreground job. The ampersand now acts as a command separator, in other words. With the current meaning, the syntax really is a suffix to a command, even if another command follows it - so reading it as "and" is now a bit unnatural, I guess... But originally there was a very good reason why they used the ampersand for that syntax, and that's why I still read "cmd1 & cmd2" as "cmd1 and cmd2".

    --
    Bow-ties are cool.