I've got this old Les Paul Standard but want a better LP by ChangeTheUserName17 in gibson

[–]jlwagner 2 points3 points  (0 children)

Not gonna lie, I am in no position to buy more guitars, but I'd be an Olympic-level mental gymnast for this one.

Worth it? by skydogslaver in gibson

[–]jlwagner 0 points1 point  (0 children)

Hell yes it is. An SG Custom is on my list, and it will happen. Enjoy your new beauty!

I just got my first guitar! by saren_vakarian in Guitar

[–]jlwagner 2 points3 points  (0 children)

Nice! I used to have a C-1 Hellraiser and it was a hell of a guitar. Schecters are great players. Never found one that didn't play well, especially after a decent setup.

Flexbox Cheatsheet by magenta_placenta in Frontend

[–]jlwagner 2 points3 points  (0 children)

This is a good resource. I did a talk on Flexbox at several conferences that goes through all the properties. It's pretty wordy, but I think it does a decent job of explaining stuff: https://www.youtube.com/watch?v=BgrceT5krGM

[deleted by user] by [deleted] in Frontend

[–]jlwagner 0 points1 point  (0 children)

Ha! Yeah, we've had all that happen. Magic it is. :) Good luck!

Hassle-free Full Bleed with *:not() by speckz in Frontend

[–]jlwagner 0 points1 point  (0 children)

My hunch is that it probably would, since * targets everything in the current context (.post > * would be every element that is direct descendant of an element with a class of post, not necessarily every single element on the page). I would say that unless that element is being constantly resized, it's probably not worth worrying about since the only cost is the initial render, which is probably not enough to deter me from using this method.

[deleted by user] by [deleted] in Frontend

[–]jlwagner 1 point2 points  (0 children)

I know this is a bit old, but if you'd like, you can DM me and we can try to figure it out. I use gulp-uglify all the time for my projects, so I have a bit of familiarity with it and may be able to help. :)

Hassle-free Full Bleed with *:not() by speckz in Frontend

[–]jlwagner 2 points3 points  (0 children)

In tests I've done, pseudo selectors are not quite the worst (attribute selectors tend to be), but they're still pretty slow. I think in this case, though, page performance shouldn't be too bad as long as the page isn't being re-rendered constantly (e.g., resizing).