This is the Read Me file.
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
index.html: | | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<link rel="stylesheet" href="styles/styles.css" /> | |
</head> | |
<body> | |
<h1>Home page</h1> |
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
# This is a trivial self-contained demo site built with Graph Origami. | |
reviews.yaml: | |
- summary: Positive reinformement and insight. | |
rating: 5 | |
location: Southampton, NY | |
coach: Sue | |
text: | | |
Thanks for allowing me to talk things out. It makes it easier to get some | |
clarity. |
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
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<title>Reviews</title> | |
<link rel="stylesheet" href="main.css" /> | |
</head> | |
<body> | |
<h1>Reviews</h1> | |
<div class="cards"> |
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
a | |
able | |
about | |
above | |
accept | |
across | |
act | |
actually | |
add | |
admit |
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
import fs from "node:fs/promises"; | |
// Create a 1MB string value to a file | |
const string = "a".repeat(1000000); | |
const startValue = performance.mark("string"); | |
await fs.writeFile("1MB.txt", string); | |
const measureValue = performance.measure("write string value", startValue); | |
console.log(`${measureValue.name}: ${measureValue.duration}ms`); | |
// Write the string as a String object |
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
// This configuration tells VS Code to launch the project via `npm start`. | |
"type": "node", | |
"request": "launch", |
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 default function greet(name: string) { | |
return `Hello, ${name}!`; | |
} |
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
# Enable the RewriteEngine | |
RewriteEngine On | |
# Match requests for .keys.json at any directory level, including the root | |
RewriteRule ^(.*)/?\.keys\.json$ /keys.php?dir=$1 [L] |
title | template |
---|---|
Cool document |
coolPage.ori |
This document is so cool that it specifies its own template.