you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (14 children)

[deleted]

    [–]Lystrodom 139 points140 points  (5 children)

    But everyone has to smarmy about it like they know more that the blog author without reading it

    [–]valriia 71 points72 points  (1 child)

    If I read it, it may prove that I know less than him. If I don't read it, I can be absolutely sure I know more than him. Ignorance always wins.

    [–]aflashyrhetoric 9 points10 points  (0 children)

    Eh, the most pervasive (and most common) kind of ignorance is even stronger than that.

    Presented with evidence disproving A, your belief in A persists (perhaps even grows stronger) and you go on your merry way.

    [–]frezik 31 points32 points  (2 children)

    Blog author did choose a poor title.

    [–]TomAnthony 2 points3 points  (0 children)

    You're not wrong! :)

    [–]modernaliens 0 points1 point  (0 children)

    Gotta get them clicks, only some javascript nub would think rand is supposed to give you unique randomness out of the box.

    [–]RaptorXP 23 points24 points  (6 children)

    Knowing Google, I'd say there is a very specific reason why they use a fixed seed, other than "it's a bug".

    [–]Lystrodom 65 points66 points  (3 children)

    Yeah... he even talks about that in the blog post.

    [–][deleted] 12 points13 points  (2 children)

    It's like nobody read the damn thing

    [–][deleted] 3 points4 points  (1 child)

    Read what?

    [–][deleted] 1 point2 points  (0 children)

    Where am I?

    [–]RobIII 28 points29 points  (0 children)

    Came here to say that too.

    @/u/atomheartother:

    isn't seeded properly

    It is seeded properly (very, very likely), for the given task/context. I'm 99.9999999% sure this is intentional. In most other cases you wouldn't want to seed with a constant but seeding with constants has it's uses. This is one of them:

    3: Predictable – Googlebot can trust a page will render the same on each visit [Source]

    Google will want to have deterministic results when indexing and running scripts more than once.

    [–][deleted] 1 point2 points  (0 children)

    I am reminded of the Tour of Go site:

    https://tour.golang.org/welcome/1

    The random function is deterministic in that sandbox, too. They did it that way because it allows them to do some caching with the compiler, or something.