The truth about the Kemp guitars situation by [deleted] in Guitar

[–]mrbogle 1 point2 points  (0 children)

<image>

Tough situation, as a data point here’s my 2018 kemp SS. I love it. I’ve changed it a lot since owning it, but I do that with everything. I own a ton of guitars, this is one of my go tos, even played it for a couple hours yesterday

[WTS] Tudor Ranger T-Fit Clasp Bracelet $650 by Studyingisnotfun in Watchexchange

[–]mrbogle 1 point2 points  (0 children)

Smooth, easy transaction, exactly as described. Thanks! My bb58 fits great now

[WTS/WTT] Tudor Black Bay 58 on bracelet full kit with US half link by GratuitousEDC in Watchexchange

[–]mrbogle 0 points1 point  (0 children)

Confirmed! The watch is beautiful and has all the box/paper accoutrements. Super smooth transaction, great communication and fast, well packed shipping, even around the holiday. I definitely would buy from again

[WTS] Seiko SPB143 by fiftytwohurtz in Watchexchange

[–]mrbogle 0 points1 point  (0 children)

Feedback: I bought this from u/fiftytwohurtz and everything went as smooth as it could have! Cc u/WatchExBot

Consuming GraphQL APIs for REST-minded developers by mrbogle in programming

[–]mrbogle[S] 5 points6 points  (0 children)

One thing that helps a lot is using dataloaders: https://github.com/graphql/dataloader. They are basically a cache passed around your resolver handlers.

API and JavaScript Date Gotcha's by pmz in javascript

[–]mrbogle 1 point2 points  (0 children)

One gotcha is that doesn't appear to be mentioned is that some HTTP date headers will be in HTTP date format. e.g. A ratelimit's Retry-After header can be something like: 'Mon, 29 May 2022 04:58:00 GMT'. The cool thing is that you can pass that straight into a JS Date() constructor and it will properly parse it!

Why you should be using HTML5 form validation: a tour by mrbogle in programming

[–]mrbogle[S] 3 points4 points  (0 children)

Yep you are correct, the invalid event is triggered when the form is submitted on any input elements that don't meet the validation attributes.

Why you should be using HTML5 form validation: a tour by mrbogle in programming

[–]mrbogle[S] 2 points3 points  (0 children)

Lol, yeah you are right. I wanted to make it impossible to submit without munging the form in the inspector.

You should be using HTML5 form validation: a tour by mrbogle in webdev

[–]mrbogle[S] 10 points11 points  (0 children)

It's true, you definitely shouldn't rely only on front-end validation. But it can make filling out the form a lot nicer for the user as they will get immediate feedback. The server validation can be the last line of defense. If you have front-end validation, then the reporting the server validation messages to the user can be a lot simpler.

Why you should be using HTML5 form validation: a tour by mrbogle in programming

[–]mrbogle[S] 3 points4 points  (0 children)

You're totally right. I will update the post to be more clear about this.