Found 49 bookmarks
Custom sorting
Every Website is an Essay | CSS-Tricks
Every Website is an Essay | CSS-Tricks
Every website that’s made me oooo and aaahhh lately has been of a special kind; they’re written and designed like essays. There’s an argument, a playfulness in the way that they’re not so much selling me something as they are trying to convince me of the thing. They use words and type and color in a way that makes me sit up and listen. And I think that framing our work in this way lets us web designers explore exciting new possibilities. Instead of throwing a big carousel on the page and being done with it, thinking about making a website like an essay encourages us to focus on the tough questions. We need an introduction, we need to provide evidence for our statements, we need a conclusion, etc. This way we don’t have to get so caught up in the same old patterns that we’ve tried again and again in our work.
Everyone is tired of lifeless, humorless copywriting. They’ve seen all the animations, witnessed all the cool fonts, and in the face of all that stuff, they yawn. They yawn because it supports a bad argument, or more precisely, a bad essay; one that doesn’t charm the reader, or give them a reason to care.
·css-tricks.com·
Every Website is an Essay | CSS-Tricks
Stop Trying to Fit in With Your Portfolio with Tobias Van Schneider
Stop Trying to Fit in With Your Portfolio with Tobias Van Schneider
Right now I see a lot of Swiss-style, minimalist portfolios. So the ones that stand out do something playful and different, whether that’s with animations, color, copy, type or layout.
Neglecting case studies. Dumping a bunch of images on a page and leaving it up to the user to guess what they’re looking at. Or, on the other extreme, writing case studies so long and boring I can’t make it past the first two sentences. "I want to understand your process, but I don’t need to know your user persona better than I know my own mother." It’s all about finding the perfect balance.
The person reading your case study is busy. They’ve probably looked at dozens of portfolios today. Respect their time. Write something that makes them smile. Tell a story, but get to the point. With our own portfolio, it’s easy to forget the design and web practices we know so well. Things like: People scan, they don’t read. They want captions, not chapters. They’ll exit fast unless you keep them wanting more.
·casestudy.club·
Stop Trying to Fit in With Your Portfolio with Tobias Van Schneider
Epoch Semantic Versioning
Epoch Semantic Versioning
A version is essentially a marker, a seal of the codebase at a specific point in time. However, code is complex, and every change involves trade-offs. Describing how a change affects the code can be tricky even with natural language. A version number alone can’t capture all the nuances of a release. That’s why we have changelogs, release notes, and commit messages to provide more context.
I see versioning as a way to communicate changes to users — a contract between the library maintainers and the users to ensure compatibility and stability during upgrades. As a user, you can’t always tell what’s changed between v2.3.4 and v2.3.5 without checking the changelog. But by looking at the numbers, you can infer that it’s a patch release meant to fix bugs, which should be safe to upgrade.
In the JavaScript ecosystem, especially for packages published on npm, we follow a convention known as Semantic Versioning, or SemVer for short. A SemVer version number consists of three parts: MAJOR.MINOR.PATCH. The rules are straightforward: MAJOR: Increment when you make incompatible API changes. MINOR: Increment when you add functionality in a backwards-compatible manner. PATCH: Increment when you make backwards-compatible bug fixes.
However, humans perceive numbers on a logarithmic scale. We tend to see v2.0 to v3.0 as a huge, groundbreaking change, while v125.0 to v126.0 seems a lot more trivial, even though both indicate incompatible API changes in SemVer. This perception can make maintainers hesitant to bump the major version for minor breaking changes, leading to the accumulation of many breaking changes in a single major release, making upgrades harder for users.
The reason I’ve stuck with v0.x.x is my own unconventional approach to versioning. I prefer to introduce necessary and minor breaking changes early on, making upgrades easier, without causing alarm that typically comes with major version jumps like v2 to v3. Some changes might be "technically" breaking but don’t impact 99.9% of users in practice.
There’s a special rule in SemVer that states when the leading major version is 0, every minor version bump is considered breaking. I am kind of abusing that rule to workaround the limitation of SemVer. With zero-major versioning, we are effectively abandoning the first number, and merge MINOR and PATCH into a single number (thanks to David Blass for pointing this out)
In an ideal world, I would wish SemVer to have 4 numbers: EPOCH.MAJOR.MINOR.PATCH. The EPOCH version is for those big announcements, while MAJOR is for technical incompatible API changes that might not be significant. This way, we can have a more granular way to communicate changes.
I am proposing a new versioning scheme called 🗿 Epoch Semantic Versioning, or Epoch SemVer for short. It’s built on top of the structure of MAJOR.MINOR.PATCH, extend the first number to be the combination of EPOCH and MAJOR
The format is as follows: {EPOCH * 1000 + MAJOR}.MINOR.PATCH EPOCH: Increment when you make significant or groundbreaking changes. MAJOR: Increment when you make minor incompatible API changes. MINOR: Increment when you add functionality in a backwards-compatible manner. PATCH: Increment when you make backwards-compatible bug fixes.
For example, UnoCSS would transition from v0.65.3 to v65.3.0 (in the case EPOCH is 0). Following SemVer, a patch release would become v65.3.1, and a feature release would be v65.4.0. If we introduced some minor incompatible changes affecting an edge case, we could bump it to v66.0.0 to alert users of potential impacts. In the event of a significant overhaul to the core, we could jump directly to v1000.0.0 to signal a new era and make a big announcement.
We shouldn’t need to bump EPOCH often. It’s mostly useful for high-level, end-user-facing libraries or frameworks. For low-level libraries, they might never need to bump EPOCH at all (ZERO-EPOCH is essentially the same as SemVer).
·antfu.me·
Epoch Semantic Versioning
Paul Graham on Good Writing
Paul Graham on Good Writing
I think if you pointed to a random paragraph in anything written by anyone and told them to make it slightly shorter (or longer), they'd probably be able to come up with something better. The best analogy for this phenomenon is when you shake a bin full of different objects. The shakes are arbitrary motions. Or more precisely, they're not calculated to make any two specific objects fit more closely together. And yet repeated shaking inevitably makes the objects discover brilliantly clever ways of packing themselves. Gravity won't let them become less tightly packed, so any change has to be a change for the better.
If you have to rewrite an awkward passage, you'll never do it in a way that makes it less true. You couldn't bear it, any more than gravity could bear things floating upward. So any change in the ideas has to be a change for the better.
Writing that sounds good is more likely to be right for the same reason that a well-shaken bin is more likely to be tightly packed. But there's something else going on as well. Sounding good isn't just a random external force that leaves the ideas in an essay better off. It actually helps you to get them right.
the easier the essay is to read, the easier it is to notice if something catches
the rhythm of good writing has to match the ideas in it, and ideas have all kinds of different shapes. Sometimes they're simple and you just state them. But other times they're more subtle, and you need longer, more complicated sentences to tease out all the implications
when an essay sounds good, it's not merely because it has a pleasing rhythm, but because it has its natural one. Which means you can use getting the rhythm right as a heuristic for getting the ideas right. And not just in principle: good writers do both simultaneously as a matter of course. Often I don't even distinguish between the two problems. I just think Ugh, this doesn't sound right; what do I mean to say here?
The sound of writing turns out to be more like the shape of a plane than the color of a car. If it looks good, as Kelly Johnson used to say, it will fly well.
It's only when you're writing to develop ideas that there's such a close connection between the two senses of doing it well
The way to write something beautiful and false is to begin by making yourself almost believe it. So just like someone writing something beautiful and true, you're presenting a perfectly-formed train of thought. The difference is the point where it attaches to the world. You're saying something that would be true if certain false premises were.
So it's not quite right to say that better sounding writing is more likely to be true. Better sounding writing is more likely to be internally consistent. If the writer is honest, internal consistency and truth converge.
ideas are tree-shaped and essays are linear. You inevitably run into difficulties when you try to cram the former into the latter. Frankly it's suprising how much you can get away with. But even so you sometimes have to resort to an endnote.
Obviously if you shake the bin hard enough the objects in it can become less tightly packed. And similarly, if you imposed some huge external constraint on your writing, like using alternating one and two syllable words, the ideas would start to suffer
There are two senses in which writing can be good: it can sound good, and the ideas can be right. It can have nice, flowing sentences, and it can draw correct conclusions about important things. It might seem as if these two kinds of good would be unrelated, like the speed of a car and the color it's painted. And yet I don't think they are. I think writing that sounds good is more likely to be right. So here we have the most exciting kind of idea: one that seems both preposterous and true. Let's examine it. How can this possibly be true?
You can't simultaneously optimize two unrelated things; when you push one far enough, you always end up sacrificing the other. And yet no matter how hard I push, I never find myself having to choose between the sentence that sounds best and the one that expresses an idea best. If I did, it would be frivolous to care how sentences sound. But in practice it feels the opposite of frivolous. Fixing sentences that sound bad seems to help get the ideas right.
·paulgraham.com·
Paul Graham on Good Writing
Become a better communicator: Specific frameworks to improve your clarity, influence, and impact | Wes Kao (coach, entrepreneur, advisor)
Become a better communicator: Specific frameworks to improve your clarity, influence, and impact | Wes Kao (coach, entrepreneur, advisor)
The “sales, then logistics” framework: Always sell people on why something matters before diving into how to do it. Even executives who seem rushed need 30 to 60 seconds of context for why this matters now.
Being concise is about density of insight, not brevity: “Being concise is not about absolute word count. It’s about economy of words and density of the insight.” The bottleneck to being concise is often unclear thinking.
Use “signposting” to guide your audience: Words like “for example,” “because,” “as a next step,” and “first, second, third”
Before sharing an idea, spend just a few seconds anticipating the most obvious objections.
Don’t overstate hypotheses as facts or understate strong recommendations. Match your conviction level to the evidence available.
Focus on motivating behavior change rather than venting your frustrations. “Trim 90% of what you initially want to say and keep only the 10% that will make the person want to change.”
he CEDAF delegation framework: Comprehension: Ensure they understand what needs to be done Excitement: Make the task meaningful and motivating De-risk: Anticipate and address potential issues Align: Confirm mutual understanding Feedback: Create the shortest possible feedback loop
·lennysnewsletter.com·
Become a better communicator: Specific frameworks to improve your clarity, influence, and impact | Wes Kao (coach, entrepreneur, advisor)
Carl Zimmer on writing: “Don’t make a ship in a bottle”
Carl Zimmer on writing: “Don’t make a ship in a bottle”
To write about anything well, you have to do a lot of research. Even just trying to work out the chronology of a few years of one person’s life can take hours of interviews. If you’re writing about a scientific debate, you may have to trace it back 100 years through papers and books. To understand how someone sequenced 400,000 year old DNA, you may need to become excruciatingly well acquainted with the latest DNA sequencing technology. Once you’ve done all that, you will feel a sense of victory. You get it. You see how all the pieces fit together. And you can’t wait to make your readers also see that entire network of knowledge as clearly as you do right now. That’s a recipe for disaster.
When I was starting out, I’d try to convey everything I knew about a subject in a story, and I ended up spending days or weeks in painful contortions. There isn’t enough room in an article to present a full story. Even a book is not space enough. It’s like trying to build a ship in a bottle. You end up spending all your time squeezing down all the things you’ve learned into miniaturized story bits. And the result will be unreadable.
It took me a long time to learn that all that research is indeed necessary, but only to enable you to figure out the story you want to tell. That story will be a shadow of reality—a low-dimensional representation of it. But it will make sense in the format of a story. It’s hard to take this step, largely because you look at the heap of information you’ve gathered and absorbed, and you can’t bear to abandon any of it. But that’s not being a good writer. That’s being selfish. I wish someone had told me to just let go.
Find time to write at least a couple hours a day, every day. And I mean real writing, not dithering on the Internet telling yourself you’re doing “research.” Get a blank notebook and a pen if you have to. It’s in those long stretches of time with your own words, sentences, and paragraphs that you come face to face with all the great challenges of writing, and you find the solutions.
·medium.com·
Carl Zimmer on writing: “Don’t make a ship in a bottle”
How to put together an effective and eye-catching UX design portfolio
How to put together an effective and eye-catching UX design portfolio
Make readers want to keep reading to find out how you got to that point. Practically speaking, a full-width banner image with bold colors and appropriate branding, as well as a mockup or two (mirroring your homepage thumbnail) is the most effective. Follow this with a short paragraph of what the project is about and its background. You should also include a list of details such as the project duration, how big the team was, tools used, and most importantly, what your specific role in the project was.
Following this, make your problem statement bold and clear. It doesn’t have to be too formal. Juxtapose this with your solution. This could be a parallel statement, or a combination of words and graphics once again showing your final product, but more specifically highlighting sections or screens that demonstrate how it solves the problem you just stated.
Everything you’ve written up to this point should be enough to give the casual reader a good idea of the project background and what the final product looks like. They’d probably be fine moving on to another page on your portfolio. But for people who want to read more on this case study, make sure to clearly but concisely tell everything that relates to the work that you did. Structure the rest of your case study after the introduction like this: Research — E.g. competitive analysis, interview and survey results, and personas (if any). User flow(s) — Important to give an idea of how the app is meant to be used. Ideation — E.g. information architecture/site map, sketches, low-progressing-to-high fidelity wireframes, usability testing feedback, annotated iterations, and before/after examples. Final design — Complete prototype containing your highest fidelity wireframes. You could walk through a specific user flow, or just showcase different screens. Here is where gifs, an embedded prototype (more on this later), and demonstration videos should be placed. Conclusion — All good pieces of writing need a conclusion to stick the landing. Talk about next steps first, because readers’ minds are still on the prototype. Then, if applicable, mention direct impacts of the work you did, such as specific growth or revenue metrics. Then, give it a personal touch by talking about what you thought of the project, and the lessons learned.
·uxdesign.cc·
How to put together an effective and eye-catching UX design portfolio
Six Tips on Writing from John Steinbeck
Six Tips on Writing from John Steinbeck
Abandon the idea that you are ever going to finish. Lose track of the 400 pages and write just one page for each day, it helps. Then when it gets finished, you are always surprised.
Forget your generalized audience. In the first place, the nameless, faceless audience will scare you to death and in the second place, unlike the theater, it doesn’t exist. In writing, your audience is one single reader. I have found that sometimes it helps to pick out one person—a real person you know, or an imagined person and write to that one.
If a scene or a section gets the better of you and you still think you want it—bypass it and go on. When you have finished the whole you can come back to it and then you may find that the reason it gave trouble is because it didn’t belong there.
If there is a magic in story writing, and I am convinced there is, no one has ever been able to reduce it to a recipe that can be passed from one person to another. The formula seems to lie solely in the aching urge of the writer to convey something he feels important to the reader.
a bad story is only an ineffective story.
·themarginalian.org·
Six Tips on Writing from John Steinbeck
Alisa Cohn x Lenny's Newsletter Podcast
Alisa Cohn x Lenny's Newsletter Podcast
So I do have kind of an extensive questionnaire, so we just touch on a few things, but one thing I think first and foremost is, what are your values? And I think it's really essential to do some sort of values clarification exercise. You can find a ton of them online. You can find a list of values and just pull out your core values and just compare them with each other because when you are aligned, it's great. Or when you're adjacent, it's also great. I might care a lot about excellence, Lenny, you might care a lot about learning. Fantastic. Those are great values that we can kind of, go together. I might care about excellence and you might care about work-life balance. Wow, let's talk about that because I think it's going to be really important as we go through our startup journey that we understand both of us, what does work-life balance mean and what does excellence mean?
One of the founders I worked with, he would text or Slack his co-founder on weekends and the co-founder wouldn't respond. And that was extremely frustrating to the person, to the co-founder I was talking to. And it turned out, after they finally addressed it, it really was about wanting to have some downtime and some, quote unquote, "Balance."
I'm so great at bringing things up." But the person who's close to you might say, "You seethe until you're ready to bring something up and it's really uncomfortable in the seething period." So it just gives you a little more self-awareness about how you actually handle conflict.
The other person might be a person who totally wants to talk about the conflict but wants to let it settle first and wants to also go through their own thinking process about what's important to them and might actually feel like they've resolved it themselves without having to have a conversation with you.
And if you're the person who's like, "Let's talk about it, let's talk about it, let's talk about it." And they're like, "I'm working through it myself." Now you have conflict over the conflict and it just turns into dynamic that's not necessary.
·lennysnewsletter.com·
Alisa Cohn x Lenny's Newsletter Podcast
Successful methods of public speaking (1920)
Successful methods of public speaking (1920)
The act of writing out your thoughts is a direct aid to concentration, and tends to enforce the habit of choosing the best language. It gives clearness, force, precision, beauty, and copiousness of style, so valuable in extemporaneous and impromptu speaking.
One eminent speaker used practically no gesture; another was in almost constant action. One was quiet, modest, and conversational in his speaking style; another was impulsive and resistless as a mountain torrent.
·ia.net·
Successful methods of public speaking (1920)
Turning a yellow spot into the sun
Turning a yellow spot into the sun
While you might think turning a yellow spot into the sun is mainly about strong execution, it’s equally about inventiveness and vision. There are situations where I wouldn’t have been able to describe what the person ended up creating. I had a version of what “great” looked like in my mind—and they surpassed it in ways I wouldn’t have been able to articulate in advance.
Arielle because Balsamiq is a newsletter sponsor. She shared a story that’s an example of turning a yellow spot into the sun. Here’s what she said: “Something I did that completely changed my career in its early years: I kept a work journal. I noted down decisions I made as an IC and manager, decisions my managers made, the outcomes, the impact, and what I learned. I wrote down those "inside thoughts" we all have during meetings. I wrote down the advice I HATED and why, as well as the helpful stuff. I wrote down pivotal interactions with clients, peers, leaders, and direct reports. I wrote down specific phrases different leaders liked to use. It was almost scientific—I applied basic tactics I learned in science/psychology classes about field observation. I still reference that journal to this day.”
Most people in her shoes would have said, “I need a mentor. I need someone to teach me strategy. I need support. I need to ask execs to explain their decisions and get their feedback.” Not Arielle. Arielle took a little (i.e. the lived experiences she was getting on the job, like all her peers)—and she turned it into a lot.
There is no set of rules (beyond the first principles I cover here each week) to memorize. It’s the same foundational principles, like knowing your assets/levers/constraints, asking the question behind the question, thinking rigorously, etc.
Before you move on to the next shiny object, consider if you’ve really squeezed every last drop of juice from your current endeavor.
People celebrate the strategy at the beginning and the outcome at the end, but if you look more deeply, there was usually good decision-making and craft at each step, which layered up to greatness. That’s why turning a yellow spot into the sun isn’t only for dramatic projects. It’s equally about elevating stuff most folks think of as boring and small.
Keep an eye out for anything that makes you stop in your tracks, even small things. Note what makes it feel magical and add it to your mental swipe file.
·newsletter.weskao.com·
Turning a yellow spot into the sun
On the Accountability of Unnamed Public Relations Spokespeople
On the Accountability of Unnamed Public Relations Spokespeople
When a statement is attributed to “a spokesperson” from a company or institution, the world doesn’t know who that spokesperson is. Only the reporter or writer, and perhaps their editors. There is an explicit lack of accountability attributing statements to an institution rather than to specific people. We even have different pronouns — it’s institutions that do things, but only people who do things. Who is the question.
This West Point / ProPublica near-fiasco has me reconsidering my skepticism toward The Verge’s obstinacy on this. It occurs to me now that The Verge’s adamancy on this issue isn’t merely for the benefit of their readers. Putting one’s name on a statement heightens the personal stakes. This is why it’s more than vanity to put your name on your work, whatever your work is — it shows you take responsibility for its validity
·daringfireball.net·
On the Accountability of Unnamed Public Relations Spokespeople
On being a great gift-giver
On being a great gift-giver
Some people are great at giving gifts. The kinds of gifts that dig into your soul and make you feel seen. I'm trying to become one of those people
Simon conspired with a friend who owns a 3D printer and designed and created a little desktop bear that can hold all of the nice things people have written about Bear. He then wrote each of these entries by hand (suffering only minor carpel tunnel) on sticky notes which the bear now carries like a human bear directional.
These are the kinds of gifts I want to learn how to give. Ones that make the receiver feel like they've been listened to and understood. That don't cost much money but are priceless at the same time.
·herman.bearblog.dev·
On being a great gift-giver
Pricing of Webflow freelancers : r/webflow
Pricing of Webflow freelancers : r/webflow
Some good questions to ask: Can they show you some examples of past projects they've built in Webflow? Do some checking if their work looks good on smaller devices (Webflow cascades styles down from desktop, so mobile design can sometimes get overlooked) Are they using a class framework (e.g., Client-first, Mast, Lumos, or custom)? And are they comfortable building the site with a level of modularity that enables easy reuse of sections, components, and styles? This approach simplifies future design updates and makes it easier for your team to manage and expand the site after the handover. What's their approach to SEO in Webflow? What do they do to ensure performance and loading speed are optimized? Do they have a process QA and testing before launching a site? How do they handle client feedback and revisions? Do they have a process for educating you on how to use and manage the site they built?
·reddit.com·
Pricing of Webflow freelancers : r/webflow
Write Like You Talk
Write Like You Talk
You don't need complex sentences to express complex ideas. When specialists in some abstruse topic talk to one another about ideas in their field, they don't use sentences any more complex than they do when talking about what to have for lunch. They use different words, certainly. But even those they use no more than necessary. And in my experience, the harder the subject, the more informally experts speak. Partly, I think, because they have less to prove, and partly because the harder the ideas you're talking about, the less you can afford to let language get in the way.
Informal language is the athletic clothing of ideas
I'm not saying spoken language always works best. Poetry is as much music as text, so you can say things you wouldn't say in conversation. And there are a handful of writers who can get away with using fancy language in prose.
But for nearly everyone else, spoken language is better.
After writing the first draft, try explaining to a friend what you just wrote. Then replace the draft with what you said to your friend.
·paulgraham.com·
Write Like You Talk
How we use generative AI tools | Communications | University of Cambridge
How we use generative AI tools | Communications | University of Cambridge
The ability of generative AI tools to analyse huge datasets can also be used to help spark creative inspiration. This can help us if we’re struggling for time or battling writer’s block. For example, if a social media manager is looking for ideas on how to engage alumni on Instagram, they could ask ChatGPT for suggestions based on recent popular content. They could then pick the best ideas from ChatGPT’s response and adapt them. We may use these tools in a similar way to how we ask a colleague for an idea on how to approach a creative task.
We may use these tools in a similar way to how we use search engines for researching topics and will always carefully fact-check before publication.
we will not publish any press releases, articles, social media posts, blog posts, internal emails or other written content that is 100% produced by generative AI. We will always apply brand guidelines, fact-check responses, and re-write in our own words.
We may use these tools to make minor changes to a photo to make it more usable without changing the subject matter or original essence. For example, if a website manager needs a photo in a landscape ratio but only has one in a portrait ratio, they could use Photoshop’s inbuilt AI tools to extend the background of the photo to create an image with the correct dimensions for the website.
·communications.cam.ac.uk·
How we use generative AI tools | Communications | University of Cambridge
Is Every Picture Worth 1,000 Words?
Is Every Picture Worth 1,000 Words?
The phrase a picture is worth a thousand words has two popular origin stories. One version credits advertising executive Frederick R. Barnard, who attributed the phrase to an ancient Chinese proverb. The closest Chinese equivalent translates to “Hearing something a hundred times isn’t better than seeing it once.” In other words, the Chinese Origin was made up: “…the Chinese derivation was pure invention. Many things had been thought to be ‘worth ten thousand words’ well before pictures got in on the act;”
the true origin of the proverb is not Chinese but adspeak.3 It shows how the phrase has morphed into a commercial, facile cliche.
Letting images and pictures compete for supremacy reduces the complex relationship between images and words into a direct, quantifiable comparison. Words and images function differently
A few carefully chosen words can say what 1,000 stock images cannot. The right image can counter cynicism, closed-mindedness, or an automatic dismissal of a convincing argument.
Tell your audience how you interpret the image. What the image means.
Use images to complement, not repeat or overshadow, the text. Get rid of images that are just there to add color.
Stock images are clichés. Clichés can be easily turned on their head because of their simplistic topic. You want to communicate that you’re diverse and you end up telling people that you’re a company run by a minority. Or you want to communicate success, but the focus on two middle-aged white people ends up communicating their privilege.
Whether you like it or not, people will read into this picture as well and they won’t find a lot of valuable or advantageous information in it. It again mostly says: “This boring website thinks that I don’t see that this is a meaningless stock image.”
Pictures have an impact when they tell a story that only a picture can tell.
·ia.net·
Is Every Picture Worth 1,000 Words?
A good image tells a good story
A good image tells a good story
Forget trying to decide what your life’s destiny is. That’s too grand. Instead, just figure out what you should do in the next 2 years.
Visuals can stir up feelings or paint a scene in an instant. However, they may not always nail down the details or explain things as clearly as words can. Words can be very precise and give you all the information you need. Yet, sometimes they miss that instant impact or emotional punch.
For each visual you add to your presentation, you should ask yourself “What does it really say?” And then check: Does it enhance the meaning of my message, or is it purely decorative? Does it belong at this point in my presentation? Would it be better for another slide? Is there a better image that says what I want to say?
Computers don’t feel, and that means: they don’t understand what they do, they grow images like cancer grows cells: They just replicate something into the blue. This becomes apparent in the often outright creepiness of AI images.
AI is really good at making scary images. Even if the prompt lacks all hints of horror kitsch, you need to get ready to see or feel something disturbing when you look at AI images. It’s like a spell. Part of the scariness comes from the cancer-like pattern that reproduces the same ornament without considering its meaning and consequence.
Placing pictures next to each other will invite comparisons. We also compare images that follow each other. Make sure that you do not inadvertently compare apples and oranges.
When placing multiple images in a grid or on one slide after the other, ensure they don’t clash in terms of colors, style, or resolution. Otherwise, people will focus more on the contrast between the images rather than their content.
Repeating what everyone can see is bad practice. To make pictures and text work, they need to have something to say about each other.
Don’t write next to the image what people already see. A caption is not an ALT text.
The most powerful combination of text and image happens when the text says about the image what you can’t see at first sight, and when the image renders what is hard to imagine.
Do not be boring or overly explanatory. The visual should attract their attention to your words and vice-versa.
If a visual lacks meaning, it becomes a decorative placeholder. It can dilute your message, distract from what you want to say, and even express disrespect to your audience.
·ia.net·
A good image tells a good story
On Openings Essays, Conferences Talks, and Jam Jars
On Openings Essays, Conferences Talks, and Jam Jars
how to write better openings and introductions / intros in non-fiction writing
The beginning is almost never the most compelling or important part. It's just the bit you thought of first, based on your subjective chronology.
Signposting what you're going to write about is good, but starting with an exhaustive list of definitions is extremely boring.
Invoking paleolithic people is an overplayed way to convince us your topic is cosmically important.
Openings need tension – paradoxes, unanswered questions, and unresolved action
Good openings propose problems, pose questions, drop you into an unfinished story, or point at fundamental tensions within a topic. Ideally within the first paragraph or two.
"Good writing starts strong. Not with a cliché ("Since the dawn of time"), not with a banality ("Recently, scholars have been increasingly concerned with the questions of..."), but with a contentful observation that provokes curiosity."A Sense of StyleStephen Pinker
Creating tension in non-fiction work is trickier because your story is (hopefully) constrained by reality. You are not at liberty to invent suspicious murders, salacious extramarital affairs, or newly-discovered-magical-powers to create tension and mystery. You have to deal with the plain, unexotic facts of the world.
Your job becomes much harder if you pick topics with no tension, problems, or puzzles within them. To paraphrase Williams, it is more of a failure to pose an uninteresting problem, than to poorly articulate an interesting one
Your interest in the topic is your best directional clue for finding the tension or interesting paradox. Your urge to write about the thing hopefully comes from a place of curiosity. You have unanswered questions about it. It feels important or consequential for unexplained reasons. You think you've seen things in it other people haven't. Pay attention to that interest.
Problems are a destabilising condition that has a cost for a community of readers that needs a solution. Destabilising condition is just a fancy word for “change” here – a change in the status quo. Put another way, a problem is an expected turn of events, that has undesireable consequences, for an audience who will care about it, that we want to explore solutions to.
Williams is speaking to a community of academic writers in his book. They're trying to present scientific and research problems in plain, objective language, which isn't necessarily what we want to do with narrative writing like blogging or personal essays. We have a little more liberty to put interesting padding around the change, consequences, and solution, such as telling an opening anecdote, or drawing readers in with characters, rich details, and sensory descriptions.
Williams suggests we try to state our problem and then ask a series of so what?'s to get at the underlying problem
For your writing to be worth reading, you need to be exploring something of consequence for someone
When McPhee writes, after first immersing himself in his raw material (field notes, interview transcripts, official documents) for weeks, he then draws a structure for the work. The structure lays out the major themes and scenes he'll work through, in the order that will make them most compelling and coherent.
Developing a structure requires navigating the tension between chronology and theme. Chronology is what we default to, but themes that repeatedly appear want to pull themselves together into a single place. The themes that really matter should be in your opening. Even if the moment that best defines them happens right before the end of the timeline.
·maggieappleton.com·
On Openings Essays, Conferences Talks, and Jam Jars
90% of designers are unhirable?
90% of designers are unhirable?
Many case studies read to me like school homework: they knew what the answer and the process were “supposed to be” according to the textbook, so made up the story to fit. In reality, as you point out, it’s never smooth and linear. It’s messy and loopish. If you’re doing a good job, you rarely end up with anything remotely like you anticipated when you started out.
abandon your dogmatic and idealistic view of the design process, and keep learning about how flexible, messy, and beautiful it is.
I don’t speak about the “ideal” design process for a simple reason: it doesn’t exist. Design is never linear, and all projects are unique. The point is to show and explain your path from the kick-off to the final result in the portfolio.
If you tell a story, include the details and the things that didn’t work and how you adapted to overcome the problem, the design manager will empathise with you. For the five minutes it takes to read your case study, they’ll be in your shoes. It’ll remind them of all the times when they had similar problems and it’ll make them appreciate you and your struggles as a designer.
·uxdesign.cc·
90% of designers are unhirable?