I'm giving Claude Code for FREE
(yes the world's best AI -- at no cost at all)
My mission is to get the next billion people to write great software, but so many are constrained by costs.
We solved this by combining AI with ads (only contextual and relevant ads, no spam).
In return, you get the best AI models without needing a credit card.
For the next batch, I will choose 500 people randomly who have done the following steps:
1. Comment "GIVE ME SANTA CLAUDE" below
2. Like and retweet this
3. Follow @NamanyayG and @supermemory
4. Sign up on the link in the next tweet
Watch this quick video to understand how it works!
Don't miss it! 🎉 - New follower only
Get free @figma file with those designs.
How to get it?
1. Follow me - ( So I can DM)
2. Repost (Must)
3. Comment "hero”
After 48 hours , I'll share this file
I designed crazy landing pages using 4 tools.
No complex workflows. Just smart tool combinations that unlock better creative output.
Steal my exact process👇
My $129 @framer template can now be yours for FREE!
I'm giving away 15 of my design studio template — Create®.
Send a comment "CREATE" and retweet to enter. Announcing winners in 48 hours.
💎 Accessible design toolkit for Figma from Microsoft
The toolkit comes with checklists on top accessibility/usability tenets, notecards for recommendations, components, heading and landmark notations as well as a notation table.
https://t.co/Y9LyFMQPDm
Excellent Design Systems Database! 🔥🔥
Best-in-class Design Systems with components and foundations references from top-tier tech companies and leading UI teams
Check it out! https://t.co/mRj4m85esl
#ux#uxdesign#ui#uidesign#designsystem#productdesign#design#research #usertesting #usabilitytesting #usability #research #uicomponent #graphicdesign #visualdesign #prototype #business #startup #digital #uxprocess #uxstrategy
Kids are earning in 7-8 figures from Product Hunt
It's not HARD as you think
I have made up to $10,000 from Product Hunt
And to help you do same I created a blueprint to earn $$$ on Product Hunt
Like, Repost & reply "Hunt" & I'll DM link
(Must be Following so I can DM)
CSS Tip! 🤙
You can use mask-composite and some JavaScript to create this pointer proximity following glow border ✨
.glow {
mask-composite: intersect;
mask-clip: padding-box, border-box;
mask:
linear-gradient(#0000, #0000),
conic-gradient(#0000 0deg, #fff, #0000 45deg);
}
The trick is to mask a background-image with a combination of mask layers. mask-composite: intersect; means the mask used will be the intersection of the layers 🔥 use source-in, xor; in browsers that don't support intersect;
In this demo, you can use pseudoelements and rely on scoped custom properties to do a lot of the heavy lifting for you 🙌
Once you've masked the background, you need to update the starting angle of the conic-gradient on pointermove 👆
You can work that out by getting the center point of each card and then calculating the angle between that and the pointer with Math.atan2 🤓
let ANGLE = Math.atan2(
event?.y - CARD_CENTER[1],
event?.x - CARD_CENTER[0]
) * 180 / Math.PI
ANGLE = ANGLE < 0 ? ANGLE + 360 : ANGLE;
CARD.style.setProperty('--start', ANGLE + 90)
You plug that into your conic-gradient mask as a custom property accounting for --spread ⚡️
conic-gradient(from calc((var(--angle) - (var(--spread) * 0.5)) * 1deg), #000 0deg, #fff, #0000 calc(var(--spread) * 1deg));
To get the blur, you apply a blur to the glow container on each card 🤙
.glows {
filter: blur(calc(var(--blur) * 1px);
}
That's it! Layers of masks that are clipped and composited before being blurred 😎 The added trick is to fade each one in when the pointer is in the defined proximity of the card. For example, don't show unless within 100px of a card. You can see that in the video. Check out the JavaScript code for that 🫶
Couldn't resist making this one 😁
@CodePen link below! 👇
No Code Companies are earning in 7-8 figures
You can do the same if you have the right profitable idea
To help you I have created a list of companies you can take inspiration from and profitable ideas you can built
Repost & reply "Send" & I'll DM link