HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sa3dany

no profile record

comments

sa3dany
·4 years ago·discuss
Would enabling 2-factor auth and using an app-specific passowrd in this case still work? worth a try I guess: https://support.google.com/accounts/answer/185833
sa3dany
·5 years ago·discuss
I remember doing something similar a few years ago, I needed autocomplete for a shipping ports field, the data was too big though so I ended up using a csv file in an aws lamda function that filters based on the selected country and returns a much smaller subset. It lazy loaded after the user selected the country. To keep response times low I had to do a binary search on the raw csv bytes. It felt like I was reinventing databases but I liked the idea of it being self contained in a function.
sa3dany
·5 years ago·discuss
Does it have to load early though, if possible you can load it on demand after the page has fully loaded.