Skip to content

Commit 559279c

Browse files
tobiclaude
andcommitted
docs: add social proof, fix install instructions, emphasize gem
Website updates: - Add testimonials from DHH, @kovyrin, @ShreyGupta, @robzolkos - Make `gem install try-cli` the primary install method - Fix homebrew instructions to match README - Add shell setup step README updates: - Add RubyGems as recommended install method - Reorganize installation section Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 61c3482 commit 559279c

File tree

2 files changed

+103
-14
lines changed

2 files changed

+103
-14
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@ Instantly navigate through all your experiment directories with:
2222
- **Auto-dating** - creates directories like `2025-08-17-redis-experiment`
2323
- **Zero config** - just one Ruby file, no dependencies
2424

25-
## Quick Start
25+
## Installation
26+
27+
### RubyGems (Recommended)
28+
29+
```bash
30+
gem install try-cli
31+
```
32+
33+
Then add to your shell:
34+
35+
```bash
36+
# Bash/Zsh - add to .zshrc or .bashrc
37+
eval "$(try init)"
38+
39+
# Fish - add to config.fish
40+
eval (try init | string collect)
41+
```
42+
43+
### Quick Start (Manual)
2644

2745
```bash
2846
curl -sL https://raw.githubusercontent.com/tobi/try/refs/heads/main/try.rb > ~/.local/try.rb

docs/index.html

Lines changed: 84 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,6 +1013,62 @@
10131013
display: inline-flex;
10141014
margin: 0;
10151015
}
1016+
1017+
/* Testimonial Grid */
1018+
.testimonial-grid {
1019+
position: relative;
1020+
z-index: 20;
1021+
padding: 4rem 2rem 8rem;
1022+
background: linear-gradient(180deg, #6930c3 0%, var(--black) 100%);
1023+
display: grid;
1024+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
1025+
gap: 2rem;
1026+
max-width: 1200px;
1027+
margin: 0 auto;
1028+
}
1029+
1030+
.testimonial-card {
1031+
background: rgba(255, 255, 255, 0.05);
1032+
border: 1px solid rgba(255, 255, 255, 0.1);
1033+
padding: 2rem;
1034+
position: relative;
1035+
}
1036+
1037+
.testimonial-card::before {
1038+
content: '"';
1039+
position: absolute;
1040+
top: 1rem;
1041+
left: 1.5rem;
1042+
font-family: 'Archivo Black', sans-serif;
1043+
font-size: 4rem;
1044+
color: var(--yellow);
1045+
opacity: 0.2;
1046+
line-height: 1;
1047+
}
1048+
1049+
.testimonial-text {
1050+
font-size: 1.1rem;
1051+
line-height: 1.6;
1052+
color: var(--white);
1053+
font-style: italic;
1054+
padding-left: 1rem;
1055+
}
1056+
1057+
.testimonial-author {
1058+
margin-top: 1.5rem;
1059+
font-family: 'Space Mono', monospace;
1060+
font-size: 0.8rem;
1061+
color: rgba(255, 255, 255, 0.6);
1062+
}
1063+
1064+
.testimonial-author a {
1065+
color: var(--cyan);
1066+
text-decoration: none;
1067+
}
1068+
1069+
.testimonial-author a:hover {
1070+
color: var(--yellow);
1071+
}
10161072
</style>
10171073
</head>
10181074
<body>
@@ -1101,30 +1157,30 @@ <h2 class="install-title">Get Started in <span class="highlight">10 Seconds</spa
11011157
<div class="step-number">1</div>
11021158
<h3>Install</h3>
11031159
<div class="code-block">
1104-
<code>brew install tobi/tap/try</code>
1160+
<code>gem install try-cli</code>
11051161
<button class="copy-btn" onclick="copyCode(this)">Copy</button>
11061162
</div>
1107-
<p class="step-note">macOS via Homebrew. Other platforms coming soon™</p>
1163+
<p class="step-note">Works anywhere Ruby runs. Zero dependencies.</p>
11081164
</div>
11091165

11101166
<div class="install-card">
11111167
<div class="step-number">2</div>
1112-
<h3>Try Something</h3>
1168+
<h3>Shell Setup</h3>
11131169
<div class="code-block">
1114-
<code>try cool-experiment</code>
1170+
<code>eval "$(try init)"</code>
11151171
<button class="copy-btn" onclick="copyCode(this)">Copy</button>
11161172
</div>
1117-
<p class="step-note">Creates ~/tries/YYYY-MM-DD-cool-experiment and drops you in</p>
1173+
<p class="step-note">Add to .zshrc or .bashrc. Fish users: see docs.</p>
11181174
</div>
11191175

11201176
<div class="install-card">
11211177
<div class="step-number">3</div>
1122-
<h3>Go Wild</h3>
1178+
<h3>Try Something</h3>
11231179
<div class="code-block">
1124-
<code>code . && npm init -y && echo "🚀"</code>
1180+
<code>try cool-experiment</code>
11251181
<button class="copy-btn" onclick="copyCode(this)">Copy</button>
11261182
</div>
1127-
<p class="step-note">Chaos, but organized. Your future self will thank you.</p>
1183+
<p class="step-note">Creates ~/src/tries/YYYY-MM-DD-cool-experiment</p>
11281184
</div>
11291185
</div>
11301186

@@ -1138,10 +1194,10 @@ <h3>Go Wild</h3>
11381194
</div>
11391195

11401196
<div class="alt-install">
1141-
<p>OR IF YOU'RE FEELING FANCY</p>
1197+
<p>PREFER HOMEBREW?</p>
11421198
<div class="alt-methods">
11431199
<div class="code-block">
1144-
<code>gem install try-cli</code>
1200+
<code>brew tap tobi/try https://github.com/tobi/try && brew install try</code>
11451201
<button class="copy-btn" onclick="copyCode(this)">Copy</button>
11461202
</div>
11471203
</div>
@@ -1231,13 +1287,28 @@ <h3 class="feature-title">Late Night Friendly</h3>
12311287
</div>
12321288
</section>
12331289

1234-
<!-- Quote Section -->
1290+
<!-- Testimonials Section -->
12351291
<section class="quote-section">
12361292
<div class="quote-content">
12371293
<p class="quote-text">
1238-
"The best way to have a good idea is to have lots of ideas and throw away the bad ones."
1294+
"This new try tool from @tobi looks exactly what I didn't even realize that I needed!"
12391295
</p>
1240-
<p class="quote-author">— Linus Pauling, Two-time Nobel Prize Winner</p>
1296+
<p class="quote-author"><a href="https://x.com/dhh" style="color: var(--yellow); text-decoration: none;">@dhh</a>, Creator of Ruby on Rails</p>
1297+
</div>
1298+
</section>
1299+
1300+
<section class="testimonial-grid">
1301+
<div class="testimonial-card">
1302+
<p class="testimonial-text">"The biggest positive change to my local workflow in the past year. Nothing comes close."</p>
1303+
<p class="testimonial-author"><a href="https://x.com/kovyrin">@kovyrin</a></p>
1304+
</div>
1305+
<div class="testimonial-card">
1306+
<p class="testimonial-text">"I LOVE @tobi's try CLI... no need for one folder for all your playground and experiments."</p>
1307+
<p class="testimonial-author"><a href="https://x.com/shreygupta">@shreygupta</a></p>
1308+
</div>
1309+
<div class="testimonial-card">
1310+
<p class="testimonial-text">"Try is amazing. I have so so many tries now. Love it."</p>
1311+
<p class="testimonial-author"><a href="https://x.com/robzolkos">@robzolkos</a></p>
12411312
</div>
12421313
</section>
12431314

0 commit comments

Comments
 (0)