Skip to main content
13 Members

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!

Up Africa
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
2
Galaxy Solomon
6 hours ago
How is AI's camera angles programmed....?πŸ€” Looks like it sometimes look off the object it is looking at.
8
2
Galaxy Solomon
6 hours ago
Can a WordPress site win a trophy as an outstanding site in the midst of techists?
4
2
Edwin Savvy
Aug 14, 2026
Live and let Live life The Quote of the day
62
1
Ada Ajie
Aug 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
3
Hamza's Legacy
Aug 12, 2026
This is actually a snippet from our source code! Lol 😁
TSX
<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
0
Hamza's Legacy
Aug 10, 2026
If anything is missing, or you would love to become a moderator, just leave a comment under this post.
61
1