Hacker News new | past | comments | ask | show | jobs | submit | more Nyubis's comments login

Same here. More and more websites seem to target only Chrome (or Webkit), it's the IE6 situation all over again.


Sorry! I wanted to upvote. I'm also trying to find out how the the downvote got registered.

Edit: I've found it, it's curiously related to the "which browser" discussion(!): https://news.ycombinator.com/item?id=8475210 (Posted from the Firefox this time!)


RxJS author here. I'll make sure that it's more cross platform as I do actually work for Microsoft. This has been a Netflix only training platform, but in order for us to teach more, we have to be better about supporting all browsers.


^ This is the way to go. Don't waste any energy on the "unknown" word, just fill out the one that has been smeared out and fill in bogus for the rest.

If you want to post on 4chan and don't have a Pass, you need to solve a captcha for every single post. It becomes easier with practice, I fail maybe 1 in 10 captchas. And the more captchas you solve correctly, the easier the captchas for your IP get.


If enough people colluded to use the same unknown word, say "foobar", then couldn't they train recaptcha to believe that is the true value of the word? If I understand recaptcha correctly, and assuming they don't detect collusion well, then eventually the known word pool would get poisoned with a surplus of foobars.


Some 4channers tried that already. You can guess which 6-letter epithet for black people they tried to use.


Ladies and gentlemen, I give you: "the internet".


>You can guess which 6-letter epithet for black people they tried to use.

'Blacks'


Hint: It starts with "N" and ends in "igger"


Naggers!


did it have any letters in between?


An engineer said they have defenses against this

>Checking for offensive words is only one of the filters we have. Even without that filter, it’s essentially impossible to get recaptcha to return a false result.

http://musicmachinery.com/2009/04/27/moot-wins-time-inc-lose...


> it’s essentially impossible to get recaptcha to return a false result.

Famous last words :P


This has happened in google image labeler. Now offline, it was a game where two random people were matched and needed to find new tags for the same image - the scoring was cooperative so points were given when you both chose the same word in the same game. /b/ of course quickly organised the jesusporn metagame... Label the first image as jesus, second as porn, third with jesus, etc. This resulted highest scores for some time.


ReCaptcha does do some collusion detection, and I assume they do it well, since it has not publicly been stated to be a problem area.


This is pretty awesome, but I don't know if people often phrase their queries like that, and I'm not sure whether it's worth it to start phrasing it like this. It doesn't seem to support more complex bash queries, so I'm not really sure how often this will be used.


[ is part of Bash syntax


Nooo! Mistake #0 about shell scripting is thinking [ is syntax. It makes it way more weird and inexplicable. [ is a command, just like any other. That's why there needs to be a space between it and the next thing, and why you have to use weird looking flags and such. This is why I prefer the command `test`. It does the same thing as `[`, but is more obviously a command. And when you see it as a command, it's obvious that any command can be used in an if directly; if is just checking the exit code. (Whenever I see someone doing `if [ $? -ne 0 ]`, it makes me cry.)


I'll bite. What should we be using instead of `if [ $? -ne 0 ]`? Because that's pretty standard in my (admittedly very basic) bash.


Instead of

somecommand

if [ $? -ne 0 ]; then echo "it failed"; fi

the parent commenter presumably wants to see

if ! somecommand; then echo "it failed"; fi


Or:

    somecommand || echo "it failed"
if it's just one statement. There are some cases where it just looks more natural. For example:

    start_service || log "already started"


> when you see it as a command, it's obvious that any command can be used in an if directly; if is just checking the exit code

One of the best days of my life


test is [


Indeed, "test" is exactly like "[" except that it doesn't check that its last argument is a "]".


For some reason I've always been amused by "which [". The idea of 'punctuation' being a command or a filename is something that threw me.


...and perhaps surprisingly also a program sitting on disk.

    $ type [
    [ is a shell builtin
    $ [ 1 -gt 0
    bash: [: missing `]'

    $ whereis [
    /bin/[
    $ /bin/[ 1 -gt 0
    # success


You got a root shell out of `/bin/[` ? Impressive :)


Hm, which version of [ is that? I get:

    $ /usr/bin/[ 1 -gt 0 && echo success
    /usr/bin/[: missing `]'
    $ /usr/bin/[ 1 -gt 0 ] && echo success
    success
(This is from coreutils 8.13-3.5 on Debian GNU/Linux)


What ships in OS X 10.9, presumably BSD-derived.


If you have App Ops you can prevent any app from phoning home, or just gathering sensitive data in the first place (although you can't stop a keyboard from storing your keystrokes).


Interestingly enough, it seems like he doubts support from Safari and IE sooner than Firefox: http://www.infoworld.com/d/application-development/what-java...


Yeah I read that a long time ago. That article is really dated...


As far as I can tell, it's basically a modernised version of Yahoo Answers.


At last, I can use my social network to answer the timeless questions, like "HOW IS BABBY FORMED?" :)



Awesome, Thanks!


Glad to see this happen. When people talk about vegetarianism, it's almost always about the moral aspect of killing animals, and rarely about the huge impact the meat industry has on our environment.

People often dismiss vegetarianism because they like meat too much, stating that they can't go without that delicious steak once a week. The fun part about reducing your meat consumption in consideration of the environment is that you don't have to cut it entirely, it's just a matter of adjusting your everyday habits.


On Harry being a Mary Sue: That kind of depends what meaning you use.

If you mean the self-insertion, I think that's not too bad. Yes, Harry's reasoning is similar to Yudkowski's, but that's kind of the whole point of the fic. It's not like Harry is a copy of EY himself.

If you mean being idealized and overpowered, I agree. The only part so far where things went wrong because he didn't think fast enough or consider all the possibilities is in the most recent chapters.

On it not updating often enough: Totally, but up to chapter 96 will be released over the next few days, so you may want to stick around for a little longer.


> If you mean the self-insertion, I think that's not too bad. Yes, Harry's reasoning is similar to Yudkowski's, but that's kind of the whole point of the fic. It's not like Harry is a copy of EY himself.

FYI, Eliezer has explicitly stated that Harry is sometimes wrong and that he disagrees with him. He hasn't given specifics AFAIK.



Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: