HN user

vlad003

34 karma
Posts0
Comments23
View on HN
No posts found.

Can you link to the example? I've been interested in doing something like this, but as far as I can tell, you can only read messages using the Graph API; there's no method for sending messages.

You can have something like this in your .bashrc:

    multitail() {
        com="tail -f "

        for arg; do
            IFS=':' read -a array <<< "$arg"
            host="${array[0]}"
            file="${array[1]}"

            com="$com <(ssh -t $host 'tail -f $file')"
        done

        eval ${com}
    }
This will take the host:file syntax of remtail and turn it into Plugawy's example. I haven't tested it, but if you echo "$com" it'll spit out Plugawy's code.

That's because the <title> element only contains "LKML: " on the thread, and "LKML.ORG - the Linux Kernel Mailing List Archive" on the main page.

Maybe they forgot to keep the "unofficial" in the title?

I'm not sure what the benefit of HTML5 video is if you still end up being forced to use some proprietary component. You ditch Flash but now you have to run some DRM software.

And there's so much more to HTML5 than video; I disagree that lack of DRM video support would set the rest of HTML5 back in any way.

EDIT: I guess the sandboxing aspect of EME is a significant improvement over Flash running as a plugin.

Sleep sort (2011) 12 years ago

I don't know Perl, so I rewrote it in Python in an attempt to understand what's going on: [link redacted]

I'm not storing key,value pairs for elements that don't exist (not sure what the Perl code's doing), so it shouldn't be too bad in terms of space used.

My understanding is that the Raspberry Pis are intended to be used in education. The front page says: "We want to see it being used by kids all over the world to learn how computers work, how to manipulate the electronic world around them, and how to program."

That said, I use mine as a simple NAS for backups.

Since you can't escape the problem, maybe it might be a good idea for sites like these to make it clear where the ads are. Something similar to the yellow/orange Ad tag on Google Search would make it clear which download buttons are ads and which ones are the ones you want.

> The only major issue facing Linux users these days, except perhaps printing, is wireless networking and sometimes even getting wired connections to work.

I never have had a problem with networking. Always worked right out of the box for the past 3 laptops and 5 distribution versions (I'm on Ubuntu). But I've had problems with suspending. I only had it working on one laptop and even then I had to make some modifications to make it work.

I'm currently using Win7 as my main OS just because of the suspending. I take my laptop with me everywhere, and having to shut down and start back up each time I need to use it is a deal breaker for me.