Skip to content

Commit

Permalink
Anywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
sourishkrout committed Oct 9, 2024
1 parent 0804004 commit 1566cb3
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion docs/0_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@ Borrows from Jupyter but accounts for developers and operators splitting time be

![Markdown](https://cdn.foliovision.com/images/2017/03/i-love-markdown-580x387.png)

## Runs Anywhere 🌍

Just like Chromium is powering Brave, Chrome, and Edge, Runme is built on the VS Code Platform (OSS). You don't have to use Microsoft's VS Code.

Pick your favorite flavor 🍦:

```ruby {"id":"01J9QNCBKDPS7670F73ZD46KVK","interactive":"true","terminalRows":"9"}
colors = ["\e[31m", "\e[32m", "\e[33m", "\e[34m", "\e[35m", "\e[36m", "\e[37m"]
editors = ["VSCodium, Eclipse Theia", "GitHub Codespaces", "Coder's code-server", "Google IDX, GCP Cloud Editor", "Gitpod", "The newly hyped AI-first Cursor"]

puts "\e[1mJust grab Runme from Open-VSX.org and you're good to go:\n\e[0m"

editors.each_with_index do |editor, index|
color = colors[index % colors.length]
puts "#{color}- #{editor}\e[0m"
sleep 0.5
end
```

## Keep docs generic

Don't clutter your runnable docs with shell-scripting. Instead, we can configure the docs behavior at multiple levels:
Expand Down Expand Up @@ -99,7 +118,7 @@ Non-text outputs are automatically detected and rendered as media if `interactiv
SELECT title, num_characters, timestamp, id, revision_id FROM
`bigquery-public-data.samples.wikipedia`
WHERE num_characters < 67100
LIMIT 10;
LIMIT 12;
```

```sh {"id":"01J9Q0TBXDFNMWWPDYPYY66FR3","interactive":"false"}
Expand Down

0 comments on commit 1566cb3

Please sign in to comment.