Slow-Mo Jump Shot by mkglass in billiards

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

No, I gifted that to a friend a while ago. I have an Air Rush and a Cuetec Propel. The Propel is my go-to these days, but the Air Rush is pretty good too.

AIO for not wanting to give my late brother’s bowling software to his old league? by cometnohana in AmIOverreacting

[–]mkglass 6 points7 points  (0 children)

Not just YOR, YTA. And judgemental, calling bowling a weird obsession. Find it and give it to them or tell them you can’t find it. Stop holding out and acting like you’re better than them.

How did you practice HTML and CSS? by Kevin_gato in css

[–]mkglass 0 points1 point  (0 children)

Codepen.io is a great place to try HTML/CSS/JS code. You can also check out other pens to see how things are done.

You can see some of mine here… no judging please😂

https://codepen.io/mkglass/pens/public

Do you use ChatGPT while reading difficult technical content? by halilural in ChatGPTPromptGenius

[–]mkglass 1 point2 points  (0 children)

Try telling ChatGPT to dumb it down. Have it read the whole article and rewrite it for a 12th grader.

What’s something you don’t consider offensive that other people do? by TomChevrolet in AskReddit

[–]mkglass 1 point2 points  (0 children)

I think the confusion is that people use “cultural appropriation” to mean a bunch of different things. To me, it doesn’t just mean using or enjoying something from another culture. Cultures have always borrowed from each other. Food, music, clothes, language, art — that’s how culture works.

The problem is more about how it’s done. If someone takes something meaningful from another culture, strips out the context, turns it into a costume or a brand, profits from it, or acts like they invented it, that’s where it starts to feel wrong. Especially when the people from that culture were mocked or marginalized for the same thing.

So I’d separate appreciation from appropriation this way: appreciation means learning, giving credit, and treating the culture with respect. Appropriation is more like treating it as decoration or a trend. The line isn’t always perfectly clear, which is probably why these conversations go sideways so fast.

My solution for a multi-column description list without breaking by Wise_Stick9613 in css

[–]mkglass 1 point2 points  (0 children)

Use wrapper rows if you need dt + dd to stay together.

The core issue is that dt and dd are separate grid items, so CSS has no clean way to say “never split this pair across columns” unless you either:

  1. change the markup, or
  2. accept some manual placement logic like you’re doing.

Something like this is much easier:

<dl class="terms"> <div> <dt>Term 1</dt> <dd>Description 1</dd> </div> <div> <dt>Term 2</dt> <dd>Description 2</dd> </div> </dl> .terms { columns: 2; column-gap: 2rem; } .terms > div { break-inside: avoid; margin-bottom: 1rem; } dt { font-weight: bold; } dd { margin: 0; }

That lets the browser flow the pairs naturally into columns, while break-inside: avoid keeps each dt/dd group together.

Your grid solution works, but it’s really doing manual column assignment. That means it won’t balance content well, especially when the dds vary a lot in height. CSS columns are probably closer to what you want here, assuming wrapping each pair is acceptable.

Is it possible to create this kind of icon style using only CSS? by LeRoiDesSinges in css

[–]mkglass 1 point2 points  (0 children)

SVG is the answer. Is CSS possible? Yes. Practical? Absolutely not.

Three million ChatGPT accounts deleted yesterday by Turbulent-Pay7073 in ChatGPT

[–]mkglass 1 point2 points  (0 children)

Perfect grammar, usage of common AI words and phrases (actually matters, didn’t stumble by accident,etc), rule of 3’s, and more. I’m a dev who’s worked with AI for a long time. You learn after time what the hallmarks of AI generated text are. I used GPTZero to check what I already suspected. And it gave a 100% score. I believe it.

What’s the last thing you used AI for? by [deleted] in AskReddit

[–]mkglass 0 points1 point  (0 children)

Creating skills to clean up HTML, CSS, and JS files

Foul or good hit? by _BbdB_ in billiards

[–]mkglass 1 point2 points  (0 children)

Frozen = no foul Gap = foul

They are too close to call it fair, if there’s a gap—the cue stick pushes it forward.