Live data from Hacker News

Ask HN: What is the most technically interesting thing you've learned recently?

news.ycombinator.com

1–10 of 22 posts

Re: Ask HN: What is the most technically interesting thing you've learned recently?

#4

Actually, fsm while working with GOAP. It's practical to use and didn't encountered it before

FSMs are amazing, and are the one thing I learned from a programming book. I could not resist teaching it to an interviewer during a coding challenge... don't they cover FSMs in code camps?

Re: Ask HN: What is the most technically interesting thing you've learned recently?

#5
When creating spacial geography point in sql server, the longitude comes first (lng, lat). I always thought it would be latitude then longitude.

Interestingly, some points that I've inserted passed the validation, but later I realized the values were swapped when I tried to query nearest neighbor and the points were no where near.

Re: Ask HN: What is the most technically interesting thing you've learned recently?

#9
post #5

When creating spacial geography point in sql server, the longitude comes first (lng, lat). I always thought it would be latitude then longitude. Interestingly, some points that I've inserted passed the validation, but later I realized the values were swapped when I tried to query nearest neighbor and the points were no where near.

There is a geography data type

https://docs.microsoft.com/en-us/sql/t-sql/spatial-geography...

Post reply on HN