Devs and Vibes
A chill space for software developers and vibe coders, not sure what the difference is, but let's see what you got!
2 hours ago
Guess what?
Up Africa is now verified! β
Weβre super excited about this little milestone and we just had to share the joy.
Onward and upward!
9
26 hours ago
How is AI's camera angles programmed....?
Looks like it sometimes look off the object it is looking at.
8
2Aug 14, 2026
i'm really interested in tools that start with a problem and stay honest about trade-offs. not the kind that promise to solve everything, but the ones that say "here's what this does well, here's what it doesn't." that clarity is rare, and it's refreshing when you find it. building something...
40
3Aug 12, 2026
This is actually a snippet from our source code! Lol 
<div className={cn('profile-top', className)}>
<div
className={cn('profile-banner', bannerClassName)}
style={{ backgroundImage: `url(${coverUrl})` }}
>
{coverAction && (
<div className="absolute inset-e-3 top-3 z-10">{coverAction}</div>
)}
<div className="stats-holder">
<div
className="profile-photo relative"
style={{ backgroundImage: `url(${profile.imageUrl})` }}
>
{avatarAction && (
<div className="absolute bottom-1 inset-e-1 z-10">
{avatarAction}
</div>
)}
</div>
{(stats || statsContent) && (
<div className="action-stats">
<div className="flex items-center gap-2">
{beforeStats}
{statsContent ?? (
<div className="profile-stats">
{stats?.map((stat) => (
<div key={stat.label} className="profile-stat ml-1">
<span>{intStr(stat.value)}</span> {stat.label}
</div>
))}
</div>
)}
</div>
{actions && <div className="profile-actions">{actions}</div>}
</div>
)}
</div>
</div>
</div> 46
0Aug 10, 2026
If anything is missing, or you would love to become a moderator, just leave a comment under this post.
61
1








