Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## . | |
## ## ## == | |
## ## ## ## ## === | |
/"""""""""""""""""\___/ === | |
{ / ===- | |
\______ O __/ | |
\ \ __/ | |
\____\_______/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<script> | |
async function load() { | |
let say = await import('./say.js'); | |
say.hi(); // Hello! | |
say.bye(); // Bye! | |
say.default(); // Module loaded (export default)! | |
} | |
</script> | |
<button onclick="load()">Click me</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const ockto = ` | |
MMM. .MMM | |
MMMMMMMMMMMMMMMMMMM | |
MMMMMMMMMMMMMMMMMMM _________________________________ | |
MMMMMMMMMMMMMMMMMMMMM | | | |
MMMMMMMMMMMMMMMMMMMMMMM | Responsive is better than fast. | | |
MMMMMMMMMMMMMMMMMMMMMMMM |_ _____________________________| | |
MMMM::- -:::::::- -::MMMM |/ | |
MM~:~ 00~:::::~ 00~:~MM | |
.. MMMMM::.00:::+:::.00::MMMMM .. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<script type="module"> | |
import { h, Component, render } from 'https://unpkg.com/preact?module'; | |
import htm from 'https://unpkg.com/htm?module'; | |
// Initialize htm with Preact | |
const html = htm.bind(h); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="observablehq-283dc2f2"></div> | |
<p>Credit: <a href="https://observablehq.com/d/e6d73635a98814b7@519">Bar Chart by Eric Michael Greeff</a></p> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@observablehq/inspector@5/dist/inspector.css"> | |
<script type="module"> | |
import {Runtime, Inspector} from "https://cdn.jsdelivr.net/npm/@observablehq/runtime@5/dist/runtime.js"; | |
import define from "https://api.observablehq.com/d/[email protected]?v=3"; | |
new Runtime().module(define, Inspector.into("#observablehq-283dc2f2")); | |
</script> |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const http = require('http'); | |
http.createServer().on('request', (request, response) => { | |
response.end('smoll server'); | |
}).listen(8080); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addEventListener('fetch', event => { | |
event.respondWith(slackWebhookHandler(event.request)); | |
}); | |
// SLACK_TOKEN is used to authenticate requests are from Slack. | |
// Keep this value secret. | |
let SLACK_TOKEN = 'PUTYOURTOKENHERE'; | |
let BOT_NAME = 'Crypto-bot π€'; | |
let REPO_URL = 'https://github.com/cloudflare/templates'; |