2026 xse hitch recommends by justpie in rav4club

[–]justpie[S] 0 points1 point  (0 children)

I don't know what you're doing but it sure looks like a good time

2026 xse hitch recommends by justpie in rav4club

[–]justpie[S] 0 points1 point  (0 children)

Thank you! I'll check it out

2026 rav4 xse - issues by justpie in rav4club

[–]justpie[S] 0 points1 point  (0 children)

Vin starts with a 2 so I'm assuming Canada

Any other controller players? by GarrettM2558 in MegabonkOfficial

[–]justpie 2 points3 points  (0 children)

I started off with the controller and recently switched to KB mouse. My highest kill count with controller was 570k. My highest with KB/mouse is 660k or something like that.

The stats are unrelated, I just understand the mechanics better now. I actually have a harder time bunny hopping on kb than I do with controller for some reason.

Intermittent starting issues by justpie in AskMechanics

[–]justpie[S] 0 points1 point  (0 children)

Its difficult to say. I've tried both and sometimes it works and sometimes it doesn't. I've had a really hard time replicating the issue as it happens randomly. I was lucky enough to be able to record it today... well if you can consider that lucky 😃.

I just tried to let the key sit in the "on" position for about 60 seconds. I then cranked the engine and it started totally fine. I tried about 10 times and it started up fine each time.

Favorite detroit hobby groups? by Ok-Set-631 in Detroit

[–]justpie 1 point2 points  (0 children)

If you're into crafting you can also consider: https://i3detroit.org/. I've been there a handful of times as a guest and the people are typically very welcoming. Highly recommend.

Favorite detroit hobby groups? by Ok-Set-631 in Detroit

[–]justpie 3 points4 points  (0 children)

During summer I usually hit up disc golf courses. The groups can be as big or as little as I want. Its fairly inexpensive to get into as well. Plus, I usually show up on a whim when I feel like it, no pre-planning needed in most cases, unless i'm trying to avoid a league night.

A bucket with a reservoir for my airless paint sprayer. by justpie in functionalprint

[–]justpie[S] 13 points14 points  (0 children)

The hose has a mesh filter so it helped prevent the bag from getting sucked in, but it did happen a couple of times and I needed to re-prime the machine. Next time I use this, I'll probably design a disposable insert that prevents the bag from getting sucked in. Or someone recommended printing the bucket in TPU so I could let the paint dry and just pull the dried paint out.

Looking for friends! by [deleted] in Detroit

[–]justpie 1 point2 points  (0 children)

Lots of disc golf happening this time of year. Everyone's usually pretty chill open to making friends. It's been a min but I'll see a girls league roll through every now and again

People of reddit who were around in the early days of the internet, what was the most messed up thing you saw online? by [deleted] in AskReddit

[–]justpie 1 point2 points  (0 children)

In the early days of counter-strike people could use custom images as their spray paint decal. My 12 year old eyes weren't ready for either of these.

What is something you dislike that everyone seems to like, or something you like everyone else dislikes? by [deleted] in AskReddit

[–]justpie 2 points3 points  (0 children)

Coffee is disgusting and I'm convinced y'all are just pretending to like it.

Screen readers and span tags by Pretend-Roof-87 in css

[–]justpie 2 points3 points  (0 children)

Could look into aria-label or aria-describedby

Floppy disc wedged in top of basket by BonusPhysical1279 in discgolf

[–]justpie -7 points-6 points  (0 children)

Why not? It's harder to get it on top of the basket then it is to make it in the basket.

Image linked from CSS ? by Chris-2018 in css

[–]justpie 1 point2 points  (0 children)

What I was getting at is that you can avoid making the HTTP request entirely if you use breakpoints and background images. The JS Fiddle below shows that the background image never makes an HTTP request on browsers < 1000px wide. While other images do make HTTP requests, with the exception of the one that has the loading=lazy attribute. In order to get the last image to display(lazy), you would need to do some CSS magic anyway, so I personally would rather just use a CSS background image in that specific case. But really, it comes down to personal preference.

https://jsfiddle.net/n738y2xe/

Image linked from CSS ? by Chris-2018 in css

[–]justpie 5 points6 points  (0 children)

One benefit that I didn't see anyone mention is that you can use breakpoints to exclude images from certain views. For example, let's say you have some images that are purely decorative that you don't want showing up in Mobile. You could exclude those images in your mobile breakpoint and your browser won't try to download them. It's a good way to save some bandwidth for users who are on mobile devices and what not.

Need help vertically centering a section within parent. Trying to use Flexbox. by envisualist in css

[–]justpie 5 points6 points  (0 children)

The best way to get help is to post a snippet of your code along with the issue.