- https://github.com/edwardtufte/tufte-css: Where it all starts.
- https://github.com/jez/tufte-pandoc-css: Starter files for using Pandoc Markdown with Tufte CSS, untouched since March 2019 (MIT licensed).
- https://github.com/schollz/markdown2tufte: Based on the previous link. The
tufte.html5
file is identical. Untouched (excepted the README) since November 2017. - https://eddelbuettel.github.io/tint/: Tint Is Not Tufte, An implementation in R Markdown, possible inspiration.
- https://arthurperret.fr/2018/12/04/semantique-et-mise-en-forme/: Contenu en français.
- https://github.com/Synthetica9/tufte-pandoc: Seems to be LaTeX-specific.
- https://goodwill.awardwinninghuman.com/: Good-looking page with D3.js graphics.
You can use Cachix (I haven't tried it yet but people are happy with it), or spend time like I do crawling through similar notes.
I have to put back my notes in order, because of this tweets: https://twitter.com/noteed/status/1285875859468029958
It turns out I did use a cache on Digital Ocean Spaces in the past, but I didn't have much notes.
See: https://computers-are-fast.github.io/
Create a file system in RAM:
hosts.csv | |
hosts.db |
{-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
import Data.Binary (Binary (..)) | |
import Data.Typeable (Typeable) | |
import Hakyll.Core.Compiler.Internal (compilerAsk, compilerProvider) | |
import Hakyll.Core.Provider (resourceFilePath) | |
import Hakyll |
$ ./dist/build/site/site build | |
Initialising... | |
Creating store... | |
Creating provider... | |
Running rules... | |
Checking for out-of-date items | |
Compiling | |
updated hello.txt | |
Success | |
$ ls _site/ |
The theme-color
meta tag is used to specify a toolbar color on Android. The color is used both in Chrome and when the page is used as a web app added to the home screen (actually, there is also a theme-color attribute in the manifest).
To turn the page into a web app (instead of a Chrome tab), add a web app manifest file. See https://developers.google.com/web/fundamentals/engage-and-retain/app-install-banners/ for some detail. Note that the service worker is not necessary for the web app look.
The service-worker is used to implement the off-line behavior of the app, but also web push notifications.