Show HN: Natural Language Time Zone Converter
1–5 of 5 posts
Re: Show HN: Natural Language Time Zone Converter
#2Quick question, how're you handling daylight savings? Do you rely on the in-browser JS to figure it out? Or are you using something like moment.JS to handle this for you?
Re: Show HN: Natural Language Time Zone Converter
#3Re: Show HN: Natural Language Time Zone Converter
#4This is the best thing I've seen in a long long time. I spend most of my days co-ordinating between timezones for my phone calls and this would really make my life much easier. Coming from an NLP background, I can say that the front-end simplicity does mask a whole lot of back-end complexity. Quick question, how're you handling daylight savings? Do you rely on the in-browser JS to figure it out? Or are you using some…
Re: Show HN: Natural Language Time Zone Converter
#5This is the best thing I've seen in a long long time. I spend most of my days co-ordinating between timezones for my phone calls and this would really make my life much easier. Coming from an NLP background, I can say that the front-end simplicity does mask a whole lot of back-end complexity. Quick question, how're you handling daylight savings? Do you rely on the in-browser JS to figure it out? Or are you using some…
Thanks! We actually started with NLP libraries, but fell back on plain old regex, which in the end was the right tool for the job, though it got a bit hairy. (Nice to hear from someone who can appreciate it.) As for daylight savings, we use the browser to get a current GMT offset on your first request and determine an Olson TZ, which we cookie. Subsequent requests are passed off to a Node instance for processing alon…
Once again - great job! I'm building complex conversational interfaces and even I think that this really is something.