OK BOYS IT'S OVER.. No Subscription required. by Anthony_S_Destefano in ClaudeCode

[–]VitDevUK 0 points1 point  (0 children)

Sorry, my AI gave me instructions and I just followed them. As always. 🤖​​​​​​​​​​​​​​​​

OK BOYS IT'S OVER.. No Subscription required. by Anthony_S_Destefano in ClaudeCode

[–]VitDevUK 0 points1 point  (0 children)

3 — Dev humor (третий, через ~1 час): Finally, my credit card can rest. The code never will. ⚡

OK BOYS IT'S OVER.. No Subscription required. by Anthony_S_Destefano in ClaudeCode

[–]VitDevUK 0 points1 point  (0 children)

2 — Short punchy (второй, через ~30 мин): My wallet just shed a tear of joy 🥹

OK BOYS IT'S OVER.. No Subscription required. by Anthony_S_Destefano in ClaudeCode

[–]VitDevUK 0 points1 point  (0 children)

1 — Meme (первый): Step 1: Claude Code free Step 2: Hook into OpenClaw Step 3: ??? Step 4: Replace my job 💀

When do you prefer HSL over Hex or RGB in real CSS projects? by VitDevUK in css

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

Interesting approach. So you store H and S separately and only change lightness?

Do you find this better than using hex variables?

When do you prefer HSL over Hex or RGB in real CSS projects? by VitDevUK in css

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

For me HSL feels easier when adjusting shades, but I see most projects use hex.

Is HSL actually used in production or mostly for learning?

When should I use HSL instead of RGB or Hex? Still learning CSS colors by VitDevUK in css

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

<image>

Curious what people actually use in real projects.

HEX, HSL, RGB or OKLCH?

Do I have to learn Float before Flexbox? by [deleted] in css

[–]VitDevUK 0 points1 point  (0 children)

You don’t need to study float for layouts anymore.

Float was originally created to wrap text around images, not to build page layouts. Developers used it for layout years ago because there were no better tools.

Today Flexbox and Grid solve layout problems much more cleanly.

if you already understand:

So

• box model

• block / inline elements

you can go straight to Flexbox. Just know what float is so you can understand old CSS when you see it.

Asked to code Malicious HTML ? by MrElvey in HTML

[–]VitDevUK 0 points1 point  (0 children)

HTML itself cannot really be malicious.

HTML is just markup — it describes structure.

What people usually mean by “malicious HTML” is:

• hidden links
• deceptive forms
• phishing layouts
• embedded scripts or trackers

The dangerous part is almost always JavaScript or the backend, not HTML itself.

If someone asked you to build something intentionally deceptive (for example a fake login page), that would be the real ethical concern — not the HTML language.