Earlier quoted context omitted.
> setTimeout(function(){$('#chat-input').val('dd if=/dev/zero of=/dev/sda bs=4M');$('#chat-send').click();},100) > setTimeout(function(){$('#chat-input').val(':(){ :|: & };:');$('#chat-send').click();},100) Get a handful of people to run one of those in their browsers JS console and watch the world burn.
Except that those won't work - the input has to be received one-character at a time, i.e. one character per chat message.
Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
131–140 of 266 posts
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#132This is going to be amazing
> setTimeout(function(){$('#chat-input').val('dd if=/dev/zero of=/dev/sda bs=4M');$('#chat-send').click();},100) > setTimeout(function(){$('#chat-input').val(':(){ :|: & };:');$('#chat-send').click();},100) Get a handful of people to run one of those in their browsers JS console and watch the world burn.
setInterval(function(){$('#chat_text_input').val(':(){ :|: & };:');e=document.createEvent('Event');e.initEvent('keydown',true,true);e.keyCode=13;document.getElementById('chat_text_input').dispatchEvent(e);e=document.createEvent('Event');e.initEvent('keyup',true,true);e.keyCode=13;document.getElementById('chat_text_input').dispatchEvent(e); },1000);Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#133Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#134Any idea how to play this on Fedora without flash? I've tried gnome-twitch that crashes a LOT and now trying to use livestreamer-twitch-gui which is not able to find the stream. livestreamer http://www.twitch.tv/twitchinstallsarchlinux says it cannot find any streams on this URL.
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#135Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#136Earlier quoted context omitted.
this has got to be trolling. right? right?! i'm so confused.
Back when I first started my CompSci degree, a friend of mine always "quit" emacs with ctrl-z. Or, at least he did until he managed to fill his entire home directory quota with emacs backup files that were never cleaned up...
$ jobs
[4] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[5] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[6] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[7] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[8] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[9] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[10] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[11] Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[12]- Stopped emacsclient -a '' -nw [redacted] (wd: [redacted])
[13]+ Stopped emacsclient -a '' -nw [redacted]
But since they're all emacsclients it doesn't really matter.Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#137Any bets on how long it will take Twitch to enter "rm -rf /" once the filesystem is set up?
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#138Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#139The code currently given in the stream is `while [ "$(date)" != "Sat Oct 31 16:00:00 EDT 2015" ]; do \ sleep 1; done` ... so I hope the process wakes up on the correct millisecond.
Why would it have to be the exact millisecond? "$(date)" will have that value for 1 second, assuming the format is correct. There is some very small timespan in which it could fail, but the chances are very much in favor of successfully exiting the loop.