this post was submitted on 16 Apr 2024
48 points (100.0% liked)

Programming

17025 readers
186 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

How do you handle design when working a project that doesn’t have explicit design guidelines?

I’ve been working on some personal projects, but I am continually getting held up on design. I hate looking at a blank page, not knowing where to start. I’m not a particularly creative person in art and design and I really struggle to come up with new ideas on my own. I don’t enjoy it.

I’m the kind of person who buy 10 plain black t-shirts and 5 pairs of plain jeans so I never have to think about style.

I’m sure there are a lot of us out there; you can make the thing but, not design it. How do you work that part of the process?

I don’t want my projects to get skipped over because they’re ugly and I don’t want to copy other designs pixel for pixel.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 23 points 5 months ago* (last edited 5 months ago)
  1. Write down who your customers are.
  2. Write down what problem your customers have, which can be solved with your product.
  3. Write down how your product can solves the problem.
  4. Figure out how you can achieve that goal (this needs to be separate to step 3 - you're essentially tackling the same thing from a different perspective... helping you see things that might not be visible from the other one).
  5. Anything that does not bring your product closer to the goal(s), remove it from your product.
  6. Anything that would bring you closer, but isn't achievable (not enough resources, going to take too long, etc), remove those as well.

Those are not singular items. You have multiple customers (hopefully thousands). Your customers have multiple problems your product can solve. Actually solving all of those problems will require multiple things.

If that list sounds functional, that's because good design is functional. Aesthetics matter. Why do you choose a black shirt over an orange shirt with rainbow unicorns? Take the same approach for the colours on your app icon. Why do you choose jeans that are a specific length? Take that same approach for deciding how many pixels should separate two buttons on the screen.


You said you struggle with looking at a blank page. Everyone does. If you follow the steps I outlined above, then you won't be working with a blank page.