Live data from Hacker News

Viewing profile — chrismandelics

chrismandelics

HN member
Joined
Sun, Nov 27, 2022, 3:30 PM UTC
HN karma
24
Public activity
4 items

About chrismandelics

No profile information was provided.

Recent public activity

  1. comment
    Comment #48548721

    Same here. I ran into a similar situation mapping municipal data ( https://wwwww.buffalo.mandelics.com/w5/around-buffalo.html ) plus I needed to be able to click a point and see th…

  2. story
  3. comment
    Comment #33764119

    Also worth noting: default JS `Array.sort()` converts everything to strings and compares them lexically -- so 80 comes before 9. It's a little faster to sort them as numbers: `.sor…

  4. comment
    Comment #33763790

    Plain JS numeric code _can_ be really fast if you stick to typed arrays. I tried the posted JS in Chrome on an aging thinkpad and each `testSort()` took as long as 125 seconds (32 …