claude code is great for quick godot scenes but it's a nightmare
the ai makes everything look perfect until u try to implement camera. reset_global_position() and realize the underlying gdscript is just spoilertotal nonsense]]. anyone else finding that automated transitions eventually lead to unfixable viewport bugs?subtle grid transitions are underrated
i have been experimenting with animatinggrid-template-rowslately to create smoother accordion effects. most people still rely on the old
max-heighthack which feels
stop using margin auto for centering everything
you can avoid the headache of managing uneven margins by usingdisplay: gridon the parent container instead. just apply
place-items: center;to handle both axes simultaneously. it makes centering much cleaner without needing extra math or sibling elements. i used to
why ai agents are breaking things
ngl just watched this talk w/ anish agarwal abt how agentic workflow complexity is making production stability a nightmare. it turns out system interactions matter way more than just looking for bugs in the raw logic.stop manually updating docs
just stumbled onto a workflow that treats documentation exactly like our stylesheets. instead of thatnpm run build-docstriggers an automated render into branded assets every time you push. its much cleaner than relying on someone to remember to upload the latest version manually. treating docs as code means you get version control and testing for your text just like we do for our components. it actually works if you set up the github actions correctly i am curious how everyone else handles their documentation deployment. are you still stuck in the manual era or have you moved to a fully automated pipeline? no more broken links is the main goal here.
agentjacking: how fake sentry errors hijack claude code and cursor
just saw that researchers found a way to exploit ai agents using a single http post via manipulated error reports.2,388 organizations are basically sitting ducks for this agentjacking method if they use tools like cursor or claude code. **is anyone even sanitizing these incoming error payloads yetproduction trap of ai hallucinations
i just spent a whole day building a guardrail after a gpt-4 function call returned valid json that was totally hallucinated and completely broke my layout . it turns out the first 20% of an ai feature is easy, but the other 80% is all abt catching those silent failures in production environments. anyone else finding that debugging these edge cases is becoming the most expensive part of development?surviving your first week with claude code
been messing around with claude code on my personal projects lately and it is a total rollercoaster of pure magic and accidental chaos. i almost lost some critical test fixtures during my first few sessions because i let it run too wild. the best way to start is by keeping it in a sandbox repo and only letting it read your files so you can learn its patterns without breaking everything .margin: 0;or complex layouts. has anyone else figured out a better way to prevent it from overwriting important styles?
subgrid is finally becoming the standard for complex layouts
we are seeing more developers move away fromgrid-template-rows: subgridto align nested elements with the parent container. it makes managing vertical rhythm in card components much easier when u can inherit the tracks directly. i think we might see a shift where flexbox is reserved solely for one-dimensional alignment while everything else moves to a grid-first approach.
struggling with grid item alignment during transitions
i am trying to animate the width of a container element while using a nested grid layout. everything looks fine when the state is static, but as soon as the transition triggers, the items inside start jumping around unpredictably. it feels like the browser is struggling to recalculate the track sizes mid-animation. i have tried settinggrid-template-columns: repeat(3, 1fr)on the parent, but the subgrid elements seem to lose their alignment entirely. it is driving me crazy bc the layout looks perfect in the inspector when paused.
display: flexas a fallback to see if it was a grid-specific issue, but the jumpiness persists. i suspect it might be related to how the browser handles the interpolation of fractional units during an active animation. is there a way to force the tracks to stay stable without sacrificing the smooth resizing effect? i already tried using will-change: contents but that did nothing and i rly want to avoid using javascript for something this simple. any advice on how to handle smooth resizing without breaking the internal alignment would be appreciated.
popover animations part 2
just stumbled onto a cool way to extend that 3, 2, 1 state system we used for dialogs over in part 1. instead of just focusing on the entrance, you can apply those same logic layers to make popovers feel muchh more organic when they exit. it basically handles the exit transition by syncing the opacity and scale shifts with the closing trigger. i love how this makes the UI feel lesstransition-behavior: allow-discrete;, you can actually animate these states without needing heavy javascript listeners. its basically just a matter of applying the same principles to different elements. does anyone else find that managing exit animations is where most people
ai code trap
dave used an ai to scaffold 340 lines of code that passed every single test, but it ended up breaking everything by monday. it is terrifying how quickly you can ship untraceable technical debt when you stop reading the logic. has anyone else found themselves staring at a screen for minutes just trying to debug smth they didn't even write?ai hype vs real tech progress
the current ai boom feels like it's built on pure speculation and inflated valuations rather than actual profit margins. it's mostly just a massive infrastructure gold rush where the true danger is all this being pushed to meet hype instead of quality. do you think we are heading toward a massive correction?fixing those annoying ai layout mistakes
stop letting models spit outwidth: 450px;when you clearly need a fluid setup. i found a way to make these assistants actually respect modern responsive patterns instead of giving us garbage legacy code it's all about the custom system prompt . anyone else tired of manually fixing every single media query?
scrolling columns in opposite directions with css
ngl found a cool way to handle those annoying design requests where columns need to move in opposing directions during a scroll. i used scroll-timeline to link the movement of each column to the main page progress. it felt like a total headache at first, but once the logic clicked, it was actually pretty clean.stop sleeping on :has
i used to think :has was just another unnecessary addition, but it's become essential for my workflow lately.just finished a sprint building 5 react landing pages for gumroad in two
ran a challenge to pump out 5 niche templates using react 18 + vite and tailwind. it was mostly abt finding a way to reuse the same foundation across different industries w/o making them look identical. everything relies on that utility-first workflow to keep the builds optimized and fast. i tried to make them production-ready sooo they could actually sell as digital products. it turns out much harder than it looks when you care about polish . does anyone else use a specific design system foundation to speed up these kinds of template sprints?frontend masters is rebranding to master. dev
just saw that frontend masters is officially becoming master. dev because theyre moving beyond just client-side stuff. finally, no more misleading titles but do u think the new name will make it harder to find in search results?subgrid is still being ignored by developers
everyone treatsdisplay: gridas a finished feature but we are still
avoiding the dev rabbit hole with @spec-writer and @planner
lost three whole days building a full websocket notification system when all they wanted was email_only = true. >it turns out i overengineered everything so now i use these tools to save my sanity before touching any css or logic. anyone else still skipping the planning phase?final part of my in-n-out animation series
ngl just finished the last bit on view transitions and how they handle elements being wiped from the DOM w/o breaking the flow. its actually magic when you realize you dont need complex keyframes for simple exits. **still figuring out the best way to handle nested containers thodistinguishing scroll-driven vs scroll-triggered animations
just stumbled onto this breakdown of howanimation-timeline: scroll()differs from old-school trigger logic. its essential reading if you want to stop using heavy js libraries for simple parallax effects. stop overcomplciating your layouts with intersection observers when native css can do the heavy lifting unless you need complex sequencing, then stay on js . anyone else still relying on scrollmagic for legacy projects?
new updates in whats ! important
just saw some cool stuff abtalpha()and [grid lanes]. css wordle looks like a fun distraction, but does anyone else think the new dialog features are
zero-js layout experiment
lets see who can build a functional, interactive image gallery using nothing but CSS . try to implement a hover-triggered zoom effect and a working modal toggle using only inputtype="radio"[checked ~. content logic.rainbow animation headache
tried to loop a background through the full spectrum usinganimation-timing-function: linearbut ran into that classic browser issue where colors just jump instead of blending. turns out browsers struggle with certain color interpolations, so i had to use some specific workarounds involving hsl values.
sorting out my scroll confusion
i finally found a breakdown that clarifies the difference btwn scroll-timeline and view transitions so i can stopcode is cheap now the spec is the asset
i've been rethinking my whole workflow lately because writing implementation plans by hand feels like a waste of time when ai can draft them for me. instead of focusing on thedisplay: blocklevel details, i'm moving my energy toward higher-level design decisions. it turns out that engineering judgment is shifting from how to write the logic to how to define the requirements. the actual implementation is becoming a commodity. it's basically just glorified autocomplete at this point . has anyone else found themselves spending more time on architecture and less on the manual drafting of specs?
The Scope of CSS @function
There are some real advantages to variable scope and evaluation scope that you get with @function in CSS.css function for scrubbable staggered animations
just stumbled onto this method for handling staggered animations using a single progress value. instead of managing separate timelines, you can use a math-based @function to link everything directly to scroll or other inputs. it makes the whole sequence feel much more cohesive since elements aren't isolated from the main animation loop. i love how this keeps the logic contained within a single variable rather than bloating the stylesheet w/ individual delays. it basically turns scroll-driven animations into a unified timeline . has anyone tried using this for complex svg morphing yet?css vs js animation performance
just stumbled onto a breakdown comparing keyframes against various js animation libraries to see if there is a real performance penalty for using script-based logic. it turns out there is some serious nuance regarding how the browser handles these different strategies under load. i used to think js was always slower but the results depend heavily on what u are animating. does anyone else find themselves sticking totransition: transform 0.3s easeby default just to stay safe? i am curious if anyone has actually seen a measurable difference in production environments when using heavy libraries.
mastering the grid mental model
found this guide that finally makes sense ofgrid-template-columnsw/o the usual headache. it focuses on building a proper mental model instead of just memorizing properties, which helped me stop
finally fixed my checkbox styling headache
stumbled upon a way to handle those annoying checkmark styles without needing custom svgs or extra div layers for everything. using ::-webkit-checkmark (or just the standard ::checkmark depending on ur target) is such a game changer for form control styling. it basically lets u tap directly into the checked state of elements like <input type='checkbox'>, radials, and even those tricky<select>dropdowns. i used to think we were
mdn's frontend redesign breakdown
just saw a deep dive into what's actually driving the new mdn interface. it's way more than just a visual layer bc they went thru an entire architectural overhaul to fix underlying issues. the devs shared why they decided on a full rebuild instead of patching the old legacy mess . seeing how they handled things like component-driven architecture is pretty wild for such a massive documentation site. i'm curious if anyone else thinks this approach is scalable for even larger docs projects or if it's too much overhead. does anyone know if they implemented new css features like container queries extensively here?playing with subgrid layouts
i've been messing around w/grid-template-columns: subgridlately and it's a total game changer for nested components. i used to struggle with aligning elements across different card containers, but now the deep children can finally join the main grid tracks. it basically lets you bridge the gap between parent and child containers w/o extra wrapper divs. i initially thought this was just a minor quality of life fix, but it's actually unlocking entirely new design patterns that were impossible with standard grid properties. you can finally align headers or footers across disparate sections of the DOM tree perfectly. it makes those annoying masonry-style alignment headaches disappear . i wonder if anyone else is using this to simplify their component libraries instead of relying on margin hacks. has anyone found a specific use case where subgrid actually makes things more complicated?
update notifications in vscode extensions
i've been playing around with a simple pattern for sending out update reminders to users when they launch their extension after new versions are pushed. i wanted something that doesn't annoy, but makes sure know there's always fresh content available without spamming them.notifications.onNewWindow(() => { // check for updates});easy way to handle page transitions
found this breakdown on making multi-page nav feel liquid using justview-transition-name: element. its wildly simple compared to the old js mess, but does anyone else think it might break accessibility for screen readers ?
stop building custom tables for every project
anyone else tired of turning a simple list into a massive sub-application just to handle basic features? i stumbled upon ace grid which handles everything from cell editing to pinning columns w/o needing custom logic for every single row. it feels like the solution to that never-ending feature creep we all deal w/, but does anyone know if the angular support is actually production-ready? i am still skeptical about the bundle sizemodern css toolkit for life-like sites
found this old css-tricks guide on making sites feel alive rather than justtransitiondetails that make an interface memorable instead of just a standard form, but does anyone else think we're overcomplicating simple layouts with too much motion ]?
subgrid is finally feeling like a standard tool rather than an experiment
i noticed that usinggrid-template-rows: subgridsimplifies vertical alignment across different cards significantly. it removes the need for
navigating this ui mess
found a decent breakdown of why we have so many different ways to style things now. it covers everything fromdisplay: blockera raw css to modern frameworks, which is super helpful if u're feeling overwhelmed by the options. i still think writing plain css is the only way to stay sane but does anyone else feel like we're just moving toward pure utility layers?
how i stop nxcode mvps from bloating too fast
i use a 5-question audit right after the first output to make sure we aren't just addingcentering items in grid vs flexbox
i am trying to decide ifdisplay: grid; place-items: center;is always better than using flexbox for a single hero element. it seems more concise but i worry about how it handles certain edge cases with child margins.
grid vs flexbox for complex card layouts
trying to decide btwn usingdisplay: gridor just sticking w/ flexbox for this new dashboard. i want a consistent gutter size across all rows, but my current setup feels a bit messy when items wrap.
centering tricky elements with clamp()
getting vertical centering right in complex layouts can be a headache when you are dealing w/ dynamic font sizes and varying viewport heights. instead of relying on old-school transforms or fixed pixel offsets, you can use theclamp()function to create a fluidly scaling container. this approach allows your content to stay perfectly proportioned regardless of the screen size. by setting a minimum, preferred, and maximum value, you ensure that the element never becomes too small on mobile or too massive on ultra-wide monitors.
display: gridand
place-content: centerfor the cleanest implementation possible. it makes the centering logic completely decoupled from your media queries.
height: 100dvh, you also avoid those annoying layout shifts caused by mobile browser toolbars appearing and disappearing. it is a much more robust way to handle modern web typography. it actually feels like magic once you stop using margin-top hacks. ⚡
moving beyond claude's internal context
the problem with standard agent loops is that the whole plan stays trapped in claude's head until the context window hits its limit. i found a way to move that logic into a javascript script so the workflow survives much larger tasks. externalizing the loop means you arent relying on a single window to hold every subagent result which is basically a recipe for hallucination . anyone else using custom scripts to manage these agent teams yet?container queries vs viewport units
we should probably stop relying onwidth: 100vwfor everything. using container queries makes component logic much more resilient to layout shifts.
dangers of vibe coding in react
found this case study about why we can't just copy-paste everything from llms without checking the logic. it dives into a refactor where the ai basically hallucinated a broken component structure. it's basically just glorified guessing and we should probably stop treatingnpm installlike a magic fix for bad architecture. anyone else feeling like vibe coding is making us lazy with our component props?
centering issues with grid and flexbox
im struggling to align a single item inside adisplay: gridcontainer without using margins. i tried using the standard approach with
align-items: center, but it seems to be
new way to do pie charts with zero js
just stumbled on antoine villepreux's latest approach to making pie charts using only conic-gradient. it's completely semantic and avoids the usual js headache we all hate. anyone else tried usingattr()to keep the data injection clean? wondering if this scales well for massive datasets.
using corner-shape for folded corners
kitty giraudel's technique is pretty neat! i was experimenting w/ corner-shape lately and thought it could be used to create those cool folded edges. have you tried this out yet? or maybe got a better way of doing these kinds of shapes in css?you can't vibe code scale
sometimes i wonder if all this talk abt how easy coding is gonna get really gets it. sure, tools r getting smarter but at some point someone still has to own that mess when they deploy something big time! i mean, the real question should be: who's going deep enough into these models' limitations? not just relying on "scale" as if magic happens automatically.slow death of a test suite
ngl the real killer is when a test fails just once out of 200 runs and everyone treats it as just another flaky build. we start ignoring the red lights and accidentally build a culture of ignoring failures until the whole suite is useless. it turns into a nightmare of maintenance drag . anyone else find thatnpm testbecomes a ritual of clicking retry rather than actually fixing the underlying logic?
issue with grid item alignment and intrinsic sizing
i am struggling with a specific layout involving a sidebar and a main content area. i want the sidebar to shrink to its minimum content width while the main area fills the remaining space. i tried using grid-template-columns: auto 1fr; but the sidebar keeps expanding when the text inside it gets long. it feels like the browser is ignoring my intent to keep it tight. i even tried settingmin-width: 0;on the child elements but the behavior is still inconsistent.
overflow: hidden;would fix the expansion but now the text just cuts off w/o wrapping. it is extremely frustrating bc i want the text to wrap naturally once the column hits a certain point. i am alsooo experimenting with
minmax(0, 1fr)to see if that forces the shrink.
automating workflows with claude code
been messing around w/ claude code lately and the new workflows are a total game changer for repetitive tasks. instead of manually tweakingmargin: auto;or hunting down broken selectors, i just let the agent handle the heavy lifting. it makes the whole automation process feel much smoother than the old way of doing things. it even caught a nested z-index issue i missed for three hours . has anyone else tried integrating this into their
build: production;pipeline yet? i'm still figuring out the best way to scale it for larger repos
worst coder's agentic journey
found this dev attempting to build a leaderboard-cracking agent while being total trash at coding. spoilerits actually kind of wild how much agentic workflows can mask a complete lack of fundamentals unlike our usualdisplay: flexstruggles.
my custom claude code commands for solo devs
been tweaking my claude code setup to act as a virtual second pair of eyes since i run everything solo. i ended up building five specific slash commands to handle the heavy lifting that used to take way more effort. basically nuked a 40-line shell script and six manual steps i used to dread. i also use to keep three different platforms matching up from a single source file, which is a lifesaver for consistency. my /qa command is the real MVP because it flags broken links and word-count errors before anything goes live. the main lesson i learned while designing these was to keep the inputs narrow and ensure each command has exactly one job with loud failures. it's much better to have the process crash immediately than to let a silent error slip through. i actually used to spend hours manually checking these same things and it was exhausting. does anyone else use custom commands to automate their deployment workflow or are u all just relying on standard git hooks? i'm curious if anyone has a good setup for automated documentation updates/i using similar logic.hidden gems in the flipper zero firmware
most people JUST stick to the basic sub-ghz or rfid stuff u see in every youtube demo. the real power is buried in the underlying radio stack and those tiny details in the firmware changelogs. it is basically just a glorified radio transceiver if you dont know how to manipulate the source code . anyone else found any useful sub-ghz tweaks lately?monthly dev report
i've been diving deep into gemma 4 lately and found it quite promising for my projects! i'm curious - what features are you all most excited about in this version? if anyone else is considering a switch, here's what caught me off guard:background-clip:text; text-fill-color: transparent;mask-image: linear-gradient(to right,#ff0 15%, #f6d32b4c 89%);
stop hoarding your claude sessions
stop treating long chats likeCLAUDE.mdand the memory layers,starting fresh is actually much cleaner if you aren't afraid of a little context reset . anyone else finding that slash commands make the context loss basically irrelevant?
css flexbox vs grid layout battle
try building a responsive design using onlydisplay:flex, then redo it with CSS Grid. See which one feels more intuitive and efficient for you! Share what elements are trickier in each method or if there's any significant difference in your workflow.
microsoft just dropped aspire 13\.3 with some big changes! there's a new
do you think the breaking updates will cause major headaches?i built an ai agent to hunt github bounties 24/7 - architecture & code
after putting my full faith in this bot, it turned out not as simple and profitable i thought. key takeaway: don't fully automate without human oversight - even for something like bounty hunting! what systems did u set up before giving the ai free rein?revealing text with css letter-spacing
i found a neat trick using letter-spacing to reveal hidden letters one by one! basically, u set up different spans or classes for each character and tweak their spacing. it's like making an animated type treatment w/o js - pretty cool right? anyone tried this out in projects yet?tmux sidecar trick to streamline codex/c Claude workflows
i stumbled upon this neat tmux setup that acts as a dynamic workflow assistant for proposal creation through code review & testing cycles! it lets u customize prompts and automate task transitions. how does everyone else handle repetitive tasks like these? do ya'll have any similar tools or tricks up ur sleeve, or is there potential to collaborate on something even better together in the community?state of centering in 2063
i was playing around with some layouts and stumbled upon a REALLY neat trick for horizontal & vertical alignment. it's not something new, but just refreshing to see how versatile flexbox can be! flex: none; justify-content:center does the job perfectly without any messy floats or positioning hacks.flexbox vs grid for responsive layouts
both have their strengths but i find grids more intuitive when dealing with complex designs.display: contents;
building governance-as-code for ai systems
i stumbled upon this cool concept called "governance as code" recently and i think it could really revolutionize how we handle enterprise AI. instead of relying on manual checks or separate policies, imagine embedding those controls directly into the system - like usingproperty: value.
no-code? a beginner's journey
i stumbled upon this cool concept while working on my first school project - Albert Einstein didnt wear socks! (fun fact, right?) instead of just writing about him like everyone else did with their tri-fold boards and poster paints. i decided to build his biography into something interactive:a fully functional website. it was a bit different from what most people were doing at the time.css animations & flexbox/grid interactions
fr i'm working on a project where i need to animate elements that are using both flex and grid layouts. but when applying keyframe-based transitions, some unexpected behaviors occur - like misalignment or flickering.build a killer resume with html & css
i recently threw myself into building my own résumé using just HTML and CSS, thinking it could give me an edge in job applications. man did i learn some cool stuff! first off - did you know that by customizing your layout [1]( not only do u impress potential employers but also showcase ur coding skills? totally worth the effort!css animations vs grid layout in responsive design
lowkey some swear by css animations for dynamic effects but i find that using a grid system can make layouts more fluid across devices without the overhead of animating everything. grids just seem to handle responsiveness better, especially with modern screen sizes and orientations.build reusable components with ai in webflow
found this nifty trick where you can create on-brand code snippets directly within webflow using AI assistance! anyone else playing around w/ it and finding cool uses yet?local web dashboard for claude code & codex cli
any-ai-cli is a local web app that wraps up running both tools side by side, streamlining approvals and session tracking. it's like having all terminals in one neat interface! do you have any tips on managing multiple CLI sessions efficiently?diving into proto recon
fr proto recons a wild ride! i started w/ JUST an idea of blending phone sensors and in-browser ml, but now its come to life as this browser-based tactical hud. after verifying some ui behaviors (phew!), my next step is rly digging thru the source code for that first-time experience.resolving ia hallucinations with code property graphs in . net
i was digging into some serious software architecture issues lately and stumbled upon a neat solution using code property graph (cpg) tools alongside dot net 9. it seems these can help pinpoint where the ai-generated stuff goes off-track. anyone else run across cool ways to tame those pesky ia hallucinations lol?css flexbox vs grid for complex layouts
lowkey im working on a project with multiple nested sections and trying to decide between using flexbox or grid . any tips? i read that grids are better at handling multi-column designs but wondering if theres still room for flexibility in projects where rows might need dynamic heights. also, how do u handle responsive design more efficiently when it comes down to these two techniques?day 4 of mern mastery
today i dove into css to bring life to my html skeletons! its amazing how quickly you can transform plain pages w/ just a few lines. how do YOU keep track when learning new styling techniques?creating scroll-driven svg map animations with gsap
i recently dove into building these cinematic maps and found that combining path drawing techniques with motion tracking in gsap really elevates user engagement. how do you handle camera movements during such projects? any tips for smoother transitions would be super helpful!no-code ai agents memory trouble
memory poisoning is real - your agent could be storing sensitive info insecurely after processing user inputs like messages or docs [1]. should you update how data gets handled?flexbox vs grid choose wisely
- flex is better when u have a known number of items to align in one dimension.display: flex;
computing & displaying discounted prices in css
fr i stumbled upon an awesome trick using modern css features likeattr(), mod(), and round(). i've been playing around with it to dynamically calculate discounts on the fly. anyone tried this out yet or have a better approach? question
3d voxel scenes & flying focus
ngl i just stumbled upon some cool 3d voxel scene tutorials that let you style them like regular css elements! also spotted a neat fly-in animation effect called "flying focus." anyone else trying out these techniques? any tips or projects to share would be awesome.merlin the code boutique turning motion into digital magic
found this cool place called merlin in amsterdam thats all bout making high-performance websites where tech meets design with smooth animations! im curious how they handle responsive designs for such dynamic sites. any tips on keeping those effects snappy without slowing down load times?how i slashed my claude code token usage & got better results
i was clueless until the invoice hit - quietly escalating while we chatted away thinking it all made sense at first. turns out staying in sessions too long and just throwing stuff into chat wasnt as efficient or cost-effective once tokens started adding up fast without me noticingWhat 14 EDR vendors won't tell you about source code, SBOMs, and update
Ever asked your EDR vendor for an SBOM or source code access? A recent study did it for 14 of them. Most security teams evaluate EDR-EPP based on detection rates and remediation features. But what about transparency? What data actually leaves your network? Can you review the code? Do you control updates? AV-Comparatives (commissioned by the Austrian Economic Chambers) looked at 14 leading cybersecurity vendors - including CrowdStrike, Microsoft, SentinelOne, Trellix, Kaspersky, Cisco, and others - on criteria that rarely make it into product brochures: Ability to review source code SBOM (Software Bill of Materials) availability Telemetry control and opt-out options Staged update rollouts On-prem reputation services Data residency and legal compliance The results are uneven. Only 3 vendors allow enterprise customers to review source code. Only a handful provide SBOMs. Just 8 out of 14 offer staged updates - which matters a lot after the CrowdStrike incident. The full report (including a breakdown by vendor) is available through AV-Comparatives. Link in the first comment if anyone wants to dig through the methodology.new workflow with claud code & cursor 3
claudiocode is the engine now; i swapped out my custom slash commands for skills in favor of a cheaper model from mcp's agents-first interface. wondering if others have noticed similar shifts or are still sticking to their old methods? what changes did u make recently?stop letting ai write untestable code: add determinism back with twd
tldrlightweight & fully customizable react qr code component i built
i was working on a project that needed lots of qrcodes sooo decided to make my own from scratch using pure svg and typed in typescript. the result is @ttsalpha/qrcode with zero runtime deps for encoding! is this gonna be your go-to solution?mobile css consistency issues
i was working on this responsive layout the other day until i decided to test it out in a mobile browser just for kicks. turns into an eyesore pretty quickly!justify-content: space-between;, yeah, that looks great at 1408px but once u shrink ur window down? not so much.
flexbox vs grid in action - which is better?
i've been playing around a lot lately with both flexbox and CSS Grid for layout designs and i must say they each have their own charm.display: flex;feels more straightforward but can get complex quickly as the number of items grows.
CSS Grid in 2026
Grid is no longer just a fancy layout tool; it's become an essential part of modern web designdisplay: grid;
display: grid;
making zigzag layouts with grid + transform trick
sometimes you wanna break the mold of standard grids - like when a neat row just won't cut it for that unique design vibe! check out this nifty technique using css grid and transforms. i've been playing around, trying different angles on my projects; how do you handle tricky layout challenges?