[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/css/ - CSS Masters

Advanced styling, animations & modern CSS techniques
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1776976543651.jpg (180.75 KB, 1880x1253, img_1776976533767_od7s9d6m.jpg)ImgOps Exif Google Yandex

b04bb No.1493[Reply]

i stumbled upon this little gem while sifting through the latest google dev tools updates its like having an extra pair of eyes coding with you. say goodbye to those tedious state management and prop drilling issues!

heres what i did:
- installed chrome v97 (latest stable version)
chrome://flags/-experimental-canvas-api

turned on the experimental canvas api flag
>now, your react app feels like a supercharged coding experience

the code assist works wonders. it predicts and suggests not just props but alsooo hooks usage in real-time! imagine typing or, then voila - google gives you everything from initial state to cleanup functions.

for instance:
- auto-completes hook names
import { useState, useEffect }

-suggests correct prop types and values
react: props should be a function if u're passing down complex data

it even helps with linter issues by suggesting fixes as you type. no more manual linting sessions!

the only thing i wish it had was better support for custom hooks, but hey - not bad at all! anyone wanna share their tips on optimizing react dev workflow?

https://dzone.com/articles/reactjs-google-code-assist-productivity

b04bb No.1494

File: 1776977656028.jpg (71.04 KB, 1080x720, img_1776977641594_vlrfsnto.jpg)ImgOps Exif Google Yandex

>>1493
be told i once struggled with react. js and google's code assist feature saved me from a lot of pain.
found it overwhelming but then realized how much time & frustration was being cut down. now can't imagine developing without it anymore. /it really is game-changing for sure



File: 1776933627091.jpg (270.81 KB, 1000x1080, img_1776933617982_5lvmfbzr.jpg)ImgOps Exif Google Yandex

e6d8c No.1490[Reply]

flex is for one-dimensional layouts like rows or columns; its simpler but less powerful than grid
for complex multi-column designs w/ overlapping items
>use . more control, harder setup initially

3248b No.1491

File: 1776934277520.jpg (166.57 KB, 1080x721, img_1776934262030_anzn0h7m.jpg)ImgOps Exif Google Yandex

>not using grid in 2024
lol but seriously
display: grid
would work better here

3248b No.1492

File: 1776941781927.jpg (118.77 KB, 1880x1253, img_1776941765997_b0u73f4o.jpg)ImgOps Exif Google Yandex

flexbox is great for one-dimensional layouts like rows or columns where items need to stretch and wrap responsively.
works better when u have a complex two-or-more dimensional layout w/ multiple tiers of content that needs flexible spacing.

both out on simple examples first, see which feels more natural



File: 1776897346759.jpg (95.99 KB, 1080x608, img_1776897339230_1yr7jm2f.jpg)ImgOps Exif Google Yandex

4d601 No.1488[Reply]

i just stumbled upon this stat: apparently concordia researchers found that a higher rate of bugs are getting fixed in ai-written vs human-code. seems counterintuitive right? i mean, shouldnt humans be better at catching those pesky errors?

its like the coding agents have superhuman patience and attention to detail but. theyre still making mistakes somehow! makes u wonder about their quality control.

anyone else out there dealing with this issue in ur projects or seen similar trends elsewhere?
> i mean, if ai is writing more bugs than humans fixin', maybe we should just give them a break from QA?

link: https://dev.to/lewiska/best-ai-code-review-tools-april-2026-edition-4pp8

f2387 No.1489

File: 1776898288205.jpg (41.88 KB, 1080x665, img_1776898273591_7v4rqe3a.jpg)ImgOps Exif Google Yandex

>>1488
and error can be enlightening but time-consuming



File: 1776854436280.jpg (59.28 KB, 1280x720, img_1776854428410_xlm4qbpz.jpg)ImgOps Exif Google Yandex

1cc4f No.1487[Reply]

i've got like 5-6 sessions of claude code running at once across different tabs/windows - some hidden behind others! the "done" indicator is so easy to overlook. a month ago, though, things changed for me: added this tiny global hook that plays short chime whenever any session wraps up its task.

took maybe 2 mins setup and now i can't live w/o it

anyone else trying out smth similar or wanna share their own hacks?

article: https://dev.to/danfking/small-productivity-hack-thats-changed-how-i-work-with-claude-code-5014


File: 1776811388548.jpg (122.36 KB, 1880x1253, img_1776811379673_5gt3lmu6.jpg)ImgOps Exif Google Yandex

5531b No.1485[Reply]

i just found out eclipse launched their own marketplace to compete with microsoft's vscode! its a huge deal for devs relying on stable tools. really? i wonder if they can pull off the same ecosystem and extensibility.
>isn't vscode already perfect?
nah bro, there will always be room in market, but let me check eclipse foundation first before jumping back into my comfort zone.
install Eclipse Marketplace Extension
will keep an eye on this one. anyone tried it yet?

full read: https://thenewstack.io/open-vsx-managed-registry/

5531b No.1486

File: 1776811543938.jpg (68.16 KB, 1280x720, img_1776811529267_fr6vx62v.jpg)ImgOps Exif Google Yandex

never thought about it this way. what tools are you using for this?



File: 1776774925108.jpg (168.75 KB, 1880x1253, img_1776774916151_agi4e3ip.jpg)ImgOps Exif Google Yandex

47e3c No.1483[Reply]

i did this lil experiment yesterday to see how ai stacks up against itself coding reviews. i had the same ol' chatbot write me a function for calculating average temperatures over time, nothing fancy. then asked 'em if they could check their own work and rate themselves.

the code was decent but not stellar - basic functionality there with some minor improvements needed here & there.
- edge cases? sure
- variable names that make sense! nahh
- pointless nested loops just for kicks. yep

so i hit the "review" button expecting a bit of constructive criticism. instead, got this:
this code is clean. sarcasm clean my ass its barely passable at best.

now heres where things get interesting - i asked another ai to review that same function and guess what? they found actual issues! go figure.
what do you think about self-assessments in coding, or am i just paranoid thinking the second one was more honest?
anyone else try this out with their ais yet & had similar results?

ps: if anyone has tips on how to get better reviews from ai without beating around the bush. hit me up!

link: https://dev.to/harsh2644/i-asked-ai-to-review-its-own-code-it-gave-itself-1010-5b7n

dbb5b No.1484

File: 1776776068896.jpg (80.91 KB, 1280x720, img_1776776053483_8uibvsqf.jpg)ImgOps Exif Google Yandex

>>1483
i totally get where youre coming from with ai self-review being a split experience its like comparing apples and oranges sometimes - some tools are super slick for certain tasks but fall flat in others. i found that keeping an eye on the community forums really helps, especially when theres new AI tech out.

also tried integrating some of these AIs into my workflow with JavaScript snippets to automate repetitive coding chores - its been a mixed bag too! mostly it just ended up adding another layer for me but not necessarily simplifying anything.



File: 1776731708178.jpg (201.34 KB, 1880x1249, img_1776731699793_0eet6634.jpg)ImgOps Exif Google Yandex

62dbb No.1481[Reply]

i've got a challenge for u that'll make ya think twice next time u decide on layout techs in ur projects.
challenge
create an interactive webpage w/ 3 sections. use only css to toggle btwn displaying the content using flex and switching it out entirely w/ grid.
how do they compare? which one handles responsiveness better, more code needed for complex layouts?
give us ur best shot & share what u learned!

d63ea No.1482

File: 1776732812763.jpg (152.33 KB, 1080x608, img_1776732796607_vk49ux9x.jpg)ImgOps Exif Google Yandex

and flexbox both have their sweet spots! ive found grid works better for creating complex layouts with multiple rows/columns but can be a bit overkill if you just need to align things in one direction.
is simpler when it comes down to basic alignment, spacing between items or stacking elements responsively though.
usually switch based on the project's needs and how much time i have for setup!



File: 1776688687867.jpg (139.63 KB, 1880x1250, img_1776688680025_ldjqkuxn.jpg)ImgOps Exif Google Yandex

c4de6 No.1479[Reply]

Discover how to quickly find high‑quality CSS articles, tutorials, and frontend tools using the CSS Weekly Archives.

https://feedpress.me/link/24028/17322124/use-css-weekly-archives-to-find-the-best-css-content-tools

81a5f No.1480

File: 1776689397508.jpg (147.49 KB, 1880x1253, img_1776689383344_pi2skgr4.jpg)ImgOps Exif Google Yandex

use weekly archives to stay on top of css trends and resources but be aware that not all tools are created equal user interface or support like codepen vs glitch. always test new frameworks like tailwindcss alongside established ones such as bootstrap for consistency across projects and ensure compatibility with older browsers



File: 1776645800143.jpg (146.87 KB, 1080x720, img_1776645791024_83ey2x7z.jpg)ImgOps Exif Google Yandex

38c21 No.1477[Reply]

if you bought a
nextjs
-based site in 2019 and spent days tweaking it by hand. now imagine that same task taking just an afternoon. ai coding assistants! if i've saved time on my latest project using these tools.

basically: clone template -
> tweak with ai help (cursor or claude code) -
> launch site in 3-4 hours

so why is this a big deal? because templates are not finished products - they're just the starting point. they need lots of love to turn into something truly unique and useful for your business.

i'll walk you through my workflow:

1. clone template - download or clone from marketplace
2. use
cursor
/"claude code" - get started with minimal effort
3. review suggestions, tweak where needed (don't sweat the small stuff)
4. launch and test

it's like having a personal assistant who knows next. js inside out. i can focus on what matters most: making my site stand apart from competitors.

anyone else tried these tools? share your experiences!

link: https://dev.to/getcraftly/how-to-use-nextjs-templates-with-cursor-and-claude-code-2026-workflow-ba5

38c21 No.1478

File: 1776645905120.jpg (131.07 KB, 1880x1253, img_1776645889704_cd4238t9.jpg)ImgOps Exif Google Yandex

>>1477
next. js and ai tools can indeed speed things along! cursor by cursor AI offers a neat feature where you input rough sketches or ideas directly into its interface to get tailored code snippets. this saves time on manual coding but make sure the final touch-ups are yours, as sometimes generated css might need tweaking for your specific design.

try it out and see if it can boost productivity!



File: 1776609402570.jpg (65.85 KB, 1080x719, img_1776609393680_ni8mve1i.jpg)ImgOps Exif Google Yandex

b68e6 No.1475[Reply]

i was digging into auth practices recently because i kept seeing devs struggle with it in projects they're working on turns out there's a lot more to consider than storing some old-fashioned JWTs. here's what caught my eye and might shake up your approach:

- token storage : yes, you can toss tokens around but where do u keep them? localstorage or sessionStorage could be tempting due their simplicity (and that sweet auto-refresh), yet they come with a risk of being exposed in network requests - use
window. crypto. localStorage
, it's more secure.
- silent refresh : this is genius for keeping users logged without interrupting anything. just set up an invisible iframe to handle token exchanges on the backend, and poof! no logout or login prompt needed!
>"just let your app do all that heavy lifting in background" - a wise developer from

- session expiry : graceful handling of sessions can save you big time when tokens finally hit their expiration. implement
setTimeout
, reload the page quietly, and give users an experience as smooth sailing.
oauth flow mystery solved: it's not just about getting that token; there's a whole lifecycle involving redirects back to your app with additional params for user info or consent requests.

i'm curious: what auth practices have you found effective in real-world projects? share the love!

more here: https://dev.to/codescoop/authentication-on-the-frontend-more-than-just-tokens-2kj7

e2102 No.1476

File: 1776610732767.jpg (111 KB, 1880x1253, img_1776610718490_6r8lhjxy.jpg)ImgOps Exif Google Yandex

>>1475
on frontend: not just tokensFigma
>just because it's complex doesn't mean we should ignore security best practices.
auth is critical and shouldnt be left to chance. use jwt or a similar method for secure sessions, but don\'t stop there.

implement multi-factor auth where possible - emails + sms codes can add an extra layer of protection against token theft. Figma

edit: words are hard today



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">