A lot
Based on "My Thoughts on Documentation"
Generally going from high level broad tips to very specific suggestions.
AKA, when I do bring up topic X versus topic Y?
What do I need to do EVERY TIME I work with X versus what I may do with X.
People don't come in via the front door...
Imagine you Googled for "stripe api products" (contrived example)
Adding placeholder to a form field
<html lang="en">
<head>
<title>Placeholder Demo</title>
</head>
<body>
<form action="/process" method="post">
<label for="name">Your Name: </label>
<input type="text" name="name" id="name"
placeholder="Type your name here...">
<input type="submit">
</form>
</body>
</html>
<form action="/process" method="post">
<label for="name">Your Name: </label>
<input type="text" name="name" id="name"
placeholder="Type your name here...">
<input type="submit">
</form>
<input type="text" name="name" id="name"
placeholder="Type your name here...">
Include a short snippet focused on the subject matter and link to a full example.
Link destinations - Gist (good), CodePen (better!), CodeSandbox (really good too)
curl "http://www.raymondcamden.com" ^
-H "Authorization: booger"
My pet peaves...
reach me at @raymondcamden