123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <!doctype html><!-- This is a valid HTML5 document. -->
- <!-- Screen readers, SEO, extensions and so on. -->
- <html lang="fr">
- <!-- Has to be within the first 1024 bytes, hence before the `title` element
- See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
- <meta charset="utf-8">
- <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
- <!-- The viewport meta is quite crowded and we are responsible for that.
- See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
- <meta name="viewport" content="width=device-width,initial-scale=1">
- <!-- Required to make a valid HTML5 document. -->
- <title>Write plain text files (archive) — David Larlet</title>
- <meta name="description" content="Publication mise en cache pour en conserver une trace.">
- <!-- That good ol' feed, subscribe :). -->
- <link rel="alternate" type="application/atom+xml" title="Feed" href="/david/log/">
- <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
- <link rel="apple-touch-icon" sizes="180x180" href="/static/david/icons2/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/static/david/icons2/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/static/david/icons2/favicon-16x16.png">
- <link rel="manifest" href="/static/david/icons2/site.webmanifest">
- <link rel="mask-icon" href="/static/david/icons2/safari-pinned-tab.svg" color="#07486c">
- <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
- <meta name="msapplication-TileColor" content="#f7f7f7">
- <meta name="msapplication-config" content="/static/david/icons2/browserconfig.xml">
- <meta name="theme-color" content="#f7f7f7" media="(prefers-color-scheme: light)">
- <meta name="theme-color" content="#272727" media="(prefers-color-scheme: dark)">
- <!-- Documented, feel free to shoot an email. -->
- <link rel="stylesheet" href="/static/david/css/style_2021-01-20.css">
- <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
- <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
- <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
- <link rel="preload" href="/static/david/css/fonts/triplicate_t4_poly_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" crossorigin>
- <link rel="preload" href="/static/david/css/fonts/triplicate_t3_regular.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
- <link rel="preload" href="/static/david/css/fonts/triplicate_t3_bold.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
- <link rel="preload" href="/static/david/css/fonts/triplicate_t3_italic.woff2" as="font" type="font/woff2" media="(prefers-color-scheme: dark)" crossorigin>
- <script>
- function toggleTheme(themeName) {
- document.documentElement.classList.toggle(
- 'forced-dark',
- themeName === 'dark'
- )
- document.documentElement.classList.toggle(
- 'forced-light',
- themeName === 'light'
- )
- }
- const selectedTheme = localStorage.getItem('theme')
- if (selectedTheme !== 'undefined') {
- toggleTheme(selectedTheme)
- }
- </script>
-
- <meta name="robots" content="noindex, nofollow">
- <meta content="origin-when-cross-origin" name="referrer">
- <!-- Canonical URL for SEO purposes -->
- <link rel="canonical" href="https://sive.rs/plaintext">
-
- <body class="remarkdown h1-underline h2-underline h3-underline em-underscore hr-center ul-star pre-tick" data-instant-intensity="viewport-all">
-
-
- <article>
- <header>
- <h1>Write plain text files</h1>
- </header>
- <nav>
- <p class="center">
- <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
- </svg> Accueil</a> •
- <a href="https://sive.rs/plaintext" title="Lien vers le contenu original">Source originale</a>
- </p>
- </nav>
- <hr>
- <p>
- I write almost everything important in my life: thoughts, plans, notes, diaries, correspondence, code, articles, and entire books.
- </p>
- <p>
- They are my extended memory — my noted self — my organized thoughts.
- I refer to them often.
- I search them, update them, and learn from them.
- I convert them into HTML to make websites, or LaTeX to make books.
- </p>
- <p>
- My written words are my most precious asset.
- They are also a history of my life.
- <strong>
- That’s why I only use plain text files.
- </strong>
- They are the most reliable, flexible, and long-lasting option.
- Here’s why.
- </p>
- <h2>
- PORTABLE
- </h2>
- <p>
- I’ve brought my text files with me since 1990, from Mac to Windows to Linux to BSD, from PCs to laptops to tablets to Android to iOS to a tiny device the size of my thumb, and back again.
- </p>
- <p>
- <strong>
- Every device, including ones long gone, and ones not invented yet, can read and edit plain text.
- </strong>
- Whether future virtual reality, or a chip you can implant in your earlobe, plain text will be there.
- Will Microsoft Word?
- Evernote?
- Notion?
- Maybe.
- Maybe not.
- </p>
- <p>
- But plain text?
- Always.
- Everywhere.
- </p>
- <h2>
- UN-COMMERCIAL
- </h2>
- <p>
- Every few years a new company says you should use their special format.
- You have to pay them a monthly fee to use it — or keep all of your documents in their care.
- They offer some convenience or features, but at the cost of flexibility, portability, and independence.
- </p>
- <p>
- When you store your writing in one company’s unique format, then you need that program to access it.
- Then the economy takes a turn, they go out of business, and your work is trapped in an unusable format.
- </p>
- <p>
- <strong>
- You will outlive these companies.
- </strong>
- Your writing should outlive you.
- Depending on companies is not an option.
- </p>
- <p>
- Plain text is un-commercial.
- It removes you from the world of subscriptions and hype.
- There will always be plenty of free, non-commercial software in the public domain for reading and editing text files.
- </p>
- <h2>
- OFFLINE
- </h2>
- <p>
- There are places and times when you can’t get online.
- Don’t depend on any tool that needs an internet connection.
- </p>
- <p>
- <strong>
- There are great benefits to being intentionally offline and unreachable, to focus.
- </strong>
- It’s a super productivity boost.
- You need to be able to write, and have access to all your writing, during these times.
- </p>
- <h2>
- NO DEPENDENCIES
- </h2>
- <p>
- If you rely on Word, Evernote or Notion, for example, then you can’t work unless you have Word, Evernote, or Notion.
- <strong>
- You are helpless without them.
- </strong>
- You are dependent.
- </p>
- <p>
- People tell me about more tools I could use in addition to my text files.
- But I don’t need or want anything else.
- <strong>
- Plain text files and a basic text editor are enough.
- This is everything you need for great thinking and writing.
- </strong>
- (A paper notebook and pencil are enough, too.)
- </p>
- <p>
- If you only use plain text, you can work on any device, forever.
- The less you depend on, the better.
- Peace and focus come when you stop looking for more.
- </p>
- <h2>
- EASIEST TO CONVERT
- </h2>
- <p>
- Plain text can be converted into anything else.
- </p>
- <p>
- HTML, Markdown, JSON, LaTeX, and many other standard formats, are just plain text.
- I’ve written four books and four hundred blog posts in plain text.
- </p>
- <p>
- You can make your own personal formats in your plain text files.
- Maybe in each diary entry, the first two lines are like:
- </p>
- <pre>
- date: 2022-02-28
- tags: where-to-live, kids, dog, anxious
- </pre>
- <p>
- Then it’s easy to use any little scripting language like Ruby, Python, or JavaScript to grab the date and tags, and use them for categorizing, sorting, renaming, archiving, or exporting.
- </p>
- <p>
- Or if you don’t want to do it yourself, then it’s easy to find someone who can.
- Anyone who’s been programming for more than a week should be able to do it easily.
- </p>
- <h2>
- NEED HIERARCHY?
- </h2>
- <p>
- Use directories — also known as folders.
- These are also good for keeping your text together with other files like images and audio.
- </p>
- <pre>
- Documents/
- Documents/Diary/
- Documents/Diary/2022/
- Documents/Diary/2022/2022-02-28.txt
- Documents/Thoughts/
- Documents/Thoughts/WhereToLive/
- Documents/Thoughts/WhereToLive/2019-06-30.txt
- Documents/Thoughts/WhereToLive/2020-01-18.txt
- Documents/Ideas/
- Documents/Ideas/MusicalChairs.txt
- Documents/Ideas/NewHouse/
- Documents/Ideas/NewHouse/Design/
- Documents/Ideas/NewHouse/Design/entryway.jpg
- Documents/Ideas/NewHouse/Design/roof.jpg
- Documents/Ideas/NewHouse/Architect/
- Documents/Ideas/NewHouse/Architect/JM_Lim.txt
- Documents/Ideas/NewHouse/Architect/TPS_Inc.txt
- </pre>
- <h2>
- NEED VISUALS OR GRAPHICS?
- </h2>
- <p>
- Need visual mind-mapping with circles and lines?
- Maybe you do.
- <strong>
- But maybe you don’t.
- </strong>
- Maybe it’s just another distraction, focusing on the tools instead of your thinking.
- </p>
- <p>
- I love that plain text files have no formatting to tinker with.
- A tab key, SHIFT KEY, and vertical line breaks can go a long way, keeping you writing instead of formatting.
- </p>
- <p>
- If you really need graphics, do your drawing using something else.
- Digital drawing into SVG files.
- Paper drawing, scanned into JPGs.
- </p>
- <p>
- Formats that aren’t owned by any company.
- Formats that will outlast you.
- </p>
- <p>
- Keep your graphics files alongside your text files.
- But keep your text as plain text.
- </p>
- <h2>
- CONCLUSION
- </h2>
- <p>
- Reliable, flexible, portable, independent, and long-lasting.
- Plain text files will be readable by future generations, hundreds of years from now.
- </p>
- <p>
- I especially enjoy the tranquility of their offline, non-commercial nature.
- They’re quiet.
- They’re focused.
- (As I aim to be.)
- </p>
- <p><img src="https://sive.rs/images/plaintext.png" alt="screen shot of the text of this post"></p>
- </article>
-
-
- <hr>
-
- <footer>
- <p>
- <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
- </svg> Accueil</a> •
- <a href="/david/log/" title="Accès au flux RSS"><svg class="icon icon-rss2">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-rss2"></use>
- </svg> Suivre</a> •
- <a href="http://larlet.com" title="Go to my English profile" data-instant><svg class="icon icon-user-tie">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-user-tie"></use>
- </svg> Pro</a> •
- <a href="mailto:david%40larlet.fr" title="Envoyer un courriel"><svg class="icon icon-mail">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-mail"></use>
- </svg> Email</a> •
- <abbr class="nowrap" title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340"><svg class="icon icon-hammer2">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-hammer2"></use>
- </svg> Légal</abbr>
- </p>
- <template id="theme-selector">
- <form>
- <fieldset>
- <legend><svg class="icon icon-brightness-contrast">
- <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-brightness-contrast"></use>
- </svg> Thème</legend>
- <label>
- <input type="radio" value="auto" name="chosen-color-scheme" checked> Auto
- </label>
- <label>
- <input type="radio" value="dark" name="chosen-color-scheme"> Foncé
- </label>
- <label>
- <input type="radio" value="light" name="chosen-color-scheme"> Clair
- </label>
- </fieldset>
- </form>
- </template>
- </footer>
- <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
- <script>
- function loadThemeForm(templateName) {
- const themeSelectorTemplate = document.querySelector(templateName)
- const form = themeSelectorTemplate.content.firstElementChild
- themeSelectorTemplate.replaceWith(form)
-
- form.addEventListener('change', (e) => {
- const chosenColorScheme = e.target.value
- localStorage.setItem('theme', chosenColorScheme)
- toggleTheme(chosenColorScheme)
- })
-
- const selectedTheme = localStorage.getItem('theme')
- if (selectedTheme && selectedTheme !== 'undefined') {
- form.querySelector(`[value="${selectedTheme}"]`).checked = true
- }
- }
-
- const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
- window.addEventListener('load', () => {
- let hasDarkRules = false
- for (const styleSheet of Array.from(document.styleSheets)) {
- let mediaRules = []
- for (const cssRule of styleSheet.cssRules) {
- if (cssRule.type !== CSSRule.MEDIA_RULE) {
- continue
- }
- // WARNING: Safari does not have/supports `conditionText`.
- if (cssRule.conditionText) {
- if (cssRule.conditionText !== prefersColorSchemeDark) {
- continue
- }
- } else {
- if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
- continue
- }
- }
- mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
- }
-
- // WARNING: do not try to insert a Rule to a styleSheet you are
- // currently iterating on, otherwise the browser will be stuck
- // in a infinite loop…
- for (const mediaRule of mediaRules) {
- styleSheet.insertRule(mediaRule.cssText)
- hasDarkRules = true
- }
- }
- if (hasDarkRules) {
- loadThemeForm('#theme-selector')
- }
- })
- </script>
- </body>
- </html>
|