Changed around line 1
- buildHtml
- theme roboto
-
- Hello World my name is
+
+
+
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ max-width: 800px;
+ margin: 40px auto;
+ padding: 20px;
+ }
+ h1 {
+ color: #333;
+ margin-bottom: 30px;
+ }
+ .comparison-table {
+ width: 100%;
+ border-collapse: separate;
+ border-spacing: 0;
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+ .comparison-table th {
+ background-color: #f8f9fa;
+ padding: 15px;
+ text-align: left;
+ border-bottom: 2px solid #dee2e6;
+ }
+ .comparison-table td {
+ padding: 15px;
+ border-bottom: 1px solid #dee2e6;
+ }
+ .comparison-table tr:last-child td {
+ border-bottom: none;
+ }
+ .dont-say {
+ color: #dc3545;
+ position: relative;
+ padding-left: 30px;
+ }
+ .do-say {
+ color: #198754;
+ position: relative;
+ padding-left: 30px;
+ }
+ .dont-say::before {
+ content: "✗";
+ position: absolute;
+ left: 0;
+ color: #dc3545;
+ }
+ .do-say::before {
+ content: "✓";
+ position: absolute;
+ left: 0;
+ color: #198754;
+ }
+
+
+
+
Startup Advice: What Not to Say vs. Better Alternatives
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Don't Say | Say Instead |
---|
"No one uses it, not even us" | "Pre-PMF" |
"Credit cards maxed out" | "Round is Closing Soon" |
"We don't know how to make it" | "AI" |
"Participated in OpenAI user study from craigslist gigs" | "Team from OpenAI" |
+
+