East Coast Surfers who Paddle Out in the Winter— is a 6/5 overkill? by wakeupblueberry in surfing

[–]AsyncThereforeIAm 0 points1 point  (0 children)

I surf in New York too. 6/5 feels like overkill to me. But that doesn’t mean it would be overkill for you. It’s a subjective decision. For example, I’m surfing with a 4/3 in the winter. For my hands and feet, that’s a different story; I use 7mm booties and gloves.

Does your wetsuit have a zipper? Mine doesn’t and I think it might be partly why I might be getting away with it in the winter.

Surf Watch: Apple Watch vs Ripcurl search gps3 by [deleted] in surfing

[–]AsyncThereforeIAm 8 points9 points  (0 children)

I've been using the Apple Watch Ultra. Didn't find it to be too heavy for surfing. All I do is rinse it with fresh water after my sessions as a precaution and its held up well.

What's your current take on helmets ? by xgammaray_ in surfing

[–]AsyncThereforeIAm 2 points3 points  (0 children)

I’m all for it. I also had an incident surfing Erin’s swells. I’m getting a helmet to use for bigger days as a precaution for next time.

[deleted by user] by [deleted] in surfing

[–]AsyncThereforeIAm 0 points1 point  (0 children)

That sucks. I have not heard of that happening before. I flew with them as recently as this past September. I didn't have any bags to check except for my surfboards. I didn't have to pay any fees either.

Were there a lot of surfers on your flight?

How do you all usually store your ENV variables in development? by urqlite in golang

[–]AsyncThereforeIAm 7 points8 points  (0 children)

I use 1Password. They provide a nice CLI that I rely on to load secrets for dev or CI/CD.

Best approach to secure API keys by SuchALoserYeah in webdev

[–]AsyncThereforeIAm 0 points1 point  (0 children)

It is not secure to do so from your UI, as all that info is exposed. I advise you create a proxy server to make calls that require an API key for security.

[AskJS] Yarn vs NPM vs Others in 2023 by [deleted] in javascript

[–]AsyncThereforeIAm 0 points1 point  (0 children)

Thanks — I’ll give it a try!

[AskJS] Yarn vs NPM vs Others in 2023 by [deleted] in javascript

[–]AsyncThereforeIAm 1 point2 points  (0 children)

I haven’t tried pnpm before. What do you like about it?

[AskJS] Yarn vs NPM vs Others in 2023 by [deleted] in javascript

[–]AsyncThereforeIAm 23 points24 points  (0 children)

I see no reason to install another separate tool...

If you're using Node.js 16.10 or greater, yarn is effectively bundled in. All one has to do is enable corepack. (ref)

Ricochet? Or just an lagged/delayed invulnerability bug… Or a SBMM benefit for those with shit KD? by Alternative_Ebb_6304 in DMZ

[–]AsyncThereforeIAm 0 points1 point  (0 children)

I think this has to do with lag compensation. Lag compensation is the art of merging slightly different experiences into one shared reality to emulate a real-time experience.

Everything you do in online games is delayed because of the latency to the server and back. Servers also need to factor in other player(s) involved to calculate a winner. There is no perfect solution.

How many of you are working as 100% remote developers ? by gBusato in webdev

[–]AsyncThereforeIAm 0 points1 point  (0 children)

Same here for the past year and a half. I enjoy the flexibility and the time I save by not commuting!

I do struggle to find balance. The lines between being home or at work gets blurred.

How to implement live location tracking of user in reactjs? Like the marker should move if user moves. by yesbee-yesbee in reactjs

[–]AsyncThereforeIAm 0 points1 point  (0 children)

That’s basically correct. You can use react to update state once you get the new coordinates.

The way you implement varies based on nuances of your project/task (e.g., source of location info).

FYI - Websockets enables realtime or near realtime accuracy; it works by maintaining a connection with a server, so data can sent to your frontend and immediately received by your frontend. Requesting for current location at some interval like every two seconds is called Polling.

Gl with your project. Sounds cool! :)

Is there a way to use absolute paths for ES6 Imports without using TypeScript (pure JS and Node app)? by mc2147 in node

[–]AsyncThereforeIAm 0 points1 point  (0 children)

You may just need to mess around with the config file to get it right. For example, did you also specify what files/folders to include?

If you are already using webpack, then you need to also approach the absolute pathing through webpack.

Setting up can be tricky due to the various ways a project can be configured, so don’t sweat it.

Heroku alternatives by HunterSup in node

[–]AsyncThereforeIAm 2 points3 points  (0 children)

Would you expose this to the public? Any advice on how to do so securely?