From caa11671494f26a4004f31cd7e6dbf1f1cd0a0c0 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 21 Jul 2022 15:20:57 +0200 Subject: [PATCH] show tags from 2 sources --- app.js | 15 +- package-lock.json | 616 + sources/tasks.json | 61501 +++++++++++++++++++++++++++++++++++++++++++ yarn.lock | 339 +- 4 files changed, 62294 insertions(+), 177 deletions(-) create mode 100644 package-lock.json create mode 100755 sources/tasks.json diff --git a/app.js b/app.js index 6ff27cc..3bcb09b 100644 --- a/app.js +++ b/app.js @@ -1,5 +1,5 @@ const fs = require('node-fs') -const sourceFilePath = 'source/tasks.json'; +const sourceFilePath = './sources/tasks.json'; const stats = { countAllTasks: 0, tasksByDay: {} @@ -14,7 +14,7 @@ let countExcluded = 0; let countIncluded = 0; // prendre le json source représentant les tâches DONE -console.log(' ### lecture de source/emacs_json.json'); +console.log(` ### lecture de ${sourceFilePath}`); fs.stat(sourceFilePath, function (err, stat) { if (err == null) { @@ -22,7 +22,7 @@ fs.stat(sourceFilePath, function (err, stat) { sortTasksFromJson(stat) } else if (err.code === 'ENOENT') { // file does not exist - console.error(`le fichier ${sourceFilePath} est introuvable. Impossible d en extraire des infos.`) + console.error(`le fichier ${sourceFilePath} est introuvable. Impossible d en extraire des infos.`, err) } else { console.log('Some other error: ', err.code); } @@ -93,6 +93,10 @@ function sortTasksFromJson(statObject) { todoKeyword = elem['drawer']['ARCHIVE_TODO']; } + if (!tags.length && elem['drawer'] && elem['drawer']['ARCHIVE_ITAGS']) { + + tags += elem['drawer']['ARCHIVE_ITAGS']; + } // jour, 11 premiers caractères @@ -167,9 +171,10 @@ function writeHtmlOutput() { } let tagDisplay = ''; - if (dayObj.tags.length) { + // console.log('dayObj.tags', dayObj.tags) + if (dayObj.tags && dayObj.tags.length ) { tagDisplay = `

- ${dayObj.tags.join(' ')} + ${dayObj.tags}

` } diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..e56d8d1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,616 @@ +{ + "name": "org-report-stats", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "node-fs": "^0.1.7", + "nodemon": "^2.0.19" + } + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "license": "ISC" + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "license": "ISC" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/node-fs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz", + "integrity": "sha512-XqDBlmUKgDGe76+lZ/0sRBF3XW2vVcK07+ZPvdpUTK8jrvtPahUd0aBqJ9+ZjB01ANjZLuvK3O/eoMVmz62rpA==", + "os": [ + "linux", + "darwin", + "freebsd", + "win32", + "smartos", + "sunos" + ], + "engines": { + "node": ">=0.1.97" + } + }, + "node_modules/nodemon": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", + "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "simple-update-notifier": "^1.0.7", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "license": "MIT", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/simple-update-notifier": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", + "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", + "license": "MIT", + "dependencies": { + "semver": "~7.0.0" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "license": "ISC", + "dependencies": { + "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "license": "MIT" + } + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node-fs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz", + "integrity": "sha512-XqDBlmUKgDGe76+lZ/0sRBF3XW2vVcK07+ZPvdpUTK8jrvtPahUd0aBqJ9+ZjB01ANjZLuvK3O/eoMVmz62rpA==" + }, + "nodemon": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", + "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "requires": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "simple-update-notifier": "^1.0.7", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + } + }, + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "simple-update-notifier": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", + "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", + "requires": { + "semver": "~7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "requires": { + "nopt": "~1.0.10" + } + }, + "undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" + } + } +} diff --git a/sources/tasks.json b/sources/tasks.json new file mode 100755 index 0000000..ae79569 --- /dev/null +++ b/sources/tasks.json @@ -0,0 +1,61501 @@ +{ + "$$data_type": "org-document", + "properties": { + "title": [ + "Trucs pour apprendre à bien utiliser orgmode" + ], + "filetags": [], + "author": [ + "tykayn" + ], + "creator": "Emacs 28.1 (Org mode 9.5.4)", + "date": [], + "description": [], + "email": "contact@cipherbliss.com", + "language": "en" + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2b51f00", + "properties": { + "robust-begin": 1, + "robust-end": 131, + "post-blank": 2, + "post-affiliated": 1, + "mode": "first-section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4cfbb28", + "properties": { + "post-blank": 0, + "post-affiliated": 49, + "mode": "property-drawer", + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/exported", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org80faa07", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org87e8174", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2ee1698f-5cf1-470a-b3a7-38ef3469e2e9" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer keepassxc sur bureau windows*", + "pre-blank": 0, + "robust-begin": 482, + "robust-end": 566, + "level": 1, + "priority": null, + "tags": [ + "@work" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 135, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer keepassxc sur bureau windows*" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1e40288", + "properties": { + "robust-begin": 188, + "robust-end": 566, + "post-blank": 2, + "post-affiliated": 188, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc210bff", + "properties": { + "post-blank": 0, + "post-affiliated": 484, + "mode": null, + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/exported", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5386889", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0200447", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9fadbd83-b1e6-440d-bbdc-96ff760d7441" + }, + "properties": { + "tags-all": [], + "raw-value": "chatons newsletter trouver un presta chatons pour héberger la liste de diffusion", + "pre-blank": 0, + "robust-begin": 952, + "robust-end": 1036, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 570, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "chatons newsletter trouver un presta chatons pour héberger la liste de diffusion" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org739c639", + "properties": { + "robust-begin": 658, + "robust-end": 1036, + "post-blank": 2, + "post-affiliated": 658, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf45d522", + "properties": { + "post-blank": 0, + "post-affiliated": 954, + "mode": null, + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/exported", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org31e0c03", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org93e8e98", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5c5c15a0-ed24-4a08-add2-cfa3773935ad" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver les cartes des lignes de transport locales pour les reporter dans OSM", + "pre-blank": 0, + "robust-begin": 1429, + "robust-end": 1644, + "level": 1, + "priority": null, + "tags": [ + "osm", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 1040, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver les cartes des lignes de transport locales pour les reporter dans OSM" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org22f797c", + "properties": { + "robust-begin": 1135, + "robust-end": 1644, + "post-blank": 2, + "post-affiliated": 1135, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8679c9e", + "properties": { + "post-blank": 1, + "post-affiliated": 1431, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8c2fe8b", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/export_tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/export_tasks.org::*exporter les écrits du camp chatons", + "application": null, + "search-option": "*exporter les écrits du camp chatons", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "exporter les écrits du camp chatons" + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc5b1eb8", + "properties": { + "post-blank": 0, + "post-affiliated": 1562, + "mode": null, + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/exported", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5558eda", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org52567f0", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:09fbcfdd-a98f-476d-9d38-b8667bb40343" + }, + "properties": { + "tags-all": [], + "raw-value": "voir la doc d'upgrade de mobilizon pour régler le prob de timezone", + "pre-blank": 0, + "robust-begin": 2016, + "robust-end": 2100, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 1648, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T16:05:00", + "end": "2021-12-10T16:05:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 16:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir la doc d'upgrade de mobilizon pour régler le prob de timezone" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga4fa154", + "properties": { + "robust-begin": 1722, + "robust-end": 2100, + "post-blank": 1, + "post-affiliated": 1722, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7cb98fe", + "properties": { + "post-blank": 0, + "post-affiliated": 2018, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2c5f03e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/export_tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/export_tasks.org::+TITLE: Tâches à faire 2021", + "application": null, + "search-option": "+TITLE: Tâches à faire 2021", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org10d96a8", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4724b320-ef91-4eca-a933-3854b14f3baf" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer keepassxc sur bureau windows*", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "@work" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 2103, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer keepassxc sur bureau windows*" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1eb9581", + "properties": { + "robust-begin": 2156, + "robust-end": 2434, + "post-blank": 1, + "post-affiliated": 2156, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org93fc761", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:04eda26a-5e92-4a40-8f1d-46b5fca01453" + }, + "properties": { + "tags-all": [], + "raw-value": "chatons newsletter trouver un presta chatons pour héberger la liste de diffusion", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 2437, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "chatons newsletter trouver un presta chatons pour héberger la liste de diffusion" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4be62a2", + "properties": { + "robust-begin": 2525, + "robust-end": 2803, + "post-blank": 1, + "post-affiliated": 2525, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org25f8736", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:375add9d-28db-4238-8321-7e143f3d4ced" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver les cartes des lignes de transport locales pour les reporter dans OSM", + "pre-blank": 0, + "robust-begin": 3180, + "robust-end": 3311, + "level": 1, + "priority": null, + "tags": [ + "osm", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 2806, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-08T12:14:00", + "end": "2021-12-08T12:14:00", + "type": "inactive", + "raw-value": "[2021-12-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver les cartes des lignes de transport locales pour les reporter dans OSM" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc111446", + "properties": { + "robust-begin": 2901, + "robust-end": 3311, + "post-blank": 1, + "post-affiliated": 2901, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb4e9620", + "properties": { + "post-blank": 0, + "post-affiliated": 3182, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org40a4205", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/export_tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/export_tasks.org::*exporter les écrits du camp chatons", + "application": null, + "search-option": "*exporter les écrits du camp chatons", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "exporter les écrits du camp chatons" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8214baf", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/exported_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "exported_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:fdd445ef-f6c6-4df9-b850-80616b5b68df" + }, + "properties": { + "tags-all": [], + "raw-value": "voir la doc d'upgrade de mobilizon pour régler le prob de timezone", + "pre-blank": 0, + "robust-begin": 3667, + "robust-end": 3836, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 3314, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T16:05:00", + "end": "2021-12-10T16:05:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 16:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir la doc d'upgrade de mobilizon pour régler le prob de timezone" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb99bbcc", + "properties": { + "robust-begin": 3388, + "robust-end": 3836, + "post-blank": 2, + "post-affiliated": 3388, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8e9b17d", + "properties": { + "post-blank": 2, + "post-affiliated": 3669, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgdbc0023", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/export_tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/export_tasks.org::+TITLE: Tâches à faire 2021", + "application": null, + "search-option": "+TITLE: Tâches à faire 2021", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org48fcbac", + "properties": { + "post-blank": 0, + "post-affiliated": 3756, + "mode": null, + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/export", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org7b5ce5e", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org72b8ca5", + "drawer": { + "ARCHIVE_TIME": "2021-09-17 ven. 15:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:631d669a-bfa7-44b2-b472-10cd70432428" + }, + "properties": { + "tags-all": [], + "raw-value": "CIL Gometz :associatif:cil-gometz:", + "pre-blank": 0, + "robust-begin": 4117, + "robust-end": 4245, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 3840, + "title": [ + "CIL Gometz :associatif:cil-gometz:" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ec8ad8", + "properties": { + "robust-begin": 3886, + "robust-end": 4245, + "post-blank": 3, + "post-affiliated": 3886, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org41571ae", + "properties": { + "post-blank": 1, + "post-affiliated": 4119, + "mode": null, + "granularity": null + }, + "contents": [ + "@cil-gometz\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2e82972", + "properties": { + "post-blank": 1, + "post-affiliated": 4136, + "mode": null, + "granularity": null + }, + "contents": [ + "{! 81ca0689-bb1e-498d-aa5c-c8c90edcfb88 !}\n{! 54ecc0af-aa28-42bb-9278-83df77ca7845 !}\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6ecd6a3", + "properties": { + "post-blank": 0, + "post-affiliated": 4225, + "mode": null, + "granularity": null + }, + "contents": [ + "@associatif,\n ", + { + "$$data_type": "org-node", + "type": "underline", + "ref": "org4dc06ae", + "properties": { + "post-blank": 0 + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "underline", + "ref": "orga2988e5", + "properties": { + "post-blank": 0 + }, + "contents": [ + "__" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfe36db0", + "drawer": { + "ARCHIVE_TIME": "2021-09-17 ven. 15:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ad2a8d86-a9e8-42b4-97bb-ab96169af598" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer volet baie vitrée, call boite de stores à arpajon", + "pre-blank": 0, + "robust-begin": 4559, + "robust-end": 4664, + "level": 1, + "priority": null, + "tags": [ + "travaux" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 4250, + "title": [ + "réparer volet baie vitrée, call boite de stores à arpajon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb699548", + "properties": { + "robust-begin": 4328, + "robust-end": 4664, + "post-blank": 2, + "post-affiliated": 4328, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0c81959", + "properties": { + "post-blank": 1, + "post-affiliated": 4561, + "mode": null, + "granularity": null + }, + "contents": [ + "\t@travaux\n", + { + "$$data_type": "org-node", + "type": "underline", + "ref": "org9f6173b", + "properties": { + "post-blank": 0 + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "underline", + "ref": "orgbe8fbec", + "properties": { + "post-blank": 0 + }, + "contents": [ + "__" + ] + } + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0abcaf4", + "properties": { + "post-blank": 0, + "post-affiliated": 4584, + "mode": null, + "granularity": null + }, + "contents": [ + "Archived entries from file /home/tykayn/Nextcloud/textes/orgmode/export", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgd398b3a", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2af8113", + "drawer": { + "ARCHIVE_TIME": "2021-09-17 ven. 15:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d1911da7-3114-4c49-a183-cb7b818fbfbb" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter num d'éline dans carnet d'addresses", + "pre-blank": 0, + "robust-begin": 4950, + "robust-end": 4971, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 4668, + "title": [ + "ajouter num d'éline dans carnet d'addresses" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0363f7e", + "properties": { + "robust-begin": 4719, + "robust-end": 4971, + "post-blank": 1, + "post-affiliated": 4719, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orged77898", + "properties": { + "post-blank": 2, + "post-affiliated": 4951, + "mode": null, + "granularity": null + }, + "contents": [ + "0781518141\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org745b526", + "properties": { + "post-blank": 0, + "post-affiliated": 4964, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "underline", + "ref": "orga44f113", + "properties": { + "post-blank": 0 + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "underline", + "ref": "org78e8385", + "properties": { + "post-blank": 0 + }, + "contents": [ + "__" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcae0139", + "drawer": { + "ARCHIVE_TIME": "2021-09-29 mer. 10:49", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9b9445df-b7e4-49c6-9fed-bdbea97f5ab3" + }, + "properties": { + "tags-all": [], + "raw-value": "verif todo list préparation chatons [100%]", + "pre-blank": 0, + "robust-begin": 5321, + "robust-end": 5631, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 4974, + "closed": { + "$$data_type": "timestamp", + "start": "2021-09-25T17:50:00", + "end": "2021-09-25T17:50:00", + "type": "inactive", + "raw-value": "[2021-09-25 sam. 17:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "verif todo list préparation chatons ", + { + "$$data_type": "org-node", + "type": "statistics-cookie", + "ref": "org840c809", + "properties": { + "value": "[100%]", + "post-blank": 0 + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2dcb49c", + "properties": { + "robust-begin": 5024, + "robust-end": 5320, + "post-blank": 0, + "post-affiliated": 5024, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5202a42", + "drawer": { + "CUSTOM_ID": "h:7e238fd0-6907-4deb-bbf5-b791b98acec6" + }, + "properties": { + "tags-all": [], + "raw-value": "quelle spécialité locale d'idf apporter", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 5322, + "closed": { + "$$data_type": "timestamp", + "start": "2021-09-23T17:34:00", + "end": "2021-09-23T17:34:00", + "type": "inactive", + "raw-value": "[2021-09-23 jeu. 17:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "quelle spécialité locale d'idf apporter" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org99d7033", + "properties": { + "robust-begin": 5370, + "robust-end": 5482, + "post-blank": 0, + "post-affiliated": 5370, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org46e0394", + "drawer": { + "CUSTOM_ID": "h:4ec54e96-4855-48b0-b9d4-6b4a4109e658" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre un maillot de bain", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 5484, + "closed": { + "$$data_type": "timestamp", + "start": "2021-09-25T17:50:00", + "end": "2021-09-25T17:50:00", + "type": "inactive", + "raw-value": "[2021-09-25 sam. 17:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prendre un maillot de bain" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org46ea28f", + "properties": { + "robust-begin": 5519, + "robust-end": 5631, + "post-blank": 1, + "post-affiliated": 5519, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgdb779cb", + "drawer": { + "ARCHIVE_TIME": "2021-09-29 mer. 10:49", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5cf1da75-807d-4a97-8a09-f5fd9edde350" + }, + "properties": { + "tags-all": [], + "raw-value": "voir Instagram le_monde_de_v vince", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 5634, + "closed": { + "$$data_type": "timestamp", + "start": "2021-09-25T18:01:00", + "end": "2021-09-25T18:01:00", + "type": "inactive", + "raw-value": "[2021-09-25 sam. 18:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir Instagram le", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org4129a54", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "monde" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgf9e4537", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "de" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org67dc1c9", + "properties": { + "use-brackets-p": false, + "post-blank": 1 + }, + "contents": [ + "v" + ] + }, + "vince" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org15a5041", + "properties": { + "robust-begin": 5676, + "robust-end": 5940, + "post-blank": 1, + "post-affiliated": 5676, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org72e35d6", + "drawer": { + "ARCHIVE_TIME": "2021-09-29 mer. 10:49", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:fd5c074b-78ba-4b58-8a29-864d136306cf" + }, + "properties": { + "tags-all": [], + "raw-value": "voir Instagram le_monde_de_v vince", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 5943, + "closed": { + "$$data_type": "timestamp", + "start": "2021-09-25T17:57:00", + "end": "2021-09-25T17:57:00", + "type": "inactive", + "raw-value": "[2021-09-25 sam. 17:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir Instagram le", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org0dda9b8", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "monde" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5c8732c", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "de" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org342ece0", + "properties": { + "use-brackets-p": false, + "post-blank": 1 + }, + "contents": [ + "v" + ] + }, + "vince" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3cf6b66", + "properties": { + "robust-begin": 5985, + "robust-end": 6249, + "post-blank": 1, + "post-affiliated": 5985, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb90f532", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "site de l'arome", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7c47ab7a-561d-4d44-94a0-8777962f0706" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer facture de septembre", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "pognon", + "tiime" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 6252, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:00:00", + "end": "2021-10-04T14:00:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer facture de septembre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3c8a0b0", + "properties": { + "robust-begin": 6330, + "robust-end": 6629, + "post-blank": 1, + "post-affiliated": 6330, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga574695", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:416190c5-bc80-477f-822e-e6b94d9fda54" + }, + "properties": { + "tags-all": [], + "raw-value": "informer le gens du cil martine.marchetti-rollin@orange.fr de comment ça se passe par écrit", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "cil" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 6632, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-03T14:57:00", + "end": "2021-10-03T14:57:00", + "type": "inactive", + "raw-value": "[2021-10-03 dim. 14:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "informer le gens du cil martine.marchetti-rollin@orange.fr de comment ça se passe par écrit" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9c051a3", + "properties": { + "robust-begin": 6737, + "robust-end": 7001, + "post-blank": 1, + "post-affiliated": 6737, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9bfab6b", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c4b6ef2f-8970-4ee8-aac8-b8e7dc7a88de" + }, + "properties": { + "tags-all": [], + "raw-value": "rajouter coût du ménage jardinage dans les comptes", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "pognon" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 7004, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:01:00", + "end": "2021-10-04T14:01:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rajouter coût du ménage jardinage dans les comptes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6752921", + "properties": { + "robust-begin": 7082, + "robust-end": 7346, + "post-blank": 1, + "post-affiliated": 7082, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4ad6844", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:258dfae3-3266-4397-a547-4ede2cf72dea" + }, + "properties": { + "tags-all": [], + "raw-value": "étude d'achat pour prochaine voiture", + "pre-blank": 0, + "robust-begin": 7658, + "robust-end": 7772, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 7349, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:30:00", + "end": "2021-10-04T14:30:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "étude d'achat pour prochaine voiture" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc82e5e7", + "properties": { + "robust-begin": 7393, + "robust-end": 7772, + "post-blank": 2, + "post-affiliated": 7393, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga2eac1e", + "properties": { + "post-blank": 0, + "post-affiliated": 7659, + "mode": null, + "granularity": null + }, + "contents": [ + "la model 3 long range d'occasion de 2019 - 39000€\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge23741d", + "properties": { + "type": "https", + "path": "//www.lacentrale.fr/auto-occasion-annonce-66101739389.html", + "format": "plain", + "raw-link": "https://www.lacentrale.fr/auto-occasion-annonce-66101739389.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge21d897", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "rangement social", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:aaaa9e28-ab9f-440e-aec5-ae10089218e1" + }, + "properties": { + "tags-all": [], + "raw-value": "Avec Claire", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "social", + "claire", + "famille" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 7776, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:07:00", + "end": "2021-10-04T14:07:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Avec Claire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgccf9e9e", + "properties": { + "robust-begin": 7854, + "robust-end": 8179, + "post-blank": 1, + "post-affiliated": 7854, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb8ab406", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 14:43", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:6cd663a2-436d-4b54-a495-0bdd727f7f31" + }, + "properties": { + "tags-all": [], + "raw-value": "regarder des sites de mission logiciel libre https://www.libre-entreprise.org/", + "pre-blank": 0, + "robust-begin": 8548, + "robust-end": 8568, + "level": 1, + "priority": null, + "tags": [ + "boulot", + "floss" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 8182, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:42:00", + "end": "2021-10-04T14:42:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "regarder des sites de mission logiciel libre ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org58543a5", + "properties": { + "type": "https", + "path": "//www.libre-entreprise.org/", + "format": "plain", + "raw-link": "https://www.libre-entreprise.org/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf10b9a4", + "properties": { + "robust-begin": 8283, + "robust-end": 8568, + "post-blank": 1, + "post-affiliated": 8283, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1157ae7", + "properties": { + "post-blank": 0, + "post-affiliated": 8549, + "mode": null, + "granularity": null + }, + "contents": [ + "\t@boulot\n", + { + "$$data_type": "org-node", + "type": "underline", + "ref": "orgcb3fbbb", + "properties": { + "post-blank": 0 + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "underline", + "ref": "orgf278736", + "properties": { + "post-blank": 0 + }, + "contents": [ + "__" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8cee8e3", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp :chatons/compte rendu", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:980a4aff-0225-49ea-aef7-3b754370f13f" + }, + "properties": { + "tags-all": [], + "raw-value": "qu'est-ce qui vous a bougé la tête", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 8571, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:00:00", + "end": "2021-10-04T16:00:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "qu'est-ce qui vous a bougé la tête" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2df7134", + "properties": { + "robust-begin": 8649, + "robust-end": 8968, + "post-blank": 1, + "post-affiliated": 8649, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd4ed734", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp :chatons/compte rendu", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:250cf820-3827-438c-914b-fad389772850" + }, + "properties": { + "tags-all": [], + "raw-value": "qu'est ce qui vous a un peu frustré", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 8971, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:00:00", + "end": "2021-10-04T16:00:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "qu'est ce qui vous a un peu frustré" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgaeb20df", + "properties": { + "robust-begin": 9014, + "robust-end": 9333, + "post-blank": 1, + "post-affiliated": 9014, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2ea8ddc", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp :chatons/compte rendu", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5dc813f4-f6f2-4d4d-b20c-78b8cb78f3cf" + }, + "properties": { + "tags-all": [], + "raw-value": "ce que je veux mettre en oeuvre", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 9336, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:00:00", + "end": "2021-10-04T16:00:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ce que je veux mettre en oeuvre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org362d062", + "properties": { + "robust-begin": 9375, + "robust-end": 9694, + "post-blank": 3, + "post-affiliated": 9375, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb934337", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "travaux et bricolage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:2103ac42-551f-4fa5-88b7-72373a3954d3" + }, + "properties": { + "tags-all": [], + "raw-value": "=> @travaux @jardin recherche de grillage occultant pour masquer côté cimetière sur une quinzaine de mètres", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 9699, + "title": [ + "=> @travaux @jardin recherche de grillage occultant pour masquer côté cimetière sur une quinzaine de mètres" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3527d8d", + "properties": { + "robust-begin": 9814, + "robust-end": 10120, + "post-blank": 1, + "post-affiliated": 9814, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf2a4f58", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "travaux et bricolage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:da77b4f9-b00d-4f1b-99f5-1af9299de72b" + }, + "properties": { + "tags-all": [], + "raw-value": "=> recherche de transat de compet \"relax\" avec support jambes", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 10123, + "title": [ + "=> recherche de transat de compet \"relax\" avec support jambes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga4921e6", + "properties": { + "robust-begin": 10192, + "robust-end": 10498, + "post-blank": 1, + "post-affiliated": 10192, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org16e5df9", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e9ac3872-9d9f-4383-819f-08ad65041c13" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un rapport des tâches fermées aujourdhui", + "pre-blank": 0, + "robust-begin": 10840, + "robust-end": 10915, + "level": 1, + "priority": null, + "tags": [ + "orgmode", + "learn", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 10501, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T14:59:00", + "end": "2021-10-04T14:59:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 14:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un rapport des tâches fermées aujourdhui" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf458371", + "properties": { + "robust-begin": 10575, + "robust-end": 10915, + "post-blank": 1, + "post-affiliated": 10575, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge734530", + "properties": { + "post-blank": 0, + "post-affiliated": 10841, + "mode": null, + "granularity": null + }, + "contents": [ + "faire une commande custom org agenda pour présenter un rapport qui va bien\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf3cfa91", + "drawer": { + "ARCHIVE_TIME": "2021-10-04 lun. 16:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d1c50131-4566-4573-b94b-c349b0ae0731" + }, + "properties": { + "tags-all": [], + "raw-value": "exporter les slides de slides.com", + "pre-blank": 0, + "robust-begin": 11261, + "robust-end": 11288, + "level": 1, + "priority": null, + "tags": [ + "blog" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 10918, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:02:00", + "end": "2021-10-04T16:02:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "exporter les slides de slides.com" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org77b8c92", + "properties": { + "robust-begin": 10996, + "robust-end": 11288, + "post-blank": 1, + "post-affiliated": 10996, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org255e55b", + "properties": { + "post-blank": 0, + "post-affiliated": 11262, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orged2db1b", + "properties": { + "type": "https", + "path": "//slides.com/pricing", + "format": "plain", + "raw-link": "https://slides.com/pricing", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org71d956e", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9f210551-daf0-4ffa-9842-4f5220a2abac" + }, + "properties": { + "tags-all": [], + "raw-value": "convier mikanou à passer, aurélia, et natha, et Estelle famille, et goudouland", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "social" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 11291, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-05T09:50:00", + "end": "2021-10-05T09:50:00", + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "convier mikanou à passer, aurélia, et natha, et Estelle famille, et goudouland" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9f3fdb1", + "properties": { + "robust-begin": 11386, + "robust-end": 11650, + "post-blank": 1, + "post-affiliated": 11386, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org942490f", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:74cb19b7-b4c7-47b5-8c6c-9daef9fbaa7c" + }, + "properties": { + "tags-all": [], + "raw-value": "s'inspirer du script de cquest pour backup zfs", + "pre-blank": 0, + "robust-begin": 11996, + "robust-end": 12059, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 11653, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-05T09:50:00", + "end": "2021-10-05T09:50:00", + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "s'inspirer du script de cquest pour backup zfs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8eed058", + "properties": { + "robust-begin": 11731, + "robust-end": 12059, + "post-blank": 3, + "post-affiliated": 11731, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb13937e", + "properties": { + "post-blank": 0, + "post-affiliated": 11997, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6bcfaf3", + "properties": { + "type": "https", + "path": "//gist.github.com/cquest/cad30c91404f866fa8da2347e24793fc", + "format": "plain", + "raw-link": "https://gist.github.com/cquest/cad30c91404f866fa8da2347e24793fc", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5cf07b1", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:b2c5abe3-8687-49b4-82ab-e7662548cd7b" + }, + "properties": { + "tags-all": [], + "raw-value": "washy washy se faire propre", + "pre-blank": 0, + "robust-begin": 12421, + "robust-end": 12563, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 12064, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:06:00", + "end": "2021-10-04T16:06:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "washy washy se faire propre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6729fb4", + "properties": { + "robust-begin": 12099, + "robust-end": 12563, + "post-blank": 1, + "post-affiliated": 12099, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcf79859", + "properties": { + "post-blank": 1, + "post-affiliated": 12422, + "mode": null, + "granularity": null + }, + "contents": [ + ":PROPERTIES:\n:STYLE: habit\n:LAST", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgb427c43", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "REPEAT" + ] + }, + ": ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5337a64", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:06]", + "post-blank": 0, + "start": "2021-10-04T16:06:00", + "end": "2021-10-04T16:06:00" + }, + "contents": [] + }, + "\n:EN\n" + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org5dbd2c1", + "properties": { + "type": "unordered", + "structure": [ + [ + 12500, + 2, + "- ", + null, + null, + null, + 12565 + ] + ], + "post-blank": 0, + "post-affiliated": 12500, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgfa40c34", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 12500, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org639cae0", + "properties": { + "post-blank": 0, + "post-affiliated": 12504, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgf811cb9", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-03 dim. 16:06]", + "post-blank": 0, + "start": "2021-10-03T16:06:00", + "end": "2021-10-03T16:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2dc1f4a", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2f38762d-9ff8-474a-8eb5-ac1a7d023856" + }, + "properties": { + "tags-all": [], + "raw-value": "arrosage jardin bluetooth", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "travaux", + "jardin", + "extérieur" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 12566, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-05T09:51:00", + "end": "2021-10-05T09:51:00", + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "arrosage jardin bluetooth" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgde59003", + "properties": { + "robust-begin": 12644, + "robust-end": 12908, + "post-blank": 2, + "post-affiliated": 12644, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0d23cc6", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f8f9a103-d9dd-4e08-a567-a42537b9a04f" + }, + "properties": { + "tags-all": [], + "raw-value": "proposer des améliorations de photomem sur le dépot de Jacques", + "pre-blank": 0, + "robust-begin": 13247, + "robust-end": 13289, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 12912, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-05T09:51:00", + "end": "2021-10-05T09:51:00", + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "proposer des améliorations de photomem sur le dépot de Jacques" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd7318a1", + "properties": { + "robust-begin": 12982, + "robust-end": 13289, + "post-blank": 2, + "post-affiliated": 12982, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2eae995", + "properties": { + "post-blank": 0, + "post-affiliated": 13248, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf67781e", + "properties": { + "type": "https", + "path": "//forge.chapril.org/Liness/photo_mem", + "format": "plain", + "raw-link": "https://forge.chapril.org/Liness/photo_mem", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org548ab59", + "drawer": { + "ARCHIVE_TIME": "2021-10-05 mar. 11:09", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9a9f01cb-29ff-412a-808c-237abac739e9" + }, + "properties": { + "tags-all": [], + "raw-value": "remplacer membres.lycos.fr", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "blog" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 13293, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-04T16:08:00", + "end": "2021-10-04T16:08:00", + "type": "inactive", + "raw-value": "[2021-10-04 lun. 16:08]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "remplacer membres.lycos.fr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4e3d875", + "properties": { + "robust-begin": 13371, + "robust-end": 13635, + "post-blank": 1, + "post-affiliated": 13371, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org590266d", + "drawer": { + "ARCHIVE_TIME": "2021-10-06 mer. 23:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:6a829c4c-2071-47a5-b215-f7a3e629b943" + }, + "properties": { + "tags-all": [], + "raw-value": "corriger la faille de sécurité du compte hotmail", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "degafam", + "secu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 13638, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-05T11:09:00", + "end": "2021-10-05T11:09:00", + "type": "inactive", + "raw-value": "[2021-10-05 mar. 11:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "corriger la faille de sécurité du compte hotmail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9dc8998", + "properties": { + "robust-begin": 13716, + "robust-end": 13980, + "post-blank": 1, + "post-affiliated": 13716, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7a96cc7", + "drawer": { + "ARCHIVE_TIME": "2021-10-06 mer. 23:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9f31189d-fb37-4b81-88ee-09508c2df40d" + }, + "properties": { + "tags-all": [], + "raw-value": "vérif de la réalisation du borg backup automatique sur catwoman", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 13983, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-06T22:59:00", + "end": "2021-10-06T22:59:00", + "type": "inactive", + "raw-value": "[2021-10-06 mer. 22:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérif de la réalisation du borg backup automatique sur catwoman" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4e86aeb", + "properties": { + "robust-begin": 14063, + "robust-end": 14327, + "post-blank": 1, + "post-affiliated": 14063, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbb3a108", + "drawer": { + "ARCHIVE_TIME": "2021-10-06 mer. 23:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4751e0dc-b6e7-40e7-8119-24e760a13d63" + }, + "properties": { + "tags-all": [], + "raw-value": "commander un disque de 4To 2.5\" pour FATland", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "achats" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 14330, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-06T22:59:00", + "end": "2021-10-06T22:59:00", + "type": "inactive", + "raw-value": "[2021-10-06 mer. 22:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander un disque de 4To 2.5\" pour FATland" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeb708e4", + "properties": { + "robust-begin": 14408, + "robust-end": 14672, + "post-blank": 1, + "post-affiliated": 14408, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf68081d", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:37a97fb8-57c6-4dbc-ac49-7be8b865fdef" + }, + "properties": { + "tags-all": [], + "raw-value": "compléter le libreto suite au camp chatons pour l'atelier backup", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 14675, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-06T23:10:00", + "end": "2021-10-06T23:10:00", + "type": "inactive", + "raw-value": "[2021-10-06 mer. 23:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "compléter le libreto suite au camp chatons pour l'atelier backup" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb65aa4e", + "properties": { + "robust-begin": 14765, + "robust-end": 15087, + "post-blank": 1, + "post-affiliated": 14765, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfbce0be", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons camp", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:a4b9f405-6032-416c-b844-d121abe13cd9" + }, + "properties": { + "tags-all": [], + "raw-value": "voir AREM outil pour faire du débat en ligne en analysant un texte", + "pre-blank": 0, + "robust-begin": 15487, + "robust-end": 15526, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 15090, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-08T15:55:00", + "end": "2021-10-08T15:55:00", + "type": "inactive", + "raw-value": "[2021-10-08 ven. 15:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir AREM outil pour faire du débat en ligne en analysant un texte" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org36ccdca", + "properties": { + "robust-begin": 15164, + "robust-end": 15526, + "post-blank": 2, + "post-affiliated": 15164, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6b01eb7", + "properties": { + "post-blank": 0, + "post-affiliated": 15488, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgdf702fa", + "properties": { + "type": "https", + "path": "//github.com/aren-consortium/AREN", + "format": "plain", + "raw-link": "https://github.com/aren-consortium/AREN", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcc0ed96", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7b739741-b453-414b-840c-9ade2a51f126" + }, + "properties": { + "tags-all": [], + "raw-value": "réunion chapril", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "chapril", + "visio" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 15530, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-07T09:55:00", + "end": "2021-10-07T09:55:00", + "type": "inactive", + "raw-value": "[2021-10-07 jeu. 09:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-06", + "end": "2021-10-06", + "type": "active", + "raw-value": "<2021-10-06 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réunion chapril" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2331b2d", + "properties": { + "robust-begin": 15608, + "robust-end": 15900, + "post-blank": 2, + "post-affiliated": 15608, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org660a4a2", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:dd3e1982-3b8d-481a-b3f6-f1ab069d75e3" + }, + "properties": { + "tags-all": [], + "raw-value": "newsletter octobre 2", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 15904, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T13:38:00", + "end": "2021-10-11T13:38:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 13:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2021-10-06", + "end": "2021-10-06", + "type": "active", + "raw-value": "<2021-10-06 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "newsletter octobre 2" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0960d6e", + "properties": { + "robust-begin": 15932, + "robust-end": 16251, + "post-blank": 1, + "post-affiliated": 15932, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2802559", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot/site de l'arome", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b4384bd2-f131-48b1-a61b-609754a3ac35" + }, + "properties": { + "tags-all": [], + "raw-value": "maj de la carte octobre", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 16254, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T15:11:00", + "end": "2021-10-11T15:11:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 15:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "maj de la carte octobre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgae391fc", + "properties": { + "robust-begin": 16285, + "robust-end": 16591, + "post-blank": 2, + "post-affiliated": 16285, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6d52843", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3bd5ae0c-8060-419c-b2a7-faf502c38d5e" + }, + "properties": { + "tags-all": [], + "raw-value": "achat de chèvrefeuille pour le jardin", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "jardin", + "achats", + "extérieur", + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 16595, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T13:38:00", + "end": "2021-10-11T13:38:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 13:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "achat de chèvrefeuille pour le jardin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb786a14", + "properties": { + "robust-begin": 16673, + "robust-end": 16937, + "post-blank": 1, + "post-affiliated": 16673, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org07c852b", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:990e108c-e950-4556-8428-c6994f5046a3" + }, + "properties": { + "tags-all": [], + "raw-value": "=> vérfier le backup vers le nas et nextcloud", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 16940, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T15:12:00", + "end": "2021-10-11T15:12:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 15:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "=> vérfier le backup vers le nas et nextcloud" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7aa1d85", + "properties": { + "robust-begin": 17018, + "robust-end": 17282, + "post-blank": 1, + "post-affiliated": 17018, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org95cb033", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:30e269f8-4862-4926-8e12-fa09740e540d" + }, + "properties": { + "tags-all": [], + "raw-value": "recopier recettes de cuisine", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "social", + "cuisine", + "claire", + "famille" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 17285, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T13:38:00", + "end": "2021-10-11T13:38:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 13:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "recopier recettes de cuisine" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org12d6d41", + "properties": { + "robust-begin": 17363, + "robust-end": 17627, + "post-blank": 0, + "post-affiliated": 17363, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2c0941c", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "AG de cil gometz", + "pre-blank": 0, + "robust-begin": 17739, + "robust-end": 17797, + "level": 1, + "priority": null, + "tags": [ + "cil", + "ARCHIVE" + ], + "todo-keyword": "CANCELLED", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": true, + "commentedp": false, + "post-affiliated": 17629, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-07T21:35:00", + "end": "2022-06-07T21:35:00", + "type": "inactive", + "raw-value": "[2022-06-07 mar. 21:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-06T17:00:00", + "end": "2022-06-06T17:00:00", + "type": "active", + "raw-value": "<2022-06-06 lun. 17:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "AG de cil gometz" + ], + "mode": null, + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org19a90a9", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "collage NUPES", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "ARCHIVE" + ], + "todo-keyword": "CANCELLED", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": true, + "commentedp": false, + "post-affiliated": 17799, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-24T09:50:00", + "end": "2022-05-24T09:50:00", + "type": "inactive", + "raw-value": "[2022-05-24 mar. 09:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-23T17:00:00", + "end": "2022-05-23T17:00:00", + "type": "active", + "raw-value": "<2022-05-23 lun. 17:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "collage NUPES" + ], + "mode": null, + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org208f24c", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f0c2f98d-1b01-4629-896f-873f11076f7f" + }, + "properties": { + "tags-all": [], + "raw-value": "nettoyer les todo dans la boite mail", + "pre-blank": 0, + "robust-begin": 18277, + "robust-end": 18419, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture", + "habitude" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 17905, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-07T09:55:00", + "end": "2021-10-07T09:55:00", + "type": "inactive", + "raw-value": "[2021-10-07 jeu. 09:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2021-10-05", + "end": "2021-10-05", + "type": "active", + "raw-value": "<2021-10-05 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "nettoyer les todo dans la boite mail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1abdacf", + "properties": { + "robust-begin": 17983, + "robust-end": 18419, + "post-blank": 1, + "post-affiliated": 17983, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "drawer", + "ref": "org84bf169", + "properties": { + "drawer-name": "PROPERTIES", + "post-blank": 0, + "post-affiliated": 18278, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbf2bdf3", + "properties": { + "post-blank": 0, + "post-affiliated": 18293, + "mode": null, + "granularity": null + }, + "contents": [ + "STYLE: habit\n:LAST", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org3ce1261", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "REPEAT" + ] + }, + ": ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org88df430", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:51]", + "post-blank": 0, + "start": "2021-10-05T09:51:00", + "end": "2021-10-05T09:51:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgcc7a5cf", + "properties": { + "type": "unordered", + "structure": [ + [ + 18356, + 2, + "- ", + null, + null, + null, + 18421 + ] + ], + "post-blank": 0, + "post-affiliated": 18356, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgaf8efc0", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 18356, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org30358b6", + "properties": { + "post-blank": 0, + "post-affiliated": 18360, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfb278e2", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:51]", + "post-blank": 0, + "start": "2021-10-05T09:51:00", + "end": "2021-10-05T09:51:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0e12f58", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "remplacer les liens vers artlemoine.com", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c79cf1e1-7364-486f-9111-fdc464253930" + }, + "properties": { + "tags-all": [], + "raw-value": "=> remplacer membres.lycos.fr", + "pre-blank": 0, + "robust-begin": 18783, + "robust-end": 18849, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 18422, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-07T09:57:00", + "end": "2021-10-07T09:57:00", + "type": "inactive", + "raw-value": "[2021-10-07 jeu. 09:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "=> remplacer membres.lycos.fr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9388486", + "properties": { + "robust-begin": 18459, + "robust-end": 18849, + "post-blank": 2, + "post-affiliated": 18459, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org58e4b8b", + "properties": { + "post-blank": 0, + "post-affiliated": 18784, + "mode": null, + "granularity": null + }, + "contents": [ + "update my", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org20596cf", + "properties": { + "use-brackets-p": false, + "post-blank": 1 + }, + "contents": [ + "table" + ] + }, + "set path = replace(path, 'oldstring', 'newstring')\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org755b8f4", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5a9cad3c-15fb-4ed1-9c06-06a60e821cf6" + }, + "properties": { + "tags-all": [], + "raw-value": "lire les textes de Claire Envoyé par mail", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail", + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 18853, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T13:38:00", + "end": "2021-10-11T13:38:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 13:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lire les textes de Claire Envoyé par mail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org067c80b", + "properties": { + "robust-begin": 18931, + "robust-end": 19195, + "post-blank": 1, + "post-affiliated": 18931, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org304ee63", + "drawer": { + "ARCHIVE_TIME": "2021-10-11 lun. 15:12", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:012b9d30-ab11-4429-a255-55772eb2251c" + }, + "properties": { + "tags-all": [], + "raw-value": "rapatrier les borg backup des serveurs sur zfs local spaceship", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 19198, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-11T15:12:00", + "end": "2021-10-11T15:12:00", + "type": "inactive", + "raw-value": "[2021-10-11 lun. 15:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rapatrier les borg backup des serveurs sur zfs local spaceship" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb90e4cc", + "properties": { + "robust-begin": 19277, + "robust-end": 19541, + "post-blank": 1, + "post-affiliated": 19277, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaee431d", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:10c38459-c979-4df3-bf4e-9d7edfe81ed9" + }, + "properties": { + "tags-all": [], + "raw-value": "accès boursorama sur tiime", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "tiime", + "pognon" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 19544, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-21T09:36:00", + "end": "2021-10-21T09:36:00", + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 09:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "accès boursorama sur tiime" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org098e740", + "properties": { + "robust-begin": 19622, + "robust-end": 19886, + "post-blank": 1, + "post-affiliated": 19622, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2557cf8", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:88a4e09d-48c0-4911-aa1d-f7f6a8f9b79b" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer photo par mail pour remboursement de dosimètre amazon", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 19889, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-12T18:17:00", + "end": "2021-10-12T18:17:00", + "type": "inactive", + "raw-value": "[2021-10-12 mar. 18:17]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer photo par mail pour remboursement de dosimètre amazon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8eda9f2", + "properties": { + "robust-begin": 19967, + "robust-end": 20231, + "post-blank": 1, + "post-affiliated": 19967, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org44e20c6", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:be77217f-237c-4e04-ad62-416482cf4d87" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer relevés de compte pro par mail à Joseph ballard de tiime", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "tiime", + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 20234, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-21T09:36:00", + "end": "2021-10-21T09:36:00", + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 09:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer relevés de compte pro par mail à Joseph ballard de tiime" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9605faf", + "properties": { + "robust-begin": 20319, + "robust-end": 20583, + "post-blank": 2, + "post-affiliated": 20319, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgdb8778a", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:36ef6a54-66f2-4507-b6ba-2397b2b1ab7e" + }, + "properties": { + "tags-all": [], + "raw-value": "relance de paiement pour mission du cri septembre", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 20587, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-21T09:36:00", + "end": "2021-10-21T09:36:00", + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 09:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-14", + "end": "2021-10-14", + "type": "active", + "raw-value": "<2021-10-14 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relance de paiement pour mission du cri septembre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgff09f32", + "properties": { + "robust-begin": 20644, + "robust-end": 20962, + "post-blank": 1, + "post-affiliated": 20644, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2867ea9", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:469db43b-9b18-4613-89cc-64a6e0632b59" + }, + "properties": { + "tags-all": [], + "raw-value": "newsletter", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "larome" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 20965, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-13T16:27:00", + "end": "2021-10-13T16:27:00", + "type": "inactive", + "raw-value": "[2021-10-13 mer. 16:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "newsletter" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org07341c0", + "properties": { + "robust-begin": 21043, + "robust-end": 21333, + "post-blank": 1, + "post-affiliated": 21043, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0c34657", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 13:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f3a25c53-274f-431e-8eb9-a551a45590fa" + }, + "properties": { + "tags-all": [], + "raw-value": "répondre mail de madix", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 21336, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-14T12:24:00", + "end": "2021-10-14T12:24:00", + "type": "inactive", + "raw-value": "[2021-10-14 jeu. 12:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "répondre mail de madix" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgec0da8e", + "properties": { + "robust-begin": 21414, + "robust-end": 21678, + "post-blank": 1, + "post-affiliated": 21414, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5fb083a", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "travaux et bricolage ----------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:d6a09c3a-8ac7-4ce3-865e-85f06f5a33a2" + }, + "properties": { + "tags-all": [], + "raw-value": "faire des courses pour accueillir Natha en Octobre 2021", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 21681, + "title": [ + "faire des courses pour accueillir Natha en Octobre 2021" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1bea477", + "properties": { + "robust-begin": 21744, + "robust-end": 22079, + "post-blank": 3, + "post-affiliated": 21744, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org91047d8", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:a102c2cf-1704-4959-90f8-f7428182bdc9" + }, + "properties": { + "tags-all": [], + "raw-value": "parler d'alternative libre à airtable :cil-gometz:", + "pre-blank": 0, + "robust-begin": 22549, + "robust-end": 22591, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 22084, + "title": [ + "parler d'alternative libre à airtable :cil-gometz:" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1baf463", + "properties": { + "robust-begin": 22166, + "robust-end": 22591, + "post-blank": 1, + "post-affiliated": 22166, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org59f62cc", + "properties": { + "post-blank": 0, + "post-affiliated": 22550, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgedee6be", + "properties": { + "type": "https", + "path": "//gitlab.com/bramw/baserow", + "format": "plain", + "raw-link": "https://gitlab.com/bramw/baserow", + "application": null, + "search-option": null, + "post-blank": 1, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "#grivery\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org89b6cdf", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:a25f33bf-97cd-4541-b1c6-5c5d32c59ac7" + }, + "properties": { + "tags-all": [], + "raw-value": "GTG2json sortir des tâches de R&D de GTG dans les fiches nextcloud/textes", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "gtg2json" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 22594, + "title": [ + "GTG2json sortir des tâches de R&D de GTG dans les fiches nextcloud/textes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ee48b2", + "properties": { + "robust-begin": 22686, + "robust-end": 23068, + "post-blank": 1, + "post-affiliated": 22686, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org28f58a3", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:d7882b38-043c-40b1-b259-fe752e7c789f" + }, + "properties": { + "tags-all": [], + "raw-value": "Appeler secu - quel numéro? - pour identifier qui c'est sur les fiches de soin", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "tel", + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 23071, + "title": [ + "Appeler secu - quel numéro? - pour identifier qui c'est sur les fiches de soin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8fd77e6", + "properties": { + "robust-begin": 23177, + "robust-end": 23559, + "post-blank": 1, + "post-affiliated": 23177, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbc3c33b", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:03862be0-98b9-4bdd-9cde-59b772b8ba48" + }, + "properties": { + "tags-all": [], + "raw-value": "critères pour un gestionnaire de projets", + "pre-blank": 0, + "robust-begin": 24023, + "robust-end": 24407, + "level": 1, + "priority": null, + "tags": [ + "blog", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 23562, + "title": [ + "critères pour un gestionnaire de projets" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc48d3ce", + "properties": { + "robust-begin": 23640, + "robust-end": 24407, + "post-blank": 1, + "post-affiliated": 23640, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org23cb21b", + "properties": { + "post-blank": 1, + "post-affiliated": 24024, + "mode": null, + "granularity": null + }, + "contents": [ + "réutiliser le mail envoyé à liness\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge1a6a81", + "properties": { + "post-blank": 0, + "post-affiliated": 24065, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "bold", + "ref": "org5b89fbf", + "properties": { + "post-blank": 2 + }, + "contents": [ + "* libre et autohébergeable\n*" + ] + }, + "accessible de plusieurs terminaux\n", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "orgd0c8a6d", + "properties": { + "post-blank": 2 + }, + "contents": [ + "* fonctionne aussi hors ligne\n*" + ] + }, + "permet des tri par tag\n", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "orgcfbd732", + "properties": { + "post-blank": 2 + }, + "contents": [ + "* prise de note non triée\n*" + ] + }, + "pouvoir faire un rapport de choses actionnables non dépendantes\n", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "orgbe20dac", + "properties": { + "post-blank": 2 + }, + "contents": [ + "* échéances aux tâches\n*" + ] + }, + "imbrication des tâches\n", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "org0f70740", + "properties": { + "post-blank": 2 + }, + "contents": [ + "* actions en masse\n*" + ] + }, + "le moins de clic possible\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org98176b4", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:61742d1b-f970-41d6-87b7-3e84cbafc91b" + }, + "properties": { + "tags-all": [], + "raw-value": "demander a madix son système de log d'émission, pomodoro", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 24410, + "title": [ + "demander a madix son système de log d'émission, pomodoro" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org80945bb", + "properties": { + "robust-begin": 24475, + "robust-end": 24857, + "post-blank": 1, + "post-affiliated": 24475, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org42b5182", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:aef7f565-c44a-421d-8778-8f8c83081cf7" + }, + "properties": { + "tags-all": [], + "raw-value": "reporter les tâches de nextcloud dans orgmode", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 24860, + "title": [ + "reporter les tâches de nextcloud dans orgmode" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org20302f5", + "properties": { + "robust-begin": 24913, + "robust-end": 25295, + "post-blank": 1, + "post-affiliated": 24913, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5f73fc8", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 16:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé/faire un carnet d'adresse minimaliste avec uniquement les gens que je contacte, avec thunderbird.", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:d3c8b952-d8a9-4e5e-bf46-73e877516cda" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer l'équipe de framadate pour les ajouter sur framagit", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "dinum", + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 25298, + "title": [ + "relancer l'équipe de framadate pour les ajouter sur framagit" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org07f327f", + "properties": { + "robust-begin": 25379, + "robust-end": 25761, + "post-blank": 1, + "post-affiliated": 25379, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org651f413", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 20:51", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives ----------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "backup", + "CUSTOM_ID": "h:7aa29ecf-686b-45b6-b073-5b25eb17065a" + }, + "properties": { + "tags-all": [], + "raw-value": "déplacer de broumiah vers spaceship le bordel", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 25764, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-21T17:40:00", + "end": "2021-10-21T17:40:00", + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 17:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "déplacer de broumiah vers spaceship le bordel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org440b2e4", + "properties": { + "robust-begin": 25842, + "robust-end": 26203, + "post-blank": 1, + "post-affiliated": 25842, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4577ad7", + "drawer": { + "ARCHIVE_TIME": "2021-10-21 jeu. 20:51", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé -----------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ad7ddb63-e021-4784-aa3c-c9f874be4c6d" + }, + "properties": { + "tags-all": [], + "raw-value": "réactiver le script cronjob sur spaceship", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 26206, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-21T20:51:00", + "end": "2021-10-21T20:51:00", + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 20:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réactiver le script cronjob sur spaceship" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2fd1b79", + "properties": { + "robust-begin": 26284, + "robust-end": 26596, + "post-blank": 1, + "post-affiliated": 26284, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2515fbb", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2021-10-22 ven. 15:17]", + "ARCHIVE_TIME": "2021-10-23 sam. 15:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Habitudes ----------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:ab5bc97a-b248-4b1b-9a30-ff06f833ec6d" + }, + "properties": { + "tags-all": [], + "raw-value": "Entrainement Bépo", + "pre-blank": 0, + "robust-begin": 27116, + "robust-end": 27180, + "level": 1, + "priority": null, + "tags": [ + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 26599, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-23T15:03:00", + "end": "2021-10-23T15:03:00", + "type": "inactive", + "raw-value": "[2021-10-23 sam. 15:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2021-10-22", + "end": "2021-10-22", + "type": "active", + "raw-value": "<2021-10-22 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Entrainement Bépo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0557de9", + "properties": { + "robust-begin": 26677, + "robust-end": 27180, + "post-blank": 1, + "post-affiliated": 26677, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orge5125dd", + "properties": { + "type": "unordered", + "structure": [ + [ + 27117, + 2, + "- ", + null, + null, + null, + 27182 + ] + ], + "post-blank": 0, + "post-affiliated": 27117, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgc5f9aea", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 27117, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb3ca304", + "properties": { + "post-blank": 0, + "post-affiliated": 27121, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgdbe3a20", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-22 ven. 15:17]", + "post-blank": 0, + "start": "2021-10-22T15:17:00", + "end": "2021-10-22T15:17:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb56000f", + "drawer": { + "ARCHIVE_TIME": "2021-10-23 sam. 15:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "non rangé -----------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "unsorted inbox", + "CUSTOM_ID": "h:efdea6e5-0746-417d-859f-1021d98ab03a" + }, + "properties": { + "tags-all": [], + "raw-value": "virer plein de mails pour faire du zéro inbox", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 27183, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-23T10:44:00", + "end": "2021-10-23T10:44:00", + "type": "inactive", + "raw-value": "[2021-10-23 sam. 10:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "virer plein de mails pour faire du zéro inbox" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org03ec9c9", + "properties": { + "robust-begin": 27261, + "robust-end": 27606, + "post-blank": 1, + "post-affiliated": 27261, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd7328bf", + "drawer": { + "ARCHIVE_TIME": "2021-10-25 lun. 17:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "CIL de gometz ------------------------------------------------------------------- :cil-gometz:cil:", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:8f178a2b-16b4-439a-826c-9e54d41338ad" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer les clés du placard du CIL :cil-gometz:", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 27609, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-25T17:21:00", + "end": "2021-10-25T17:21:00", + "type": "inactive", + "raw-value": "[2021-10-25 lun. 17:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer les clés du placard du CIL :cil-gometz:" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org209f901", + "properties": { + "robust-begin": 27666, + "robust-end": 28049, + "post-blank": 1, + "post-affiliated": 27666, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5209357", + "drawer": { + "ARCHIVE_TIME": "2021-10-25 lun. 17:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "travaux et bricolage --------------------------------------------------------/extérieur :travaux:elec:solabaie:jardin:extérieur", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:84a3ba3f-2bcc-4c08-9bc7-b921920fff9b" + }, + "properties": { + "tags-all": [], + "raw-value": "passer le souffleur à feuilles", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 28052, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-24T11:40:00", + "end": "2021-10-24T11:40:00", + "type": "inactive", + "raw-value": "[2021-10-24 dim. 11:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "passer le souffleur à feuilles" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6037220", + "properties": { + "robust-begin": 28090, + "robust-end": 28539, + "post-blank": 1, + "post-affiliated": 28090, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org70d167e", + "drawer": { + "ARCHIVE_TIME": "2021-10-25 lun. 17:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "travaux et bricolage --------------------------------------------------------/extérieur :travaux:elec:solabaie:jardin:extérieur", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:dd118e72-ce63-472b-a4fe-b706c72c161e" + }, + "properties": { + "tags-all": [], + "raw-value": "finir d'installer la canisse au grillage Sud", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 28542, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-24T11:40:00", + "end": "2021-10-24T11:40:00", + "type": "inactive", + "raw-value": "[2021-10-24 dim. 11:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "finir d'installer la canisse au grillage Sud" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8a19e42", + "properties": { + "robust-begin": 28594, + "robust-end": 29043, + "post-blank": 1, + "post-affiliated": 28594, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6352f83", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:ef78bef9-9a41-45d3-86ac-7b45bd26fef2" + }, + "properties": { + "tags-all": [], + "raw-value": "frgeherghueruheguhghuj", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 29046, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-25T17:37:00", + "end": "2021-10-25T17:37:00", + "type": "inactive", + "raw-value": "[2021-10-25 lun. 17:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "frgeherghueruheguhghuj" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc5621bc", + "properties": { + "robust-begin": 29076, + "robust-end": 29474, + "post-blank": 1, + "post-affiliated": 29076, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org196ed65", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif --------------------------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:eec6ece2-125d-41dc-8e41-65b49681fc5d" + }, + "properties": { + "tags-all": [], + "raw-value": "suivi de UFC que choisir pour portail", + "pre-blank": 0, + "robust-begin": 29973, + "robust-end": 30631, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 29477, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T10:42:00", + "end": "2021-10-28T10:42:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 10:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-25", + "end": "2021-10-25", + "type": "active", + "raw-value": "<2021-10-25 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "suivi de UFC que choisir pour portail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge50fc0e", + "properties": { + "robust-begin": 29522, + "robust-end": 30631, + "post-blank": 1, + "post-affiliated": 29522, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1dd08bf", + "properties": { + "post-blank": 0, + "post-affiliated": 29974, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc995b78", + "properties": { + "type": "https", + "path": "//www.quechoisir.org/un-litige/success.php?dossier_id=1264083&key=fbnOS9qzGzeVWwQT&__cf_chl_jschl_tk__=c7508567e87c9b8e21c2e81b622a11970d8ebf23-1626619109-0-AcjYNctixjsjEcIkMIHANRVzMfuTBufmromh3wKMcGCbVuwvg5cu3o6vkMuOLQeBeSmYAhCJdKZQZhtBTL4beRTeTakdpl4XhhsJGZsB6Qu4yq-ogUZeXrIAiuLLBzkzftHeZ5GTMgZuauYyVGSq5dmHRaj8st9dIuxyJtHJs1ydz5Nk3GVqAv9fMLqXb3OJBBY9CBaGGqDVme0YpCsbiWJSjR09j44cLJnr8fFdpUHm2nRC7YFFcIPIXFJRi6xkw_5aUxt1PnNWR2x51c4AvATVvBn2m4nOOgts8KdWuXzzPEDCGttNg0dCSHEY7iTKWNH0Bba_FkOpsFYQ9Htk-3YfdgZli_slw3hfJxo_HtyxEljuxKNCyDxBBvRnZWWXMYw06v3DEJVOp5oP3n3HGhHxgBAMdLbeG2ziWVM_J-WwLxiSQqAMNFu_4uJUNDYFhXpR3q86-j5eOm9bJ_5TkrxXc7seZQHOsR8hBaq21HH7", + "format": "plain", + "raw-link": "https://www.quechoisir.org/un-litige/success.php?dossier_id=1264083&key=fbnOS9qzGzeVWwQT&__cf_chl_jschl_tk__=c7508567e87c9b8e21c2e81b622a11970d8ebf23-1626619109-0-AcjYNctixjsjEcIkMIHANRVzMfuTBufmromh3wKMcGCbVuwvg5cu3o6vkMuOLQeBeSmYAhCJdKZQZhtBTL4beRTeTakdpl4XhhsJGZsB6Qu4yq-ogUZeXrIAiuLLBzkzftHeZ5GTMgZuauYyVGSq5dmHRaj8st9dIuxyJtHJs1ydz5Nk3GVqAv9fMLqXb3OJBBY9CBaGGqDVme0YpCsbiWJSjR09j44cLJnr8fFdpUHm2nRC7YFFcIPIXFJRi6xkw_5aUxt1PnNWR2x51c4AvATVvBn2m4nOOgts8KdWuXzzPEDCGttNg0dCSHEY7iTKWNH0Bba_FkOpsFYQ9Htk-3YfdgZli_slw3hfJxo_HtyxEljuxKNCyDxBBvRnZWWXMYw06v3DEJVOp5oP3n3HGhHxgBAMdLbeG2ziWVM_J-WwLxiSQqAMNFu_4uJUNDYFhXpR3q86-j5eOm9bJ_5TkrxXc7seZQHOsR8hBaq21HH7", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2e6a0ea", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "chatons ---------------------------------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:cdbb1af8-bfaa-42a4-872b-851abd79e745" + }, + "properties": { + "tags-all": [], + "raw-value": "réflexion mise en commun de la rotation des sauvegardes", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 30634, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T10:49:00", + "end": "2021-10-28T10:49:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 10:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réflexion mise en commun de la rotation des sauvegardes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6659039", + "properties": { + "robust-begin": 30697, + "robust-end": 31097, + "post-blank": 1, + "post-affiliated": 30697, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbbb0cd8", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "liness/liness réunion", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness juvisy", + "CUSTOM_ID": "h:6b6518c3-8d28-449b-912c-4a51a389edae" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un pad pour le CA", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 31100, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-26T11:14:00", + "end": "2021-10-26T11:14:00", + "type": "inactive", + "raw-value": "[2021-10-26 mar. 11:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-25", + "end": "2021-10-25", + "type": "active", + "raw-value": "<2021-10-25 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un pad pour le CA" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf9f0906", + "properties": { + "robust-begin": 31131, + "robust-end": 31496, + "post-blank": 1, + "post-affiliated": 31131, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0fb48cc", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "liness/liness réunion", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness juvisy", + "CUSTOM_ID": "h:80bc92e6-b288-4c86-b03c-362cf91cef50" + }, + "properties": { + "tags-all": [], + "raw-value": "lancer des réflexions sur le retapage du site de liness", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 31499, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-26T11:14:00", + "end": "2021-10-26T11:14:00", + "type": "inactive", + "raw-value": "[2021-10-26 mar. 11:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lancer des réflexions sur le retapage du site de liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf64b7e1", + "properties": { + "robust-begin": 31562, + "robust-end": 31899, + "post-blank": 1, + "post-affiliated": 31562, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd2e4c84", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "liness", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness", + "CUSTOM_ID": "h:830c7b66-7d7c-48bb-b026-cc622ec7ab88" + }, + "properties": { + "tags-all": [], + "raw-value": "prévenir liness et cil gometz du chapéro montparnasse", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail", + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 31902, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-26T11:12:00", + "end": "2021-10-26T11:12:00", + "type": "inactive", + "raw-value": "[2021-10-26 mar. 11:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prévenir liness et cil gometz du chapéro montparnasse" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd3c166c", + "properties": { + "robust-begin": 31980, + "robust-end": 32295, + "post-blank": 1, + "post-affiliated": 31980, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc5a0b90", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 11:58", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Non rangé --------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "unsorted inbox", + "CUSTOM_ID": "h:3ab51437-0070-4e42-94ab-cf3d34836b78" + }, + "properties": { + "tags-all": [], + "raw-value": "hiscox signer et renvoyer le mandat sepa", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 32298, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-27T10:40:00", + "end": "2021-10-27T10:40:00", + "type": "inactive", + "raw-value": "[2021-10-27 mer. 10:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "hiscox signer et renvoyer le mandat sepa" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4eb56ce", + "properties": { + "robust-begin": 32346, + "robust-end": 32730, + "post-blank": 1, + "post-affiliated": 32346, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org21f998e", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 12:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:33300b67-153d-47ca-85b0-9e7241cc62cc" + }, + "properties": { + "tags-all": [], + "raw-value": "se caler un squatt de la famille vovo à Briis", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "agenda", + "vovo" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 32733, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T12:09:00", + "end": "2021-10-28T12:09:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "se caler un squatt de la famille vovo à Briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org73e9aa9", + "properties": { + "robust-begin": 32811, + "robust-end": 33209, + "post-blank": 1, + "post-affiliated": 32811, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7f5eccb", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 12:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:1a2a4a1c-a6f4-489d-8f37-6d1444824553" + }, + "properties": { + "tags-all": [], + "raw-value": "Se faire un resto avec @claire @resto", + "pre-blank": 0, + "robust-begin": 33689, + "robust-end": 33694, + "level": 1, + "priority": null, + "tags": [ + "inbox", + "resto", + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 33212, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T12:09:00", + "end": "2021-10-28T12:09:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Se faire un resto avec @claire @resto" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org013d237", + "properties": { + "robust-begin": 33290, + "robust-end": 33694, + "post-blank": 1, + "post-affiliated": 33290, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0acf1b5", + "properties": { + "post-blank": 0, + "post-affiliated": 33690, + "mode": null, + "granularity": null + }, + "contents": [ + "resto\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga96d76a", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 12:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox - Non rangé --------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "unsorted inbox", + "CUSTOM_ID": "h:bbcfbe05-cd23-4e3d-9d06-65bdf85bc646" + }, + "properties": { + "tags-all": [], + "raw-value": "compte rendu atelier sauvegarde https://forum.chatons.org/t/cr-des-ateliers-du-camp-chatons/2957/2", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 33697, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T12:17:00", + "end": "2021-10-28T12:17:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:17]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "compte rendu atelier sauvegarde ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5bb57bf", + "properties": { + "type": "https", + "path": "//forum.chatons.org/t/cr-des-ateliers-du-camp-chatons/2957/2", + "format": "plain", + "raw-link": "https://forum.chatons.org/t/cr-des-ateliers-du-camp-chatons/2957/2", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4317528", + "properties": { + "robust-begin": 33804, + "robust-end": 34196, + "post-blank": 1, + "post-affiliated": 33804, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7120c40", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 19:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot -------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:681f0070-e7f7-4606-8947-22f2c7a9047f" + }, + "properties": { + "tags-all": [], + "raw-value": "framadate funky - estimer le temps de dev pour la section création", + "pre-blank": 0, + "robust-begin": 34648, + "robust-end": 34739, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 34199, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T16:35:00", + "end": "2021-10-28T16:35:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 16:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-28", + "end": "2021-11-28", + "type": "active", + "raw-value": "<2021-11-28 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "framadate funky - estimer le temps de dev pour la section création" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9e867b1", + "properties": { + "robust-begin": 34273, + "robust-end": 34739, + "post-blank": 1, + "post-affiliated": 34273, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgee475f2", + "properties": { + "post-blank": 1, + "post-affiliated": 34649, + "mode": null, + "granularity": null + }, + "contents": [ + "création, 1.5 semaines\nconsultation et version alpha, 1.5 mois max\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc8ded10", + "properties": { + "post-blank": 0, + "post-affiliated": 34717, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6c9e88d", + "properties": { + "type": "http", + "path": "//localhost:4200/", + "format": "plain", + "raw-link": "http://localhost:4200/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgead93c9", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 19:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot -------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:1d6dbf4a-69c3-40b8-81de-bb8a613206eb" + }, + "properties": { + "tags-all": [], + "raw-value": "garder ou non la config des plages horaires préconstruites ?", + "pre-blank": 0, + "robust-begin": 35157, + "robust-end": 35194, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 34742, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T19:23:00", + "end": "2021-10-28T19:23:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "garder ou non la config des plages horaires préconstruites ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbfb8fb1", + "properties": { + "robust-begin": 34810, + "robust-end": 35194, + "post-blank": 1, + "post-affiliated": 34810, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7bf9b07", + "properties": { + "post-blank": 0, + "post-affiliated": 35158, + "mode": null, + "granularity": null + }, + "contents": [ + "ne pas afficher dans un premier temps\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org05ffeda", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 19:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot -------------------------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b84efdc9-a684-4547-9a44-ab4c1123a6d4" + }, + "properties": { + "tags-all": [], + "raw-value": "news 1er nov", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 35197, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T16:05:00", + "end": "2021-10-28T16:05:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 16:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "news 1er nov" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org73e8ba2", + "properties": { + "robust-begin": 35217, + "robust-end": 35563, + "post-blank": 1, + "post-affiliated": 35217, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge75d591", + "drawer": { + "ARCHIVE_TIME": "2021-10-28 jeu. 19:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation --------------------------------------------------------/emacs et orgmode/general", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:fe852a5c-2bb2-44cb-afdb-a9d9e22bd7c4" + }, + "properties": { + "tags-all": [], + "raw-value": "org mode tout mettre dans une seule feuille org", + "pre-blank": 0, + "robust-begin": 36064, + "robust-end": 36181, + "level": 1, + "priority": null, + "tags": [ + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 35566, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-28T19:25:00", + "end": "2021-10-28T19:25:00", + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "org mode tout mettre dans une seule feuille org" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1beb649", + "properties": { + "robust-begin": 35644, + "robust-end": 36181, + "post-blank": 1, + "post-affiliated": 35644, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "keyword", + "ref": "org0eff7c0", + "properties": { + "key": "TITLE", + "value": "Trucs pour apprendre à bien utiliser orgmode", + "post-blank": 0, + "post-affiliated": 36112, + "mode": null, + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "keyword", + "ref": "orgfbe7e47", + "properties": { + "key": "AUTHOR", + "value": "tykayn", + "post-blank": 0, + "post-affiliated": 36166, + "mode": null, + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6950dd0", + "drawer": { + "ARCHIVE_TIME": "2021-10-29 ven. 13:33", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot -----------------------------------------------------------/framadate", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:c7026234-12b9-4659-9b41-50464c6d7d05" + }, + "properties": { + "tags-all": [], + "raw-value": "poser questions a la réunion du jour", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 36184, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-29T10:33:00", + "end": "2021-10-29T10:33:00", + "type": "inactive", + "raw-value": "[2021-10-29 ven. 10:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-29", + "end": "2021-10-29", + "type": "active", + "raw-value": "<2021-10-29 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "poser questions a la réunion du jour" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org39a99c9", + "properties": { + "robust-begin": 36228, + "robust-end": 36651, + "post-blank": 1, + "post-affiliated": 36228, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8df3afe", + "drawer": { + "ARCHIVE_TIME": "2021-10-29 ven. 13:33", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Chatons --------------------------------------------------/créer évènements pour le chapéro du 4 Novembre", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:4c7b7f51-ed95-412e-b476-37583a0739ba" + }, + "properties": { + "tags-all": [], + "raw-value": "sur agenda du libre", + "pre-blank": 0, + "robust-begin": 37097, + "robust-end": 37584, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 36654, + "closed": { + "$$data_type": "timestamp", + "start": "2021-10-29T12:42:00", + "end": "2021-10-29T12:42:00", + "type": "inactive", + "raw-value": "[2021-10-29 ven. 12:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sur agenda du libre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge71d822", + "properties": { + "robust-begin": 36681, + "robust-end": 37584, + "post-blank": 1, + "post-affiliated": 36681, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org06295ca", + "properties": { + "post-blank": 1, + "post-affiliated": 37099, + "mode": null, + "granularity": null + }, + "contents": [ + "L'événement que vous avez soumis a été modéré par Christian Delage. Il est maintenant visible à l'adresse:\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfcb27f5", + "properties": { + "type": "http", + "path": "//www.agendadulibre.org/events/24391", + "format": "angle", + "raw-link": "http://www.agendadulibre.org/events/24391", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1036aa8", + "properties": { + "post-blank": 1, + "post-affiliated": 37251, + "mode": null, + "granularity": null + }, + "contents": [ + "Vous pouvez modifier cet événement ultérieurement pour y ajouter des précisions en vous rendant à l'adresse:\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org256142d", + "properties": { + "type": "http", + "path": "//www.agendadulibre.org/events/24391/edit?secret=w9HM9iqoEE7nRuEgcw8pSDwjEMShHLfn", + "format": "angle", + "raw-link": "http://www.agendadulibre.org/events/24391/edit?secret=w9HM9iqoEE7nRuEgcw8pSDwjEMShHLfn", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org780da68", + "properties": { + "post-blank": 0, + "post-affiliated": 37450, + "mode": null, + "granularity": null + }, + "contents": [ + "Vous pouvez également l'annuler à l'adresse:\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org691b5bb", + "properties": { + "type": "http", + "path": "//www.agendadulibre.org/events/24391/cancel?secret=w9HM9iqoEE7nRuEgcw8pSDwjEMShHLfn", + "format": "angle", + "raw-link": "http://www.agendadulibre.org/events/24391/cancel?secret=w9HM9iqoEE7nRuEgcw8pSDwjEMShHLfn", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc49fa12", + "drawer": { + "ARCHIVE_TIME": "2021-11-05 ven. 17:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:2fac8aa6-b70c-4aaa-bab6-dfd65031e973" + }, + "properties": { + "tags-all": [], + "raw-value": "sonder les gens à fécamp pour la généalogie", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "genealogie", + "geneanet", + "social" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 37587, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-05T16:19:00", + "end": "2021-11-05T16:19:00", + "type": "inactive", + "raw-value": "[2021-11-05 ven. 16:19]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-31", + "end": "2021-10-31", + "type": "active", + "raw-value": "<2021-10-31 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sonder les gens à fécamp pour la généalogie" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7f86125", + "properties": { + "robust-begin": 37667, + "robust-end": 38055, + "post-blank": 1, + "post-affiliated": 37667, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgff4526d", + "drawer": { + "ARCHIVE_TIME": "2021-11-05 ven. 17:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:4e5aff49-52de-4a39-84a3-2fd225bab5a9" + }, + "properties": { + "tags-all": [], + "raw-value": "comment créer plein de torrents pour sa musique libre", + "pre-blank": 0, + "robust-begin": 38463, + "robust-end": 38551, + "level": 1, + "priority": null, + "tags": [ + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 38058, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-02T11:54:00", + "end": "2021-11-02T11:54:00", + "type": "inactive", + "raw-value": "[2021-11-02 mar. 11:54]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment créer plein de torrents pour sa musique libre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org68213e9", + "properties": { + "robust-begin": 38125, + "robust-end": 38551, + "post-blank": 1, + "post-affiliated": 38125, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org58375f8", + "properties": { + "post-blank": 0, + "post-affiliated": 38464, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9338be9", + "properties": { + "type": "https", + "path": "//community.seedboxes.cc/articles/how-to-create-a-torrent-via-the-command-line", + "format": "plain", + "raw-link": "https://community.seedboxes.cc/articles/how-to-create-a-torrent-via-the-command-line", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org84f4815", + "drawer": { + "ARCHIVE_TIME": "2021-11-05 ven. 17:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode/general", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:c2753746-de4d-45c8-81a6-d8cd16e00bfb" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un timer", + "pre-blank": 0, + "robust-begin": 38947, + "robust-end": 38985, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 38554, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-02T12:00:00", + "end": "2021-11-02T12:00:00", + "type": "inactive", + "raw-value": "[2021-11-02 mar. 12:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un timer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org181a3d0", + "properties": { + "robust-begin": 38576, + "robust-end": 38985, + "post-blank": 2, + "post-affiliated": 38576, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd51b10a", + "properties": { + "post-blank": 0, + "post-affiliated": 38948, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgdd4f06d", + "properties": { + "type": "https", + "path": "//orgmode.org/manual/Timers.html", + "format": "plain", + "raw-link": "https://orgmode.org/manual/Timers.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org946aa22", + "drawer": { + "ARCHIVE_TIME": "2021-11-05 ven. 17:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:642e67d1-ec43-4296-96f2-4bb84a6145ef" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une demande de commission à Rozenn pour des illustration de l'instance mastodon de cipherbliss", + "pre-blank": 0, + "robust-begin": 39451, + "robust-end": 39476, + "level": 1, + "priority": null, + "tags": [ + "mastodon", + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 38989, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-02T14:52:00", + "end": "2021-11-02T14:52:00", + "type": "inactive", + "raw-value": "[2021-11-02 mar. 14:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une demande de commission à Rozenn pour des illustration de l'instance mastodon de cipherbliss" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5079fcb", + "properties": { + "robust-begin": 39113, + "robust-end": 39476, + "post-blank": 1, + "post-affiliated": 39113, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org64a7d02", + "properties": { + "post-blank": 0, + "post-affiliated": 39452, + "mode": null, + "granularity": null + }, + "contents": [ + "rozenn.grosjean@gmail.com\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf1331ca", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:a4677033-9a7d-4173-8cbf-6bdff505b27d" + }, + "properties": { + "tags-all": [], + "raw-value": "un truc", + "pre-blank": 0, + "robust-begin": 39784, + "robust-end": 39821, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 39479, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:00:00", + "end": "2021-11-06T16:00:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "un truc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge33f3f2", + "properties": { + "robust-begin": 39494, + "robust-end": 39821, + "post-blank": 1, + "post-affiliated": 39494, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org18c310b", + "properties": { + "post-blank": 0, + "post-affiliated": 39786, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgcc37f2f", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5f74340", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-05 ven. 16:49]", + "post-blank": 0, + "start": "2021-11-05T16:49:00", + "end": "2021-11-05T16:49:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga1ac50f", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:41e67854-38ed-4c22-91a3-6040875ea946" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter which-key à la config", + "pre-blank": 0, + "robust-begin": 40159, + "robust-end": 40317, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 39824, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:00:00", + "end": "2021-11-06T16:00:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajouter which-key à la config" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgdfefb99", + "properties": { + "robust-begin": 39869, + "robust-end": 40317, + "post-blank": 1, + "post-affiliated": 39869, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0813318", + "properties": { + "post-blank": 0, + "post-affiliated": 40161, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgeb8d3a9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org::<2021-11-06 sam.> hop on se met à faire du zettlkasten avec org roam", + "application": null, + "search-option": "<2021-11-06 sam.> hop on se met à faire du zettlkasten avec org roam", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaf17872", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5c29213e-f209-4558-8542-4366b0317cae" + }, + "properties": { + "tags-all": [], + "raw-value": "une capture d'essai", + "pre-blank": 0, + "robust-begin": 40637, + "robust-end": 40768, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 40320, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:00:00", + "end": "2021-11-06T16:00:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "une capture d'essai" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcbb9773", + "properties": { + "robust-begin": 40347, + "robust-end": 40768, + "post-blank": 1, + "post-affiliated": 40347, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org99fd4cf", + "properties": { + "post-blank": 0, + "post-affiliated": 40639, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org4ff9892", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/export_tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/export_tasks.org::*chopper des perce neige chez pécheux", + "application": null, + "search-option": "*chopper des perce neige chez pécheux", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "chopper des perce neige chez pécheux" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org779efe6", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3199d68d-15f9-4544-bd29-8ae1b0092791" + }, + "properties": { + "tags-all": [], + "raw-value": "zdfsdfgfgdgdfgdgfggfdgf", + "pre-blank": 0, + "robust-begin": 41092, + "robust-end": 41188, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 40771, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:00:00", + "end": "2021-11-06T16:00:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "zdfsdfgfgdgdfgdgfggfdgf" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9d7db7b", + "properties": { + "robust-begin": 40802, + "robust-end": 41188, + "post-blank": 1, + "post-affiliated": 40802, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6b7aa0b", + "properties": { + "post-blank": 0, + "post-affiliated": 41094, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org76d7b42", + "properties": { + "type": "file", + "path": "~/.emacs", + "format": "bracket", + "raw-link": "file:~/.emacs::\"j\" \"Journal\" entry (file+datetree \"~/Nextcloud/textes/orgmode/journal.org\"", + "application": null, + "search-option": "\"j\" \"Journal\" entry (file+datetree \"~/Nextcloud/textes/orgmode/journal.org\"", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1311372", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d5ea8191-4c21-4a79-bca4-56cf718f468b" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une tite sieste", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 41191, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:00:00", + "end": "2021-11-06T16:00:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une tite sieste" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf80ee15", + "properties": { + "robust-begin": 41220, + "robust-end": 41509, + "post-blank": 1, + "post-affiliated": 41220, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga0ba2e8", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:38f44f51-1d4b-4b5e-8c3e-39a93ba39879" + }, + "properties": { + "tags-all": [], + "raw-value": "buhuhuhuhhuhuhuhu", + "pre-blank": 0, + "robust-begin": 41827, + "robust-end": 41998, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 41512, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T15:59:00", + "end": "2021-11-06T15:59:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 15:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "buhuhuhuhhuhuhuhu" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9aa9d3f", + "properties": { + "robust-begin": 41537, + "robust-end": 41998, + "post-blank": 1, + "post-affiliated": 41537, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org69e0422", + "properties": { + "post-blank": 0, + "post-affiliated": 41829, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org854721f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org01e1281", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "languages.org" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga02b8ad", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ea0ae988-0bbd-47e9-846c-aa5a6e0cfd3f" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter which-key à la config", + "pre-blank": 0, + "robust-begin": 42336, + "robust-end": 42494, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 42001, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T15:59:00", + "end": "2021-11-06T15:59:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 15:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajouter which-key à la config" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org74931e4", + "properties": { + "robust-begin": 42046, + "robust-end": 42494, + "post-blank": 1, + "post-affiliated": 42046, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0097612", + "properties": { + "post-blank": 0, + "post-affiliated": 42338, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org372f977", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211106110726-programming_languages.org::<2021-11-06 sam.> hop on se met à faire du zettlkasten avec org roam", + "application": null, + "search-option": "<2021-11-06 sam.> hop on se met à faire du zettlkasten avec org roam", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7b7abfb", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Blog rédaction --------------------------/faire un article de blog sur cipherbliss pour causer du camp chatons", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "blog écriture chatons", + "CUSTOM_ID": "h:01d04bab-7d3b-4906-82d2-833e37cc1995" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer les textes du libreto", + "pre-blank": 0, + "robust-begin": 42971, + "robust-end": 43014, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 42497, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-05T17:07:00", + "end": "2021-11-05T17:07:00", + "type": "inactive", + "raw-value": "[2021-11-05 ven. 17:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer les textes du libreto" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org99d8b1f", + "properties": { + "robust-begin": 42536, + "robust-end": 43014, + "post-blank": 2, + "post-affiliated": 42536, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3b90a80", + "properties": { + "post-blank": 0, + "post-affiliated": 42972, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6b48093", + "properties": { + "type": "https", + "path": "//libreto.sans-nuage.fr/camps-chatons", + "format": "plain", + "raw-link": "https://libreto.sans-nuage.fr/camps-chatons", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5a4f38f", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 16:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode/general", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:df525516-1635-489c-af35-29b076c579a8" + }, + "properties": { + "tags-all": [], + "raw-value": "voir dans emacs for writers si y'a un truc pour afficher l'agenda mieux", + "pre-blank": 0, + "robust-begin": 43488, + "robust-end": 43565, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 43018, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-05T17:03:00", + "end": "2021-11-05T17:03:00", + "type": "inactive", + "raw-value": "[2021-11-05 ven. 17:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir dans emacs for writers si y'a un truc pour afficher l'agenda mieux" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0e64420", + "properties": { + "robust-begin": 43097, + "robust-end": 43565, + "post-blank": 1, + "post-affiliated": 43097, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcbc1d43", + "properties": { + "post-blank": 0, + "post-affiliated": 43489, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org597676d", + "properties": { + "type": "https", + "path": "//github.com/frankjonen/emacs-for-writers/blob/master/docs/shortcuts.md", + "format": "plain", + "raw-link": "https://github.com/frankjonen/emacs-for-writers/blob/master/docs/shortcuts.md", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfd1fd60", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 18:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:8ab98084-7720-444a-a164-e344b3af88e5" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un mail à OSM montrouge pour se voir le 2e jeudi de novembre", + "pre-blank": 0, + "robust-begin": 43943, + "robust-end": 43980, + "level": 1, + "priority": null, + "tags": [ + "osm", + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 43568, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:15:00", + "end": "2021-11-06T16:15:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:15]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un mail à OSM montrouge pour se voir le 2e jeudi de novembre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf763a1b", + "properties": { + "robust-begin": 43653, + "robust-end": 43980, + "post-blank": 1, + "post-affiliated": 43653, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3120546", + "properties": { + "post-blank": 0, + "post-affiliated": 43945, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org6395369", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org13c2bc2", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-05 ven. 17:16]", + "post-blank": 0, + "start": "2021-11-05T17:16:00", + "end": "2021-11-05T17:16:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgea823cd", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 18:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/site de l'arome", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot larome", + "CUSTOM_ID": "h:70d3fc9b-9844-4767-8229-171e130ec331" + }, + "properties": { + "tags-all": [], + "raw-value": "news pour le 8 nov", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 43983, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:16:00", + "end": "2021-11-06T16:16:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-08", + "end": "2021-11-08", + "type": "active", + "raw-value": "<2021-11-08 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "news pour le 8 nov" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc672158", + "properties": { + "robust-begin": 44014, + "robust-end": 44421, + "post-blank": 2, + "post-affiliated": 44014, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5464869", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 18:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness ---------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness", + "CUSTOM_ID": "h:881dbf69-28ec-4438-acca-4a9fbef00e39" + }, + "properties": { + "tags-all": [], + "raw-value": "voir si on peut importer des choses du site actuel liness", + "pre-blank": 0, + "robust-begin": 44894, + "robust-end": 44919, + "level": 1, + "priority": null, + "tags": [ + "site", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 44425, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:20:00", + "end": "2021-11-06T16:20:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:20]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir si on peut importer des choses du site actuel liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfff2b64", + "properties": { + "robust-begin": 44501, + "robust-end": 44919, + "post-blank": 1, + "post-affiliated": 44501, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org33fcee9", + "properties": { + "post-blank": 0, + "post-affiliated": 44895, + "mode": null, + "granularity": null + }, + "contents": [ + "on peut avec l'export sql\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org32703b3", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 18:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness ---------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness", + "CUSTOM_ID": "h:9bab242b-1868-4f66-9976-98ac344ce930" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un évènement pour le chatons apéro montparnasse jeudi 4 nov", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "chatons" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 44922, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:21:00", + "end": "2021-11-06T16:21:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un évènement pour le chatons apéro montparnasse jeudi 4 nov" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8159ea5", + "properties": { + "robust-begin": 45005, + "robust-end": 45397, + "post-blank": 1, + "post-affiliated": 45005, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org02a495d", + "drawer": { + "ARCHIVE_TIME": "2021-11-06 sam. 18:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f0f1609a-e46c-4590-9015-f821d921f4aa" + }, + "properties": { + "tags-all": [], + "raw-value": "OSM montrouge relancer les rencontres mensuelles", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail", + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 45400, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T16:21:00", + "end": "2021-11-06T16:21:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 16:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "OSM montrouge relancer les rencontres mensuelles" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org937cd7d", + "properties": { + "robust-begin": 45467, + "robust-end": 45836, + "post-blank": 1, + "post-affiliated": 45467, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org99728e3", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b2b3d18a-5ef8-4330-9ec0-621317675326" + }, + "properties": { + "tags-all": [], + "raw-value": "comment définir une feuille de style en exportant une page orgmode", + "pre-blank": 0, + "robust-begin": 46193, + "robust-end": 46231, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 45839, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-06T18:23:00", + "end": "2021-11-06T18:23:00", + "type": "inactive", + "raw-value": "[2021-11-06 sam. 18:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment définir une feuille de style en exportant une page orgmode" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org888fecc", + "properties": { + "robust-begin": 45921, + "robust-end": 46231, + "post-blank": 1, + "post-affiliated": 45921, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdc03216", + "properties": { + "post-blank": 0, + "post-affiliated": 46195, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgc531bbd", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1b687c8", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-06 sam. 18:02]", + "post-blank": 0, + "start": "2021-11-06T18:02:00", + "end": "2021-11-06T18:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd75f979", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:0d8d0c18-ad83-4b95-9fe0-cd8cff6f4274" + }, + "properties": { + "tags-all": [], + "raw-value": "autofocus sur le premier champ", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 46234, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T11:33:00", + "end": "2021-11-08T11:33:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 11:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "autofocus sur le premier champ" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7f60eee", + "properties": { + "robust-begin": 46272, + "robust-end": 46655, + "post-blank": 1, + "post-affiliated": 46272, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org889a893", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:8c6d013f-0e8b-4aa4-a3e6-dd8ddab1840c" + }, + "properties": { + "tags-all": [], + "raw-value": "remettre les options avancées avec icones comme avant sur la démo", + "pre-blank": 0, + "robust-begin": 47115, + "robust-end": 47195, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 46658, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T12:24:00", + "end": "2021-11-08T12:24:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 12:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "remettre les options avancées avec icones comme avant sur la démo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgabd13ca", + "properties": { + "robust-begin": 46731, + "robust-end": 47195, + "post-blank": 1, + "post-affiliated": 46731, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org77caab8", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:dfaae7bb-c9bc-4617-a0c0-dd0ec10d297f" + }, + "properties": { + "tags-all": [], + "raw-value": "faire marcher le calendrier - étape 3", + "pre-blank": 0, + "robust-begin": 47627, + "robust-end": 47772, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 47198, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T10:57:00", + "end": "2021-11-08T10:57:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 10:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire marcher le calendrier - étape 3" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org170bac2", + "properties": { + "robust-begin": 47243, + "robust-end": 47772, + "post-blank": 1, + "post-affiliated": 47243, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc9ec42e", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/général", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:f9c827f9-d05c-40b8-ae5a-bbead98af8f4" + }, + "properties": { + "tags-all": [], + "raw-value": "définir un moyen de visio conf dans un mail", + "pre-blank": 0, + "robust-begin": 48211, + "robust-end": 48276, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 47775, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T12:13:00", + "end": "2021-11-07T12:13:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "définir un moyen de visio conf dans un mail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3a9b1af", + "properties": { + "robust-begin": 47833, + "robust-end": 48276, + "post-blank": 1, + "post-affiliated": 47833, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgaa8d243", + "properties": { + "post-blank": 1, + "post-affiliated": 48212, + "mode": null, + "granularity": null + }, + "contents": [ + "benoit.dequick@modernisation.gouv.fr\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org26fdf36", + "properties": { + "post-blank": 0, + "post-affiliated": 48250, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org6b1e65d", + "properties": { + "type": "active", + "raw-value": "<2021-11-03 mer.>", + "post-blank": 0, + "start": "2021-11-03", + "end": "2021-11-03" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga45d596", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "emmerdes", + "CUSTOM_ID": "h:f175bb12-ac25-4955-9a4a-1f422e006090" + }, + "properties": { + "tags-all": [], + "raw-value": "résoudre le problème d'accès au compte lcl", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 48279, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T12:33:00", + "end": "2021-11-07T12:33:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-10-29", + "end": "2021-10-29", + "type": "active", + "raw-value": "<2021-10-29 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "résoudre le problème d'accès au compte lcl" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd3fb101", + "properties": { + "robust-begin": 48345, + "robust-end": 48706, + "post-blank": 1, + "post-affiliated": 48345, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0d8565d", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Blog rédaction --------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "blog", + "CUSTOM_ID": "h:f23e3a75-14c4-4627-800f-90f6f0e942bb" + }, + "properties": { + "tags-all": [], + "raw-value": "poster les actus envoyés à liness", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "liness", + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 48709, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T12:13:00", + "end": "2021-11-07T12:13:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "poster les actus envoyés à liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org58ae2ca", + "properties": { + "robust-begin": 48764, + "robust-end": 49101, + "post-blank": 1, + "post-affiliated": 48764, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5c0bfa1", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/Café vie privée -------------/faire un atelier vie privée avec la médiathèque de Briis", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "briis atelier", + "CUSTOM_ID": "h:5b45ef69-a503-4e65-8116-6c49c3f04454" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un mail à la médiathèque de briis pour proposer un atelier en donnant les informations pour faire en sorte que ça fonctionne. temps, espace, matériel", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 49104, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T12:18:00", + "end": "2021-11-07T12:18:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un mail à la médiathèque de briis pour proposer un atelier en donnant les informations pour faire en sorte que ça fonctionne. temps, espace, matériel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd874f23", + "properties": { + "robust-begin": 49267, + "robust-end": 49702, + "post-blank": 1, + "post-affiliated": 49267, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0423ebd", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/CIL de gometz -------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "cil", + "CUSTOM_ID": "h:855ff0c1-5498-41b1-be95-ea683330407e" + }, + "properties": { + "tags-all": [], + "raw-value": "lister les questions dans un pad des questions des gens", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 49705, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T09:35:00", + "end": "2021-11-07T09:35:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 09:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lister les questions dans un pad des questions des gens" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge78dac7", + "properties": { + "robust-begin": 49768, + "robust-end": 50139, + "post-blank": 2, + "post-affiliated": 49768, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org009e088", + "drawer": { + "ARCHIVE_TIME": "2021-11-08 lun. 12:25", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Administration système ---------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys", + "CUSTOM_ID": "h:6a32bacd-fa6b-45d6-90be-9fc8e437f3bb" + }, + "properties": { + "tags-all": [], + "raw-value": "vérifier que le site willroad n'est pas spammé", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 50143, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T20:45:00", + "end": "2021-11-07T20:45:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 20:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-05", + "end": "2021-11-05", + "type": "active", + "raw-value": "<2021-11-05 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérifier que le site willroad n'est pas spammé" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org083f6c4", + "properties": { + "robust-begin": 50197, + "robust-end": 50572, + "post-blank": 1, + "post-affiliated": 50197, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd015dfd", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3cd3ac42-e2f2-408e-a359-e5796fc4f057" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer micro qui fait un bruit de fond", + "pre-blank": 0, + "robust-begin": 50894, + "robust-end": 50961, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 50575, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-09T11:04:00", + "end": "2021-11-09T11:04:00", + "type": "inactive", + "raw-value": "[2021-11-09 mar. 11:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réparer micro qui fait un bruit de fond" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0bc8263", + "properties": { + "robust-begin": 50622, + "robust-end": 50961, + "post-blank": 1, + "post-affiliated": 50622, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org066c1a9", + "properties": { + "post-blank": 0, + "post-affiliated": 50896, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org7fcbfa6", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2ca28ed", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-06 sam. 19:22]", + "post-blank": 0, + "start": "2021-11-06T19:22:00", + "end": "2021-11-06T19:22:00" + }, + "contents": [] + }, + "\nalim dans le hub qui manque\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org68b74de", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9dcde468-1745-4ff3-a20e-3754bfdfad53" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre dans bitwarden les pass des disques externes", + "pre-blank": 0, + "robust-begin": 51304, + "robust-end": 51342, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 50964, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-09T12:04:00", + "end": "2021-11-09T12:04:00", + "type": "inactive", + "raw-value": "[2021-11-09 mar. 12:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre dans bitwarden les pass des disques externes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgaaec948", + "properties": { + "robust-begin": 51032, + "robust-end": 51342, + "post-blank": 1, + "post-affiliated": 51032, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org316df5c", + "properties": { + "post-blank": 0, + "post-affiliated": 51306, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org5670aa1", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgb0a81dc", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-06 sam. 19:22]", + "post-blank": 0, + "start": "2021-11-06T19:22:00", + "end": "2021-11-06T19:22:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org26d6071", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:90f5ab75-59a4-47f2-bdb0-79e136a3d766" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv stéphane maillet", + "pre-blank": 0, + "robust-begin": 51679, + "robust-end": 52196, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 51345, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T18:18:00", + "end": "2021-11-08T18:18:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-08T14:00:00", + "end": "2021-11-08T14:00:00", + "type": "active", + "raw-value": "<2021-11-08 lun. 14:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv stéphane maillet" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2d0208a", + "properties": { + "robust-begin": 51373, + "robust-end": 51678, + "post-blank": 0, + "post-affiliated": 51373, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org86d5cba", + "drawer": { + "CUSTOM_ID": "h:fbdbc9e0-da7a-4bf2-91ee-0b8cbb56347b" + }, + "properties": { + "tags-all": [], + "raw-value": "voir si ma liste de cottisations est à jour", + "pre-blank": 0, + "robust-begin": 51844, + "robust-end": 51928, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 51680, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:00:00", + "end": "2022-07-20T22:00:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir si ma liste de cottisations est à jour" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3e9ea7c", + "properties": { + "robust-begin": 51732, + "robust-end": 51928, + "post-blank": 1, + "post-affiliated": 51732, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org735ac19", + "drawer": { + "CUSTOM_ID": "h:78a4d2a3-faea-4567-9b91-ee7dceab7153" + }, + "properties": { + "tags-all": [], + "raw-value": "regrouper la RC PRO ?", + "pre-blank": 0, + "robust-begin": 52073, + "robust-end": 52196, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 51931, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:00:00", + "end": "2022-07-20T22:00:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "regrouper la RC PRO ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgba438c7", + "properties": { + "robust-begin": 51961, + "robust-end": 52196, + "post-blank": 1, + "post-affiliated": 51961, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org596c36d", + "properties": { + "post-blank": 0, + "post-affiliated": 52160, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org4ddadae", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1f4cc88", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-08 lun. 11:01]", + "post-blank": 0, + "start": "2021-11-08T11:01:00", + "end": "2021-11-08T11:01:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org95f503f", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9cc21521-71f5-411d-8e36-933a4af6593a" + }, + "properties": { + "tags-all": [], + "raw-value": "résilier abonnement slides . com", + "pre-blank": 0, + "robust-begin": 52511, + "robust-end": 52548, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 52199, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-09T12:02:00", + "end": "2021-11-09T12:02:00", + "type": "inactive", + "raw-value": "[2021-11-09 mar. 12:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "résilier abonnement slides . com" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org61e1458", + "properties": { + "robust-begin": 52239, + "robust-end": 52548, + "post-blank": 1, + "post-affiliated": 52239, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3850788", + "properties": { + "post-blank": 0, + "post-affiliated": 52513, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org680fdbb", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org66a6c4e", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-08 lun. 12:29]", + "post-blank": 0, + "start": "2021-11-08T12:29:00", + "end": "2021-11-08T12:29:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbd1d89d", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage/rétablir la fin de parcours pour création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:b3f58f4d-a2ff-402c-b659-314fe4d2c9f5" + }, + "properties": { + "tags-all": [], + "raw-value": "afficher les utl publique et admin dans la page de succès", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 52551, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T12:35:00", + "end": "2021-11-08T12:35:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 12:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "afficher les utl publique et admin dans la page de succès" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf71a045", + "properties": { + "robust-begin": 52616, + "robust-end": 53052, + "post-blank": 1, + "post-affiliated": 52616, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org07455eb", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/général", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:1ae6ec52-be6a-49c4-ad21-1eea999c2b30" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv accessibilité Lundi 8 Benoït dequick", + "pre-blank": 0, + "robust-begin": 53475, + "robust-end": 53907, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 53055, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T18:16:00", + "end": "2021-11-08T18:16:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 18:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv accessibilité Lundi 8 Benoït dequick" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2d4487e", + "properties": { + "robust-begin": 53103, + "robust-end": 53547, + "post-blank": 0, + "post-affiliated": 53103, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1cc289f", + "properties": { + "post-blank": 0, + "post-affiliated": 53476, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2887a3a", + "properties": { + "type": "https", + "path": "//visio.chapril.org/rgaa_land", + "format": "plain", + "raw-link": "https://visio.chapril.org/rgaa_land", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgab8fb10", + "properties": { + "type": "active", + "raw-value": "<2021-11-08 lun. 17:00>", + "post-blank": 0, + "start": "2021-11-08T17:00:00", + "end": "2021-11-08T17:00:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5d925eb", + "drawer": { + "CUSTOM_ID": "h:64166d10-a9d8-47ec-83e5-907631130907" + }, + "properties": { + "tags-all": [], + "raw-value": "doit on faire une section pour sauter à une partie de la page, comment ?", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 53549, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T18:04:00", + "end": "2021-11-08T18:04:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 18:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "doit on faire une section pour sauter à une partie de la page, comment ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6eda2d4", + "properties": { + "robust-begin": 53630, + "robust-end": 53730, + "post-blank": 0, + "post-affiliated": 53630, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org908f2ec", + "drawer": { + "CUSTOM_ID": "h:59795e9a-598d-4e00-8917-5581dd8e4d79" + }, + "properties": { + "tags-all": [], + "raw-value": "montrer le code du début du forumaire de création à Benoit Dequick", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 53732, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-08T17:33:00", + "end": "2021-11-08T17:33:00", + "type": "inactive", + "raw-value": "[2021-11-08 lun. 17:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "montrer le code du début du forumaire de création à Benoit Dequick" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5fca6a7", + "properties": { + "robust-begin": 53807, + "robust-end": 53907, + "post-blank": 1, + "post-affiliated": 53807, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8dca130", + "drawer": { + "ARCHIVE_TIME": "2021-11-09 mar. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:e1269420-5908-46a3-8db1-794074c3635b" + }, + "properties": { + "tags-all": [], + "raw-value": "résilier le compte pro", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "banque", + "écriture", + "laposte" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 53910, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-07T12:34:00", + "end": "2021-11-07T12:34:00", + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "résilier le compte pro" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd4a204d", + "properties": { + "robust-begin": 53966, + "robust-end": 54314, + "post-blank": 1, + "post-affiliated": 53966, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org97e5029", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:f1d291ff-af29-4cf7-9f45-ee4ad8f7411c" + }, + "properties": { + "tags-all": [], + "raw-value": "regrouper les messages d'erreur en haut de page", + "pre-blank": 0, + "robust-begin": 54756, + "robust-end": 54836, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 54317, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T17:31:00", + "end": "2021-11-12T17:31:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 17:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "regrouper les messages d'erreur en haut de page" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ff0caa", + "properties": { + "robust-begin": 54372, + "robust-end": 54836, + "post-blank": 1, + "post-affiliated": 54372, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org96ec8e7", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Boulot ----------------------------------------/framadate :framadate:/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:3f9765e2-75cf-4f75-98f2-04cfaea4464f" + }, + "properties": { + "tags-all": [], + "raw-value": "rétablir la fin de parcours pour création de sondage", + "pre-blank": 0, + "robust-begin": 55283, + "robust-end": 55666, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 54839, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T17:24:00", + "end": "2021-11-12T17:24:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 17:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rétablir la fin de parcours pour création de sondage" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2d2c2c8", + "properties": { + "robust-begin": 54899, + "robust-end": 55429, + "post-blank": 0, + "post-affiliated": 54899, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd41313e", + "drawer": { + "CUSTOM_ID": "h:fe82d1f1-16e1-48fd-b256-32a637680844" + }, + "properties": { + "tags-all": [], + "raw-value": "conversion de dates du calendrier en DTO", + "pre-blank": 0, + "robust-begin": 55586, + "robust-end": 55666, + "level": 2, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 55431, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T17:24:00", + "end": "2021-11-12T17:24:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 17:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "conversion de dates du calendrier en DTO" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga49b9e7", + "properties": { + "robust-begin": 55485, + "robust-end": 55666, + "post-blank": 1, + "post-affiliated": 55485, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5ed06b8", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Travaux et bricolage -------------------------/intérieur maison", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "recherche travaux", + "CUSTOM_ID": "h:a98fd7ec-8561-4892-b9b9-a2139901b674" + }, + "properties": { + "tags-all": [], + "raw-value": "=> mettre des feutres sur les intérieurs de porte à l'étage et aux toilettes rdc", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 55669, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T18:18:00", + "end": "2021-11-12T18:18:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "=> mettre des feutres sur les intérieurs de porte à l'étage et aux toilettes rdc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org766a823", + "properties": { + "robust-begin": 55757, + "robust-end": 56125, + "post-blank": 1, + "post-affiliated": 55757, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org70bf707", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/Chatons -------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:3520793c-64d3-4f6b-8c83-3ce6f9cfa844" + }, + "properties": { + "tags-all": [], + "raw-value": "créer le pad pour la newsletter du mois", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 56128, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T18:18:00", + "end": "2021-11-12T18:18:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-22", + "end": "2021-11-22", + "type": "active", + "raw-value": "<2021-11-22 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "créer le pad pour la newsletter du mois" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgba74cce", + "properties": { + "robust-begin": 56175, + "robust-end": 56561, + "post-blank": 2, + "post-affiliated": 56175, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgeb6a731", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/Chatons -------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:fbdb4eba-0571-42b7-87e0-9bea13c0a5a3" + }, + "properties": { + "tags-all": [], + "raw-value": "lecture avenir de neutrinet CCJ", + "pre-blank": 0, + "robust-begin": 56963, + "robust-end": 57094, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 56565, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T18:18:00", + "end": "2021-11-12T18:18:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lecture avenir de neutrinet CCJ" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1b7dae4", + "properties": { + "robust-begin": 56604, + "robust-end": 57094, + "post-blank": 1, + "post-affiliated": 56604, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4a42ebb", + "properties": { + "post-blank": 0, + "post-affiliated": 57045, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org64a53dc", + "properties": { + "type": "https", + "path": "//pad.caldarium.be/neutrinet-ccj-choix?view", + "format": "plain", + "raw-link": "https://pad.caldarium.be/neutrinet-ccj-choix?view", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "#\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga3de7e6", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/Chatons -------------/newsletter chatons", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "newsletter", + "CUSTOM_ID": "h:25b8cfee-cac2-41c5-a8e6-945c2c23fdc9" + }, + "properties": { + "tags-all": [], + "raw-value": "compléter la newsletter de chatons", + "pre-blank": 0, + "robust-begin": 57564, + "robust-end": 57682, + "level": 1, + "priority": null, + "tags": [ + "chatons" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 57097, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T17:34:00", + "end": "2021-11-12T17:34:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 17:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-12T14:00:00", + "end": "2021-11-12T14:00:00", + "type": "active", + "raw-value": "<2021-11-12 ven. 14:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "compléter la newsletter de chatons" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgad4abf8", + "properties": { + "robust-begin": 57149, + "robust-end": 57682, + "post-blank": 1, + "post-affiliated": 57149, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9ab2d5a", + "properties": { + "post-blank": 0, + "post-affiliated": 57646, + "mode": null, + "granularity": null + }, + "contents": [ + "Entered on/ ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga5a147e", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-05 ven. 17:15]", + "post-blank": 0, + "start": "2021-11-05T17:15:00", + "end": "2021-11-05T17:15:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4075d83", + "drawer": { + "ARCHIVE_TIME": "2021-11-12 ven. 18:38", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Tout/Associations ----------------------------/Chatons -------------/newsletter chatons", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons newsletter", + "CUSTOM_ID": "h:ab2d1df5-7bc8-4dca-acc9-0ad244492270" + }, + "properties": { + "tags-all": [], + "raw-value": "avoir un compte administrateur pour chaque personne souhaitant la gérer", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 57685, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-12T17:35:00", + "end": "2021-11-12T17:35:00", + "type": "inactive", + "raw-value": "[2021-11-12 ven. 17:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "avoir un compte administrateur pour chaque personne souhaitant la gérer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7896dea", + "properties": { + "robust-begin": 57764, + "robust-end": 58152, + "post-blank": 1, + "post-affiliated": 57764, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfc2f4d4", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:8f1c27d3-951f-4e05-a422-56952090ed80" + }, + "properties": { + "tags-all": [], + "raw-value": "faire du CESU pour le ménage de Georje", + "pre-blank": 0, + "robust-begin": 58476, + "robust-end": 58795, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 58155, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-27T11:01:00", + "end": "2021-11-27T11:01:00", + "type": "inactive", + "raw-value": "[2021-11-27 sam. 11:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire du CESU pour le ménage de Georje" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb93bc30", + "properties": { + "robust-begin": 58201, + "robust-end": 58662, + "post-blank": 0, + "post-affiliated": 58201, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1b3c972", + "properties": { + "post-blank": 1, + "post-affiliated": 58477, + "mode": null, + "granularity": null + }, + "contents": [ + " ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1edc613", + "properties": { + "type": "https", + "path": "//www.economie.gouv.fr/particuliers/cesu-cheque-emploi-service-universel", + "format": "plain", + "raw-link": "https://www.economie.gouv.fr/particuliers/cesu-cheque-emploi-service-universel", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nRUM 042077CEW20211127A002473950\nprélevé sur le compte commun lcl\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga86b1b2", + "properties": { + "post-blank": 0, + "post-affiliated": 58625, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgc7b22d3", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgdcc467b", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-25 jeu. 10:56]", + "post-blank": 0, + "start": "2021-11-25T10:56:00", + "end": "2021-11-25T10:56:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org37a9ce5", + "drawer": { + "CUSTOM_ID": "h:7c71248e-5618-4be4-a423-67ef2bb25798" + }, + "properties": { + "tags-all": [], + "raw-value": "demander un RIB pour faire les paiements de ménage", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 58664, + "title": [ + "demander un RIB pour faire les paiements de ménage" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3658e25", + "properties": { + "robust-begin": 58718, + "robust-end": 58795, + "post-blank": 1, + "post-affiliated": 58718, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5bbb6c9", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:53b35c57-d3ab-4694-93c9-805995c37231" + }, + "properties": { + "tags-all": [], + "raw-value": "payer facture eaux de briis 56.22 € a la trésorerie de dourdan", + "pre-blank": 0, + "robust-begin": 59140, + "robust-end": 59201, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 58798, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-27T11:07:00", + "end": "2021-11-27T11:07:00", + "type": "inactive", + "raw-value": "[2021-11-27 sam. 11:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "payer facture eaux de briis 56.22 € a la trésorerie de dourdan" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0e76cec", + "properties": { + "robust-begin": 58868, + "robust-end": 59201, + "post-blank": 1, + "post-affiliated": 58868, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd7c0697", + "properties": { + "post-blank": 1, + "post-affiliated": 59141, + "mode": null, + "granularity": null + }, + "contents": [ + "facture EA-00-4456\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org051fb38", + "properties": { + "post-blank": 0, + "post-affiliated": 59164, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org7f22a1e", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga0aa129", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-25 jeu. 15:24]", + "post-blank": 0, + "start": "2021-11-25T15:24:00", + "end": "2021-11-25T15:24:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org085a0cd", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:06831513-fc2d-4d61-a700-df0f26530beb" + }, + "properties": { + "tags-all": [], + "raw-value": "env : ne pas autofill, cacher les raccourcis sur la démo", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 59204, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T10:47:00", + "end": "2021-11-30T10:47:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 10:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "env : ne pas autofill, cacher les raccourcis sur la démo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org82f11b3", + "properties": { + "robust-begin": 59268, + "robust-end": 59614, + "post-blank": 1, + "post-affiliated": 59268, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9d58713", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:9f9939f9-b1bc-4f83-bf35-35998f3f3253" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre la typo helvetica dans les styles", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 59617, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T18:16:00", + "end": "2021-11-30T18:16:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 18:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre la typo helvetica dans les styles" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga468e4d", + "properties": { + "robust-begin": 59665, + "robust-end": 60011, + "post-blank": 1, + "post-affiliated": 59665, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org141fae0", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:72cdd3d3-a540-40d5-9484-93159ea3afb1" + }, + "properties": { + "tags-all": [], + "raw-value": "env var pour cacher la version choix de plage horaire par jour", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 60014, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T18:02:00", + "end": "2021-11-30T18:02:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 18:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "env var pour cacher la version choix de plage horaire par jour" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org011f9a2", + "properties": { + "robust-begin": 60084, + "robust-end": 60430, + "post-blank": 1, + "post-affiliated": 60084, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf52af15", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:9b37899f-c0a1-43db-97f1-a82ae8410bcf" + }, + "properties": { + "tags-all": [], + "raw-value": "env var email obligatoire", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 60433, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T18:05:00", + "end": "2021-11-30T18:05:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 18:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "env var email obligatoire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb28d01a", + "properties": { + "robust-begin": 60466, + "robust-end": 60812, + "post-blank": 1, + "post-affiliated": 60466, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5fd3c54", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:cd7479d8-a0ca-47e2-8dce-c0ae4c7bd879" + }, + "properties": { + "tags-all": [], + "raw-value": "env var display lien admin sur l'étape 6, désactivé sur la prod", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 60815, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T18:22:00", + "end": "2021-11-30T18:22:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 18:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "env var display lien admin sur l'étape 6, désactivé sur la prod" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org69ab7d4", + "properties": { + "robust-begin": 60886, + "robust-end": 61232, + "post-blank": 2, + "post-affiliated": 60886, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org41759fd", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage/général", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:2b253dcb-7b49-44f8-a72f-3cfe0638d04d" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer le build sur framagit", + "pre-blank": 0, + "robust-begin": 61653, + "robust-end": 61703, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 61236, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-26T11:19:00", + "end": "2021-11-26T11:19:00", + "type": "inactive", + "raw-value": "[2021-11-26 ven. 11:19]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réparer le build sur framagit" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeecbe66", + "properties": { + "robust-begin": 61273, + "robust-end": 61703, + "post-blank": 1, + "post-affiliated": 61273, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgaebf7c2", + "properties": { + "post-blank": 0, + "post-affiliated": 61654, + "mode": null, + "granularity": null + }, + "contents": [ + "callback(): The callback was already called.\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org74f57ab", + "properties": { + "post-blank": 0, + "post-affiliated": 61699, + "mode": null, + "granularity": null + }, + "contents": [ + ":END:\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2eb720a", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:290f14ca-af09-4e08-b78f-292cbb7997cf" + }, + "properties": { + "tags-all": [], + "raw-value": "vérif réception de inktober de hadh", + "pre-blank": 0, + "robust-begin": 62117, + "robust-end": 62155, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 61706, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T22:13:00", + "end": "2021-11-30T22:13:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-03", + "end": "2021-12-03", + "type": "active", + "raw-value": "<2021-12-03 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérif réception de inktober de hadh" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org858eddf", + "properties": { + "robust-begin": 61749, + "robust-end": 62155, + "post-blank": 1, + "post-affiliated": 61749, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org251277d", + "properties": { + "post-blank": 0, + "post-affiliated": 62119, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgb319904", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgf9b30f7", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-12 ven. 18:06]", + "post-blank": 0, + "start": "2021-11-12T18:06:00", + "end": "2021-11-12T18:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgce05a68", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Café vie privée ------------- :atelier:", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ca742c38-ebdd-4c7f-8f80-57d8bc038b2b" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv avec la médiathèque pour savoir comment procéder", + "pre-blank": 0, + "robust-begin": 62566, + "robust-end": 62658, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 62158, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-22T14:42:00", + "end": "2021-11-22T14:42:00", + "type": "inactive", + "raw-value": "[2021-11-22 mer. 14:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv avec la médiathèque pour savoir comment procéder" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb545d6f", + "properties": { + "robust-begin": 62218, + "robust-end": 62658, + "post-blank": 2, + "post-affiliated": 62218, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org770e7f2", + "properties": { + "type": "unordered", + "structure": [ + [ + 62567, + 0, + "- ", + null, + null, + null, + 62590 + ], + [ + 62590, + 0, + "- ", + null, + null, + null, + 62654 + ], + [ + 62654, + 0, + "- ", + null, + "[ ]", + null, + 62660 + ] + ], + "post-blank": 0, + "post-affiliated": 62567, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org70cef64", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 62567, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb12ff04", + "properties": { + "post-blank": 0, + "post-affiliated": 62569, + "mode": null, + "granularity": null + }, + "contents": [ + "quels papiers signer\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgddc84a0", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 62590, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4b23fff", + "properties": { + "post-blank": 0, + "post-affiliated": 62592, + "mode": null, + "granularity": null + }, + "contents": [ + "matériel: projecteur, salle, gens qui amènent leur ordi / tel\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org2cc4bb5", + "properties": { + "bullet": "- ", + "checkbox": "off", + "counter": null, + "pre-blank": 0, + "post-blank": 1, + "post-affiliated": 62654, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4f8e3a9", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:fdf5e554-e80a-4b0e-aeb1-9c84bb647538" + }, + "properties": { + "tags-all": [], + "raw-value": "redemander à eline quand est ce qu'on peut venir pour réserver hôtel et train en fin novembre", + "pre-blank": 0, + "robust-begin": 63087, + "robust-end": 63118, + "level": 1, + "priority": null, + "tags": [ + "social", + "agenda" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 62662, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T14:42:00", + "end": "2021-12-01T14:42:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 14:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "redemander à eline quand est ce qu'on peut venir pour réserver hôtel et train en fin novembre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9ec394b", + "properties": { + "robust-begin": 62779, + "robust-end": 63118, + "post-blank": 1, + "post-affiliated": 62779, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org052349f", + "properties": { + "post-blank": 0, + "post-affiliated": 63088, + "mode": null, + "granularity": null + }, + "contents": [ + "a DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org70720ac", + "properties": { + "type": "active", + "raw-value": "<2021-10-22 ven.>", + "post-blank": 0, + "start": "2021-10-22", + "end": "2021-10-22" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd488964", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:e2d5f264-22f5-407e-80d6-8a0a4d24b2d1" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer des affaires de chambre de vovo", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "vovo", + "extérieur" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 63121, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T14:43:00", + "end": "2021-12-01T14:43:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 14:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer des affaires de chambre de vovo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6367848", + "properties": { + "robust-begin": 63187, + "robust-end": 63517, + "post-blank": 1, + "post-affiliated": 63187, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd95f343", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ea2d28d2-c7e6-4357-a291-436521ac90d0" + }, + "properties": { + "tags-all": [], + "raw-value": "noter les adresses publiques de mes comptes blockchain.com", + "pre-blank": 0, + "robust-begin": 63910, + "robust-end": 64071, + "level": 1, + "priority": null, + "tags": [ + "backup", + "crypto" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 63520, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T22:11:00", + "end": "2021-11-30T22:11:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "noter les adresses publiques de mes comptes blockchain.com" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org946f52e", + "properties": { + "robust-begin": 63602, + "robust-end": 64071, + "post-blank": 3, + "post-affiliated": 63602, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgf35a4d0", + "properties": { + "type": "unordered", + "structure": [ + [ + 63911, + 0, + "- ", + null, + null, + null, + 63967 + ], + [ + 63967, + 0, + "- ", + null, + null, + null, + 64023 + ], + [ + 64023, + 0, + "- ", + null, + null, + null, + 64073 + ] + ], + "post-blank": 0, + "post-affiliated": 63911, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6ea8bb4", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 63911, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgabff2f6", + "properties": { + "post-blank": 0, + "post-affiliated": 63913, + "mode": null, + "granularity": null + }, + "contents": [ + "en btc ici bc1q0akh9td30klyl2h7pgapemfmgg7juf0ywcs69l\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9b00145", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 63967, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8f3740b", + "properties": { + "post-blank": 0, + "post-affiliated": 63969, + "mode": null, + "granularity": null + }, + "contents": [ + "en eth ici 0xEACD656E93c6b130d70A1A351731B0df4d1354D6\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org8073ba1", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 64023, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org95810c4", + "properties": { + "post-blank": 0, + "post-affiliated": 64025, + "mode": null, + "granularity": null + }, + "contents": [ + "busd 0x164827935544125Dde38a935e3b14e66A35724f3\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1dd3691", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:091f60b7-8b3a-4763-b4e1-0a5a04a2acc1" + }, + "properties": { + "tags-all": [], + "raw-value": "sauver un export de mes comptes blockchain.com", + "pre-blank": 0, + "robust-begin": 64454, + "robust-end": 64484, + "level": 1, + "priority": null, + "tags": [ + "backup", + "crypto" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 64076, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T22:05:00", + "end": "2021-11-30T22:05:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sauver un export de mes comptes blockchain.com" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfa74a20", + "properties": { + "robust-begin": 64146, + "robust-end": 64484, + "post-blank": 1, + "post-affiliated": 64146, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgfed0ed5", + "properties": { + "type": "unordered", + "structure": [ + [ + 64455, + 0, + "- ", + null, + null, + null, + 64486 + ] + ], + "post-blank": 0, + "post-affiliated": 64455, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9e67c72", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 64455, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orged7280f", + "properties": { + "post-blank": 0, + "post-affiliated": 64457, + "mode": null, + "granularity": null + }, + "contents": [ + "compte export dans bitwarden\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf4ad6a4", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2fd83cf3-46b6-49b3-afeb-fccbd0546a89" + }, + "properties": { + "tags-all": [], + "raw-value": "sortir les photos du tel tk pour voir si y'a pas des vidéos manquantes , mettre dans stockage syncable", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 64487, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T22:05:00", + "end": "2021-11-30T22:05:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sortir les photos du tel tk pour voir si y'a pas des vidéos manquantes , mettre dans stockage syncable" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7a4aea0", + "properties": { + "robust-begin": 64606, + "robust-end": 64913, + "post-blank": 1, + "post-affiliated": 64606, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb3f4263", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/catherinefonder.fr Site web catherine", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev catherine web", + "CUSTOM_ID": "h:bde91c80-be93-4869-a7fa-ed59d58ce014" + }, + "properties": { + "tags-all": [], + "raw-value": "configurer formulaire d'email", + "pre-blank": 0, + "robust-begin": 65341, + "robust-end": 65427, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 64916, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-30T22:03:00", + "end": "2021-11-30T22:03:00", + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "configurer formulaire d'email" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ac53c1", + "properties": { + "robust-begin": 64953, + "robust-end": 65427, + "post-blank": 1, + "post-affiliated": 64953, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgb27bba9", + "properties": { + "type": "unordered", + "structure": [ + [ + 65342, + 0, + "- ", + null, + "[X]", + null, + 65392 + ], + [ + 65392, + 0, + "- ", + null, + "[X]", + null, + 65429 + ] + ], + "post-blank": 0, + "post-affiliated": 65342, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgda83797", + "properties": { + "bullet": "- ", + "checkbox": "on", + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 65342, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd47abd3", + "properties": { + "post-blank": 0, + "post-affiliated": 65348, + "mode": null, + "granularity": null + }, + "contents": [ + "catherine création de boite mail protonmail\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orga4bd3b3", + "properties": { + "bullet": "- ", + "checkbox": "on", + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 65392, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga09cea9", + "properties": { + "post-blank": 0, + "post-affiliated": 65398, + "mode": null, + "granularity": null + }, + "contents": [ + "retapage de l'apprence du site\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7108317", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 14:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/catherinefonder.fr Site web catherine", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev catherine web", + "CUSTOM_ID": "h:c939df55-e5e9-4257-bcad-e47890212450" + }, + "properties": { + "tags-all": [], + "raw-value": "redirection de mail vers boite choisie par catherine", + "pre-blank": 0, + "robust-begin": 65906, + "robust-end": 65941, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 65430, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-26T17:16:00", + "end": "2021-11-26T17:16:00", + "type": "inactive", + "raw-value": "[2021-11-26 ven. 17:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-11-26", + "end": "2021-11-26", + "type": "active", + "raw-value": "<2021-11-26 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "redirection de mail vers boite choisie par catherine" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd19e26f", + "properties": { + "robust-begin": 65490, + "robust-end": 65941, + "post-blank": 2, + "post-affiliated": 65490, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4ce442f", + "properties": { + "post-blank": 0, + "post-affiliated": 65907, + "mode": null, + "granularity": null + }, + "contents": [ + "catherine.fonder@protonmail.com\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd025fac", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 18:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c410aa99-c5f5-4850-99c0-8a7c0caadec2" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer avocate de stéphane maillet", + "pre-blank": 0, + "robust-begin": 66282, + "robust-end": 66348, + "level": 1, + "priority": 65, + "tags": [ + "mail", + "solabaie" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 4, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 65945, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T17:25:00", + "end": "2021-12-01T17:25:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 17:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer avocate de stéphane maillet" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org636146c", + "properties": { + "robust-begin": 66010, + "robust-end": 66348, + "post-blank": 4, + "post-affiliated": 66010, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org33e4a63", + "properties": { + "post-blank": 0, + "post-affiliated": 66283, + "mode": null, + "granularity": null + }, + "contents": [ + "christelle daudin\n0686149234\n ", + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgfb258af", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0939f3e", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-25 jeu. 22:16]", + "post-blank": 0, + "start": "2021-11-25T22:16:00", + "end": "2021-11-25T22:16:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org96bb180", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 18:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5de6fb81-9956-4ec4-acd4-3ead15106f14" + }, + "properties": { + "tags-all": [], + "raw-value": "consulter dossier de subvention du cil", + "pre-blank": 0, + "robust-begin": 66709, + "robust-end": 66765, + "level": 1, + "priority": null, + "tags": [ + "cil" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 5, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 66354, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T17:22:00", + "end": "2021-12-01T17:22:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 17:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-02", + "end": "2021-12-02", + "type": "active", + "raw-value": "<2021-12-02 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "consulter dossier de subvention du cil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3f51ef3", + "properties": { + "robust-begin": 66406, + "robust-end": 66765, + "post-blank": 5, + "post-affiliated": 66406, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf75cc16", + "properties": { + "post-blank": 0, + "post-affiliated": 66710, + "mode": null, + "granularity": null + }, + "contents": [ + "trop long, ça suxx\n ", + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org174ee9a", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgea67790", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-30 mar. 10:47]", + "post-blank": 0, + "start": "2021-11-30T10:47:00", + "end": "2021-11-30T10:47:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc0912cc", + "drawer": { + "ARCHIVE_TIME": "2021-12-01 mer. 18:16", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------/intérieur maison", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "recherche travaux", + "CUSTOM_ID": "h:ed0c45e0-06e0-478e-ae88-6c64ce466f89" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer un email", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 66772, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T17:37:00", + "end": "2021-12-01T17:37:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 17:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer un email" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf9617b2", + "properties": { + "robust-begin": 66796, + "robust-end": 67159, + "post-blank": 1, + "post-affiliated": 66796, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org90c0036", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f8c7a011-dad2-4e5f-a373-1401de425bc9" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv claire vaccination", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 67162, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-09T09:30:00", + "end": "2021-12-09T09:30:00", + "type": "inactive", + "raw-value": "[2021-12-09 jeu. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-05", + "end": "2022-01-05", + "type": "active", + "raw-value": "<2022-01-05 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv claire vaccination" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7439821", + "properties": { + "robust-begin": 67192, + "robust-end": 67491, + "post-blank": 1, + "post-affiliated": 67192, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org346702c", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:03415516-ab7a-41d4-b304-ce3073d1540a" + }, + "properties": { + "tags-all": [], + "raw-value": "faire la quête de pognon a regrouper pour cadeau netna", + "pre-blank": 0, + "robust-begin": 67856, + "robust-end": 67886, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 67494, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-09T10:02:00", + "end": "2021-12-09T10:02:00", + "type": "inactive", + "raw-value": "[2021-12-09 jeu. 10:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-09", + "end": "2021-12-09", + "type": "active", + "raw-value": "<2021-12-09 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire la quête de pognon a regrouper pour cadeau netna" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org856808f", + "properties": { + "robust-begin": 67556, + "robust-end": 67886, + "post-blank": 1, + "post-affiliated": 67556, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org156b29c", + "properties": { + "post-blank": 0, + "post-affiliated": 67857, + "mode": null, + "granularity": null + }, + "contents": [ + "auprès de garance\ndjo\nsephirah\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb5c8258", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5765d2a9-b91c-4c9a-8de0-a1cac97a54ed" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter le bout de disque de 10 to interne au pool zfs", + "pre-blank": 0, + "robust-begin": 68232, + "robust-end": 68385, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 67889, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T10:13:00", + "end": "2021-12-10T10:13:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 10:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajouter le bout de disque de 10 to interne au pool zfs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf36a66e", + "properties": { + "robust-begin": 67960, + "robust-end": 68385, + "post-blank": 1, + "post-affiliated": 67960, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org782bf34", + "properties": { + "post-blank": 2, + "post-affiliated": 68314, + "mode": null, + "granularity": null + }, + "contents": [ + "monolith -> sde\nnope, disque ext\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org53cb298", + "properties": { + "post-blank": 0, + "post-affiliated": 68349, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org86c8403", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgace374e", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 09:43]", + "post-blank": 0, + "start": "2021-12-10T09:43:00", + "end": "2021-12-10T09:43:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org14d0b93", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2021-12-01 mer. 18:49]", + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot", + "CUSTOM_ID": "h:1f59d55c-4450-4293-9b0f-149161e006ee" + }, + "properties": { + "tags-all": [], + "raw-value": "check accessibilité", + "pre-blank": 0, + "robust-begin": 68836, + "robust-end": 69298, + "level": 1, + "priority": null, + "tags": [ + "framadate" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 68388, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-09T13:36:00", + "end": "2021-12-09T13:36:00", + "type": "inactive", + "raw-value": "[2021-12-09 jeu. 13:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "check accessibilité" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc334bbb", + "properties": { + "robust-begin": 68427, + "robust-end": 69298, + "post-blank": 2, + "post-affiliated": 68427, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org9ca0ba1", + "properties": { + "type": "unordered", + "structure": [ + [ + 68837, + 0, + "- ", + null, + null, + null, + 68900 + ], + [ + 68900, + 0, + "- ", + null, + null, + null, + 68963 + ], + [ + 68963, + 0, + "- ", + null, + null, + null, + 69027 + ], + [ + 69027, + 0, + "- ", + null, + null, + null, + 69065 + ], + [ + 69065, + 0, + "- ", + null, + null, + null, + 69122 + ], + [ + 69122, + 0, + "- ", + null, + null, + null, + 69173 + ] + ], + "post-blank": 0, + "post-affiliated": 68837, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgc862344", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 68837, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb968bf2", + "properties": { + "post-blank": 0, + "post-affiliated": 68839, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgcb39ec3", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-01 mer. 18:49]", + "post-blank": 0, + "start": "2021-12-01T18:49:00", + "end": "2021-12-01T18:49:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org95a4070", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 68900, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf8ae815", + "properties": { + "post-blank": 0, + "post-affiliated": 68902, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgbde7e02", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-01 mer. 18:16]", + "post-blank": 0, + "start": "2021-12-01T18:16:00", + "end": "2021-12-01T18:16:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org0e9bd83", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 1, + "post-affiliated": 68963, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org38236c0", + "properties": { + "post-blank": 0, + "post-affiliated": 68965, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org8222861", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-09 mar. 10:59]", + "post-blank": 0, + "start": "2021-11-09T10:59:00", + "end": "2021-11-09T10:59:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9180b28", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 69027, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org87fdcbf", + "properties": { + "post-blank": 0, + "post-affiliated": 69029, + "mode": null, + "granularity": null + }, + "contents": [ + "enlever les placeholders, autofocus\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org593f713", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 69065, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgad6cc73", + "properties": { + "post-blank": 0, + "post-affiliated": 69067, + "mode": null, + "granularity": null + }, + "contents": [ + "liens d'accès rapide vers le titre du champ, skip link\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orge568ed2", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 69122, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org44bc01a", + "properties": { + "post-blank": 0, + "post-affiliated": 69124, + "mode": null, + "granularity": null + }, + "contents": [ + "value sur le bouton pour, title \"vider le champ\"\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga6fc6d8", + "properties": { + "post-blank": 0, + "post-affiliated": 69173, + "mode": null, + "granularity": null + }, + "contents": [ + "choix actuel d'enlever l'éditeur wiziwig à cause de la lecture d'écran\nfaut il montrer le lien d'admin à la fin de la création\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd19b020", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:7dc37216-7317-4b64-be45-f4aabd743b8a" + }, + "properties": { + "tags-all": [], + "raw-value": "comment faire de la recherche dans tout un dossier avec emacs ?", + "pre-blank": 0, + "robust-begin": 69725, + "robust-end": 69777, + "level": 1, + "priority": null, + "tags": [ + "emacs", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 69302, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T10:24:00", + "end": "2021-12-10T10:24:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 10:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment faire de la recherche dans tout un dossier avec emacs ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org574ce0b", + "properties": { + "robust-begin": 69385, + "robust-end": 69777, + "post-blank": 1, + "post-affiliated": 69385, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf6a2e14", + "properties": { + "post-blank": 1, + "post-affiliated": 69726, + "mode": null, + "granularity": null + }, + "contents": [ + "utiliser deft\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5ef19aa", + "properties": { + "post-blank": 0, + "post-affiliated": 69741, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgda59547", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5e5cedd", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-11 jeu. 10:34]", + "post-blank": 0, + "start": "2021-11-11T10:34:00", + "end": "2021-11-11T10:34:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb157375", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:30b83fdd-b287-4321-9489-cbe6860d5dcf" + }, + "properties": { + "tags-all": [], + "raw-value": "sync tester la présence d'un disque monté", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 69780, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T10:23:00", + "end": "2021-12-10T10:23:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 10:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sync tester la présence d'un disque monté" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0b7a541", + "properties": { + "robust-begin": 69838, + "robust-end": 70177, + "post-blank": 1, + "post-affiliated": 69838, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org83f36f2", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:9a0c4a4e-c466-498d-8651-5b0ccf561445" + }, + "properties": { + "tags-all": [], + "raw-value": "sync spaceship script : mettre les nouveaux disques lilia et autre", + "pre-blank": 0, + "robust-begin": 70594, + "robust-end": 70630, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 70180, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T10:23:00", + "end": "2021-12-10T10:23:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 10:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sync spaceship script : mettre les nouveaux disques lilia et autre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge306b2a", + "properties": { + "robust-begin": 70254, + "robust-end": 70630, + "post-blank": 1, + "post-affiliated": 70254, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org146bbf1", + "properties": { + "post-blank": 0, + "post-affiliated": 70595, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org0e56952", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0cd436d", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-12 ven. 22:48]", + "post-blank": 0, + "start": "2021-11-12T22:48:00", + "end": "2021-11-12T22:48:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga04152b", + "drawer": { + "ARCHIVE_TIME": "2021-12-11 sam. 13:53", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:6a552494-fabb-4d18-aca4-73db31b92fd8" + }, + "properties": { + "tags-all": [], + "raw-value": "s'inspirer d'openbeermap pour faire un plan leaflet des restos", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": 66, + "tags": [ + "dev", + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 70633, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-10T20:01:00", + "end": "2021-12-10T20:01:00", + "type": "inactive", + "raw-value": "[2021-12-10 ven. 20:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "s'inspirer d'openbeermap pour faire un plan leaflet des restos" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4c91f25", + "properties": { + "robust-begin": 70718, + "robust-end": 71029, + "post-blank": 1, + "post-affiliated": 70718, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org32be50e", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:30c66367-a226-4211-9da4-b669e05b71ea" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer les favoris firefox de claire dans son backup", + "pre-blank": 0, + "robust-begin": 71367, + "robust-end": 71405, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 71032, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-13T13:43:00", + "end": "2021-12-13T13:43:00", + "type": "inactive", + "raw-value": "[2021-12-13 lun. 13:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer les favoris firefox de claire dans son backup" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga3fe2ea", + "properties": { + "robust-begin": 71095, + "robust-end": 71405, + "post-blank": 1, + "post-affiliated": 71095, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7828b34", + "properties": { + "post-blank": 0, + "post-affiliated": 71369, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org9455fc7", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga25ecd4", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-09 jeu. 13:54]", + "post-blank": 0, + "start": "2021-12-09T13:54:00", + "end": "2021-12-09T13:54:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf471945", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d93b2483-98dc-41c4-b263-e75e86a3eb15" + }, + "properties": { + "tags-all": [], + "raw-value": "enrouler la clématite au grillage en bois", + "pre-blank": 0, + "robust-begin": 71748, + "robust-end": 71786, + "level": 1, + "priority": null, + "tags": [ + "jardin", + "extérieur" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 71408, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-13T13:42:00", + "end": "2021-12-13T13:42:00", + "type": "inactive", + "raw-value": "[2021-12-13 lun. 13:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "enrouler la clématite au grillage en bois" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org900ef18", + "properties": { + "robust-begin": 71476, + "robust-end": 71786, + "post-blank": 1, + "post-affiliated": 71476, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbd048ee", + "properties": { + "post-blank": 0, + "post-affiliated": 71750, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org4b666cb", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgca98930", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 19:35]", + "post-blank": 0, + "start": "2021-12-10T19:35:00", + "end": "2021-12-10T19:35:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4752e1a", + "drawer": { + "ARCHIVE_TIME": "2021-12-14 mar. 11:23", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/export_tasks.org", + "ARCHIVE_OLPATH": "Rangement social ------------------------", + "ARCHIVE_CATEGORY": "export_tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:7d0e31ff-6504-4e26-9c0c-57ffc086fe43" + }, + "properties": { + "tags-all": [], + "raw-value": "offrir une montre flik flak en cadeau d'anniv à hélia", + "pre-blank": 0, + "robust-begin": 72220, + "robust-end": 72410, + "level": 1, + "priority": null, + "tags": [ + "helia" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 71789, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-13T13:42:00", + "end": "2021-12-13T13:42:00", + "type": "inactive", + "raw-value": "[2021-12-13 lun. 13:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-15", + "end": "2021-12-15", + "type": "active", + "raw-value": "<2021-12-15 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "offrir une montre flik flak en cadeau d'anniv à hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org250bf8d", + "properties": { + "robust-begin": 71858, + "robust-end": 72219, + "post-blank": 0, + "post-affiliated": 71858, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org28aeacb", + "drawer": { + "CUSTOM_ID": "h:72e1f2ee-2177-42a6-bb75-32e43cd3792d" + }, + "properties": { + "tags-all": [], + "raw-value": "commander le modèle de montre à Hélia", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [ + "helia", + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 72221, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-13T13:42:00", + "end": "2021-12-13T13:42:00", + "type": "inactive", + "raw-value": "[2021-12-13 lun. 13:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-13", + "end": "2021-12-13", + "type": "active", + "raw-value": "<2021-12-13 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander le modèle de montre à Hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgafd6660", + "properties": { + "robust-begin": 72282, + "robust-end": 72410, + "post-blank": 1, + "post-affiliated": 72282, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge63f72b", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:948f85e1-3996-4459-b263-fb1ad11ee7e6" + }, + "properties": { + "tags-all": [], + "raw-value": "configurer deft", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "orgmode", + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 72413, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-15T10:53:00", + "end": "2021-12-15T10:53:00", + "type": "inactive", + "raw-value": "[2021-12-15 mer. 10:53]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "configurer deft" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org23a427d", + "properties": { + "robust-begin": 72452, + "robust-end": 72727, + "post-blank": 2, + "post-affiliated": 72452, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3fd1f3b", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b19c6bc9-7e1a-46ad-8ef7-9c298a07c513" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre dans le wiki mes textes markdown de nextcloud", + "pre-blank": 0, + "robust-begin": 73095, + "robust-end": 73202, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 72731, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-14T18:33:00", + "end": "2021-12-14T18:33:00", + "type": "inactive", + "raw-value": "[2021-12-14 mar. 18:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-13", + "end": "2021-12-13", + "type": "active", + "raw-value": "<2021-12-13 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre dans le wiki mes textes markdown de nextcloud" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org085c39f", + "properties": { + "robust-begin": 72791, + "robust-end": 73202, + "post-blank": 1, + "post-affiliated": 72791, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga556c6a", + "properties": { + "post-blank": 0, + "post-affiliated": 73097, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge912a55", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org::*La maison", + "application": null, + "search-option": "*La maison", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "La maison" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga564ff2", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2f1509a9-36bf-4341-b673-a5cf9fe59c2e" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un dossier de partage d'ebooks pour le cil", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "cil", + "nextcloud" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 4, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 73205, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-15T17:24:00", + "end": "2021-12-15T17:24:00", + "type": "inactive", + "raw-value": "[2021-12-15 mer. 17:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un dossier de partage d'ebooks pour le cil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga9c61ad", + "properties": { + "robust-begin": 73277, + "robust-end": 73552, + "post-blank": 4, + "post-affiliated": 73277, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgca00b20", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e2763589-4876-4b65-9b8b-8421f0c9c79c" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre des clémentines pour le repas de noel de l'école", + "pre-blank": 0, + "robust-begin": 73926, + "robust-end": 73963, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 73558, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-14T18:33:00", + "end": "2021-12-14T18:33:00", + "type": "inactive", + "raw-value": "[2021-12-14 mar. 18:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-17", + "end": "2021-12-17", + "type": "active", + "raw-value": "<2021-12-17 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prendre des clémentines pour le repas de noel de l'école" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org956526c", + "properties": { + "robust-begin": 73622, + "robust-end": 73963, + "post-blank": 1, + "post-affiliated": 73622, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orged6b729", + "properties": { + "post-blank": 0, + "post-affiliated": 73928, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org98046c1", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgee84018", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 09:43]", + "post-blank": 0, + "start": "2021-12-10T09:43:00", + "end": "2021-12-10T09:43:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org82dd1b2", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4c7bbb17-a911-4013-9f23-2ead47e0a57b" + }, + "properties": { + "tags-all": [], + "raw-value": "enlever le spam de mobilizon", + "pre-blank": 0, + "robust-begin": 74288, + "robust-end": 74381, + "level": 1, + "priority": null, + "tags": [ + "chapril" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 73966, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T09:06:00", + "end": "2021-12-16T09:06:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 09:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "enlever le spam de mobilizon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgae3ad3f", + "properties": { + "robust-begin": 74012, + "robust-end": 74381, + "post-blank": 1, + "post-affiliated": 74012, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6c56e49", + "properties": { + "post-blank": 0, + "post-affiliated": 74289, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org82b5b39", + "properties": { + "type": "https", + "path": "//listes.chapril.org/sympa/info/mobilizon-support", + "format": "plain", + "raw-link": "https://listes.chapril.org/sympa/info/mobilizon-support", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgc99c5d2", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org6bfd331", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 19:43]", + "post-blank": 0, + "start": "2021-12-10T19:43:00", + "end": "2021-12-10T19:43:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org47414fb", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate", + "CUSTOM_ID": "h:4af54d3a-2a3a-4a23-89b2-78b676bca089" + }, + "properties": { + "tags-all": [], + "raw-value": "compléter la barre de nav header accueil", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 74384, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T09:07:00", + "end": "2021-12-16T09:07:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 09:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "compléter la barre de nav header accueil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1236fd5", + "properties": { + "robust-begin": 74432, + "robust-end": 74784, + "post-blank": 1, + "post-affiliated": 74432, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgadda7a4", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate creation", + "CUSTOM_ID": "h:f69814d4-76c0-423b-8630-8b69be86fa3a" + }, + "properties": { + "tags-all": [], + "raw-value": "étape 3 calendrier, conversion avant passage à l'étape suivante", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 74787, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-15T11:00:00", + "end": "2021-12-15T11:00:00", + "type": "inactive", + "raw-value": "[2021-12-15 mer. 11:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "étape 3 calendrier, conversion avant passage à l'étape suivante" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge4dff53", + "properties": { + "robust-begin": 74858, + "robust-end": 75239, + "post-blank": 2, + "post-affiliated": 74858, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org427a882", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate creation", + "CUSTOM_ID": "h:7e196dfe-b4a6-4c9f-8cb0-17e60e84312c" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre dans pollservice l'affichage input calendrier", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 75243, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T09:07:00", + "end": "2021-12-16T09:07:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 09:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre dans pollservice l'affichage input calendrier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7853290", + "properties": { + "robust-begin": 75303, + "robust-end": 75684, + "post-blank": 1, + "post-affiliated": 75303, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org512a94c", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate creation", + "CUSTOM_ID": "h:01db8e6d-11ad-4a36-afb5-f1f3439fe85d" + }, + "properties": { + "tags-all": [], + "raw-value": "convertir les dates avant la création par api", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 75687, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T09:07:00", + "end": "2021-12-16T09:07:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 09:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "convertir les dates avant la création par api" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7c75726", + "properties": { + "robust-begin": 75740, + "robust-end": 76121, + "post-blank": 2, + "post-affiliated": 75740, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orged781fb", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------/extérieur :travaux:elec:solabaie:jardin:extérieur", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux", + "CUSTOM_ID": "h:93dcfee3-5ea6-4acf-995a-75f7672f9642" + }, + "properties": { + "tags-all": [], + "raw-value": "=> chercher un gens pour ramonage", + "pre-blank": 0, + "robust-begin": 76605, + "robust-end": 76641, + "level": 1, + "priority": null, + "tags": [ + "recherche", + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 76125, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-14T18:33:00", + "end": "2021-12-14T18:33:00", + "type": "inactive", + "raw-value": "[2021-12-14 mar. 18:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-13", + "end": "2021-12-13", + "type": "active", + "raw-value": "<2021-12-13 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "=> chercher un gens pour ramonage" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfed10f9", + "properties": { + "robust-begin": 76182, + "robust-end": 76641, + "post-blank": 1, + "post-affiliated": 76182, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org29fa1fd", + "properties": { + "post-blank": 0, + "post-affiliated": 76606, + "mode": null, + "granularity": null + }, + "contents": [ + "au bonheur des flammes est dispo 70€\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org60a8814", + "drawer": { + "ARCHIVE_TIME": "2021-12-16 jeu. 13:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/lecture", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu lecture", + "CUSTOM_ID": "h:3407ef40-fd6a-42c2-800e-9bd5326cf4bb" + }, + "properties": { + "tags-all": [], + "raw-value": "le guide débutant de doom emacs", + "pre-blank": 0, + "robust-begin": 77043, + "robust-end": 77087, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 76644, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-14T16:19:00", + "end": "2021-12-14T16:19:00", + "type": "inactive", + "raw-value": "[2021-12-14 mar. 16:19]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "le guide débutant de doom emacs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc8bce88", + "properties": { + "robust-begin": 76683, + "robust-end": 77087, + "post-blank": 1, + "post-affiliated": 76683, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org142eab0", + "properties": { + "post-blank": 0, + "post-affiliated": 77044, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org73326d3", + "properties": { + "type": "https", + "path": "//lordgrenville.github.io/posts/Emacs/", + "format": "plain", + "raw-link": "https://lordgrenville.github.io/posts/Emacs/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8e1c48e", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:1c73fcb5-2574-42ef-a633-cd768c67da91" + }, + "properties": { + "tags-all": [], + "raw-value": "retrouver les archives de la mailing list de liness", + "pre-blank": 0, + "robust-begin": 77410, + "robust-end": 77605, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 77090, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T16:06:00", + "end": "2021-12-16T16:06:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 16:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "retrouver les archives de la mailing list de liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org32557e8", + "properties": { + "robust-begin": 77149, + "robust-end": 77605, + "post-blank": 1, + "post-affiliated": 77149, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org100c8b0", + "properties": { + "post-blank": 0, + "post-affiliated": 77411, + "mode": null, + "granularity": null + }, + "contents": [ + "pour avoir mon texte de présentation de méthodo ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3d1ac38", + "properties": { + "type": "id", + "path": "53ffed85-03d0-4fb2-90b5-af2ffbcc3a0d", + "format": "bracket", + "raw-link": "id:53ffed85-03d0-4fb2-90b5-af2ffbcc3a0d", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "gtd" + ] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb39d8aa", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211230507-liness.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211230507-liness.org::*Activités", + "application": null, + "search-option": "*Activités", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Activités" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5b77640", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:594d882f-83de-4bb7-ace3-47574c812732" + }, + "properties": { + "tags-all": [], + "raw-value": "répondre mail de catherine école en précisant apps.education.fr", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 77608, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-17T17:47:00", + "end": "2021-12-17T17:47:00", + "type": "inactive", + "raw-value": "[2021-12-17 ven. 17:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "répondre mail de catherine école en précisant apps.education.fr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb0ec0be", + "properties": { + "robust-begin": 77686, + "robust-end": 77946, + "post-blank": 2, + "post-affiliated": 77686, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org91d88f8", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:0db22508-4b91-4f9c-844a-a63e196dec14" + }, + "properties": { + "tags-all": [], + "raw-value": "ajout usine tricatel", + "pre-blank": 0, + "robust-begin": 78245, + "robust-end": 78375, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 77950, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T15:50:00", + "end": "2021-12-16T15:50:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 15:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajout usine tricatel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgea7343e", + "properties": { + "robust-begin": 77984, + "robust-end": 78375, + "post-blank": 2, + "post-affiliated": 77984, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge7386a3", + "properties": { + "post-blank": 0, + "post-affiliated": 78246, + "mode": null, + "granularity": null + }, + "contents": [ + "cquest: Un lieu de tournage à ajouter dans OSM: L'usine Tricatel est en réalité l'usine Pernod, située 120, avenue Foch à Créteil.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org032b4f2", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:93a7c1a2-9008-4a6a-9d7e-c478553e5338" + }, + "properties": { + "tags-all": [], + "raw-value": "tipee est encore en vie, wtf, 6€ de prélèvements mensuels", + "pre-blank": 0, + "robust-begin": 78705, + "robust-end": 78762, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 78379, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T15:47:00", + "end": "2021-12-16T15:47:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 15:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tipee est encore en vie, wtf, 6€ de prélèvements mensuels" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf1327ad", + "properties": { + "robust-begin": 78444, + "robust-end": 78762, + "post-blank": 1, + "post-affiliated": 78444, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org176b973", + "properties": { + "post-blank": 1, + "post-affiliated": 78706, + "mode": null, + "granularity": null + }, + "contents": [ + "6e meta de choc\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org030981f", + "properties": { + "post-blank": 0, + "post-affiliated": 78726, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orge50b011", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org348f850", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 19:35]", + "post-blank": 0, + "start": "2021-12-10T19:35:00", + "end": "2021-12-10T19:35:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6c7c4b2", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:00c7669c-b6cd-4eea-949c-964119c43968" + }, + "properties": { + "tags-all": [], + "raw-value": "arome news VAE et sur place", + "pre-blank": 0, + "robust-begin": 79077, + "robust-end": 79230, + "level": 1, + "priority": null, + "tags": [ + "larome", + "boulot" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 78765, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T15:45:00", + "end": "2021-12-16T15:45:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 15:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "arome news VAE et sur place" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1daf1b4", + "properties": { + "robust-begin": 78816, + "robust-end": 79230, + "post-blank": 1, + "post-affiliated": 78816, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcbeb68b", + "properties": { + "post-blank": 0, + "post-affiliated": 79169, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org503f2b9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*Inbox", + "application": null, + "search-option": "*Inbox", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Inbox" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7c820ea", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9d69b07d-3df0-4e5c-9137-4fd9444f2838" + }, + "properties": { + "tags-all": [], + "raw-value": "noter prélèvement foncier de l'appart de rouen 1175", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 79233, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T15:47:00", + "end": "2021-12-16T15:47:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 15:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "noter prélèvement foncier de l'appart de rouen 1175" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge70c3a7", + "properties": { + "robust-begin": 79292, + "robust-end": 79552, + "post-blank": 1, + "post-affiliated": 79292, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org40707ce", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:25c8517e-55f0-4333-8df1-bab655e5b630" + }, + "properties": { + "tags-all": [], + "raw-value": "récup installateur toshop pour claire", + "pre-blank": 0, + "robust-begin": 79858, + "robust-end": 79912, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 79555, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-20T11:49:00", + "end": "2021-12-20T11:49:00", + "type": "inactive", + "raw-value": "[2021-12-20 lun. 11:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récup installateur toshop pour claire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3fe45a6", + "properties": { + "robust-begin": 79600, + "robust-end": 79912, + "post-blank": 1, + "post-affiliated": 79600, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga2485a0", + "properties": { + "post-blank": 0, + "post-affiliated": 79859, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6a2b563", + "properties": { + "type": "https", + "path": "//cloud.tykayn.fr/index.php/s/TaXEm8aPqyN4Nyq", + "format": "plain", + "raw-link": "https://cloud.tykayn.fr/index.php/s/TaXEm8aPqyN4Nyq", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5b25024", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:a4a8fe9f-d6b4-4309-bd30-2c3c502f7a39" + }, + "properties": { + "tags-all": [], + "raw-value": "récup sur clé usb fichier vidéo de la maitresse", + "pre-blank": 0, + "robust-begin": 80228, + "robust-end": 80326, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 79915, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-16T12:17:00", + "end": "2021-12-16T12:17:00", + "type": "inactive", + "raw-value": "[2021-12-16 jeu. 12:17]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récup sur clé usb fichier vidéo de la maitresse" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3638d3d", + "properties": { + "robust-begin": 79970, + "robust-end": 80326, + "post-blank": 1, + "post-affiliated": 79970, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf347013", + "properties": { + "post-blank": 0, + "post-affiliated": 80230, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1a80d0c", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*Wiki", + "application": null, + "search-option": "*Wiki", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Wiki" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0b15fc6", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b5c8dbc6-d38c-4836-a116-91b91fe40505" + }, + "properties": { + "tags-all": [], + "raw-value": "noter dans fiche pognon tva 1873 EUR prélevée le 19 déc", + "pre-blank": 0, + "robust-begin": 80650, + "robust-end": 80783, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 80329, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-20T12:26:00", + "end": "2021-12-20T12:26:00", + "type": "inactive", + "raw-value": "[2021-12-20 lun. 12:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "noter dans fiche pognon tva 1873 EUR prélevée le 19 déc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8455060", + "properties": { + "robust-begin": 80392, + "robust-end": 80783, + "post-blank": 1, + "post-affiliated": 80392, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org977a217", + "properties": { + "post-blank": 0, + "post-affiliated": 80652, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd77c863", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*ville de Briis, Juvisy", + "application": null, + "search-option": "*ville de Briis, Juvisy", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "ville de Briis, Juvisy" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org07f0733", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:750a6ce0-d3dc-4faa-9e23-a8cc4457cc3f" + }, + "properties": { + "tags-all": [], + "raw-value": "cloud tykayn enable encryption vérif", + "pre-blank": 0, + "robust-begin": 81088, + "robust-end": 81284, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 80786, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-20T12:24:00", + "end": "2021-12-20T12:24:00", + "type": "inactive", + "raw-value": "[2021-12-20 lun. 12:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cloud tykayn enable encryption vérif" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org14f7ddf", + "properties": { + "robust-begin": 80830, + "robust-end": 81284, + "post-blank": 1, + "post-affiliated": 80830, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0da9533", + "properties": { + "post-blank": 0, + "post-affiliated": 81090, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3c5683c", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*cryptomonnaies [[id:74395cc3-d326-47aa-b43d-0f4debdf96e7][cryptomonnaie]]", + "application": null, + "search-option": "*cryptomonnaies [[id:74395cc3-d326-47aa-b43d-0f4debdf96e7][cryptomonnaie]]", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "cryptomonnaies cryptomonnaie" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd30dd1e", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b96bbe56-0b66-4073-ad53-76180d6149b1" + }, + "properties": { + "tags-all": [], + "raw-value": "vérifier dans le script de syncro que le nextcloud est bien copié dans stockage syncable zfs", + "pre-blank": 0, + "robust-begin": 81645, + "robust-end": 81742, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 81287, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-20T12:24:00", + "end": "2021-12-20T12:24:00", + "type": "inactive", + "raw-value": "[2021-12-20 lun. 12:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérifier dans le script de syncro que le nextcloud est bien copié dans stockage syncable zfs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org517830c", + "properties": { + "robust-begin": 81387, + "robust-end": 81742, + "post-blank": 1, + "post-affiliated": 81387, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7e19f37", + "properties": { + "post-blank": 0, + "post-affiliated": 81647, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3b956c1", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*Wiki", + "application": null, + "search-option": "*Wiki", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Wiki" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org260c46a", + "drawer": { + "ARCHIVE_TIME": "2021-12-20 lun. 12:26", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate creation", + "CUSTOM_ID": "h:821c6a59-a7a9-4516-9409-737a07e22e21" + }, + "properties": { + "tags-all": [], + "raw-value": "popin annuler selon maquette", + "pre-blank": 0, + "robust-begin": 82148, + "robust-end": 82265, + "level": 1, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 81745, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-18T16:21:00", + "end": "2021-12-18T16:21:00", + "type": "inactive", + "raw-value": "[2021-12-18 sam. 16:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "popin annuler selon maquette" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org89b9577", + "properties": { + "robust-begin": 81786, + "robust-end": 82265, + "post-blank": 1, + "post-affiliated": 81786, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org29b575d", + "properties": { + "post-blank": 0, + "post-affiliated": 82149, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1131589", + "properties": { + "type": "https", + "path": "//framagit.org/framasoft/framadate/funky-framadate-front/-/issues/148/designs/__UI_-_1440_-_.png?version=351", + "format": "plain", + "raw-link": "https://framagit.org/framasoft/framadate/funky-framadate-front/-/issues/148/designs/__UI_-_1440_-_.png?version=351", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga327c73", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b4505b58-2034-482c-8486-8a026a62a427" + }, + "properties": { + "tags-all": [], + "raw-value": "retrouver le texte La fibre avant naissance d'hélia", + "pre-blank": 0, + "robust-begin": 82618, + "robust-end": 82797, + "level": 1, + "priority": null, + "tags": [ + "claire", + "helia" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 82268, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-26T10:26:00", + "end": "2021-12-26T10:26:00", + "type": "inactive", + "raw-value": "[2021-12-26 dim. 10:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "retrouver le texte La fibre avant naissance d'hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4f06342", + "properties": { + "robust-begin": 82342, + "robust-end": 82797, + "post-blank": 1, + "post-affiliated": 82342, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org37e2c64", + "properties": { + "post-blank": 0, + "post-affiliated": 82619, + "mode": null, + "granularity": null + }, + "contents": [ + " peut être dans le NAS ou sur le gdrive de claire\n blog d'hélia\nsur le blog\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgdc28fce", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211224211-helia.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211224211-helia.org::*Blog d'hélia", + "application": null, + "search-option": "*Blog d'hélia", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Blog d'hélia" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org075c904", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4312a77f-7992-4e06-ac95-0e9523c06d90" + }, + "properties": { + "tags-all": [], + "raw-value": "fatland : récupérer le montage vidéo d'hélia qui fait visiter la maison", + "pre-blank": 0, + "robust-begin": 83155, + "robust-end": 83309, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 82800, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-26T10:26:00", + "end": "2021-12-26T10:26:00", + "type": "inactive", + "raw-value": "[2021-12-26 dim. 10:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "fatland : récupérer le montage vidéo d'hélia qui fait visiter la maison" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2eade27", + "properties": { + "robust-begin": 82879, + "robust-end": 83309, + "post-blank": 1, + "post-affiliated": 82879, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc2b5771", + "properties": { + "post-blank": 0, + "post-affiliated": 83157, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org59b07f1", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*retrouver le texte La fibre avant naissance d'hélia", + "application": null, + "search-option": "*retrouver le texte La fibre avant naissance d'hélia", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "retrouver le texte La fibre avant naissance d'hélia" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgae5c315", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:a0e492aa-a709-45ea-8292-551c244165e5" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un mail de récap des avancements pour framadate", + "pre-blank": 0, + "robust-begin": 83686, + "robust-end": 83871, + "level": 1, + "priority": null, + "tags": [ + "boulot" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 83312, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-26T10:25:00", + "end": "2021-12-26T10:25:00", + "type": "inactive", + "raw-value": "[2021-12-26 dim. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-21", + "end": "2021-12-21", + "type": "active", + "raw-value": "<2021-12-21 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un mail de récap des avancements pour framadate" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6f7ac20", + "properties": { + "robust-begin": 83382, + "robust-end": 83871, + "post-blank": 1, + "post-affiliated": 83382, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org147801a", + "properties": { + "post-blank": 0, + "post-affiliated": 83688, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2f1d018", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*sur osm proposition wiki discussion pour les restos gastronomiques", + "application": null, + "search-option": "*sur osm proposition wiki discussion pour les restos gastronomiques", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "sur osm proposition wiki discussion pour les restos gastronomiques" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7b20822", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d8cb755c-7e18-44de-8edd-6b872092fa95" + }, + "properties": { + "tags-all": [], + "raw-value": "préparer les affaires pour aller a vovo 4 jours", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "vovo" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 83874, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-26T10:25:00", + "end": "2021-12-26T10:25:00", + "type": "inactive", + "raw-value": "[2021-12-26 dim. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-21", + "end": "2021-12-21", + "type": "active", + "raw-value": "<2021-12-21 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "préparer les affaires pour aller a vovo 4 jours" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ba1e74", + "properties": { + "robust-begin": 83936, + "robust-end": 84239, + "post-blank": 1, + "post-affiliated": 83936, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgffb6425", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9be277e1-7399-49b1-bf43-75b4e159d9e2" + }, + "properties": { + "tags-all": [], + "raw-value": "blog post : clé gpg imprimer, post dans emacs à importer", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 84242, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T18:18:00", + "end": "2021-12-28T18:18:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "blog post : clé gpg imprimer, post dans emacs à importer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6a0bb4d", + "properties": { + "robust-begin": 84306, + "robust-end": 84581, + "post-blank": 1, + "post-affiliated": 84306, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org32a41b8", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3b6025bc-4d5a-4e3f-b129-4953ad455f9a" + }, + "properties": { + "tags-all": [], + "raw-value": "commander des feed", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 84584, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T18:18:00", + "end": "2021-12-28T18:18:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander des feed" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org668128a", + "properties": { + "robust-begin": 84610, + "robust-end": 84885, + "post-blank": 1, + "post-affiliated": 84610, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc568c5e", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2695d3a8-e201-401c-9171-391341be0205" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un virement à netna pour le cadeau de noel de steph", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 84888, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T18:18:00", + "end": "2021-12-28T18:18:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un virement à netna pour le cadeau de noel de steph" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3d06018", + "properties": { + "robust-begin": 84953, + "robust-end": 85228, + "post-blank": 1, + "post-affiliated": 84953, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge3ee555", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ba3956c2-b1f8-462d-bd56-bdc75b04e11c" + }, + "properties": { + "tags-all": [], + "raw-value": "mail tesla essai de model y voir si trop fat", + "pre-blank": 0, + "robust-begin": 85559, + "robust-end": 85714, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 85231, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T18:18:00", + "end": "2021-12-28T18:18:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 18:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mail tesla essai de model y voir si trop fat" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4c827f8", + "properties": { + "robust-begin": 85283, + "robust-end": 85714, + "post-blank": 1, + "post-affiliated": 85283, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org906c9d0", + "properties": { + "post-blank": 0, + "post-affiliated": 85561, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf81cfd0", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*retrouver le texte La fibre avant naissance d'hélia", + "application": null, + "search-option": "*retrouver le texte La fibre avant naissance d'hélia", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "retrouver le texte La fibre avant naissance d'hélia" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb3e6260", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e4d58128-f4c9-4249-83ca-104f7a154dbd" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer 150 EUR à netna pour cadeau steph", + "pre-blank": 0, + "robust-begin": 86042, + "robust-end": 86225, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 85717, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T18:19:00", + "end": "2021-12-28T18:19:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 18:19]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer 150 EUR à netna pour cadeau steph" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orged3a840", + "properties": { + "robust-begin": 85766, + "robust-end": 86225, + "post-blank": 1, + "post-affiliated": 85766, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9fcca17", + "properties": { + "post-blank": 0, + "post-affiliated": 86044, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7c27ee9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*contacter la médiathèque de limours pour faire un café vie privée", + "application": null, + "search-option": "*contacter la médiathèque de limours pour faire un café vie privée", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "contacter la médiathèque de limours pour faire un café vie privée" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org567bb45", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "backup", + "CUSTOM_ID": "h:b3eb4909-e4ac-43a2-a40c-1093bf64a077" + }, + "properties": { + "tags-all": [], + "raw-value": "backup: faire une zone chiffrée contenant nos photos pour la postérité,", + "pre-blank": 0, + "robust-begin": 86641, + "robust-end": 86652, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 86228, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-27T10:45:00", + "end": "2021-12-27T10:45:00", + "type": "inactive", + "raw-value": "[2021-12-27 lun. 10:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "backup: faire une zone chiffrée contenant nos photos pour la postérité," + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge467b05", + "properties": { + "robust-begin": 86307, + "robust-end": 86652, + "post-blank": 1, + "post-affiliated": 86307, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf16335b", + "properties": { + "post-blank": 0, + "post-affiliated": 86642, + "mode": null, + "granularity": null + }, + "contents": [ + "borg backup\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6627b97", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:12bc5ce5-0f2e-45bb-86f5-297ab69d4272" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver comment faire une partition chiffrée sur le NAS", + "pre-blank": 0, + "robust-begin": 87036, + "robust-end": 87082, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 86655, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-27T10:46:00", + "end": "2021-12-27T10:46:00", + "type": "inactive", + "raw-value": "[2021-12-27 lun. 10:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver comment faire une partition chiffrée sur le NAS" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org51e95f5", + "properties": { + "robust-begin": 86727, + "robust-end": 87082, + "post-blank": 1, + "post-affiliated": 86727, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org513688e", + "properties": { + "post-blank": 0, + "post-affiliated": 87037, + "mode": null, + "granularity": null + }, + "contents": [ + "copier du borgbackup\nfaire un volume truecrypt\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8047e52", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev", + "CUSTOM_ID": "h:24a7a33c-dc54-486d-b321-39a1263d2898" + }, + "properties": { + "tags-all": [], + "raw-value": "carte des choses à manger et à boire", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 87085, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T19:01:00", + "end": "2021-12-28T19:01:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 19:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "carte des choses à manger et à boire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org570627f", + "properties": { + "robust-begin": 87129, + "robust-end": 87466, + "post-blank": 2, + "post-affiliated": 87129, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgda053ec", + "drawer": { + "ARCHIVE_TIME": "2021-12-28 mar. 19:02", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev", + "CUSTOM_ID": "h:02837ac6-eea3-43cf-bf7c-0f68efdb5883" + }, + "properties": { + "tags-all": [], + "raw-value": "lister les noms de domaine cipherbliss dans la cartographie de sites", + "pre-blank": 0, + "robust-begin": 87914, + "robust-end": 87975, + "level": 1, + "priority": 66, + "tags": [ + "texte", + "adminsys", + "chatons" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 87470, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-28T19:00:00", + "end": "2021-12-28T19:00:00", + "type": "inactive", + "raw-value": "[2021-12-28 mar. 19:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lister les noms de domaine cipherbliss dans la cartographie de sites" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5bb115b", + "properties": { + "robust-begin": 87576, + "robust-end": 87975, + "post-blank": 1, + "post-affiliated": 87576, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbcc18f6", + "properties": { + "post-blank": 0, + "post-affiliated": 87915, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8360bfc", + "properties": { + "type": "id", + "path": "ece3f12f-94ca-4b3c-9d97-f2e676d43d0d", + "format": "bracket", + "raw-link": "id:ece3f12f-94ca-4b3c-9d97-f2e676d43d0d", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "domains", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgb688934", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tykayn" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org39aa361", + "drawer": { + "ARCHIVE_TIME": "2022-01-02 dim. 21:47", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c168298f-4e9f-4fd0-9e7a-7ebb6833e701" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un virement à jeorgj 2h30 x 16eur", + "pre-blank": 0, + "robust-begin": 88301, + "robust-end": 88392, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 87978, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-31T10:50:00", + "end": "2021-12-31T10:50:00", + "type": "inactive", + "raw-value": "[2021-12-31 ven. 10:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un virement à jeorgj 2h30 x 16eur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf73a817", + "properties": { + "robust-begin": 88025, + "robust-end": 88392, + "post-blank": 1, + "post-affiliated": 88025, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge224a53", + "properties": { + "post-blank": 0, + "post-affiliated": 88303, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2a47605", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga5113a0", + "drawer": { + "ARCHIVE_TIME": "2022-01-02 dim. 21:47", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2d830eb6-0f05-4382-bda5-c2bdd18f6145" + }, + "properties": { + "tags-all": [], + "raw-value": "activer volets maison à 9h30", + "pre-blank": 0, + "robust-begin": 88707, + "robust-end": 88798, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 88395, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-31T10:51:00", + "end": "2021-12-31T10:51:00", + "type": "inactive", + "raw-value": "[2021-12-31 ven. 10:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "activer volets maison à 9h30" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcd74520", + "properties": { + "robust-begin": 88431, + "robust-end": 88798, + "post-blank": 1, + "post-affiliated": 88431, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbae460f", + "properties": { + "post-blank": 0, + "post-affiliated": 88709, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9aa66fc", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/tasks.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org75a5cae", + "drawer": { + "ARCHIVE_TIME": "2022-01-02 dim. 21:47", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7c2f3997-c669-4e18-9e3b-d800f33fff62" + }, + "properties": { + "tags-all": [], + "raw-value": "commander gateau licorne à la briisoise", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 88801, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-02T21:42:00", + "end": "2022-01-02T21:42:00", + "type": "inactive", + "raw-value": "[2022-01-02 dim. 21:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-31", + "end": "2021-12-31", + "type": "active", + "raw-value": "<2021-12-31 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander gateau licorne à la briisoise" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org44141d8", + "properties": { + "robust-begin": 88848, + "robust-end": 89151, + "post-blank": 1, + "post-affiliated": 88848, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfcf6eef", + "drawer": { + "ARCHIVE_TIME": "2022-01-02 dim. 21:47", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Chatons -------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:2ed46d97-d456-4c16-aab6-50f9aa808ad0" + }, + "properties": { + "tags-all": [], + "raw-value": "récup texte de décembre pour 42L", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 89154, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-29T17:32:00", + "end": "2021-12-29T17:32:00", + "type": "inactive", + "raw-value": "[2021-12-29 mer. 17:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-29", + "end": "2021-12-29", + "type": "active", + "raw-value": "<2021-12-29 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récup texte de décembre pour 42L" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge70a6ba", + "properties": { + "robust-begin": 89194, + "robust-end": 89581, + "post-blank": 1, + "post-affiliated": 89194, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge64a1f1", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ad6daaba-c83f-4b58-9db2-12c1c93d757c" + }, + "properties": { + "tags-all": [], + "raw-value": "chiffrer une note [[id:75894e8c-5bed-4e34-9ab9-e59bbfefaa20][orgmode]]", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 89584, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-14T11:36:00", + "end": "2021-12-14T11:36:00", + "type": "inactive", + "raw-value": "[2021-12-14 mar. 11:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "chiffrer une note ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8225410", + "properties": { + "type": "id", + "path": "75894e8c-5bed-4e34-9ab9-e59bbfefaa20", + "format": "bracket", + "raw-link": "id:75894e8c-5bed-4e34-9ab9-e59bbfefaa20", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "orgmode" + ] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9576ac1", + "properties": { + "robust-begin": 89662, + "robust-end": 89937, + "post-blank": 1, + "post-affiliated": 89662, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0ff3153", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f2fc38ef-6432-41b5-b614-f42a10319767" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un mail à Mme huze et un virement pour forges en transition", + "pre-blank": 0, + "robust-begin": 90317, + "robust-end": 90472, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 89940, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-06T17:16:00", + "end": "2022-01-06T17:16:00", + "type": "inactive", + "raw-value": "[2022-01-06 jeu. 17:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-06", + "end": "2022-01-06", + "type": "active", + "raw-value": "<2022-01-06 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un mail à Mme huze et un virement pour forges en transition" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge421c9a", + "properties": { + "robust-begin": 90013, + "robust-end": 90472, + "post-blank": 1, + "post-affiliated": 90013, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4b751fb", + "properties": { + "post-blank": 0, + "post-affiliated": 90319, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfd07260", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*retrouver le texte La fibre avant naissance d'hélia", + "application": null, + "search-option": "*retrouver le texte La fibre avant naissance d'hélia", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "retrouver le texte La fibre avant naissance d'hélia" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8ec7477", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9cdbcf21-9183-47db-9863-642c59382e5f" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un virement à franciliens net pour l'année", + "pre-blank": 0, + "robust-begin": 90835, + "robust-end": 90952, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 90475, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-05T22:40:00", + "end": "2022-01-05T22:40:00", + "type": "inactive", + "raw-value": "[2022-01-05 mer. 22:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-03", + "end": "2022-01-03", + "type": "active", + "raw-value": "<2022-01-03 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un virement à franciliens net pour l'année" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7d40370", + "properties": { + "robust-begin": 90531, + "robust-end": 90952, + "post-blank": 1, + "post-affiliated": 90531, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb562979", + "properties": { + "post-blank": 1, + "post-affiliated": 90836, + "mode": null, + "granularity": null + }, + "contents": [ + "559€\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org13dcfce", + "properties": { + "post-blank": 0, + "post-affiliated": 90842, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0b0242b", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211213235913-chiffrement.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211213235913-chiffrement.org::*Le chiffrement", + "application": null, + "search-option": "*Le chiffrement", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Le chiffrement" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcf6cc51", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e0f9652d-8cf7-4e15-b7ab-cf8d4a96f191" + }, + "properties": { + "tags-all": [], + "raw-value": "test crachouille hélia", + "pre-blank": 0, + "robust-begin": 91289, + "robust-end": 91400, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 90955, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-03T22:36:00", + "end": "2022-01-03T22:36:00", + "type": "inactive", + "raw-value": "[2022-01-03 lun. 22:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-03", + "end": "2022-01-03", + "type": "active", + "raw-value": "<2022-01-03 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "test crachouille hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org53056ca", + "properties": { + "robust-begin": 90985, + "robust-end": 91400, + "post-blank": 1, + "post-affiliated": 90985, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdf755d5", + "properties": { + "post-blank": 0, + "post-affiliated": 91291, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org85b00d0", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211213235913-chiffrement.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211213235913-chiffrement.org::*Le chiffrement", + "application": null, + "search-option": "*Le chiffrement", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Le chiffrement" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf4184fe", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5671cf2b-dda1-466b-940f-0a18367f1198" + }, + "properties": { + "tags-all": [], + "raw-value": "affiche pour limours librairie café vie privée", + "pre-blank": 0, + "robust-begin": 91761, + "robust-end": 91902, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 91403, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-06T17:16:00", + "end": "2022-01-06T17:16:00", + "type": "inactive", + "raw-value": "[2022-01-06 jeu. 17:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-06", + "end": "2022-01-06", + "type": "active", + "raw-value": "<2022-01-06 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "affiche pour limours librairie café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8de629f", + "properties": { + "robust-begin": 91457, + "robust-end": 91902, + "post-blank": 1, + "post-affiliated": 91457, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge3c0f16", + "properties": { + "post-blank": 0, + "post-affiliated": 91763, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1a5e903", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*installer lineage os pour samsung galaxy s21", + "application": null, + "search-option": "*installer lineage os pour samsung galaxy s21", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "installer lineage os pour samsung galaxy s21" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaa6a5b2", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9e18d398-22e2-4b92-8b08-b9a86dabd68e" + }, + "properties": { + "tags-all": [], + "raw-value": "purger les robinets", + "pre-blank": 0, + "robust-begin": 92236, + "robust-end": 92339, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 91905, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-09T21:20:00", + "end": "2022-01-09T21:20:00", + "type": "inactive", + "raw-value": "[2022-01-09 dim. 21:20]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-07", + "end": "2022-01-07", + "type": "active", + "raw-value": "<2022-01-07 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "purger les robinets" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4e6cfbf", + "properties": { + "robust-begin": 91932, + "robust-end": 92339, + "post-blank": 1, + "post-affiliated": 91932, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgad43950", + "properties": { + "post-blank": 0, + "post-affiliated": 92238, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2ff21fc", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211214124545-cipherbliss.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211214124545-cipherbliss.org::*Année 2022", + "application": null, + "search-option": "*Année 2022", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Année 2022" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgdac5641", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes --------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:e0872502-1f18-4c3b-92bd-b5c74622c659" + }, + "properties": { + "tags-all": [], + "raw-value": "déclaration des heures de ménage sur le site du CESU", + "pre-blank": 0, + "robust-begin": 92780, + "robust-end": 92845, + "level": 1, + "priority": null, + "tags": [ + "menage" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 92342, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-05T22:37:00", + "end": "2022-01-05T22:37:00", + "type": "inactive", + "raw-value": "[2022-01-05 mer. 22:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-29", + "end": "2022-05-29", + "type": "active", + "raw-value": "<2022-05-29 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "déclaration des heures de ménage sur le site du CESU" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge0333fd", + "properties": { + "robust-begin": 92411, + "robust-end": 92845, + "post-blank": 1, + "post-affiliated": 92411, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org0e17316", + "properties": { + "type": "unordered", + "structure": [ + [ + 92782, + 2, + "- ", + null, + null, + null, + 92847 + ] + ], + "post-blank": 0, + "post-affiliated": 92782, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org21a51fb", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 92782, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org35ccdba", + "properties": { + "post-blank": 0, + "post-affiliated": 92786, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga499055", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-02 dim. 21:43]", + "post-blank": 0, + "start": "2022-01-02T21:43:00", + "end": "2022-01-02T21:43:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb53f507", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Café vie privée ------------- :atelier:", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:cce12e33-a5bd-4f75-9ee6-ef06011437bd" + }, + "properties": { + "tags-all": [], + "raw-value": "faire quelques slides pour présenter les café vie privée et qui je suis", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 92848, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-06T17:16:00", + "end": "2022-01-06T17:16:00", + "type": "inactive", + "raw-value": "[2022-01-06 jeu. 17:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-06", + "end": "2022-01-06", + "type": "active", + "raw-value": "<2022-01-06 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire quelques slides pour présenter les café vie privée et qui je suis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5079cd9", + "properties": { + "robust-begin": 92927, + "robust-end": 93306, + "post-blank": 1, + "post-affiliated": 92927, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfff6312", + "drawer": { + "ARCHIVE_TIME": "2022-01-09 dim. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Achats de trucs -----------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:651ae4cf-476d-40d1-8279-1c9c70416c46" + }, + "properties": { + "tags-all": [], + "raw-value": "imprimante", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "achats" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 93309, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-05T22:43:00", + "end": "2021-12-05T22:43:00", + "type": "inactive", + "raw-value": "[2021-12-05 dim. 22:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "imprimante" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd521637", + "properties": { + "robust-begin": 93336, + "robust-end": 93639, + "post-blank": 1, + "post-affiliated": 93336, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5ec2384", + "drawer": { + "ARCHIVE_TIME": "2022-01-11 mar. 15:32", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "CUSTOM_ID": "h:461cebce-671a-4047-8aa6-f05a334177b0" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED ajouter le split de SSD au poule zfs de FATland", + "pre-blank": 0, + "robust-begin": 94023, + "robust-end": 94187, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 93642, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T14:45:00", + "end": "2021-12-01T14:45:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 14:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED ajouter le split de SSD au poule zfs de FATland" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgee89587", + "properties": { + "robust-begin": 93710, + "robust-end": 94022, + "post-blank": 0, + "post-affiliated": 93710, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf65c371", + "drawer": { + "CUSTOM_ID": "h:141eedb7-66b5-4907-8a97-90ee4ab6be76" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED splitter le SSD M2 de FATland", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 94024, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-01T14:45:00", + "end": "2021-12-01T14:45:00", + "type": "inactive", + "raw-value": "[2021-12-01 mer. 14:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED splitter le SSD M2 de FATland" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org84c216c", + "properties": { + "robust-begin": 94075, + "robust-end": 94187, + "post-blank": 1, + "post-affiliated": 94075, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2e65cb2", + "drawer": { + "ARCHIVE_TIME": "2022-01-11 mar. 15:32", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------/extérieur :travaux:elec:solabaie:jardin:extérieur", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:d37e03b8-f05a-41a5-86e3-c68c2827fffc" + }, + "properties": { + "tags-all": [], + "raw-value": "=> attacher papier photo avec @dadou @travaux", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "CANCELLED", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 94190, + "title": [ + "=> attacher papier photo avec @dadou @travaux" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc9add01", + "properties": { + "robust-begin": 94248, + "robust-end": 94596, + "post-blank": 1, + "post-affiliated": 94248, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc651618", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2a1ffe6c-7573-4d23-b7cf-9110c366bf06" + }, + "properties": { + "tags-all": [], + "raw-value": "horaires boutiques de Limours en photo à mettre dans osm", + "pre-blank": 0, + "robust-begin": 94973, + "robust-end": 95162, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 94599, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-11T14:16:00", + "end": "2022-01-11T14:16:00", + "type": "inactive", + "raw-value": "[2022-01-11 mar. 14:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-03", + "end": "2022-01-03", + "type": "active", + "raw-value": "<2022-01-03 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "horaires boutiques de Limours en photo à mettre dans osm" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org983fb38", + "properties": { + "robust-begin": 94669, + "robust-end": 95162, + "post-blank": 1, + "post-affiliated": 94669, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1da273a", + "properties": { + "post-blank": 1, + "post-affiliated": 94974, + "mode": null, + "granularity": null + }, + "contents": [ + "wasapizza.com 18h 22h\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdb1a59a", + "properties": { + "post-blank": 1, + "post-affiliated": 94997, + "mode": null, + "granularity": null + }, + "contents": [ + "boulangerie maison rault\n6h45 13h, 15h30 19h30\nfermé mercreid jeudi, dimanche aprèm\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5794168", + "properties": { + "post-blank": 0, + "post-affiliated": 95082, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgcb2e7c9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*wiki personnel", + "application": null, + "search-option": "*wiki personnel", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "wiki personnel" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org45d55e5", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox/faire un captcha pour mastodon bliss", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "mastodon", + "CUSTOM_ID": "h:c0231aec-276f-4b8c-8472-02a32e3743a1" + }, + "properties": { + "tags-all": [], + "raw-value": "DL l'archive de postgres de la prod actuelle", + "pre-blank": 0, + "robust-begin": 95557, + "robust-end": 95643, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 95165, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T22:41:00", + "end": "2022-01-16T22:41:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 22:41]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "DL l'archive de postgres de la prod actuelle" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9f130bf", + "properties": { + "robust-begin": 95217, + "robust-end": 95643, + "post-blank": 1, + "post-affiliated": 95217, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfa7552e", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox/faire un captcha pour mastodon bliss", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "mastodon", + "CUSTOM_ID": "h:3249bb2c-03f1-40c0-a1c4-14df4928c7fc" + }, + "properties": { + "tags-all": [], + "raw-value": "importer la bdd de mastodon dans postgresql depuis les backups sql de sys", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 95646, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T22:41:00", + "end": "2022-01-16T22:41:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 22:41]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "importer la bdd de mastodon dans postgresql depuis les backups sql de sys" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0e69134", + "properties": { + "robust-begin": 95727, + "robust-end": 96066, + "post-blank": 1, + "post-affiliated": 95727, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcbd4117", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4a8ebfa6-2627-447e-be42-6a49ba6a1ddd" + }, + "properties": { + "tags-all": [], + "raw-value": "voir avec dadou ce qu'on demande à solabaie pour dire ensuite au conciliateur", + "pre-blank": 0, + "robust-begin": 96458, + "robust-end": 96607, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 96069, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-11T16:12:00", + "end": "2022-01-11T16:12:00", + "type": "inactive", + "raw-value": "[2022-01-11 mar. 16:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-10", + "end": "2022-01-10", + "type": "active", + "raw-value": "<2022-01-10 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir avec dadou ce qu'on demande à solabaie pour dire ensuite au conciliateur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6db795c", + "properties": { + "robust-begin": 96154, + "robust-end": 96607, + "post-blank": 1, + "post-affiliated": 96154, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org63cf4be", + "properties": { + "post-blank": 0, + "post-affiliated": 96460, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6f80523", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211212854-cafe_vie_privee.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211212854-cafe_vie_privee.org::*Organisation de la présentation", + "application": null, + "search-option": "*Organisation de la présentation", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Organisation de la présentation" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc6bea60", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:257169a4-2422-44bf-8cc2-7a1acad93a2d" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver un kbis de solabaie", + "pre-blank": 0, + "robust-begin": 96921, + "robust-end": 97459, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 96610, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-15T14:31:00", + "end": "2022-01-15T14:31:00", + "type": "inactive", + "raw-value": "[2022-01-15 sam. 14:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver un kbis de solabaie" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf3e3cf4", + "properties": { + "robust-begin": 96645, + "robust-end": 97459, + "post-blank": 1, + "post-affiliated": 96645, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0c453b1", + "properties": { + "post-blank": 1, + "post-affiliated": 96922, + "mode": null, + "granularity": null + }, + "contents": [ + "mr willy braffler région annecy\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8f61623", + "properties": { + "type": "https", + "path": "//entreprises.lefigaro.fr/econhome-74-74/entreprise-880866876", + "format": "plain", + "raw-link": "https://entreprises.lefigaro.fr/econhome-74-74/entreprise-880866876", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nsiren 880866876\ncréé le 26/12/2019\nEtablissement actif depuis le 02/01/2020\n3 RUE DU VIEUX MOULIN, 74960 annecy\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcd02c3b", + "properties": { + "post-blank": 1, + "post-affiliated": 97135, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1cd6225", + "properties": { + "type": "https", + "path": "//www.foire-internationale74.com/exposant/econhome74-solabaie/", + "format": "plain", + "raw-link": "https://www.foire-internationale74.com/exposant/econhome74-solabaie/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org95edbab", + "properties": { + "post-blank": 3, + "post-affiliated": 97205, + "mode": null, + "granularity": null + }, + "contents": [ + "Tel : 06 67 86 95 07\ntel: 0952444324\nAdresse mail : econhome.74@icloud.com\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9cecaed", + "properties": { + "post-blank": 0, + "post-affiliated": 97283, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3ab9e65", + "properties": { + "type": "https", + "path": "//www.infogreffe.com/entreprise-societe/880866876-econhome-74-740120B001010000.html?typeProduitOnglet=EXTRAIT&afficherretour=true&tab=entrep", + "format": "plain", + "raw-link": "https://www.infogreffe.com/entreprise-societe/880866876-econhome-74-740120B001010000.html?typeProduitOnglet=EXTRAIT&afficherretour=true&tab=entrep", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org796352b", + "properties": { + "type": "active", + "raw-value": "<2022-01-12 mer.>", + "post-blank": 0, + "start": "2022-01-12", + "end": "2022-01-12" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf320820", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e1038176-b707-4e09-96ec-eff95b43b6d9" + }, + "properties": { + "tags-all": [], + "raw-value": "changer la périodicité des achats de btc avec le compte blockchain en euro", + "pre-blank": 0, + "robust-begin": 97853, + "robust-end": 98052, + "level": 1, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 97462, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-15T15:37:00", + "end": "2022-01-15T15:37:00", + "type": "inactive", + "raw-value": "[2022-01-15 sam. 15:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-17", + "end": "2022-01-17", + "type": "active", + "raw-value": "<2022-01-17 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "changer la périodicité des achats de btc avec le compte blockchain en euro" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2c42d1b", + "properties": { + "robust-begin": 97549, + "robust-end": 98052, + "post-blank": 1, + "post-affiliated": 97549, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6807d16", + "properties": { + "post-blank": 0, + "post-affiliated": 97936, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org80bd3f2", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220115141455-essais_vehicules.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220115141455-essais_vehicules.org::*kia EV6 GT line", + "application": null, + "search-option": "*kia EV6 GT line", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "kia EV6 GT line" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7bd8ddf", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:308ea6d3-7db2-47ef-8d0b-43523a145d0a" + }, + "properties": { + "tags-all": [], + "raw-value": "TODOpapier pour essai de model Y", + "pre-blank": 0, + "robust-begin": 98399, + "robust-end": 98516, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 98055, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T10:42:00", + "end": "2022-01-16T10:42:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 10:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-15", + "end": "2022-01-15", + "type": "active", + "raw-value": "<2022-01-15 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "TODOpapier pour essai de model Y" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb3bce65", + "properties": { + "robust-begin": 98095, + "robust-end": 98516, + "post-blank": 1, + "post-affiliated": 98095, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org924a2b7", + "properties": { + "post-blank": 0, + "post-affiliated": 98401, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbf5406e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220115141455-essais_vehicules.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220115141455-essais_vehicules.org::*kia EV6 GT line", + "application": null, + "search-option": "*kia EV6 GT line", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "kia EV6 GT line" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9c011a7", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work", + "CUSTOM_ID": "h:5c05763f-d6ea-4bd3-b953-4b3509e72e62" + }, + "properties": { + "tags-all": [], + "raw-value": "installer les feathericons", + "pre-blank": 0, + "robust-begin": 98911, + "robust-end": 98958, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 98519, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-09T22:18:00", + "end": "2022-01-09T22:18:00", + "type": "inactive", + "raw-value": "[2022-01-09 dim. 22:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "installer les feathericons" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3229204", + "properties": { + "robust-begin": 98553, + "robust-end": 98958, + "post-blank": 3, + "post-affiliated": 98553, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org553ec2a", + "properties": { + "post-blank": 0, + "post-affiliated": 98912, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2545a43", + "properties": { + "type": "https", + "path": "//github.com/feathericons/feather#feather", + "format": "plain", + "raw-link": "https://github.com/feathericons/feather#feather", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd9f079c", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:5ad1af7a-858a-4035-a3a5-ddd70b57be8c" + }, + "properties": { + "tags-all": [], + "raw-value": "cabane hélia", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "hélia" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 98963, + "closed": { + "$$data_type": "timestamp", + "start": "2021-11-01T15:24:00", + "end": "2021-11-01T15:24:00", + "type": "inactive", + "raw-value": "[2021-11-01 lun. 15:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cabane hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge671f24", + "properties": { + "robust-begin": 98991, + "robust-end": 99343, + "post-blank": 1, + "post-affiliated": 98991, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org42af759", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:bac7c8ef-12da-48e2-91ad-e8099d63758e" + }, + "properties": { + "tags-all": [], + "raw-value": "@adminsys voir si le site de Ludovic Souliman a été spammé", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "inbox", + "adminsys", + "ludovic", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 99346, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T10:42:00", + "end": "2022-01-16T10:42:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 10:42]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-07", + "end": "2022-01-07", + "type": "active", + "raw-value": "<2022-01-07 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "@adminsys voir si le site de Ludovic Souliman a été spammé" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgffed282", + "properties": { + "robust-begin": 99441, + "robust-end": 99790, + "post-blank": 1, + "post-affiliated": 99441, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga76be1b", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/RSS feeder", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev mobilizon osm", + "CUSTOM_ID": "h:41ff8893-7a0e-4b02-97d7-fc72e8e96352" + }, + "properties": { + "tags-all": [], + "raw-value": "réussir à faire un import depuis le rss de l'agenda du libre", + "pre-blank": 0, + "robust-begin": 100195, + "robust-end": 100279, + "level": 1, + "priority": 66, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 99793, + "title": [ + "réussir à faire un import depuis le rss de l'agenda du libre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd46f38e", + "properties": { + "robust-begin": 99866, + "robust-end": 100279, + "post-blank": 1, + "post-affiliated": 99866, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb9e7000", + "properties": { + "post-blank": 0, + "post-affiliated": 100196, + "mode": null, + "granularity": null + }, + "contents": [ + "manque quelques infos des évènements, mais ça marche\nCLOSED: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgaef8542", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-11 mar. 15:27]", + "post-blank": 0, + "start": "2022-01-11T15:27:00", + "end": "2022-01-11T15:27:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org87ac6a6", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/mastodon", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev", + "CUSTOM_ID": "h:cdab4025-42d2-420f-b6e1-a4eea34700d4" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un export du modèle de DB mastodon dans phpstorm", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mastodon", + "postgresql" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 100282, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T22:40:00", + "end": "2022-01-16T22:40:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 22:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un export du modèle de DB mastodon dans phpstorm" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3dfe0cf", + "properties": { + "robust-begin": 100366, + "robust-end": 100712, + "post-blank": 1, + "post-affiliated": 100366, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org24e07e0", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:ddb6bf38-0171-461f-b4d5-616478bcca15" + }, + "properties": { + "tags-all": [], + "raw-value": "relier un calendrier externe", + "pre-blank": 0, + "robust-begin": 101122, + "robust-end": 101161, + "level": 1, + "priority": null, + "tags": [ + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 100715, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T09:22:00", + "end": "2022-01-17T09:22:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 09:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relier un calendrier externe" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd364106", + "properties": { + "robust-begin": 100761, + "robust-end": 101161, + "post-blank": 1, + "post-affiliated": 100761, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org415ad75", + "properties": { + "post-blank": 0, + "post-affiliated": 101123, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5b1a8fa", + "properties": { + "type": "https", + "path": "//github.com/dengste/org-caldav", + "format": "plain", + "raw-link": "https://github.com/dengste/org-caldav", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org36c2159", + "drawer": { + "ARCHIVE_TIME": "2022-01-17 lun. 10:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:d34e9b00-246f-40d4-9837-aac37ed89f2e" + }, + "properties": { + "tags-all": [], + "raw-value": "rechercher dans tout le dossier d'orgmode deft", + "pre-blank": 0, + "robust-begin": 101587, + "robust-end": 101675, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 101164, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T09:14:00", + "end": "2022-01-17T09:14:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 09:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rechercher dans tout le dossier d'orgmode deft" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org78b91fa", + "properties": { + "robust-begin": 101218, + "robust-end": 101675, + "post-blank": 1, + "post-affiliated": 101218, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf015fdc", + "properties": { + "post-blank": 0, + "post-affiliated": 101588, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org05e6667", + "properties": { + "type": "http", + "path": "//ergoemacs.org/emacs/emacs_grep_find.html", + "format": "plain", + "raw-link": "http://ergoemacs.org/emacs/emacs_grep_find.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nDeft ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org25cb0e1", + "properties": { + "type": "https", + "path": "//jblevins.org/projects/deft/", + "format": "plain", + "raw-link": "https://jblevins.org/projects/deft/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org038b8b7", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:44f6d742-83b9-4971-8235-ae6e9770ba78" + }, + "properties": { + "tags-all": [], + "raw-value": "relance mail mairie de briis install fibre rue boissière", + "pre-blank": 0, + "robust-begin": 102053, + "robust-end": 102236, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 101678, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T14:03:00", + "end": "2022-01-20T14:03:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 14:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-18", + "end": "2022-01-18", + "type": "active", + "raw-value": "<2022-01-18 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relance mail mairie de briis install fibre rue boissière" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge773171", + "properties": { + "robust-begin": 101749, + "robust-end": 102236, + "post-blank": 1, + "post-affiliated": 101749, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org45e5ba8", + "properties": { + "post-blank": 0, + "post-affiliated": 102055, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc472092", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*contacter la médiathèque de limours pour faire un café vie privée", + "application": null, + "search-option": "*contacter la médiathèque de limours pour faire un café vie privée", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "contacter la médiathèque de limours pour faire un café vie privée" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9c5469c", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3ae579c2-d3f1-4d30-b870-9fc03a1a7a5c" + }, + "properties": { + "tags-all": [], + "raw-value": "textes du syncable zfs a incorporer dans le wiki org", + "pre-blank": 0, + "robust-begin": 102575, + "robust-end": 102758, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 102239, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T14:03:00", + "end": "2022-01-20T14:03:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 14:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "textes du syncable zfs a incorporer dans le wiki org" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeb4801f", + "properties": { + "robust-begin": 102299, + "robust-end": 102758, + "post-blank": 1, + "post-affiliated": 102299, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfbc6ff4", + "properties": { + "post-blank": 0, + "post-affiliated": 102577, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf7a39ea", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*contacter la médiathèque de limours pour faire un café vie privée", + "application": null, + "search-option": "*contacter la médiathèque de limours pour faire un café vie privée", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "contacter la médiathèque de limours pour faire un café vie privée" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf00fbc4", + "drawer": { + "EFFORT": "1:00", + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:3eb3aa25-4590-4aa8-b9cc-bd8a75b14a4e" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter org-calendar avec un calendrier de démo créé exprès", + "pre-blank": 0, + "robust-begin": 103130, + "robust-end": 103238, + "level": 1, + "priority": null, + "tags": [ + "inbox" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 102761, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T11:01:00", + "end": "2022-01-17T11:01:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 11:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajouter org-calendar avec un calendrier de démo créé exprès" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org07d8ca2", + "properties": { + "robust-begin": 102836, + "robust-end": 103238, + "post-blank": 1, + "post-affiliated": 102836, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3cd5a47", + "properties": { + "post-blank": 1, + "post-affiliated": 103131, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6d17043", + "properties": { + "type": "https", + "path": "//cloud.tykayn.fr/remote.php/dav/calendars/super_admin_tykayn/orgmode/", + "format": "plain", + "raw-link": "https://cloud.tykayn.fr/remote.php/dav/calendars/super_admin_tykayn/orgmode/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgff57bab", + "properties": { + "post-blank": 0, + "post-affiliated": 103209, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1077eb4", + "properties": { + "type": "active", + "raw-value": "<2022-01-13 jeu.>", + "post-blank": 0, + "start": "2022-01-13", + "end": "2022-01-13" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org21fa9b0", + "drawer": { + "EFFORT": "6:00", + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:a5df5747-6151-44e1-be86-928e98654c90" + }, + "properties": { + "tags-all": [], + "raw-value": "arroser le bonsai du sous sol", + "pre-blank": 0, + "robust-begin": 103600, + "robust-end": 103703, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 103241, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T13:48:00", + "end": "2022-01-20T13:48:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-11", + "end": "2022-01-11", + "type": "active", + "raw-value": "<2022-01-11 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "arroser le bonsai du sous sol" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org52e6bed", + "properties": { + "robust-begin": 103278, + "robust-end": 103703, + "post-blank": 1, + "post-affiliated": 103278, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3455bc5", + "properties": { + "post-blank": 0, + "post-affiliated": 103602, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge096e9e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211214124545-cipherbliss.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211214124545-cipherbliss.org::*Année 2022", + "application": null, + "search-option": "*Année 2022", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Année 2022" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf631cda", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d354a0c6-5084-4a6d-a85d-a6dbb97ec97e" + }, + "properties": { + "tags-all": [], + "raw-value": "essai de tesla model Y", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 103706, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-19T10:32:00", + "end": "2022-01-19T10:32:00", + "type": "inactive", + "raw-value": "[2022-01-19 mer. 10:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-18T16:00:00", + "end": "2022-01-18T16:00:00", + "type": "active", + "raw-value": "<2022-01-18 mar. 16:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essai de tesla model Y" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3ef9819", + "properties": { + "robust-begin": 103736, + "robust-end": 104045, + "post-blank": 1, + "post-affiliated": 103736, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org496f550", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2a71086d-7e83-4d86-b434-6387456c8575" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer lesbridges d'osm-fr telegram matrix", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 104048, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T12:45:00", + "end": "2022-01-16T12:45:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 12:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réparer lesbridges d'osm-fr telegram matrix" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org06ea84c", + "properties": { + "robust-begin": 104099, + "robust-end": 104374, + "post-blank": 2, + "post-affiliated": 104099, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org02b7f0a", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:1746d558-da2c-45d2-8100-32f61f280211" + }, + "properties": { + "tags-all": [], + "raw-value": "commander pizza", + "pre-blank": 0, + "robust-begin": 104705, + "robust-end": 104781, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 104378, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-19T22:44:00", + "end": "2022-01-19T22:44:00", + "type": "inactive", + "raw-value": "[2022-01-19 mer. 22:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-21", + "end": "2022-01-21", + "type": "active", + "raw-value": "<2022-01-21 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander pizza" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1b00fd6", + "properties": { + "robust-begin": 104401, + "robust-end": 104781, + "post-blank": 1, + "post-affiliated": 104401, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5670334", + "properties": { + "post-blank": 0, + "post-affiliated": 104706, + "mode": null, + "granularity": null + }, + "contents": [ + " marguerita junior avec jambon\nbarbecue brie jambon, senior\ncalzonne senior\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4fc0efe", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e64c59a2-f7e4-4ea8-8093-9516a349c71e" + }, + "properties": { + "tags-all": [], + "raw-value": "exporter mes posts de blogs dans un fichier org", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "blog", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 104784, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-19T11:31:00", + "end": "2022-01-19T11:31:00", + "type": "inactive", + "raw-value": "[2022-01-19 mer. 11:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "exporter mes posts de blogs dans un fichier org" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org444bfc8", + "properties": { + "robust-begin": 104850, + "robust-end": 105125, + "post-blank": 1, + "post-affiliated": 104850, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8a8023c", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:6ddc0337-64c0-4e74-8f8a-e34714c7c70a" + }, + "properties": { + "tags-all": [], + "raw-value": "ZFS libérer de la place dans les anciens snapshots", + "pre-blank": 0, + "robust-begin": 105499, + "robust-end": 105706, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 105128, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T13:48:00", + "end": "2022-01-20T13:48:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-19", + "end": "2022-01-19", + "type": "active", + "raw-value": "<2022-01-19 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ZFS libérer de la place dans les anciens snapshots" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfe47e3a", + "properties": { + "robust-begin": 105195, + "robust-end": 105706, + "post-blank": 1, + "post-affiliated": 105195, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org22d147a", + "properties": { + "post-blank": 0, + "post-affiliated": 105500, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfb09d14", + "properties": { + "type": "id", + "path": "b3d65bdc-c047-44ed-96a0-21758a2fa954", + "format": "bracket", + "raw-link": "id:b3d65bdc-c047-44ed-96a0-21758a2fa954", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "zfs", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org43d3607", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "file" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgaa19856", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "system" + ] + } + ] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgcc8cdd6", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*relancer le club informatique de Janvry par tel", + "application": null, + "search-option": "*relancer le club informatique de Janvry par tel", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "relancer le club informatique de Janvry par tel" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8b2065e", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:bd541634-25b6-4335-b173-56d263cdc867" + }, + "properties": { + "tags-all": [], + "raw-value": "script d'export de notes de blog, créer une liste de tous les billets dans un fichier d'index", + "pre-blank": 0, + "robust-begin": 106120, + "robust-end": 106220, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 105709, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-19T10:32:00", + "end": "2022-01-19T10:32:00", + "type": "inactive", + "raw-value": "[2022-01-19 mer. 10:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-19", + "end": "2022-01-19", + "type": "active", + "raw-value": "<2022-01-19 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "script d'export de notes de blog, créer une liste de tous les billets dans un fichier d'index" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3de3314", + "properties": { + "robust-begin": 105816, + "robust-end": 106220, + "post-blank": 1, + "post-affiliated": 105816, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8550fe2", + "properties": { + "post-blank": 0, + "post-affiliated": 106122, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6557ad8", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211224211-helia.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211224211-helia.org::*Blog d'hélia", + "application": null, + "search-option": "*Blog d'hélia", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Blog d'hélia" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org85ac467", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:6874044f-9389-432e-b55d-35605f0aa056" + }, + "properties": { + "tags-all": [], + "raw-value": "réu avec angie pour publication médias sociaux", + "pre-blank": 0, + "robust-begin": 106586, + "robust-end": 106631, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 106223, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T09:49:00", + "end": "2022-01-20T09:49:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 09:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-20T09:00:00", + "end": "2022-01-20T09:00:00", + "type": "active", + "raw-value": "<2022-01-20 jeu. 9:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réu avec angie pour publication médias sociaux" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfe5ed16", + "properties": { + "robust-begin": 106277, + "robust-end": 106631, + "post-blank": 3, + "post-affiliated": 106277, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7d88125", + "properties": { + "post-blank": 0, + "post-affiliated": 106587, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgaeb615b", + "properties": { + "type": "https", + "path": "//bbb.framasoft.org/b/ang-xbb-ljn-mci", + "format": "plain", + "raw-link": "https://bbb.framasoft.org/b/ang-xbb-ljn-mci", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgdbf9757", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:150c95fc-38ee-410b-a369-cf584c0ceb74" + }, + "properties": { + "tags-all": [], + "raw-value": "faire quelque chose de mon VPS en trop", + "pre-blank": 0, + "robust-begin": 107015, + "robust-end": 107147, + "level": 1, + "priority": null, + "tags": [ + "adminsys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 106636, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T13:49:00", + "end": "2022-01-20T13:49:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire quelque chose de mon VPS en trop" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1e0896a", + "properties": { + "robust-begin": 106693, + "robust-end": 107147, + "post-blank": 1, + "post-affiliated": 106693, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge71624b", + "properties": { + "post-blank": 1, + "post-affiliated": 107016, + "mode": null, + "granularity": null + }, + "contents": [ + "un site de démo pour chatonchataigne ?\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0ae1ad4", + "properties": { + "type": "id", + "path": "fde22733-6a13-44a4-9ed7-c1775843a5fa", + "format": "bracket", + "raw-link": "id:fde22733-6a13-44a4-9ed7-c1775843a5fa", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "chataigne" + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga52bd27", + "properties": { + "post-blank": 0, + "post-affiliated": 107111, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org8957934", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd64447b", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-01 mer. 14:07]", + "post-blank": 0, + "start": "2021-12-01T14:07:00", + "end": "2021-12-01T14:07:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgab3f0b9", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys", + "CUSTOM_ID": "h:654f9e3d-8c33-4787-a267-6219e90fc7bd" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer une facture pour l'hébergement de site web de willroad", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 107150, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T13:48:00", + "end": "2022-01-20T13:48:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-15", + "end": "2022-01-15", + "type": "active", + "raw-value": "<2022-01-15 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer une facture pour l'hébergement de site web de willroad" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org73b9965", + "properties": { + "robust-begin": 107220, + "robust-end": 107596, + "post-blank": 1, + "post-affiliated": 107220, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge56c8f0", + "drawer": { + "ARCHIVE_TIME": "2022-01-20 jeu. 14:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b0317d43-6dd2-43a3-9eb5-b1f7bc03a574" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer une config Hugin", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "osm", + "recherche", + "edu", + "création" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 107599, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T11:02:00", + "end": "2022-01-17T11:02:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 11:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer une config Hugin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga767985", + "properties": { + "robust-begin": 107660, + "robust-end": 107981, + "post-blank": 1, + "post-affiliated": 107660, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbcc9323", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2f6700b8-78f5-4441-af90-f13b94135715" + }, + "properties": { + "tags-all": [], + "raw-value": "eeepc essayer de démarrer sur l'ancien disque", + "pre-blank": 0, + "robust-begin": 108332, + "robust-end": 108515, + "level": 1, + "priority": null, + "tags": [ + "matos", + "ordi", + "eeepc" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 107984, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:02:00", + "end": "2022-01-21T09:02:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "eeepc essayer de démarrer sur l'ancien disque" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc9a3035", + "properties": { + "robust-begin": 108056, + "robust-end": 108515, + "post-blank": 1, + "post-affiliated": 108056, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6afd24e", + "properties": { + "post-blank": 0, + "post-affiliated": 108334, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2764d91", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*contacter la médiathèque de limours pour faire un café vie privée", + "application": null, + "search-option": "*contacter la médiathèque de limours pour faire un café vie privée", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "contacter la médiathèque de limours pour faire un café vie privée" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgafafd3c", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c4ee95a2-7bb2-4735-9650-92eb62152f71" + }, + "properties": { + "tags-all": [], + "raw-value": "contacter le conciliateur", + "pre-blank": 0, + "robust-begin": 108875, + "robust-end": 109040, + "level": 1, + "priority": null, + "tags": [ + "tel", + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 108518, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T21:22:00", + "end": "2022-01-21T21:22:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 21:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-21", + "end": "2022-01-21", + "type": "active", + "raw-value": "<2022-01-21 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "contacter le conciliateur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2ae0474", + "properties": { + "robust-begin": 108571, + "robust-end": 109040, + "post-blank": 1, + "post-affiliated": 108571, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org23807c2", + "properties": { + "post-blank": 1, + "post-affiliated": 108877, + "mode": null, + "granularity": null + }, + "contents": [ + "moi même Lemoine Baptiste : 3075.53€ sur 7683.83€. devis n° ECO1904497\nMr Fonder Rémy: 2500€,\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org92e8b5f", + "properties": { + "post-blank": 0, + "post-affiliated": 108972, + "mode": null, + "granularity": null + }, + "contents": [ + "conciliateur:\n0658929546\njean-paul.puyrigaud@conciliateurdejustice.fr\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orged391f4", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:aded9674-63f9-4af0-8aee-0fcdc1c255db" + }, + "properties": { + "tags-all": [], + "raw-value": "demander à marie hélène huze pour devis clim maison", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail", + "climatisation", + "travaux" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 109043, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:29:00", + "end": "2022-01-21T09:29:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:29]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-24", + "end": "2022-01-24", + "type": "active", + "raw-value": "<2022-01-24 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "demander à marie hélène huze pour devis clim maison" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf3131cd", + "properties": { + "robust-begin": 109131, + "robust-end": 109434, + "post-blank": 2, + "post-affiliated": 109131, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf2e4722", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d6701bb1-ce16-40e8-982e-1027a184a668" + }, + "properties": { + "tags-all": [], + "raw-value": "dégager du spam de osm mobilizon", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 109438, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:30:00", + "end": "2022-01-21T09:30:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "dégager du spam de osm mobilizon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8450349", + "properties": { + "robust-begin": 109478, + "robust-end": 109753, + "post-blank": 1, + "post-affiliated": 109478, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc554903", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:883ce890-e02c-4a2c-b366-37c3beabcd3c" + }, + "properties": { + "tags-all": [], + "raw-value": "lancer un pad de rédaction pour le mois prochain", + "pre-blank": 0, + "robust-begin": 110122, + "robust-end": 110260, + "level": 1, + "priority": null, + "tags": [ + "cil" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 109756, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T10:31:00", + "end": "2022-01-24T10:31:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 10:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-24", + "end": "2022-01-24", + "type": "active", + "raw-value": "<2022-01-24 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lancer un pad de rédaction pour le mois prochain" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge15d946", + "properties": { + "robust-begin": 109818, + "robust-end": 110260, + "post-blank": 1, + "post-affiliated": 109818, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6672ea7", + "properties": { + "post-blank": 0, + "post-affiliated": 110124, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9f65047", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org::*Liens", + "application": null, + "search-option": "*Liens", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Liens" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org873665a", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:77ca7dfc-def9-4e78-9f85-5cfc28e2b79d" + }, + "properties": { + "tags-all": [], + "raw-value": "répondre à georges pour le prochain article du cil", + "pre-blank": 0, + "robust-begin": 110613, + "robust-end": 110751, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 110263, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:30:00", + "end": "2022-01-21T09:30:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "répondre à georges pour le prochain article du cil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeecc7b6", + "properties": { + "robust-begin": 110337, + "robust-end": 110751, + "post-blank": 1, + "post-affiliated": 110337, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org309ed80", + "properties": { + "post-blank": 0, + "post-affiliated": 110615, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbb1ddb6", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org::*Liens", + "application": null, + "search-option": "*Liens", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Liens" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org444ac37", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:27fdb8e0-fc56-4e9e-a0ac-ca9fdcc9970e" + }, + "properties": { + "tags-all": [], + "raw-value": "proposer tuto pour faire un trace gpx avec OSMand et JOSM", + "pre-blank": 0, + "robust-begin": 111114, + "robust-end": 111252, + "level": 1, + "priority": null, + "tags": [ + "email", + "cil", + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 110754, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:30:00", + "end": "2022-01-21T09:30:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "proposer tuto pour faire un trace gpx avec OSMand et JOSM" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2896089", + "properties": { + "robust-begin": 110838, + "robust-end": 111252, + "post-blank": 1, + "post-affiliated": 110838, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8edfc48", + "properties": { + "post-blank": 0, + "post-affiliated": 111116, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc64d008", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org::*Liens", + "application": null, + "search-option": "*Liens", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Liens" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5ceba02", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:b91c7803-d692-45f8-a6a7-b8e74523820e" + }, + "properties": { + "tags-all": [], + "raw-value": "mail a EV6 pour faire une LDD 36 mois ?", + "pre-blank": 0, + "robust-begin": 111594, + "robust-end": 111698, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 111255, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T09:30:00", + "end": "2022-01-21T09:30:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mail a EV6 pour faire une LDD 36 mois ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org10f1e8a", + "properties": { + "robust-begin": 111318, + "robust-end": 111698, + "post-blank": 1, + "post-affiliated": 111318, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org79c0032", + "properties": { + "post-blank": 0, + "post-affiliated": 111595, + "mode": null, + "granularity": null + }, + "contents": [ + "décider si je pars plutôt sur la tesla model y\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org95b44c8", + "properties": { + "type": "id", + "path": "93c58d34-e8de-4830-b93a-5ebc67b4a36f", + "format": "bracket", + "raw-link": "id:93c58d34-e8de-4830-b93a-5ebc67b4a36f", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "tesla", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgaaab1b0", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "cars" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgae2051a", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:fe90db91-7385-4f7e-9952-ae732afa417c" + }, + "properties": { + "tags-all": [], + "raw-value": "zfs disque non disponible", + "pre-blank": 0, + "robust-begin": 112053, + "robust-end": 112194, + "level": 1, + "priority": null, + "tags": [ + "adminsys", + "sys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 111701, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T15:50:00", + "end": "2022-01-21T15:50:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 15:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-21", + "end": "2022-01-21", + "type": "active", + "raw-value": "<2022-01-21 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "zfs disque non disponible" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6950b34", + "properties": { + "robust-begin": 111749, + "robust-end": 112194, + "post-blank": 1, + "post-affiliated": 111749, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org84eda69", + "properties": { + "post-blank": 0, + "post-affiliated": 112055, + "mode": null, + "granularity": null + }, + "contents": [ + "rebranché et hop, il se réactualise\n4690994799615331933 UNAVAIL 0 0 0 was /dev/disk/by-id/wwn-0x5000cca273e2d0ce-part1\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9aa8076", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:cf12c037-9d85-405c-a501-8ad1877a0275" + }, + "properties": { + "tags-all": [], + "raw-value": "changer le disque dur qui ne va pas dans la tour sys", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "adminsys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 112197, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-22T21:27:00", + "end": "2022-01-22T21:27:00", + "type": "inactive", + "raw-value": "[2022-01-22 sam. 21:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-21", + "end": "2022-01-21", + "type": "active", + "raw-value": "<2022-01-21 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "changer le disque dur qui ne va pas dans la tour sys" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd9596e0", + "properties": { + "robust-begin": 112268, + "robust-end": 112571, + "post-blank": 1, + "post-affiliated": 112268, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge2ac7ef", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2aa75856-0b66-485c-91bc-6f83fb0f8090" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre des illus dans la présentation", + "pre-blank": 0, + "robust-begin": 112895, + "robust-end": 113059, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 112574, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-21T12:57:00", + "end": "2022-01-21T12:57:00", + "type": "inactive", + "raw-value": "[2022-01-21 ven. 12:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre des illus dans la présentation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org275110f", + "properties": { + "robust-begin": 112619, + "robust-end": 113059, + "post-blank": 1, + "post-affiliated": 112619, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8f159eb", + "properties": { + "post-blank": 0, + "post-affiliated": 112983, + "mode": null, + "granularity": null + }, + "contents": [ + "capture écran nothing to hide et disparaitre sous les radars des algoritmes\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org54087db", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 10:31", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Café vie privée ------------- :atelier:", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e1ae66e1-712e-42d7-acaf-2915aa8bdeb0" + }, + "properties": { + "tags-all": [], + "raw-value": "atelier vie privée avec la médiathèque de Briis", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "briis", + "atelier" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 113062, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-22T21:27:00", + "end": "2022-01-22T21:27:00", + "type": "inactive", + "raw-value": "[2022-01-22 sam. 21:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-22", + "end": "2022-01-22", + "type": "active", + "raw-value": "<2022-01-22 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "atelier vie privée avec la médiathèque de Briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgea855e3", + "properties": { + "robust-begin": 113133, + "robust-end": 113512, + "post-blank": 1, + "post-affiliated": 113133, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org03a7800", + "drawer": { + "EFFORT": "1:00", + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5ed64793-8437-4263-b3d5-6d78a2fe26d4" + }, + "properties": { + "tags-all": [], + "raw-value": "contacter la médiathèque de limours pour faire un café vie privée", + "pre-blank": 0, + "robust-begin": 113910, + "robust-end": 114114, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 113515, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:38:00", + "end": "2022-01-24T11:38:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-26", + "end": "2022-01-26", + "type": "active", + "raw-value": "<2022-01-26 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "contacter la médiathèque de limours pour faire un café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org344b24c", + "properties": { + "robust-begin": 113588, + "robust-end": 114114, + "post-blank": 1, + "post-affiliated": 113588, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9d7150f", + "properties": { + "post-blank": 1, + "post-affiliated": 113911, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1d0ffd3", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439edecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439edecd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org859309f", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org852aa7d", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org966ec4c", + "properties": { + "post-blank": 0, + "post-affiliated": 113975, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5ecfb7d", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211221453-fediverse.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211221453-fediverse.org::*Le Fédiverse, l'univers fédéré", + "application": null, + "search-option": "*Le Fédiverse, l'univers fédéré", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Le Fédiverse, l'univers fédéré" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org41010e9", + "drawer": { + "EFFORT": "1:00", + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ba351ef2-cefd-48c7-b338-841a2e06e7ad" + }, + "properties": { + "tags-all": [], + "raw-value": "sur osm proposition wiki discussion pour les restos gastronomiques", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 4, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 114117, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:43:00", + "end": "2022-01-24T11:43:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "sur osm proposition wiki discussion pour les restos gastronomiques" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf9b6c33", + "properties": { + "robust-begin": 114191, + "robust-end": 114484, + "post-blank": 4, + "post-affiliated": 114191, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcb59e00", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:cb51c015-7648-4a4f-95e1-afdfc5ec4d68" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre une illu osm statique dans la présentation", + "pre-blank": 0, + "robust-begin": 114833, + "robust-end": 115012, + "level": 1, + "priority": null, + "tags": [ + "privacy" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 114490, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:46:00", + "end": "2022-01-24T11:46:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre une illu osm statique dans la présentation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga47c3ae", + "properties": { + "robust-begin": 114557, + "robust-end": 115012, + "post-blank": 2, + "post-affiliated": 114557, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org95ea5fc", + "properties": { + "post-blank": 0, + "post-affiliated": 114834, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9f7f25f", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439dooecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439dooecd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org8f8c75c", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org50d1ead", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgcc90727", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*comment relier un caldav à emacs", + "application": null, + "search-option": "*comment relier un caldav à emacs", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "comment relier un caldav à emacs" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org426945e", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "café vie privée Briis", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "briis privacy", + "CUSTOM_ID": "h:126dbcf6-f975-49a2-bdc4-2d1cbbdcbb90" + }, + "properties": { + "tags-all": [], + "raw-value": "slides concernant le café vie privée", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 115016, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:46:00", + "end": "2022-01-24T11:46:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "slides concernant le café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge0080a0", + "properties": { + "robust-begin": 115060, + "robust-end": 115383, + "post-blank": 3, + "post-affiliated": 115060, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org014f00c", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "café vie privée Briis", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "briis", + "CUSTOM_ID": "h:9832176a-7d7c-4eb8-9642-7c99a619d958" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un schéma de lien entre mot de passe pourri, accès à des sites, et coffre fort, type mindmap", + "pre-blank": 0, + "robust-begin": 115825, + "robust-end": 115862, + "level": 1, + "priority": null, + "tags": [ + "cafe", + "privacy" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 115388, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:46:00", + "end": "2022-01-24T11:46:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un schéma de lien entre mot de passe pourri, accès à des sites, et coffre fort, type mindmap" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org78a8a8d", + "properties": { + "robust-begin": 115509, + "robust-end": 115862, + "post-blank": 1, + "post-affiliated": 115509, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4b57fba", + "properties": { + "post-blank": 0, + "post-affiliated": 115827, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgbc6fc58", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgc7d1097", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-27 sam. 10:51]", + "post-blank": 0, + "start": "2021-11-27T10:51:00", + "end": "2021-11-27T10:51:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org054dbba", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Blog rédaction --------------------------/administration", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys", + "CUSTOM_ID": "h:1ef854fe-a950-44f2-bc55-da0a81fee92d" + }, + "properties": { + "tags-all": [], + "raw-value": "blog tykayn, partager les fichiers saï et psd de mes illus mastodon", + "pre-blank": 0, + "robust-begin": 116301, + "robust-end": 116352, + "level": 1, + "priority": null, + "tags": [ + "blog" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 115865, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:23:00", + "end": "2022-01-24T11:23:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "blog tykayn, partager les fichiers saï et psd de mes illus mastodon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org085593f", + "properties": { + "robust-begin": 115947, + "robust-end": 116352, + "post-blank": 2, + "post-affiliated": 115947, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org056c76f", + "properties": { + "post-blank": 0, + "post-affiliated": 116302, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org13d134d", + "properties": { + "type": "https", + "path": "//cloud.tykayn.fr/index.php/s/zHSkDscsAi6t7Lk", + "format": "plain", + "raw-link": "https://cloud.tykayn.fr/index.php/s/zHSkDscsAi6t7Lk", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org21a37b9", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Blog rédaction --------------------------/Billets de blog", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:81010c3d-00d0-47d0-b8d6-3106771909c3" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un article de blog sur cipherbliss pour causer du camp chatons", + "pre-blank": 0, + "robust-begin": 116784, + "robust-end": 116841, + "level": 1, + "priority": null, + "tags": [ + "blog", + "écriture", + "chatons" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 116356, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:23:00", + "end": "2022-01-24T11:23:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un article de blog sur cipherbliss pour causer du camp chatons" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org26ae109", + "properties": { + "robust-begin": 116456, + "robust-end": 116841, + "post-blank": 2, + "post-affiliated": 116456, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd83e590", + "properties": { + "post-blank": 0, + "post-affiliated": 116785, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgdc65bd9", + "properties": { + "type": "id", + "path": "b72d5aea-be1b-44af-bc21-261bcdf38c37", + "format": "bracket", + "raw-link": "id:b72d5aea-be1b-44af-bc21-261bcdf38c37", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "camp", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org9e63b19", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "chatons" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org786822d", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Blog rédaction --------------------------/Billets de blog", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "blog", + "CUSTOM_ID": "h:19be519b-02b1-47b6-9514-f05be06e9ec5" + }, + "properties": { + "tags-all": [], + "raw-value": "blog share de fichiers sources d'illustrations", + "pre-blank": 0, + "robust-begin": 117250, + "robust-end": 117306, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 116845, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:23:00", + "end": "2022-01-24T11:23:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "blog share de fichiers sources d'illustrations" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7904df3", + "properties": { + "robust-begin": 116899, + "robust-end": 117306, + "post-blank": 1, + "post-affiliated": 116899, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org25ee3f9", + "properties": { + "post-blank": 0, + "post-affiliated": 117251, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org56cf5cf", + "properties": { + "type": "id", + "path": "02f6018b-9196-4326-8f09-9d45d7a548fc", + "format": "bracket", + "raw-link": "id:02f6018b-9196-4326-8f09-9d45d7a548fc", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "tykayn", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5ef5b42", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "blog" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7ba5d87", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Vidéos ---------------------- :video:", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9b1764c1-aa18-4eed-8716-3f74ce01aa36" + }, + "properties": { + "tags-all": [], + "raw-value": "réfléchir à quoi faire comme vidéo", + "pre-blank": 0, + "robust-begin": 117676, + "robust-end": 117733, + "level": 1, + "priority": null, + "tags": [ + "création", + "video" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 117309, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:24:00", + "end": "2022-01-24T11:24:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réfléchir à quoi faire comme vidéo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1b1690d", + "properties": { + "robust-begin": 117368, + "robust-end": 117733, + "post-blank": 1, + "post-affiliated": 117368, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6ba5256", + "properties": { + "post-blank": 0, + "post-affiliated": 117678, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org61fd45b", + "properties": { + "type": "id", + "path": "e1b325e4-f9bd-4131-b49b-5f7503701119", + "format": "bracket", + "raw-link": "id:e1b325e4-f9bd-4131-b49b-5f7503701119", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "videos", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgb267097", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "tk" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd426d0f", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Vidéos ---------------------- :video:", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e22e2c04-e0fd-4b62-a26c-e46b938003cf" + }, + "properties": { + "tags-all": [], + "raw-value": "@video @osm", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "interview", + "video", + "resolv", + "osm", + "media" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 117736, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:25:00", + "end": "2022-01-24T11:25:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "@video @osm" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1d6eeb7", + "properties": { + "robust-begin": 117790, + "robust-end": 118097, + "post-blank": 1, + "post-affiliated": 117790, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd912d3a", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/lecture", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu lecture", + "CUSTOM_ID": "h:d81b4d8a-2430-4776-b31e-ab530c4ec490" + }, + "properties": { + "tags-all": [], + "raw-value": "lire le sciences et pseudo sciences octobre décembre 2021", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 118100, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:45:00", + "end": "2022-01-24T13:45:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lire le sciences et pseudo sciences octobre décembre 2021" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd009525", + "properties": { + "robust-begin": 118165, + "robust-end": 118524, + "post-blank": 1, + "post-affiliated": 118165, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf035a93", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:ad3d3b15-cd85-4c83-b167-2ab2c50fd082" + }, + "properties": { + "tags-all": [], + "raw-value": "voir pancakeswap si ça vaut le coup pour les transferts en ETH", + "pre-blank": 0, + "robust-begin": 118950, + "robust-end": 118978, + "level": 1, + "priority": null, + "tags": [ + "crypto" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 118527, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:43:00", + "end": "2022-01-24T13:43:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir pancakeswap si ça vaut le coup pour les transferts en ETH" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgdf9a623", + "properties": { + "robust-begin": 118606, + "robust-end": 118978, + "post-blank": 1, + "post-affiliated": 118606, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org77cd1fa", + "properties": { + "post-blank": 0, + "post-affiliated": 118951, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7b4987d", + "properties": { + "type": "https", + "path": "//pancakeswap.finance/", + "format": "plain", + "raw-link": "https://pancakeswap.finance/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgafbfd1a", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:09515941-df3d-4617-b93f-947fc3b121d6" + }, + "properties": { + "tags-all": [], + "raw-value": "org roam is not syncing its data base after i create a new node", + "pre-blank": 0, + "robust-begin": 119405, + "robust-end": 119457, + "level": 1, + "priority": null, + "tags": [ + "edu", + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 118981, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:44:00", + "end": "2022-01-24T13:44:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "org roam is not syncing its data base after i create a new node" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8a64bed", + "properties": { + "robust-begin": 119066, + "robust-end": 119457, + "post-blank": 1, + "post-affiliated": 119066, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc49bdf9", + "properties": { + "post-blank": 0, + "post-affiliated": 119406, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9dff931", + "properties": { + "type": "id", + "path": "8e60dc99-ae78-4f57-8bed-d054640d6b61", + "format": "bracket", + "raw-link": "id:8e60dc99-ae78-4f57-8bed-d054640d6b61", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "orgroam" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org67ca489", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "orgmode", + "CUSTOM_ID": "h:c6fb6b24-ae67-42a4-b072-5a15c84f547f" + }, + "properties": { + "tags-all": [], + "raw-value": "emacs bibtex ajouter", + "pre-blank": 0, + "robust-begin": 119859, + "robust-end": 119916, + "level": 1, + "priority": null, + "tags": [ + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 119460, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:44:00", + "end": "2022-01-24T13:44:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "emacs bibtex ajouter" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6ed9b88", + "properties": { + "robust-begin": 119494, + "robust-end": 119916, + "post-blank": 1, + "post-affiliated": 119494, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcedac23", + "properties": { + "post-blank": 0, + "post-affiliated": 119861, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb387b28", + "properties": { + "type": "https", + "path": "//lucidmanager.org/productivity/emacs-bibtex-mode/", + "format": "plain", + "raw-link": "https://lucidmanager.org/productivity/emacs-bibtex-mode/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga07d5e7", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 13:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:ba4e3a16-b523-4b7c-9b8c-72aa460305c6" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre Doom sur spaceship après avoir testé sur FATLand", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 119919, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:44:00", + "end": "2022-01-24T13:44:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre Doom sur spaceship après avoir testé sur FATLand" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org013c81c", + "properties": { + "robust-begin": 119982, + "robust-end": 120350, + "post-blank": 1, + "post-affiliated": 119982, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgdb15807", + "drawer": { + "EFFORT": "2:00", + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "CUSTOM_ID": "h:93ea767b-0625-48cb-8eb0-c65d8d0e01b8" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED cloner le disque dur de l'ordi laptop de Claire", + "pre-blank": 0, + "robust-begin": 120719, + "robust-end": 120939, + "level": 1, + "priority": null, + "tags": [ + "claire" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 120353, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T12:54:00", + "end": "2022-01-17T12:54:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 12:54]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED cloner le disque dur de l'ordi laptop de Claire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8bcd234", + "properties": { + "robust-begin": 120421, + "robust-end": 120939, + "post-blank": 1, + "post-affiliated": 120421, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8d45983", + "properties": { + "post-blank": 0, + "post-affiliated": 120721, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd56fdb9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*https://wiki.openstreetmap.org/wiki/FR:Comment_cartographier_un...", + "application": null, + "search-option": "*https://wiki.openstreetmap.org/wiki/FR:Comment_cartographier_un...", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "https://wiki.openstreetmap.org/wiki/FR:Comment", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org9ce6533", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "cartographier" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org82984c4", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "un" + ] + }, + "..." + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga8606fa", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "CUSTOM_ID": "h:c53cb54f-b24e-4f65-9c9a-3fae5249df17" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED commander des plaques de meuble 60cm de profondeur sur 80 cm de large", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "achats" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 120942, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T13:43:00", + "end": "2022-01-24T13:43:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-27", + "end": "2022-01-27", + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED commander des plaques de meuble 60cm de profondeur sur 80 cm de large" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5e2d9b7", + "properties": { + "robust-begin": 121032, + "robust-end": 121339, + "post-blank": 1, + "post-affiliated": 121032, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc158982", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "café vie privée Briis", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "briis privacy", + "CUSTOM_ID": "h:3ff6cc22-6ca5-4a56-bfb8-6f76ce83a000" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED tester sur windows keepassXC pour l'atelier", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 121342, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T11:46:00", + "end": "2022-01-24T11:46:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 11:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED tester sur windows keepassXC pour l'atelier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8046f1b", + "properties": { + "robust-begin": 121397, + "robust-end": 121724, + "post-blank": 1, + "post-affiliated": 121397, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org45fdc1c", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:c19b80fb-ef14-4354-a5d3-17436cbfd75c" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED payer au centre de coworking les journées de 2021", + "pre-blank": 0, + "robust-begin": 122166, + "robust-end": 122269, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 121727, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-24T14:09:00", + "end": "2022-01-24T14:09:00", + "type": "inactive", + "raw-value": "[2022-01-24 lun. 14:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-14", + "end": "2022-02-14", + "type": "active", + "raw-value": "<2022-02-14 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED payer au centre de coworking les journées de 2021" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org60ef2d3", + "properties": { + "robust-begin": 121788, + "robust-end": 122269, + "post-blank": 3, + "post-affiliated": 121788, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf7ebaca", + "properties": { + "post-blank": 0, + "post-affiliated": 122167, + "mode": null, + "granularity": null + }, + "contents": [ + "1.5j en Septembre\npas de retour de la part du centre de coworking\n ", + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org1e33a74", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org68cfa23", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-11 jeu. 18:29]", + "post-blank": 0, + "start": "2021-11-11T18:29:00", + "end": "2021-11-11T18:29:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org635f2e4", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Chatons -------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "chatons", + "CUSTOM_ID": "h:f4c8b190-e839-4cde-be3e-af7a23d79c1c" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED déplacer les abonnés de la newsletter de framaliste vers une autre liste", + "pre-blank": 0, + "robust-begin": 122722, + "robust-end": 122760, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 122274, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-17T13:33:00", + "end": "2022-01-17T13:33:00", + "type": "inactive", + "raw-value": "[2022-01-17 lun. 13:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED déplacer les abonnés de la newsletter de framaliste vers une autre liste" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge82dc30", + "properties": { + "robust-begin": 122358, + "robust-end": 122760, + "post-blank": 1, + "post-affiliated": 122358, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7faf561", + "properties": { + "post-blank": 0, + "post-affiliated": 122723, + "mode": null, + "granularity": null + }, + "contents": [ + "résolu en postant sur le forum chatons\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org382bbe3", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------/Vacances ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "social vacances organisation claire", + "CUSTOM_ID": "h:e6457bb6-2602-4f25-a5c0-17a1cecc2c30" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED prendre un billet de train avec hélia weekend des vacances de noel pour lyon", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 122763, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-16T10:43:00", + "end": "2022-01-16T10:43:00", + "type": "inactive", + "raw-value": "[2022-01-16 dim. 10:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-15", + "end": "2022-01-15", + "type": "active", + "raw-value": "<2022-01-15 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED prendre un billet de train avec hélia weekend des vacances de noel pour lyon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org51218d0", + "properties": { + "robust-begin": 122851, + "robust-end": 123282, + "post-blank": 1, + "post-affiliated": 122851, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org97c2e6b", + "drawer": { + "ARCHIVE_TIME": "2022-01-24 lun. 14:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "backup", + "CUSTOM_ID": "h:668a9ce1-5aa3-4b6f-baf5-80808d0d9c14" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED en confiant la phrase de passe à claire sur protonmail", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 123285, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-20T13:51:00", + "end": "2022-01-20T13:51:00", + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED en confiant la phrase de passe à claire sur protonmail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfb532a8", + "properties": { + "robust-begin": 123351, + "robust-end": 123688, + "post-blank": 1, + "post-affiliated": 123351, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org63a9962", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7d1b18af-9f2d-4b58-a61d-739a17fb3d8d" + }, + "properties": { + "tags-all": [], + "raw-value": "commander du bobun pokébowl", + "pre-blank": 0, + "robust-begin": 124030, + "robust-end": 124127, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 123691, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-25T18:44:00", + "end": "2022-01-25T18:44:00", + "type": "inactive", + "raw-value": "[2022-01-25 mar. 18:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-25", + "end": "2022-01-25", + "type": "active", + "raw-value": "<2022-01-25 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander du bobun pokébowl" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1d682f0", + "properties": { + "robust-begin": 123726, + "robust-end": 124127, + "post-blank": 1, + "post-affiliated": 123726, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb44652d", + "properties": { + "post-blank": 0, + "post-affiliated": 124032, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org57fbcba", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211201216-tesla_cars.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211201216-tesla_cars.org::*Messages", + "application": null, + "search-option": "*Messages", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Messages" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org567396b", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:37d714d7-bd22-457b-9b49-c140bf47c4ed" + }, + "properties": { + "tags-all": [], + "raw-value": "demander un accès au nextcloud du collectif chatons", + "pre-blank": 0, + "robust-begin": 124475, + "robust-end": 124636, + "level": 1, + "priority": null, + "tags": [ + "chatons" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 124130, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T11:26:00", + "end": "2022-01-27T11:26:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 11:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "demander un accès au nextcloud du collectif chatons" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd27b01f", + "properties": { + "robust-begin": 124199, + "robust-end": 124636, + "post-blank": 1, + "post-affiliated": 124199, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4d01590", + "properties": { + "post-blank": 0, + "post-affiliated": 124477, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgec864f1", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211210403-chatons.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211210403-chatons.org::*Gestion de suivi des actions du collectif", + "application": null, + "search-option": "*Gestion de suivi des actions du collectif", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Gestion de suivi des actions du collectif" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org90118a2", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:fb0c84fe-745f-4ff3-8637-8a5fea406dab" + }, + "properties": { + "tags-all": [], + "raw-value": "définir une méthodo pour ranger les tâches d'emacs", + "pre-blank": 0, + "robust-begin": 125011, + "robust-end": 125152, + "level": 1, + "priority": null, + "tags": [ + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 124639, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T10:31:00", + "end": "2022-01-27T10:31:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 10:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-27", + "end": "2022-01-27", + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "définir une méthodo pour ranger les tâches d'emacs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org45734a7", + "properties": { + "robust-begin": 124707, + "robust-end": 125152, + "post-blank": 1, + "post-affiliated": 124707, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2ac8368", + "properties": { + "post-blank": 0, + "post-affiliated": 125012, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgeaa0814", + "properties": { + "type": "id", + "path": "53ffed85-03d0-4fb2-90b5-af2ffbcc3a0d", + "format": "bracket", + "raw-link": "id:53ffed85-03d0-4fb2-90b5-af2ffbcc3a0d", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "gtd" + ] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org714dd5f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211220255-slides.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211220255-slides.org::*Impress", + "application": null, + "search-option": "*Impress", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Impress" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4e4538f", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:cd3e0afa-eef2-4f70-b0b7-1673fc8e1236" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un devis d'assurance voiture chez pacifica", + "pre-blank": 0, + "robust-begin": 125515, + "robust-end": 125827, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 125155, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T11:27:00", + "end": "2022-01-27T11:27:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 11:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-28", + "end": "2022-01-28", + "type": "active", + "raw-value": "<2022-01-28 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un devis d'assurance voiture chez pacifica" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org07dcb08", + "properties": { + "robust-begin": 125211, + "robust-end": 125827, + "post-blank": 1, + "post-affiliated": 125211, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb6b9fc8", + "properties": { + "post-blank": 0, + "post-affiliated": 125516, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc34627e", + "properties": { + "type": "https", + "path": "//www.credit-agricole.fr/particulier/simulation-devis/assurance/devis-auto.html", + "format": "plain", + "raw-link": "https://www.credit-agricole.fr/particulier/simulation-devis/assurance/devis-auto.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org778f560", + "properties": { + "type": "id", + "path": "93c58d34-e8de-4830-b93a-5ebc67b4a36f", + "format": "bracket", + "raw-link": "id:93c58d34-e8de-4830-b93a-5ebc67b4a36f", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "tesla", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org965cda5", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "cars" + ] + } + ] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc626d51", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211216155116-gestion_de_projet.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211216155116-gestion_de_projet.org::*Catégoriser le temps continu des tâches", + "application": null, + "search-option": "*Catégoriser le temps continu des tâches", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Catégoriser le temps continu des tâches" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgee8d3a4", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d807a87f-376d-48fb-8f7e-004f9786dab0" + }, + "properties": { + "tags-all": [], + "raw-value": "courses et tour de vélo pour hélia", + "pre-blank": 0, + "robust-begin": 126176, + "robust-end": 126279, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 125830, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T09:02:00", + "end": "2022-01-27T09:02:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 09:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-26", + "end": "2022-01-26", + "type": "active", + "raw-value": "<2022-01-26 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "courses et tour de vélo pour hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge12641f", + "properties": { + "robust-begin": 125872, + "robust-end": 126279, + "post-blank": 1, + "post-affiliated": 125872, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org20e1ea0", + "properties": { + "post-blank": 0, + "post-affiliated": 126178, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0d757e2", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211216155116-gestion_de_projet.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211216155116-gestion_de_projet.org::*article", + "application": null, + "search-option": "*article", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "article" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaa548d6", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5f43efac-264f-4a7e-b233-0896bc4e70de" + }, + "properties": { + "tags-all": [], + "raw-value": "tel de CGI finances", + "pre-blank": 0, + "robust-begin": 126618, + "robust-end": 126716, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 126282, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-26T09:03:00", + "end": "2022-01-26T09:03:00", + "type": "inactive", + "raw-value": "[2022-01-26 mer. 09:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-28T09:30:00", + "end": "2022-01-28T09:30:00", + "type": "active", + "raw-value": "<2022-01-28 ven. 9:30>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tel de CGI finances" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org34cd892", + "properties": { + "robust-begin": 126309, + "robust-end": 126716, + "post-blank": 1, + "post-affiliated": 126309, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org36ba075", + "properties": { + "post-blank": 0, + "post-affiliated": 126620, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgafbced4", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211201216-tesla_cars.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211201216-tesla_cars.org::*Messages", + "application": null, + "search-option": "*Messages", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Messages" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8d359c6", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:60fe85d2-33fd-4b41-8f28-881546edef8d" + }, + "properties": { + "tags-all": [], + "raw-value": "cgi finance 0320656523", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 126719, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T09:43:00", + "end": "2022-01-27T09:43:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 09:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-07", + "end": "2022-02-07", + "type": "active", + "raw-value": "<2022-02-07 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cgi finance 0320656523" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga44e0ff", + "properties": { + "robust-begin": 126755, + "robust-end": 127128, + "post-blank": 2, + "post-affiliated": 126755, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org567f31a", + "drawer": { + "ARCHIVE_TIME": "2022-01-27 jeu. 11:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:5d68d610-3890-4123-b81c-52a8edf66801" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre rdv carrefour des solidarités", + "pre-blank": 0, + "robust-begin": 127564, + "robust-end": 127728, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 127132, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T11:06:00", + "end": "2022-01-27T11:06:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 11:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-30", + "end": "2022-01-30", + "type": "active", + "raw-value": "<2022-01-30 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prendre rdv carrefour des solidarités" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgdae87af", + "properties": { + "robust-begin": 127183, + "robust-end": 127728, + "post-blank": 1, + "post-affiliated": 127183, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdb1aa6d", + "properties": { + "post-blank": 0, + "post-affiliated": 127712, + "mode": null, + "granularity": null + }, + "contents": [ + "9h10 mardi 1 fév.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge8c76d8", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:4028767b-3464-4837-bf83-da4796be031e" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre vers les comptes de reward blockchain", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 127731, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-29T22:29:00", + "end": "2022-01-29T22:29:00", + "type": "inactive", + "raw-value": "[2022-01-29 sam. 22:29]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-28", + "end": "2022-01-28", + "type": "active", + "raw-value": "<2022-01-28 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre vers les comptes de reward blockchain" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org52ff2ce", + "properties": { + "robust-begin": 127783, + "robust-end": 128086, + "post-blank": 1, + "post-affiliated": 127783, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0ea855f", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7da14e2a-d808-401e-8e9e-0b9a91fcaa31" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un mail de retour au CIL pour le café vie privée", + "pre-blank": 0, + "robust-begin": 128462, + "robust-end": 128568, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 128089, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T14:41:00", + "end": "2022-01-27T14:41:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 14:41]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-27", + "end": "2022-01-27", + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un mail de retour au CIL pour le café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org34504b2", + "properties": { + "robust-begin": 128158, + "robust-end": 128568, + "post-blank": 1, + "post-affiliated": 128158, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org254a441", + "properties": { + "post-blank": 0, + "post-affiliated": 128464, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org872e174", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211220255-slides.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211220255-slides.org::*A simple slide", + "application": null, + "search-option": "*A simple slide", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "A simple slide" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbd6be71", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f5be937e-d7bc-49ed-bc26-e12bf8988006" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un retour à Xavier jetlab pour le projet immo", + "pre-blank": 0, + "robust-begin": 128942, + "robust-end": 129302, + "level": 1, + "priority": null, + "tags": [ + "email" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 128571, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T14:01:00", + "end": "2022-01-27T14:01:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 14:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-27", + "end": "2022-01-27", + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un retour à Xavier jetlab pour le projet immo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org16c75e6", + "properties": { + "robust-begin": 128638, + "robust-end": 129302, + "post-blank": 1, + "post-affiliated": 128638, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfda346d", + "properties": { + "post-blank": 1, + "post-affiliated": 129030, + "mode": null, + "granularity": null + }, + "contents": [ + "donner une estimation de jours de dev à 600€ HT\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1b2ab98", + "properties": { + "post-blank": 1, + "post-affiliated": 129081, + "mode": null, + "granularity": null + }, + "contents": [ + "backend symfony\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1061bf4", + "properties": { + "type": "id", + "path": "7e8979c5-b4b1-4177-bb2b-04fdabb9aa4b", + "format": "bracket", + "raw-link": "id:7e8979c5-b4b1-4177-bb2b-04fdabb9aa4b", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "prospects" + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc81bf7e", + "properties": { + "post-blank": 0, + "post-affiliated": 129157, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgca8f834", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220126153733-prospects.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220126153733-prospects.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20220126153733-prospects.org" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6aac5a1", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:7fe3c44c-e132-44bc-ae3a-f1785939b8aa" + }, + "properties": { + "tags-all": [], + "raw-value": "voir si on a recu le courrier du conciliateur", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 129305, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T22:11:00", + "end": "2022-01-27T22:11:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 22:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-01-27", + "end": "2022-01-27", + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir si on a recu le courrier du conciliateur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org79be94f", + "properties": { + "robust-begin": 129358, + "robust-end": 129731, + "post-blank": 1, + "post-affiliated": 129358, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf9dcc3f", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/Import de textes dans orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:8daaa303-ed42-481f-8a41-115992e76801" + }, + "properties": { + "tags-all": [], + "raw-value": "export de textes vers emacs depuis les posts de forum qzine", + "pre-blank": 0, + "robust-begin": 130159, + "robust-end": 130333, + "level": 1, + "priority": null, + "tags": [ + "dev", + "qzine" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 129734, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T16:06:00", + "end": "2022-01-27T16:06:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 16:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "export de textes vers emacs depuis les posts de forum qzine" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org412c2c5", + "properties": { + "robust-begin": 129813, + "robust-end": 130333, + "post-blank": 1, + "post-affiliated": 129813, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2ed8a0c", + "properties": { + "post-blank": 1, + "post-affiliated": 130160, + "mode": null, + "granularity": null + }, + "contents": [ + "LUM", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgd570db4", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "comments" + ] + }, + "\nutilisateur a filtrer\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge8c1745", + "properties": { + "post-blank": 0, + "post-affiliated": 130196, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc04e888", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/cipherbliss/20120917162837_cipherbliss_blog_88_bill-gates-vs-steve-jobs.org::*Liens", + "application": null, + "search-option": "*Liens", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Liens" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org341c5d0", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/Import de textes dans orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:2a40b524-f445-4b3f-a939-110c0e64f066" + }, + "properties": { + "tags-all": [], + "raw-value": "export de textes vers emacs depuis les posts de mastodon", + "pre-blank": 0, + "robust-begin": 130752, + "robust-end": 130765, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 130336, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T16:06:00", + "end": "2022-01-27T16:06:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 16:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "export de textes vers emacs depuis les posts de mastodon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4b41101", + "properties": { + "robust-begin": 130406, + "robust-end": 130765, + "post-blank": 2, + "post-affiliated": 130406, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6e2f839", + "properties": { + "post-blank": 0, + "post-affiliated": 130753, + "mode": null, + "granularity": null + }, + "contents": [ + "jusqu'en 2019\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5dfd506", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev", + "CUSTOM_ID": "h:f4eab092-43f9-433b-a54e-3f0cae8c621b" + }, + "properties": { + "tags-all": [], + "raw-value": "ressuciter caisse.cipherbliss.com", + "pre-blank": 0, + "robust-begin": 131163, + "robust-end": 131610, + "level": 1, + "priority": null, + "tags": [ + "edu", + "adminsys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 130769, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T14:50:00", + "end": "2022-01-27T14:50:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 14:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ressuciter caisse.cipherbliss.com" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgdaf9dd1", + "properties": { + "robust-begin": 130825, + "robust-end": 131162, + "post-blank": 0, + "post-affiliated": 130825, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6debcbc", + "drawer": { + "CUSTOM_ID": "h:5f75d7e0-1b40-4fb4-b698-c9eb4ae80bf6" + }, + "properties": { + "tags-all": [], + "raw-value": "caisse wtf certificat lets encrypt", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [ + "caisse", + "dev", + "adminsys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 131164, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T14:49:00", + "end": "2022-01-27T14:49:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 14:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "caisse wtf certificat lets encrypt" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbd3845d", + "properties": { + "robust-begin": 131229, + "robust-end": 131341, + "post-blank": 0, + "post-affiliated": 131229, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf7aea70", + "drawer": { + "CUSTOM_ID": "h:a317ce85-eba4-4288-b9d9-41088a443c9d" + }, + "properties": { + "tags-all": [], + "raw-value": "@caisse comprendre WTF avec le routage de nginx qui envoie dans le mauvais dossier", + "pre-blank": 0, + "robust-begin": 131560, + "robust-end": 131610, + "level": 2, + "priority": null, + "tags": [ + "caisse", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 131343, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T14:49:00", + "end": "2022-01-27T14:49:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 14:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "@caisse comprendre WTF avec le routage de nginx qui envoie dans le mauvais dossier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd48b3b6", + "properties": { + "robust-begin": 131447, + "robust-end": 131610, + "post-blank": 1, + "post-affiliated": 131447, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgadff4a5", + "properties": { + "post-blank": 0, + "post-affiliated": 131561, + "mode": null, + "granularity": null + }, + "contents": [ + "le site n'était pas activé par lien symbolique.\n" + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge2f4a31", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:2439221b-167a-4152-a803-d18a3d1e64a4" + }, + "properties": { + "tags-all": [], + "raw-value": "voir la série sans vouloir vous déranger", + "pre-blank": 0, + "robust-begin": 132005, + "robust-end": 132055, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 131613, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T21:38:00", + "end": "2022-01-27T21:38:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 21:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir la série sans vouloir vous déranger" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgabfcc16", + "properties": { + "robust-begin": 131661, + "robust-end": 132055, + "post-blank": 1, + "post-affiliated": 131661, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgf63ac34", + "properties": { + "type": "unordered", + "structure": [ + [ + 132006, + 1, + "- ", + null, + "[ ]", + null, + 132057 + ] + ], + "post-blank": 0, + "post-affiliated": 132006, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org77e4ab1", + "properties": { + "bullet": "- ", + "checkbox": "off", + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 132006, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3582623", + "properties": { + "post-blank": 0, + "post-affiliated": 132013, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org4eecba2", + "properties": { + "type": "https", + "path": "//www.youtube.com/watch?v=mOg7tgfTgLo", + "format": "plain", + "raw-link": "https://www.youtube.com/watch?v=mOg7tgfTgLo", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgddc0f94", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/gemini :gemini:gopher", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:bac3c69f-95eb-4b0f-84c1-a14b6d7f7fe1" + }, + "properties": { + "tags-all": [], + "raw-value": "importer mes articles de cipherbliss blog et tykayn blog", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "blog" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 132058, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T21:36:00", + "end": "2022-01-27T21:36:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 21:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "importer mes articles de cipherbliss blog et tykayn blog" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf8d7838", + "properties": { + "robust-begin": 132129, + "robust-end": 132494, + "post-blank": 1, + "post-affiliated": 132129, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8d45129", + "drawer": { + "ARCHIVE_TIME": "2022-01-29 sam. 23:10", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode", + "CUSTOM_ID": "h:6acf5cc8-b479-4270-82f7-2a4fff3d7c20" + }, + "properties": { + "tags-all": [], + "raw-value": "présentation avec beamer", + "pre-blank": 0, + "robust-begin": 132898, + "robust-end": 132964, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 132497, + "closed": { + "$$data_type": "timestamp", + "start": "2022-01-27T21:36:00", + "end": "2022-01-27T21:36:00", + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 21:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "présentation avec beamer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6e5ec6a", + "properties": { + "robust-begin": 132529, + "robust-end": 132964, + "post-blank": 1, + "post-affiliated": 132529, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf129409", + "properties": { + "post-blank": 0, + "post-affiliated": 132899, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6efe98f", + "properties": { + "type": "id", + "path": "65006489-3d8d-42e1-a6a8-c0f80644e22e", + "format": "bracket", + "raw-link": "id:65006489-3d8d-42e1-a6a8-c0f80644e22e", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "presentation", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org0350296", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "reveal" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga1cc27f", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:ea15a797-082e-47c7-adb8-5369f8e69fac" + }, + "properties": { + "tags-all": [], + "raw-value": "transfert de sous claire pour achat voiture", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 7, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 132967, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T22:02:00", + "end": "2022-02-09T22:02:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 22:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "transfert de sous claire pour achat voiture" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc743b8b", + "properties": { + "robust-begin": 133018, + "robust-end": 133293, + "post-blank": 7, + "post-affiliated": 133018, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org770e564", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:730ab06b-76d4-441b-b375-f27eae595312" + }, + "properties": { + "tags-all": [], + "raw-value": "réserver un hotel ou RBNB a Thalmont pour vacances avec hélia", + "pre-blank": 0, + "robust-begin": 133684, + "robust-end": 133794, + "level": 1, + "priority": null, + "tags": [ + "voyage" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 133302, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T21:44:00", + "end": "2022-02-09T21:44:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 21:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-08", + "end": "2022-02-08", + "type": "active", + "raw-value": "<2022-02-08 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réserver un hotel ou RBNB a Thalmont pour vacances avec hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4c7e76f", + "properties": { + "robust-begin": 133380, + "robust-end": 133794, + "post-blank": 1, + "post-affiliated": 133380, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7a13683", + "properties": { + "post-blank": 0, + "post-affiliated": 133686, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb1d207c", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211211649-framadate.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211211649-framadate.org::*Framadate Funky", + "application": null, + "search-option": "*Framadate Funky", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Framadate Funky" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org182aad9", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:32ed7bcb-46b5-4e60-977a-69b90c89389c" + }, + "properties": { + "tags-all": [], + "raw-value": "brink flair 325 pour achat de filtres", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 133797, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T10:19:00", + "end": "2022-02-09T10:19:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 10:19]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "brink flair 325 pour achat de filtres" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga14e0aa", + "properties": { + "robust-begin": 133842, + "robust-end": 134117, + "post-blank": 2, + "post-affiliated": 133842, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org56bd6cb", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:439bd1e1-9fd9-425b-8665-6e5534e9c098" + }, + "properties": { + "tags-all": [], + "raw-value": "revoir maison des enfants réservations", + "pre-blank": 0, + "robust-begin": 134471, + "robust-end": 134540, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 134121, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T21:54:00", + "end": "2022-02-09T21:54:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 21:54]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-09", + "end": "2022-02-09", + "type": "active", + "raw-value": "<2022-02-09 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "revoir maison des enfants réservations" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga5ddf79", + "properties": { + "robust-begin": 134167, + "robust-end": 134540, + "post-blank": 1, + "post-affiliated": 134167, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org655dc88", + "properties": { + "post-blank": 0, + "post-affiliated": 134472, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org39bc570", + "properties": { + "type": "https", + "path": "//portail.berger-levrault.fr/MairieBriisSousForges91640/accueil", + "format": "plain", + "raw-link": "https://portail.berger-levrault.fr/MairieBriisSousForges91640/accueil", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org658f0db", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:6abf4459-53a0-45d5-81b4-80502345a846" + }, + "properties": { + "tags-all": [], + "raw-value": "barre header logo , taille 31x31", + "pre-blank": 0, + "robust-begin": 134970, + "robust-end": 135050, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 134543, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T14:48:00", + "end": "2022-02-09T14:48:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 14:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "barre header logo , taille 31x31" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org90d4d58", + "properties": { + "robust-begin": 134583, + "robust-end": 135050, + "post-blank": 1, + "post-affiliated": 134583, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0177255", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage/mettre les écrans pour propositions texte step 3", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:dce86f43-8abc-49e8-8eaf-398992c9b60c" + }, + "properties": { + "tags-all": [], + "raw-value": "popup de lien image", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 135053, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T14:48:00", + "end": "2022-02-09T14:48:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 14:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "popup de lien image" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org93157f3", + "properties": { + "robust-begin": 135080, + "robust-end": 135515, + "post-blank": 1, + "post-affiliated": 135080, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org37cf094", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage/mettre les écrans pour propositions texte step 3", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:e11ee225-b819-4e29-be3f-3d623d960b81" + }, + "properties": { + "tags-all": [], + "raw-value": "modification du lien en popup", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 135518, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T16:59:00", + "end": "2022-02-09T16:59:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 16:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "modification du lien en popup" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org27e3dfa", + "properties": { + "robust-begin": 135555, + "robust-end": 135990, + "post-blank": 1, + "post-affiliated": 135555, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga9c72c1", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage/mettre les écrans pour propositions texte step 3", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:61be737d-9ab9-47e1-b2fb-83a5c43d22fa" + }, + "properties": { + "tags-all": [], + "raw-value": "afficher preview de l'image liée", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 135993, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T15:52:00", + "end": "2022-02-09T15:52:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 15:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "afficher preview de l'image liée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbbc36e6", + "properties": { + "robust-begin": 136033, + "robust-end": 136468, + "post-blank": 1, + "post-affiliated": 136033, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org63ec4dc", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:d0e28d60-ba7e-48c0-ba33-cc71dc9d1914" + }, + "properties": { + "tags-all": [], + "raw-value": "popup des horaires pareil pour tout le monde step 4", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 136471, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T15:51:00", + "end": "2022-02-09T15:51:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 15:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "popup des horaires pareil pour tout le monde step 4" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb68c3e1", + "properties": { + "robust-begin": 136530, + "robust-end": 136916, + "post-blank": 2, + "post-affiliated": 136530, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3f75a95", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:1c75fc9c-2503-464f-912f-394caaa4a212" + }, + "properties": { + "tags-all": [], + "raw-value": "fix payload creation", + "pre-blank": 0, + "robust-begin": 137335, + "robust-end": 137386, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 136920, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T11:32:00", + "end": "2022-02-09T11:32:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 11:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "fix payload creation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org489d9c7", + "properties": { + "robust-begin": 136948, + "robust-end": 137386, + "post-blank": 1, + "post-affiliated": 136948, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org33a711f", + "properties": { + "post-blank": 0, + "post-affiliated": 137336, + "mode": null, + "granularity": null + }, + "contents": [ + "les infos d'owner du storage ne sont pas transmises\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org917c36d", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:17dd8d8b-a4f8-450e-ae4f-4e9a353187f7" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre le calendrier par défaut step 3", + "pre-blank": 0, + "robust-begin": 137822, + "robust-end": 137902, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 137389, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T11:32:00", + "end": "2022-02-09T11:32:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 11:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre le calendrier par défaut step 3" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge815387", + "properties": { + "robust-begin": 137435, + "robust-end": 137902, + "post-blank": 1, + "post-affiliated": 137435, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga43b41e", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Boulot ----------------------------------------/création de sondage", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot framadate work creation", + "CUSTOM_ID": "h:b702971e-eda2-4836-b3b1-ddf89b05ce8c" + }, + "properties": { + "tags-all": [], + "raw-value": "répondre mail ophélie", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 137905, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T21:44:00", + "end": "2022-02-09T21:44:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 21:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-09", + "end": "2022-02-09", + "type": "active", + "raw-value": "<2022-02-09 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "répondre mail ophélie" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4233826", + "properties": { + "robust-begin": 137934, + "robust-end": 138348, + "post-blank": 1, + "post-affiliated": 137934, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1457be5", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "travaux recherche", + "CUSTOM_ID": "h:851863a2-4851-45c2-810a-35ad9e9d8165" + }, + "properties": { + "tags-all": [], + "raw-value": "achat de quoi réparer les freins hydrauliques pour le vélos VTC", + "pre-blank": 0, + "robust-begin": 138812, + "robust-end": 138871, + "level": 1, + "priority": null, + "tags": [ + "achats" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 138351, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T10:18:00", + "end": "2022-02-09T10:18:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 10:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-02", + "end": "2022-02-02", + "type": "active", + "raw-value": "<2022-02-02 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "achat de quoi réparer les freins hydrauliques pour le vélos VTC" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org38d1ced", + "properties": { + "robust-begin": 138431, + "robust-end": 138871, + "post-blank": 1, + "post-affiliated": 138431, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org83debb8", + "properties": { + "post-blank": 0, + "post-affiliated": 138813, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9ec57ef", + "properties": { + "type": "https", + "path": "//www.heureux-cyclage.org/les-ateliers-en-france.html", + "format": "plain", + "raw-link": "https://www.heureux-cyclage.org/les-ateliers-en-france.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbb49f46", + "drawer": { + "ARCHIVE_TIME": "2022-02-09 mer. 22:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Achats de trucs -----------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9cc85005-7e63-439e-9eb8-21dd399e43a1" + }, + "properties": { + "tags-all": [], + "raw-value": "filtres de vmc", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "achats" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 138874, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-09T21:56:00", + "end": "2022-02-09T21:56:00", + "type": "inactive", + "raw-value": "[2022-02-09 mer. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "filtres de vmc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1e451c6", + "properties": { + "robust-begin": 138905, + "robust-end": 139208, + "post-blank": 1, + "post-affiliated": 138905, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb5c5121", + "drawer": { + "ARCHIVE_TIME": "2022-02-15 mar. 10:40", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:814e34b4-4ab4-4efe-8865-47fbb41a6f7f" + }, + "properties": { + "tags-all": [], + "raw-value": "relance avocate Christine daudin pour les portails", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 139211, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-13T12:32:00", + "end": "2022-02-13T12:32:00", + "type": "inactive", + "raw-value": "[2022-02-13 dim. 12:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-12", + "end": "2022-02-12", + "type": "active", + "raw-value": "<2022-02-12 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relance avocate Christine daudin pour les portails" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4562916", + "properties": { + "robust-begin": 139276, + "robust-end": 139649, + "post-blank": 1, + "post-affiliated": 139276, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8a27669", + "drawer": { + "ARCHIVE_TIME": "2022-02-15 mar. 10:40", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Achats de trucs -----------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "achats", + "CUSTOM_ID": "h:85bde496-9997-4b22-8166-c15def4fb94e" + }, + "properties": { + "tags-all": [], + "raw-value": "régler à tesla la commande de model 3 rouge", + "pre-blank": 0, + "robust-begin": 140060, + "robust-end": 140403, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 139652, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-11T10:39:00", + "end": "2022-02-11T10:39:00", + "type": "inactive", + "raw-value": "[2022-02-11 ven. 10:39]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-12", + "end": "2022-02-12", + "type": "active", + "raw-value": "<2022-02-12 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "régler à tesla la commande de model 3 rouge" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org505ffe3", + "properties": { + "robust-begin": 139703, + "robust-end": 140403, + "post-blank": 1, + "post-affiliated": 139703, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org63b27a2", + "properties": { + "post-blank": 2, + "post-affiliated": 140061, + "mode": null, + "granularity": null + }, + "contents": [ + "label RN116488857\n57 460,00 €\nAccount Name\nTESLA FRANCE SARL\nAccount Number\n658346008\nIBAN\nFR7611689007000065834600805\nBank Name\nCitibank Europe PLC France\nBank Swift Code\nCITIFRPP\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7082ef8", + "properties": { + "post-blank": 0, + "post-affiliated": 140244, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8e518ea", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211212854-cafe_vie_privee.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211212854-cafe_vie_privee.org::*compte rendu après briis janvier 2022", + "application": null, + "search-option": "*compte rendu après briis janvier 2022", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "compte rendu après briis janvier 2022" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc6412c5", + "drawer": { + "ARCHIVE_TIME": "2022-02-16 mer. 12:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:e4526892-3db9-46d4-9ebc-3da645bd3993" + }, + "properties": { + "tags-all": [], + "raw-value": "copier l'audio capté du [[id:b5b6972a-3616-4caf-b98c-ccb4439edecd][café_vie_privée]] de briis sur spaceship", + "pre-blank": 0, + "robust-begin": 140853, + "robust-end": 140871, + "level": 1, + "priority": null, + "tags": [ + "audio", + "privacy", + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 140406, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-15T17:21:00", + "end": "2022-02-15T17:21:00", + "type": "inactive", + "raw-value": "[2022-02-15 mar. 17:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "copier l'audio capté du ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8d3fe01", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439edecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439edecd", + "application": null, + "search-option": null, + "post-blank": 1, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orga74f237", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgd0531d3", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "de briis sur spaceship" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org61d1a60", + "properties": { + "robust-begin": 140544, + "robust-end": 140871, + "post-blank": 1, + "post-affiliated": 140544, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbb3fe71", + "properties": { + "post-blank": 0, + "post-affiliated": 140854, + "mode": null, + "granularity": null + }, + "contents": [ + "retrouver le tel\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1acafda", + "drawer": { + "ARCHIVE_TIME": "2022-02-16 mer. 12:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:c3d8c7d3-da54-4eb5-81ea-5b500a170059" + }, + "properties": { + "tags-all": [], + "raw-value": "examiner dépots github sur la présence de secrets dans les dépots avec un bon outil comme gitguardian , cyberangel ou autre", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "inbox", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 140874, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-15T17:21:00", + "end": "2022-02-15T17:21:00", + "type": "inactive", + "raw-value": "[2022-02-15 mar. 17:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "examiner dépots github sur la présence de secrets dans les dépots avec un bon outil comme gitguardian , cyberangel ou autre" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1fff89c", + "properties": { + "robust-begin": 141017, + "robust-end": 141332, + "post-blank": 1, + "post-affiliated": 141017, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2fc9c27", + "drawer": { + "ARCHIVE_TIME": "2022-02-16 mer. 12:55", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:d499d89a-bbf5-423a-9d9b-de5cf95bdc84" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED relancer le club informatique de Janvry par tel", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "tel", + "email" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 141335, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-14T18:25:00", + "end": "2022-02-14T18:25:00", + "type": "inactive", + "raw-value": "[2022-02-14 lun. 18:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-14", + "end": "2022-02-14", + "type": "active", + "raw-value": "<2022-02-14 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED relancer le club informatique de Janvry par tel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org86bc394", + "properties": { + "robust-begin": 141406, + "robust-end": 141764, + "post-blank": 1, + "post-affiliated": 141406, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfde8df1", + "drawer": { + "ARCHIVE_TIME": "2022-03-07 lun. 15:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:075afc78-8642-4ce4-8565-3bb85887f5dd" + }, + "properties": { + "tags-all": [], + "raw-value": "réserver resto clos de chevreuse pour lundi 21 midi", + "pre-blank": 0, + "robust-begin": 142108, + "robust-end": 142272, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 141767, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-01T10:23:00", + "end": "2022-03-01T10:23:00", + "type": "inactive", + "raw-value": "[2022-03-01 mar. 10:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réserver resto clos de chevreuse pour lundi 21 midi" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgac9f5c9", + "properties": { + "robust-begin": 141832, + "robust-end": 142272, + "post-blank": 1, + "post-affiliated": 141832, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbe9bff9", + "properties": { + "post-blank": 1, + "post-affiliated": 142110, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org93f158d", + "properties": { + "type": "active", + "raw-value": "<2022-02-11 ven.>", + "post-blank": 0, + "start": "2022-02-11", + "end": "2022-02-11" + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgba9ca63", + "properties": { + "post-blank": 0, + "post-affiliated": 142139, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb430664", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*Associations ----------------------------", + "application": null, + "search-option": "*Associations ----------------------------", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Associations ----------------------------" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org61ae256", + "drawer": { + "ARCHIVE_TIME": "2022-03-07 lun. 15:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7a7702ae-ae7f-44c5-9b78-143b27ff1e01" + }, + "properties": { + "tags-all": [], + "raw-value": "finir la coopie de donnéées sur pool zfs", + "pre-blank": 0, + "robust-begin": 142599, + "robust-end": 142629, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 142275, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-03T10:04:00", + "end": "2022-03-03T10:04:00", + "type": "inactive", + "raw-value": "[2022-03-03 jeu. 10:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "finir la coopie de donnéées sur pool zfs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1b09cd8", + "properties": { + "robust-begin": 142323, + "robust-end": 142629, + "post-blank": 1, + "post-affiliated": 142323, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org65e2d91", + "properties": { + "post-blank": 0, + "post-affiliated": 142601, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org614fd89", + "properties": { + "type": "active", + "raw-value": "<2022-03-03 jeu.>", + "post-blank": 0, + "start": "2022-03-03", + "end": "2022-03-03" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org188a853", + "drawer": { + "ARCHIVE_TIME": "2022-03-07 lun. 15:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Relances régulières", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:0460190d-a7d8-4091-9539-1b9bd371dfed" + }, + "properties": { + "tags-all": [], + "raw-value": "relance Xavier Jetlab pour client immo", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 142632, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-02T19:34:00", + "end": "2022-03-02T19:34:00", + "type": "inactive", + "raw-value": "[2022-03-02 mer. 19:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-03-01", + "end": "2022-03-01", + "type": "active", + "raw-value": "<2022-03-01 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relance Xavier Jetlab pour client immo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7c75894", + "properties": { + "robust-begin": 142678, + "robust-end": 142996, + "post-blank": 2, + "post-affiliated": 142678, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf2c334a", + "drawer": { + "ARCHIVE_TIME": "2022-03-07 lun. 15:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:95b1616d-abef-4bd5-ba6a-82e25ea33330" + }, + "properties": { + "tags-all": [], + "raw-value": "proposer de se revoir à mikanou, estelle juju", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "social" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 143000, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-02T19:34:00", + "end": "2022-03-02T19:34:00", + "type": "inactive", + "raw-value": "[2022-03-02 mer. 19:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-02-11", + "end": "2022-02-11", + "type": "active", + "raw-value": "<2022-02-11 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "proposer de se revoir à mikanou, estelle juju" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org766d103", + "properties": { + "robust-begin": 143062, + "robust-end": 143391, + "post-blank": 1, + "post-affiliated": 143062, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6ea0105", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:d20b7ab8-eb87-4017-980e-857506276282" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une démo des boutons telle que dans la planche figma", + "pre-blank": 0, + "robust-begin": 143743, + "robust-end": 143839, + "level": 1, + "priority": null, + "tags": [ + "work" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 143394, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:24:00", + "end": "2022-03-14T10:24:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une démo des boutons telle que dans la planche figma" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org00a2a58", + "properties": { + "robust-begin": 143467, + "robust-end": 143839, + "post-blank": 1, + "post-affiliated": 143467, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4efaf19", + "properties": { + "post-blank": 0, + "post-affiliated": 143745, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3596e34", + "properties": { + "type": "https", + "path": "//www.figma.com/file/Q3I15MEuOtTwL0WIQ2eSMu/%F0%9F%93%85-Framadate?node-id=1309%3A26295", + "format": "plain", + "raw-link": "https://www.figma.com/file/Q3I15MEuOtTwL0WIQ2eSMu/%F0%9F%93%85-Framadate?node-id=1309%3A26295", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge384a2d", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:56a6604a-db37-42ed-a22e-7831d0f75969" + }, + "properties": { + "tags-all": [], + "raw-value": "dl kittew https://drive.google.com/file/d/1dE_ua0nQQ9m6dEVDEM_4e6V1vWR7ns9Z/view", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 143842, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:24:00", + "end": "2022-03-14T10:24:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "dl kittew ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge85c171", + "properties": { + "type": "https", + "path": "//drive.google.com/file/d/1dE_ua0nQQ9m6dEVDEM_4e6V1vWR7ns9Z/view", + "format": "plain", + "raw-link": "https://drive.google.com/file/d/1dE_ua0nQQ9m6dEVDEM_4e6V1vWR7ns9Z/view", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5d66152", + "properties": { + "robust-begin": 143930, + "robust-end": 144205, + "post-blank": 1, + "post-affiliated": 143930, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1946fe7", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:91c06f6e-ad95-4778-aa57-837b30f03fd7" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre rdv avec une mairie pour passeport", + "pre-blank": 0, + "robust-begin": 144562, + "robust-end": 144815, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 144208, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:25:00", + "end": "2022-03-14T10:25:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-09", + "end": "2022-03-09", + "type": "active", + "raw-value": "<2022-03-09 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prendre rdv avec une mairie pour passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org86f4320", + "properties": { + "robust-begin": 144258, + "robust-end": 144815, + "post-blank": 1, + "post-affiliated": 144258, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org446a1dc", + "properties": { + "post-blank": 0, + "post-affiliated": 144563, + "mode": null, + "granularity": null + }, + "contents": [ + "pour Dourdan\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbf6ae31", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220309112213-cle_boot_multisystem_ventoy.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220309112213-cle_boot_multisystem_ventoy.org::*Faire une clé de boot [[id:9fcb7529-a84b-4326-b3ec-16aed1eef122][multisystem]] avec ventoy", + "application": null, + "search-option": "*Faire une clé de boot [[id:9fcb7529-a84b-4326-b3ec-16aed1eef122][multisystem]] avec ventoy", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Faire une clé de boot multisystem avec ventoy" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge2fc91b", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:327d3120-af31-4e99-825e-3c6751a410b7" + }, + "properties": { + "tags-all": [], + "raw-value": "tenter de relier les comptes LCL et SG à kresus", + "pre-blank": 0, + "robust-begin": 145149, + "robust-end": 145266, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 144818, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:25:00", + "end": "2022-03-14T10:25:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tenter de relier les comptes LCL et SG à kresus" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb59b053", + "properties": { + "robust-begin": 144873, + "robust-end": 145266, + "post-blank": 1, + "post-affiliated": 144873, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org83c3b53", + "properties": { + "post-blank": 0, + "post-affiliated": 145150, + "mode": null, + "granularity": null + }, + "contents": [ + "pas pour LCL\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9931066", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/boulot.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/boulot.org::*utiliser element ", + "application": null, + "search-option": "*utiliser element ", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "utiliser element " + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc054467", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:bfd29e1d-aacc-4bbe-8a7f-b7e25899d105" + }, + "properties": { + "tags-all": [], + "raw-value": "confirmer mon bonus malus avant de souscrire une assurance voiture", + "pre-blank": 0, + "robust-begin": 145619, + "robust-end": 145986, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 145269, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:25:00", + "end": "2022-03-14T10:25:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "confirmer mon bonus malus avant de souscrire une assurance voiture" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga00fbee", + "properties": { + "robust-begin": 145343, + "robust-end": 145986, + "post-blank": 1, + "post-affiliated": 145343, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1d880c1", + "properties": { + "post-blank": 1, + "post-affiliated": 145620, + "mode": null, + "granularity": null + }, + "contents": [ + " ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb603366", + "properties": { + "type": "https", + "path": "//espaceclient.axa.fr/#/documents/auto-et-moto", + "format": "plain", + "raw-link": "https://espaceclient.axa.fr/#/documents/auto-et-moto", + "application": null, + "search-option": null, + "post-blank": 2, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "moto: 0.68 coef bonus ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0ce5361", + "properties": { + "type": "active", + "raw-value": "<2022-03-11 ven.>", + "post-blank": 1, + "start": "2022-03-11", + "end": "2022-03-11" + }, + "contents": [] + }, + "axa\n voiture:\nLe coefficient de réduction/majoration appliqué à la dernière échéance annuelle du 01/03/2022 est de\n0,90.\npour résilier l'assurance pacifica. il faut restiter le véhicule tesla, avoir attestation rendu, envoyer a pacficica un message.\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org542aa86", + "properties": { + "post-blank": 0, + "post-affiliated": 145968, + "mode": null, + "granularity": null + }, + "contents": [ + "26 quai de la rapée\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org33cd75f", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:56ab6b0f-9345-4f61-9843-5bc76f0bc080" + }, + "properties": { + "tags-all": [], + "raw-value": "redemander une copie intégrale de mon acte de naissance", + "pre-blank": 0, + "robust-begin": 146372, + "robust-end": 146412, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 145989, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:25:00", + "end": "2022-03-14T10:25:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-23", + "end": "2022-05-23", + "type": "active", + "raw-value": "<2022-05-23 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "redemander une copie intégrale de mon acte de naissance" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org24af616", + "properties": { + "robust-begin": 146068, + "robust-end": 146412, + "post-blank": 1, + "post-affiliated": 146068, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgce9ae9a", + "properties": { + "post-blank": 0, + "post-affiliated": 146374, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3adf1eb", + "properties": { + "type": "file", + "path": "~/.emacs", + "format": "bracket", + "raw-link": "file:~/.emacs::todo \"IN-PROGRESS\"", + "application": null, + "search-option": "todo \"IN-PROGRESS\"", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2635cf2", + "drawer": { + "LAST_REPEAT": "[2021-12-06 lun. 10:23]", + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:3c586ec7-6e7c-46a3-8949-8eb37c6f4c49" + }, + "properties": { + "tags-all": [], + "raw-value": "promener le chien", + "pre-blank": 0, + "robust-begin": 146804, + "robust-end": 148017, + "level": 1, + "priority": null, + "tags": [ + "fao", + "extérieur" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 146415, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:27:00", + "end": "2022-03-14T10:27:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "promener le chien" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7031f2a", + "properties": { + "robust-begin": 146456, + "robust-end": 148017, + "post-blank": 1, + "post-affiliated": 146456, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org7a3e4ab", + "properties": { + "type": "unordered", + "structure": [ + [ + 146805, + 3, + "- ", + null, + null, + null, + 146871 + ], + [ + 146871, + 3, + "- ", + null, + null, + null, + 146937 + ], + [ + 146937, + 3, + "- ", + null, + null, + null, + 147003 + ], + [ + 147003, + 3, + "- ", + null, + null, + null, + 147069 + ], + [ + 147069, + 3, + "- ", + null, + null, + null, + 147135 + ], + [ + 147135, + 3, + "- ", + null, + null, + null, + 147242 + ] + ], + "post-blank": 0, + "post-affiliated": 146805, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org10ceab0", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 146805, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org18e6e9a", + "properties": { + "post-blank": 0, + "post-affiliated": 146810, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgde7683e", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-04 sam. 10:23]", + "post-blank": 0, + "start": "2021-12-04T10:23:00", + "end": "2021-12-04T10:23:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgaadb944", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 146871, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7d5b31c", + "properties": { + "post-blank": 0, + "post-affiliated": 146876, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org440b13f", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 15:27]", + "post-blank": 0, + "start": "2021-10-28T15:27:00", + "end": "2021-10-28T15:27:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org8e323ea", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 146937, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org99952d7", + "properties": { + "post-blank": 0, + "post-affiliated": 146942, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgf44e53b", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 15:27]", + "post-blank": 0, + "start": "2021-10-28T15:27:00", + "end": "2021-10-28T15:27:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org7607064", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 147003, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgee26765", + "properties": { + "post-blank": 0, + "post-affiliated": 147008, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgabcabb0", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:24]", + "post-blank": 0, + "start": "2021-10-28T12:24:00", + "end": "2021-10-28T12:24:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgdd02dd4", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 147069, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga452d02", + "properties": { + "post-blank": 0, + "post-affiliated": 147074, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org44b64c5", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-07 jeu. 15:18]", + "post-blank": 0, + "start": "2021-10-07T15:18:00", + "end": "2021-10-07T15:18:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgb378ceb", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 147135, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7abf43a", + "properties": { + "post-blank": 0, + "post-affiliated": 147140, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org9fa454b", + "properties": { + "type": "inactive", + "raw-value": "[2021-09-25 mer.]", + "post-blank": 0, + "start": "2021-09-25", + "end": "2021-09-25" + }, + "contents": [] + }, + "\n** TODO compléter la newsletter chatons :chatons:\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6247559", + "properties": { + "post-blank": 2, + "post-affiliated": 147242, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfa83085", + "properties": { + "type": "active", + "raw-value": "<2022-01-27 jeu.>", + "post-blank": 0, + "start": "2022-01-27", + "end": "2022-01-27" + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb41278f", + "properties": { + "type": "https", + "path": "//pad.chapril.org/p/chatons-2022-01", + "format": "plain", + "raw-link": "https://pad.chapril.org/p/chatons-2022-01", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\ntopics ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org367b4fa", + "properties": { + "type": "https", + "path": "//forum.chatons.org/c/collectif/newsletter/88", + "format": "plain", + "raw-link": "https://forum.chatons.org/c/collectif/newsletter/88", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org059e01f", + "properties": { + "post-blank": 0, + "post-affiliated": 147373, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5b7b1de", + "properties": { + "type": "id", + "path": "dc291124-95cf-4cf8-ad22-610ddb1e9612", + "format": "bracket", + "raw-link": "id:dc291124-95cf-4cf8-ad22-610ddb1e9612", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "chatons", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org503ae21", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "newsletter" + ] + } + ] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org46edc0b", + "properties": { + "type": "https", + "path": "//forum.chatons.org/", + "format": "plain", + "raw-link": "https://forum.chatons.org/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge2799a4", + "properties": { + "type": "https", + "path": "//framalistes.org/sympa/info/collectif-chatons", + "format": "plain", + "raw-link": "https://framalistes.org/sympa/info/collectif-chatons", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org81adafe", + "properties": { + "type": "https", + "path": "//mypads.framapad.org/p/2021-10-reunion-virtuelle-mensuelle-26htm78m", + "format": "plain", + "raw-link": "https://mypads.framapad.org/p/2021-10-reunion-virtuelle-mensuelle-26htm78m", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org61a1ad5", + "properties": { + "type": "https", + "path": "//bbb.fdn.fr/b/khr-mat-kcy-dz3", + "format": "plain", + "raw-link": "https://bbb.fdn.fr/b/khr-mat-kcy-dz3", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "horizontal-rule", + "ref": "org39da258", + "properties": { + "post-blank": 0, + "post-affiliated": 147645, + "mode": null, + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org35fdc0d", + "properties": { + "post-blank": 1, + "post-affiliated": 147655, + "mode": null, + "granularity": null + }, + "contents": [ + "gérer votre abonnement: ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1c798c2", + "properties": { + "type": "https", + "path": "//framalistes.org/sympa/info/collectif-chatons", + "format": "plain", + "raw-link": "https://framalistes.org/sympa/info/collectif-chatons", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org25e0105", + "properties": { + "post-blank": 1, + "post-affiliated": 147733, + "mode": null, + "granularity": null + }, + "contents": [ + "Retrouvez nous sur le forum, principale porte d'entrée : ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5469c15", + "properties": { + "type": "https", + "path": "//forum.chatons.org/", + "format": "plain", + "raw-link": "https://forum.chatons.org/", + "application": null, + "search-option": null, + "post-blank": 1, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "et aussi sur ces réseaux:\nDiaspora Mastodon Twitter [m] Matrix Mobilizon\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org56394e1", + "properties": { + "post-blank": 0, + "post-affiliated": 147896, + "mode": null, + "granularity": null + }, + "contents": [ + "le site : ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3c21e25", + "properties": { + "type": "https", + "path": "//www.chatons.org", + "format": "plain", + "raw-link": "https://www.chatons.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nla litière, le wiki ultime : ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf68fedc", + "properties": { + "type": "https", + "path": "//wiki.chatons.org", + "format": "plain", + "raw-link": "https://wiki.chatons.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nblog: ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org278ab20", + "properties": { + "type": "https", + "path": "//www.chatons.org/news", + "format": "plain", + "raw-link": "https://www.chatons.org/news", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga9c4495", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes/envoyer facture hébergement annuel aux clients", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes administratif cipherbliss entreprise", + "CUSTOM_ID": "h:78318d0f-8fa5-40ec-84d3-ba46399555ad" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer l'arome pour savoir ce qu'on fait cette année", + "pre-blank": 0, + "robust-begin": 148474, + "robust-end": 148508, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 148020, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:28:00", + "end": "2022-03-14T10:28:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:28]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer l'arome pour savoir ce qu'on fait cette année" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org87b9b15", + "properties": { + "robust-begin": 148082, + "robust-end": 148508, + "post-blank": 1, + "post-affiliated": 148082, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfe5d261", + "properties": { + "post-blank": 0, + "post-affiliated": 148475, + "mode": null, + "granularity": null + }, + "contents": [ + "probablement plus de prestations\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org885ca29", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:c69efd0e-1927-4373-b341-394e57e6c584" + }, + "properties": { + "tags-all": [], + "raw-value": "vérif que les prélèvements de CIPAV partent bien", + "pre-blank": 0, + "robust-begin": 148948, + "robust-end": 149056, + "level": 1, + "priority": null, + "tags": [ + "work" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 148511, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-10T18:32:00", + "end": "2022-03-10T18:32:00", + "type": "inactive", + "raw-value": "[2022-03-10 jeu. 18:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-22", + "end": "2022-03-22", + "type": "active", + "raw-value": "<2022-03-22 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérif que les prélèvements de CIPAV partent bien" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org26c42e0", + "properties": { + "robust-begin": 148574, + "robust-end": 149056, + "post-blank": 1, + "post-affiliated": 148574, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0747558", + "properties": { + "post-blank": 0, + "post-affiliated": 148950, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbdef99d", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211211649-framadate.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211211649-framadate.org::*Jours facturés", + "application": null, + "search-option": "*Jours facturés", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Jours facturés" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgda8a625", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:11430202-6594-4553-ae79-c66513c4bc3d" + }, + "properties": { + "tags-all": [], + "raw-value": "mail a MH Huze pour créer un compte mobilizon pour les incroyables forgeois et publier les répare café", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 149059, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-10T18:32:00", + "end": "2022-03-10T18:32:00", + "type": "inactive", + "raw-value": "[2022-03-10 jeu. 18:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-09", + "end": "2022-03-09", + "type": "active", + "raw-value": "<2022-03-09 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mail a MH Huze pour créer un compte mobilizon pour les incroyables forgeois et publier les répare café" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org73a1306", + "properties": { + "robust-begin": 149185, + "robust-end": 149539, + "post-blank": 2, + "post-affiliated": 149185, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbbd70ac", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 10:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Vacances ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "organisation claire", + "CUSTOM_ID": "h:37dd7c10-4ab8-4818-8ac2-1bec2d72e6de" + }, + "properties": { + "tags-all": [], + "raw-value": "voyage Lyon, penser à mettre le casque audio dans le sac à dos", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "voyage", + "vacances" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 149543, + "closed": { + "$$data_type": "timestamp", + "start": "2022-02-15T18:32:00", + "end": "2022-02-15T18:32:00", + "type": "inactive", + "raw-value": "[2022-02-15 mar. 18:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voyage Lyon, penser à mettre le casque audio dans le sac à dos" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6fb3782", + "properties": { + "robust-begin": 149631, + "robust-end": 149982, + "post-blank": 1, + "post-affiliated": 149631, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbf43f62", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:ec54e41a-4886-4d30-92ab-551f296ba190" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED soirée avec Xavier à Paris", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 149985, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-04T16:38:00", + "end": "2022-03-04T16:38:00", + "type": "inactive", + "raw-value": "[2022-03-04 ven. 16:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-07", + "end": "2022-03-07", + "type": "active", + "raw-value": "<2022-03-07 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED soirée avec Xavier à Paris" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1c335a3", + "properties": { + "robust-begin": 150023, + "robust-end": 150354, + "post-blank": 1, + "post-affiliated": 150023, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org42dab53", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:d91d0c94-03dc-47b9-b3b7-55b605d7c9c8" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED call pacifica devis pour model 3", + "pre-blank": 0, + "robust-begin": 150705, + "robust-end": 150821, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 150357, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:25:00", + "end": "2022-03-14T10:25:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:25]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED call pacifica devis pour model 3" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org44f9f14", + "properties": { + "robust-begin": 150401, + "robust-end": 150821, + "post-blank": 1, + "post-affiliated": 150401, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcfbddb0", + "properties": { + "post-blank": 0, + "post-affiliated": 150707, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org18fd87e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211214165214-francilients_net.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211214165214-francilients_net.org::serveurs dns de franciliens.net", + "application": null, + "search-option": "serveurs dns de franciliens.net", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7f7a5e8", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "l'arome", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "CUSTOM_ID": "h:ee9adaf8-5313-4f6b-bb04-dcccb5865487" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED voir avec Suzanne pour l'authentification de domaine", + "pre-blank": 0, + "robust-begin": 151179, + "robust-end": 151295, + "level": 1, + "priority": null, + "tags": [ + "larome" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 150824, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T10:27:00", + "end": "2022-03-14T10:27:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED voir avec Suzanne pour l'authentification de domaine" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org71a3236", + "properties": { + "robust-begin": 150897, + "robust-end": 151295, + "post-blank": 2, + "post-affiliated": 150897, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7f8bf47", + "properties": { + "post-blank": 0, + "post-affiliated": 151180, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org358b96b", + "properties": { + "type": "https", + "path": "//mailchimp.com/fr/help/verify-a-domain/", + "format": "plain", + "raw-link": "https://mailchimp.com/fr/help/verify-a-domain/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nles emails seraient alors envoyés depuis contact@larome-restaurant.fr\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf92373b", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Travaux et bricolage -------------------------/intérieur maison", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "BLOCKED", + "ARCHIVE_ITAGS": "recherche", + "CUSTOM_ID": "h:7d7f7082-4648-4f56-8c44-fa371c12a939" + }, + "properties": { + "tags-all": [], + "raw-value": "plaque volet roulant cuisine @solabaie", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "solabaie", + "travaux", + "jardin", + "extérieur", + "mail", + "laposte" + ], + "todo-keyword": "BLOCKED", + "todo-type": "todo", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 151299, + "title": [ + "plaque volet roulant cuisine @solabaie" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org34d7c75", + "properties": { + "robust-begin": 151397, + "robust-end": 151727, + "post-blank": 1, + "post-affiliated": 151397, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfb90ee1", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "BLOCKED", + "CUSTOM_ID": "h:271760b6-5d7a-4715-924d-afea527efc00" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer le compte rendu de david d'attac sur spaceship depuis le tel", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "BLOCKED", + "todo-type": "todo", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 151730, + "title": [ + "récupérer le compte rendu de david d'attac sur spaceship depuis le tel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org59464ff", + "properties": { + "robust-begin": 151811, + "robust-end": 152091, + "post-blank": 1, + "post-affiliated": 151811, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb8be7bc", + "drawer": { + "ARCHIVE_TIME": "2022-03-14 lun. 11:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "BLOCKED", + "ARCHIVE_ITAGS": "adminsys", + "CUSTOM_ID": "h:94c539b0-62ac-4aa5-8e51-dc2cf34fc4a4" + }, + "properties": { + "tags-all": [], + "raw-value": "domoticz redirection de port vers yunohost pour pi.cipherbliss.com WTF le routeur netgear", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "domoticz" + ], + "todo-keyword": "BLOCKED", + "todo-type": "todo", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 152094, + "title": [ + "domoticz redirection de port vers yunohost pour pi.cipherbliss.com WTF le routeur netgear" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge9c918c", + "properties": { + "robust-begin": 152205, + "robust-end": 152522, + "post-blank": 1, + "post-affiliated": 152205, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4d96ef2", + "drawer": { + "ARCHIVE_TIME": "2022-03-16 mer. 11:40", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:0084138f-ba32-4278-8209-3f537b02711f" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer le dépôt de welcome mastodon qui doit être sur le flat laptop", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 152525, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-14T11:23:00", + "end": "2022-03-14T11:23:00", + "type": "inactive", + "raw-value": "[2022-03-14 lun. 11:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer le dépôt de welcome mastodon qui doit être sur le flat laptop" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbbac2b8", + "properties": { + "robust-begin": 152604, + "robust-end": 152903, + "post-blank": 2, + "post-affiliated": 152604, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9badcd2", + "drawer": { + "ARCHIVE_TIME": "2022-03-16 mer. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:736b3027-dba3-4e2b-9f2e-84721c8fa2b9" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED oraniser bouffe avec kelly à massy", + "pre-blank": 0, + "robust-begin": 153337, + "robust-end": 153374, + "level": 1, + "priority": null, + "tags": [ + "claire", + "extérieur", + "resto" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 152907, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-16T11:41:00", + "end": "2022-03-16T11:41:00", + "type": "inactive", + "raw-value": "[2022-03-16 mer. 11:41]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-09", + "end": "2022-03-09", + "type": "active", + "raw-value": "<2022-03-09 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED oraniser bouffe avec kelly à massy" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga36a3b6", + "properties": { + "robust-begin": 152978, + "robust-end": 153374, + "post-blank": 1, + "post-affiliated": 152978, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9072ff5", + "properties": { + "post-blank": 0, + "post-affiliated": 153339, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgad1667b", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga3ff48b", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-11 jeu. 16:20]", + "post-blank": 0, + "start": "2021-11-11T16:20:00", + "end": "2021-11-11T16:20:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf0e2b1f", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:a43760dd-dcae-4387-b6a5-2de2753abc58" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer un courrier recommandé restitution Tesla model S", + "pre-blank": 0, + "robust-begin": 153785, + "robust-end": 153852, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 153377, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-26T15:22:00", + "end": "2022-03-26T15:22:00", + "type": "inactive", + "raw-value": "[2022-03-26 sam. 15:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-22", + "end": "2022-03-22", + "type": "active", + "raw-value": "<2022-03-22 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer un courrier recommandé restitution Tesla model S" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb36076d", + "properties": { + "robust-begin": 153457, + "robust-end": 153852, + "post-blank": 1, + "post-affiliated": 153457, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbde0273", + "properties": { + "post-blank": 0, + "post-affiliated": 153787, + "mode": null, + "granularity": null + }, + "contents": [ + "srl tesla france\n5, rue olympe de gouges\n92230 Gennevilliers\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org429d2f5", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:c902f0f7-5f12-484e-a062-9cbdea10643e" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre le mode prod sur la démo", + "pre-blank": 0, + "robust-begin": 154201, + "robust-end": 154305, + "level": 1, + "priority": null, + "tags": [ + "work" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 153855, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-22T09:46:00", + "end": "2022-03-22T09:46:00", + "type": "inactive", + "raw-value": "[2022-03-22 mar. 09:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre le mode prod sur la démo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfcae953", + "properties": { + "robust-begin": 153901, + "robust-end": 154305, + "post-blank": 1, + "post-affiliated": 153901, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgaa23b00", + "properties": { + "post-blank": 0, + "post-affiliated": 154202, + "mode": null, + "granularity": null + }, + "contents": [ + "modifier la var d'env local .env.local\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfa714d8", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/boulot.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/boulot.org::*Boulot", + "application": null, + "search-option": "*Boulot", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Boulot" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd4ea5da", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:95daf676-b201-40cb-9896-6b7b59b63f25" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer relevé assurance à Quover", + "pre-blank": 0, + "robust-begin": 154649, + "robust-end": 154763, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 154308, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-23T16:44:00", + "end": "2022-03-23T16:44:00", + "type": "inactive", + "raw-value": "[2022-03-23 mer. 16:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer relevé assurance à Quover" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org78a0414", + "properties": { + "robust-begin": 154349, + "robust-end": 154763, + "post-blank": 1, + "post-affiliated": 154349, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org390ffdd", + "properties": { + "post-blank": 0, + "post-affiliated": 154651, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org617c2dd", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*mettre le mode prod sur la démo", + "application": null, + "search-option": "*mettre le mode prod sur la démo", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "mettre le mode prod sur la démo" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org558d910", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:d18db3eb-0574-443c-8311-4b08f52bd103" + }, + "properties": { + "tags-all": [], + "raw-value": "faire virement interne LCL, arriver à se loguer", + "pre-blank": 0, + "robust-begin": 155149, + "robust-end": 155345, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 154766, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-23T16:44:00", + "end": "2022-03-23T16:44:00", + "type": "inactive", + "raw-value": "[2022-03-23 mer. 16:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-23", + "end": "2022-03-23", + "type": "active", + "raw-value": "<2022-03-23 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire virement interne LCL, arriver à se loguer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfdf668e", + "properties": { + "robust-begin": 154821, + "robust-end": 155345, + "post-blank": 1, + "post-affiliated": 154821, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1ece6ad", + "properties": { + "post-blank": 0, + "post-affiliated": 155232, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org289ff91", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*mettre le mode prod sur la démo", + "application": null, + "search-option": "*mettre le mode prod sur la démo", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "mettre le mode prod sur la démo" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org365e0cc", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:7d7b9be2-bba7-4339-97da-491a42a7b2e9" + }, + "properties": { + "tags-all": [], + "raw-value": "liness amener le câble d'alim du eeepc", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 155348, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-20T18:55:00", + "end": "2022-03-20T18:55:00", + "type": "inactive", + "raw-value": "[2022-03-20 dim. 18:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-19", + "end": "2022-03-19", + "type": "active", + "raw-value": "<2022-03-19 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "liness amener le câble d'alim du eeepc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3a04e80", + "properties": { + "robust-begin": 155403, + "robust-end": 155784, + "post-blank": 1, + "post-affiliated": 155403, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org70a1826", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:331b9c93-85af-4dac-b0e6-89ae82a15e26" + }, + "properties": { + "tags-all": [], + "raw-value": "écrire article du mois pour le castelgometzien", + "pre-blank": 0, + "robust-begin": 156173, + "robust-end": 156425, + "level": 1, + "priority": null, + "tags": [ + "chatons", + "habitudes" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 155787, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-26T15:09:00", + "end": "2022-03-26T15:09:00", + "type": "inactive", + "raw-value": "[2022-03-26 sam. 15:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "écrire article du mois pour le castelgometzien" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org96fb760", + "properties": { + "robust-begin": 155861, + "robust-end": 156425, + "post-blank": 3, + "post-affiliated": 155861, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "drawer", + "ref": "orgc7494b2", + "properties": { + "drawer-name": "PROPERTIES", + "post-blank": 0, + "post-affiliated": 156175, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgeb97fd5", + "properties": { + "post-blank": 0, + "post-affiliated": 156188, + "mode": null, + "granularity": null + }, + "contents": [ + ":STYLE: habit\n:LAST", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org99b29fa", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "REPEAT" + ] + }, + ": ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0b35985", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-03 jeu. 19:04]", + "post-blank": 0, + "start": "2022-02-03T19:04:00", + "end": "2022-02-03T19:04:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgf7507df", + "properties": { + "type": "unordered", + "structure": [ + [ + 156246, + 0, + "- ", + null, + null, + null, + 156309 + ], + [ + 156309, + 0, + "- ", + null, + null, + null, + 156372 + ] + ], + "post-blank": 0, + "post-affiliated": 156246, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org247b2ef", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 156246, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgffe4abe", + "properties": { + "post-blank": 0, + "post-affiliated": 156248, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgadc5d24", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-03 jeu. 19:04]", + "post-blank": 0, + "start": "2022-02-03T19:04:00", + "end": "2022-02-03T19:04:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org207f4b3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 156309, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbaf3bfa", + "properties": { + "post-blank": 0, + "post-affiliated": 156311, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfc2ff35", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-03 jeu. 18:51]", + "post-blank": 0, + "start": "2022-02-03T18:51:00", + "end": "2022-02-03T18:51:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8db4210", + "properties": { + "post-blank": 0, + "post-affiliated": 156372, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orged388da", + "properties": { + "type": "https", + "path": "//pad.chapril.org/p/article-castelgometz-2022-01", + "format": "plain", + "raw-link": "https://pad.chapril.org/p/article-castelgometz-2022-01", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org38aca45", + "drawer": { + "ARCHIVE_TIME": "2022-03-26 sam. 15:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Voix du nucléaire", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "voixdunuc", + "CUSTOM_ID": "h:9667fadb-15ca-41d5-b394-22c0c18f451f" + }, + "properties": { + "tags-all": [], + "raw-value": "cottiz voix du nucléaire 2022", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 156430, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-25T22:15:00", + "end": "2022-03-25T22:15:00", + "type": "inactive", + "raw-value": "[2022-03-25 ven. 22:15]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-13", + "end": "2022-03-13", + "type": "active", + "raw-value": "<2022-03-13 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cottiz voix du nucléaire 2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd0458dc", + "properties": { + "robust-begin": 156467, + "robust-end": 156852, + "post-blank": 1, + "post-affiliated": 156467, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6d81245", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:0fe9786c-befa-4dfa-8820-d202fa397c03" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv examen de tesla", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 156855, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-31T19:02:00", + "end": "2022-03-31T19:02:00", + "type": "inactive", + "raw-value": "[2022-03-31 jeu. 19:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-31T15:00:00", + "end": "2022-03-31T15:00:00", + "type": "active", + "raw-value": "<2022-03-31 jeu. 15:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv examen de tesla" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org29b5a09", + "properties": { + "robust-begin": 156882, + "robust-end": 157215, + "post-blank": 1, + "post-affiliated": 156882, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3750142", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:a241e228-f747-4bed-9eb1-3760262265c4" + }, + "properties": { + "tags-all": [], + "raw-value": "enrouler les bébés arbres avant le gel", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 157218, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-31T19:02:00", + "end": "2022-03-31T19:02:00", + "type": "inactive", + "raw-value": "[2022-03-31 jeu. 19:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-31T13:00:00", + "end": "2022-03-31T13:00:00", + "type": "active", + "raw-value": "<2022-03-31 jeu. 13:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "enrouler les bébés arbres avant le gel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8d344a4", + "properties": { + "robust-begin": 157264, + "robust-end": 157597, + "post-blank": 1, + "post-affiliated": 157264, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5515c1b", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:4f47ae4d-4b40-4393-9e04-ed7a02c221e7" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer facture framadate avec le bon mois", + "pre-blank": 0, + "robust-begin": 157978, + "robust-end": 158050, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 157600, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T17:33:00", + "end": "2022-04-04T17:33:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 17:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-04", + "end": "2022-04-04", + "type": "active", + "raw-value": "<2022-04-04 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer facture framadate avec le bon mois" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org86e7e31", + "properties": { + "robust-begin": 157650, + "robust-end": 158050, + "post-blank": 1, + "post-affiliated": 157650, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd770c55", + "properties": { + "post-blank": 0, + "post-affiliated": 157980, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7f4a5db", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*RSS feeder", + "application": null, + "search-option": "*RSS feeder", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "RSS feeder" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaf53c9f", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "emmerdes", + "CUSTOM_ID": "h:255b33da-211c-495e-85d2-8cff59c53647" + }, + "properties": { + "tags-all": [], + "raw-value": "refuser création espace santé ameli pour hélia et moi", + "pre-blank": 0, + "robust-begin": 158462, + "robust-end": 158525, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 158053, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-31T19:01:00", + "end": "2022-03-31T19:01:00", + "type": "inactive", + "raw-value": "[2022-03-31 jeu. 19:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "refuser création espace santé ameli pour hélia et moi" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb65852d", + "properties": { + "robust-begin": 158130, + "robust-end": 158525, + "post-blank": 2, + "post-affiliated": 158130, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9ddc431", + "properties": { + "post-blank": 1, + "post-affiliated": 158463, + "mode": null, + "granularity": null + }, + "contents": [ + "pour HELIA LEMOINE\nFVzWYwPhcDA7\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc107eec", + "properties": { + "post-blank": 0, + "post-affiliated": 158496, + "mode": null, + "granularity": null + }, + "contents": [ + " BAPTISTE LEMOINE\nsqg8Rbk68TMT\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc50106b", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness", + "CUSTOM_ID": "h:3d07e0b0-e8b5-4a4c-be03-821a1892d38f" + }, + "properties": { + "tags-all": [], + "raw-value": "réfléchir à un papier A4 à laisser aux gens pour le café vie privée de liness", + "pre-blank": 0, + "robust-begin": 159027, + "robust-end": 159165, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 158529, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T17:34:00", + "end": "2022-04-04T17:34:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 17:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-31", + "end": "2022-03-31", + "type": "active", + "raw-value": "<2022-03-31 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réfléchir à un papier A4 à laisser aux gens pour le café vie privée de liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgab08974", + "properties": { + "robust-begin": 158620, + "robust-end": 159165, + "post-blank": 2, + "post-affiliated": 158620, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org22c1270", + "properties": { + "post-blank": 0, + "post-affiliated": 159028, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org807344d", + "properties": { + "type": "https", + "path": "//pad.chapril.org/p/liness-ca-2021", + "format": "plain", + "raw-link": "https://pad.chapril.org/p/liness-ca-2021", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb28c0bf", + "properties": { + "type": "https", + "path": "//pad.chapril.org/p/liness.org", + "format": "plain", + "raw-link": "https://pad.chapril.org/p/liness.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5f5d69f", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439edecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439edecd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5f21bb5", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org29453c0", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org02f3df7", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:5e529a08-e363-4ae9-8b65-0bc6d2b7e3aa" + }, + "properties": { + "tags-all": [], + "raw-value": "transcrire l'interview de pouhiou avec vosk", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "vosk", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 159169, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-01T21:45:00", + "end": "2022-04-01T21:45:00", + "type": "inactive", + "raw-value": "[2022-04-01 ven. 21:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "transcrire l'interview de pouhiou avec vosk" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org749a233", + "properties": { + "robust-begin": 159231, + "robust-end": 159546, + "post-blank": 1, + "post-affiliated": 159231, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9f16618", + "drawer": { + "ARCHIVE_TIME": "2022-04-04 lun. 18:48", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:e7bbbe2e-bca2-4170-85dc-2cad562d4459" + }, + "properties": { + "tags-all": [], + "raw-value": "café vie privée à juvisy", + "pre-blank": 0, + "robust-begin": 159976, + "robust-end": 160036, + "level": 1, + "priority": null, + "tags": [ + "privacy", + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 159549, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T17:33:00", + "end": "2022-04-04T17:33:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 17:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-02T14:00:00", + "end": "2022-04-02T14:00:00", + "type": "active", + "raw-value": "<2022-04-02 sam. 14:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "café vie privée à juvisy" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5663cc9", + "properties": { + "robust-begin": 159598, + "robust-end": 160036, + "post-blank": 1, + "post-affiliated": 159598, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org96e0601", + "properties": { + "post-blank": 0, + "post-affiliated": 159977, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0a2571e", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439edecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439edecd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgaef3e3b", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org59002e3", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8a0fd03", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:b46b9b19-0377-4cd8-9a91-0c607eda9401" + }, + "properties": { + "tags-all": [], + "raw-value": "verif si payée la facture DTE de 209 euros", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 160039, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T18:52:00", + "end": "2022-04-04T18:52:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 18:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "verif si payée la facture DTE de 209 euros" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2ce7342", + "properties": { + "robust-begin": 160089, + "robust-end": 160388, + "post-blank": 1, + "post-affiliated": 160089, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc435c33", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:02233665-08e5-47b9-bfb4-8c146b680901" + }, + "properties": { + "tags-all": [], + "raw-value": "save all buffers", + "pre-blank": 0, + "robust-begin": 160715, + "robust-end": 160923, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 160391, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T18:52:00", + "end": "2022-04-04T18:52:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 18:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "save all buffers" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org903b042", + "properties": { + "robust-begin": 160415, + "robust-end": 160923, + "post-blank": 1, + "post-affiliated": 160415, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org62895e3", + "properties": { + "post-blank": 2, + "post-affiliated": 160717, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd9e9db2", + "properties": { + "type": "https", + "path": "//stackoverflow.com/questions/15254414/how-to-silently-save-all-buffers-in-emacs", + "format": "plain", + "raw-link": "https://stackoverflow.com/questions/15254414/how-to-silently-save-all-buffers-in-emacs", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3151436", + "properties": { + "post-blank": 0, + "post-affiliated": 160806, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf50e8c3", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*rdv dourdan mairie pour passeport", + "application": null, + "search-option": "*rdv dourdan mairie pour passeport", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "rdv dourdan mairie pour passeport" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org72e7ff5", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Relances régulières", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:eee1d658-a205-464c-be11-551171affb6a" + }, + "properties": { + "tags-all": [], + "raw-value": "Catherine pour le transfert de ses fichiers et sa sauvegarde d'ordi avec duplicati", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "catherine" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 160926, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-07T14:36:00", + "end": "2022-04-07T14:36:00", + "type": "inactive", + "raw-value": "[2022-04-07 jeu. 14:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-03-29", + "end": "2022-03-29", + "type": "active", + "raw-value": "<2022-03-29 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Catherine pour le transfert de ses fichiers et sa sauvegarde d'ordi avec duplicati" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeb8780b", + "properties": { + "robust-begin": 161028, + "robust-end": 161346, + "post-blank": 1, + "post-affiliated": 161028, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0a98d1f", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "emmerdes", + "CUSTOM_ID": "h:9919afb6-656b-4dee-842a-1782bfbaf19d" + }, + "properties": { + "tags-all": [], + "raw-value": "avocate lancer procédure contre éconhome", + "pre-blank": 0, + "robust-begin": 161759, + "robust-end": 161847, + "level": 1, + "priority": null, + "tags": [ + "administratif", + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 161349, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-06T12:04:00", + "end": "2022-04-06T12:04:00", + "type": "inactive", + "raw-value": "[2022-04-06 mer. 12:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "avocate lancer procédure contre éconhome" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc4a570d", + "properties": { + "robust-begin": 161427, + "robust-end": 161847, + "post-blank": 1, + "post-affiliated": 161427, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org17a31ff", + "properties": { + "post-blank": 0, + "post-affiliated": 161760, + "mode": null, + "granularity": null + }, + "contents": [ + "christine daudin\n ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org940bec9", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*extérieur", + "application": null, + "search-option": "*extérieur", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "extérieur" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb207a8e", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:7638f515-082b-4509-8ea4-5256eb8d4199" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer sylvie Carrive médiathèque limours café vie privée", + "pre-blank": 0, + "robust-begin": 162291, + "robust-end": 162321, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 161850, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T18:48:00", + "end": "2022-04-04T18:48:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 18:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-03-29", + "end": "2022-03-29", + "type": "active", + "raw-value": "<2022-03-29 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer sylvie Carrive médiathèque limours café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf0107bb", + "properties": { + "robust-begin": 161917, + "robust-end": 162321, + "post-blank": 1, + "post-affiliated": 161917, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge912133", + "properties": { + "post-blank": 0, + "post-affiliated": 162292, + "mode": null, + "granularity": null + }, + "contents": [ + "bibliotheque@mairie-limours.fr\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaa31dee", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes", + "CUSTOM_ID": "h:14c566fb-2e4d-4993-8402-11ca8b76ad3d" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver contact de la médiathèque de gometz le chatel", + "pre-blank": 0, + "robust-begin": 162745, + "robust-end": 162956, + "level": 1, + "priority": null, + "tags": [ + "cil", + "privacy" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 162324, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-06T12:04:00", + "end": "2022-04-06T12:04:00", + "type": "inactive", + "raw-value": "[2022-04-06 mer. 12:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver contact de la médiathèque de gometz le chatel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5ce3388", + "properties": { + "robust-begin": 162399, + "robust-end": 162956, + "post-blank": 1, + "post-affiliated": 162399, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf85d335", + "properties": { + "post-blank": 1, + "post-affiliated": 162746, + "mode": null, + "granularity": null + }, + "contents": [ + "Pour faire un ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org269a053", + "properties": { + "type": "id", + "path": "b5b6972a-3616-4caf-b98c-ccb4439edecd", + "format": "bracket", + "raw-link": "id:b5b6972a-3616-4caf-b98c-ccb4439edecd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "café", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgef9bc4c", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "vie" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org6cc617c", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "privée" + ] + } + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4e2e852", + "properties": { + "post-blank": 0, + "post-affiliated": 162822, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org205986e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220125182617-contrib_atelier.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220125182617-contrib_atelier.org::*Faire un contribateliers", + "application": null, + "search-option": "*Faire un contribateliers", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Faire un contribateliers" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc96e712", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness", + "CUSTOM_ID": "h:cd138d4d-5e6f-4023-a75e-e0874aa8fb4e" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer mon bouqin Cyberstructure", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 162959, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-04T19:23:00", + "end": "2022-04-04T19:23:00", + "type": "inactive", + "raw-value": "[2022-04-04 lun. 19:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer mon bouqin Cyberstructure" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8179a07", + "properties": { + "robust-begin": 163002, + "robust-end": 163380, + "post-blank": 1, + "post-affiliated": 163002, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3febff2", + "drawer": { + "ARCHIVE_TIME": "2022-04-07 jeu. 22:22", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys", + "CUSTOM_ID": "h:2605d2ab-ce37-4691-ba6a-3c3eefc60075" + }, + "properties": { + "tags-all": [], + "raw-value": "domoticz vérifier que la micro station fonctionne régulièrement", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 163383, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-06T12:01:00", + "end": "2022-04-06T12:01:00", + "type": "inactive", + "raw-value": "[2022-04-06 mer. 12:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "domoticz vérifier que la micro station fonctionne régulièrement" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org480b897", + "properties": { + "robust-begin": 163454, + "robust-end": 163802, + "post-blank": 1, + "post-affiliated": 163454, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org52255ae", + "drawer": { + "ARCHIVE_TIME": "2022-04-13 mer. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:773f7685-d4af-4a82-bd79-9f1e019a3cb4" + }, + "properties": { + "tags-all": [], + "raw-value": "mikanou passe a briis", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 163805, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-11T09:23:00", + "end": "2022-04-11T09:23:00", + "type": "inactive", + "raw-value": "[2022-04-11 lun. 09:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-08", + "end": "2022-04-08", + "type": "active", + "raw-value": "<2022-04-08 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mikanou passe a briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9d82870", + "properties": { + "robust-begin": 163834, + "robust-end": 164161, + "post-blank": 1, + "post-affiliated": 163834, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf7aea00", + "drawer": { + "ARCHIVE_TIME": "2022-04-13 mer. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:90cc0e16-6aeb-4990-bae6-f649fc2e9fb4" + }, + "properties": { + "tags-all": [], + "raw-value": "élections premier tour", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 164164, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-11T09:23:00", + "end": "2022-04-11T09:23:00", + "type": "inactive", + "raw-value": "[2022-04-11 lun. 09:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-09", + "end": "2022-04-09", + "type": "active", + "raw-value": "<2022-04-09 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "élections premier tour" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb6221f3", + "properties": { + "robust-begin": 164194, + "robust-end": 164521, + "post-blank": 1, + "post-affiliated": 164194, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb7a248c", + "drawer": { + "ARCHIVE_TIME": "2022-04-13 mer. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:f843cd3a-3ab0-41bf-9847-edaedec1137e" + }, + "properties": { + "tags-all": [], + "raw-value": "payer à tesla 3312€ de remise en forme de la titine", + "pre-blank": 0, + "robust-begin": 164883, + "robust-end": 165059, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 164524, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-11T10:03:00", + "end": "2022-04-11T10:03:00", + "type": "inactive", + "raw-value": "[2022-04-11 lun. 10:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "payer à tesla 3312€ de remise en forme de la titine" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org61942ae", + "properties": { + "robust-begin": 164583, + "robust-end": 165059, + "post-blank": 1, + "post-affiliated": 164583, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org23954ee", + "properties": { + "post-blank": 1, + "post-affiliated": 164884, + "mode": null, + "granularity": null + }, + "contents": [ + "label: paiement MI40310285\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org42c3cd6", + "properties": { + "post-blank": 1, + "post-affiliated": 164912, + "mode": null, + "granularity": null + }, + "contents": [ + "FR7611689007000065834600805 CITIFRPP\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8652962", + "properties": { + "post-blank": 0, + "post-affiliated": 164950, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge82333c", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org::*Les CHATONS", + "application": null, + "search-option": "*Les CHATONS", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Les CHATONS" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9f6c5c2", + "drawer": { + "ARCHIVE_TIME": "2022-04-13 mer. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:79160b07-424b-46cf-896b-af241c534cec" + }, + "properties": { + "tags-all": [], + "raw-value": "payer facture eau avril 48.91€", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 165062, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-11T09:32:00", + "end": "2022-04-11T09:32:00", + "type": "inactive", + "raw-value": "[2022-04-11 lun. 09:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-11", + "end": "2022-04-11", + "type": "active", + "raw-value": "<2022-04-11 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "payer facture eau avril 48.91€" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd8e7301", + "properties": { + "robust-begin": 165100, + "robust-end": 165427, + "post-blank": 1, + "post-affiliated": 165100, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb73ff99", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:5fba9686-0b0b-4335-8413-7541990f7a94" + }, + "properties": { + "tags-all": [], + "raw-value": "vosk tester le code de démo pour la transcription en direct, retrouver le lien", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 165430, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-14T09:30:00", + "end": "2022-04-14T09:30:00", + "type": "inactive", + "raw-value": "[2022-04-14 jeu. 09:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vosk tester le code de démo pour la transcription en direct, retrouver le lien" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org748807e", + "properties": { + "robust-begin": 165516, + "robust-end": 165815, + "post-blank": 1, + "post-affiliated": 165516, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org59fb6e9", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox", + "CUSTOM_ID": "h:a3c0bcb3-7084-41c4-8157-23f94b88ce12" + }, + "properties": { + "tags-all": [], + "raw-value": "conversion de contacts scripts python", + "pre-blank": 0, + "robust-begin": 166191, + "robust-end": 166245, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 165818, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T21:56:00", + "end": "2022-04-17T21:56:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-15", + "end": "2022-04-15", + "type": "active", + "raw-value": "<2022-04-15 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "conversion de contacts scripts python" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbb10aee", + "properties": { + "robust-begin": 165863, + "robust-end": 166245, + "post-blank": 1, + "post-affiliated": 165863, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6ad5b74", + "properties": { + "post-blank": 0, + "post-affiliated": 166192, + "mode": null, + "granularity": null + }, + "contents": [ + "à retrouver et amé&liorer pour enlever doublons uuid\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc17893f", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes/envoyer facture hébergement annuel aux clients", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes administratif cipherbliss entreprise", + "CUSTOM_ID": "h:3ba85371-d876-4e4e-aa36-48e7a2f196e4" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer willroad pour 2022 savoir si on continue", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 166248, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-13T12:27:00", + "end": "2022-04-13T12:27:00", + "type": "inactive", + "raw-value": "[2022-04-13 mer. 12:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-03", + "end": "2022-04-03", + "type": "active", + "raw-value": "<2022-04-03 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer willroad pour 2022 savoir si on continue" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgac5d9a6", + "properties": { + "robust-begin": 166305, + "robust-end": 166724, + "post-blank": 1, + "post-affiliated": 166305, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org53c8571", + "drawer": { + "LAST_REPEAT": "[2022-03-29 mar. 18:02]", + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:d1cdb9c2-65a3-46a4-beba-43d4a0d8ad04" + }, + "properties": { + "tags-all": [], + "raw-value": "lecture de flux rss", + "pre-blank": 0, + "robust-begin": 167145, + "robust-end": 167997, + "level": 1, + "priority": null, + "tags": [ + "lecture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 166727, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T21:56:00", + "end": "2022-04-17T21:56:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-16", + "end": "2022-04-16", + "type": "active", + "raw-value": "<2022-04-16 sam. +10d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 10 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lecture de flux rss" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc86ac41", + "properties": { + "robust-begin": 166764, + "robust-end": 167997, + "post-blank": 1, + "post-affiliated": 166764, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgab53f14", + "properties": { + "type": "unordered", + "structure": [ + [ + 167146, + 0, + "- ", + null, + null, + null, + 167209 + ], + [ + 167209, + 0, + "- ", + null, + null, + null, + 167272 + ], + [ + 167272, + 0, + "- ", + null, + null, + null, + 167335 + ], + [ + 167335, + 0, + "- ", + null, + null, + null, + 167398 + ], + [ + 167398, + 0, + "- ", + null, + null, + null, + 167461 + ] + ], + "post-blank": 0, + "post-affiliated": 167146, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9abd2e1", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167146, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc1cafc5", + "properties": { + "post-blank": 0, + "post-affiliated": 167148, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org99fbc17", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 18:02]", + "post-blank": 0, + "start": "2022-03-29T18:02:00", + "end": "2022-03-29T18:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgf029def", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167209, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org13b2fd3", + "properties": { + "post-blank": 0, + "post-affiliated": 167211, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org547169a", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 18:02]", + "post-blank": 0, + "start": "2022-03-29T18:02:00", + "end": "2022-03-29T18:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org217bf59", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167272, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb46b90c", + "properties": { + "post-blank": 0, + "post-affiliated": 167274, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgcd587d6", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-21 lun. 10:02]", + "post-blank": 0, + "start": "2022-03-21T10:02:00", + "end": "2022-03-21T10:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orga9d8149", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167335, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4d522d5", + "properties": { + "post-blank": 0, + "post-affiliated": 167337, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga9c7c20", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-12 sam. 16:35]", + "post-blank": 0, + "start": "2022-03-12T16:35:00", + "end": "2022-03-12T16:35:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org533ce68", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167398, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org85ac6e6", + "properties": { + "post-blank": 0, + "post-affiliated": 167400, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org31bd258", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-07 lun. 19:02]", + "post-blank": 0, + "start": "2022-02-07T19:02:00", + "end": "2022-02-07T19:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org848a23c", + "properties": { + "post-blank": 0, + "post-affiliated": 167461, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7cb0087", + "properties": { + "type": "https", + "path": "//cloud.tykayn.fr/index.php/apps/news/#/items", + "format": "plain", + "raw-link": "https://cloud.tykayn.fr/index.php/apps/news/#/items", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "drawer", + "ref": "org2fbdb88", + "properties": { + "drawer-name": "PROPERTIES", + "post-blank": 1, + "post-affiliated": 167513, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org946bd3a", + "properties": { + "post-blank": 0, + "post-affiliated": 167528, + "mode": null, + "granularity": null + }, + "contents": [ + " :STYLE: habit\n :LAST", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgbf8a389", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "REPEAT" + ] + }, + ": ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5618c27", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-19 mer. 10:39]", + "post-blank": 0, + "start": "2022-01-19T10:39:00", + "end": "2022-01-19T10:39:00" + }, + "contents": [] + }, + "\n:Effort: 30\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgfbb2f3b", + "properties": { + "type": "unordered", + "structure": [ + [ + 167615, + 2, + "- ", + null, + null, + null, + 167680 + ], + [ + 167680, + 2, + "- ", + null, + null, + null, + 167745 + ], + [ + 167745, + 2, + "- ", + null, + null, + null, + 167810 + ], + [ + 167810, + 2, + "- ", + null, + null, + null, + 167875 + ], + [ + 167875, + 2, + "- ", + null, + null, + null, + 167940 + ] + ], + "post-blank": 0, + "post-affiliated": 167615, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgebe2f8b", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167615, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8c233cd", + "properties": { + "post-blank": 0, + "post-affiliated": 167619, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd2153bf", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-19 mer. 10:39]", + "post-blank": 0, + "start": "2022-01-19T10:39:00", + "end": "2022-01-19T10:39:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgaa4d515", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167680, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org11d4749", + "properties": { + "post-blank": 0, + "post-affiliated": 167684, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org4932d32", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-08 sam. 11:28]", + "post-blank": 0, + "start": "2022-01-08T11:28:00", + "end": "2022-01-08T11:28:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org342d726", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167745, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcaec1af", + "properties": { + "post-blank": 0, + "post-affiliated": 167749, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org40d96fa", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-28 mar. 22:55]", + "post-blank": 0, + "start": "2021-12-28T22:55:00", + "end": "2021-12-28T22:55:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org629049f", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167810, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org53ce7c2", + "properties": { + "post-blank": 0, + "post-affiliated": 167814, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org6a1b66a", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-08 mer. 17:43]", + "post-blank": 0, + "start": "2021-12-08T17:43:00", + "end": "2021-12-08T17:43:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org0be9a3e", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 167875, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3f21f8f", + "properties": { + "post-blank": 0, + "post-affiliated": 167879, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2d47d0a", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-19 ven. 12:19]", + "post-blank": 0, + "start": "2021-11-19T12:19:00", + "end": "2021-11-19T12:19:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7b6f207", + "properties": { + "post-blank": 0, + "post-affiliated": 167940, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd6a57f9", + "properties": { + "type": "https", + "path": "//cloud.tykayn.fr/index.php/apps/news/#/items/unread", + "format": "plain", + "raw-link": "https://cloud.tykayn.fr/index.php/apps/news/#/items/unread", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge335d64", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-04-04 lun. 17:34]", + "EFFORT": "10", + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes", + "CUSTOM_ID": "h:450733cc-41eb-4ed8-9407-c4668211fece" + }, + "properties": { + "tags-all": [], + "raw-value": "enlever du bazar du dossier ZFS BAZAR", + "pre-blank": 0, + "robust-begin": 168477, + "robust-end": 169520, + "level": 1, + "priority": null, + "tags": [ + "bureau", + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 168000, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T21:56:00", + "end": "2022-04-17T21:56:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-15", + "end": "2022-04-15", + "type": "active", + "raw-value": "<2022-04-15 ven. +14d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 14 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "enlever du bazar du dossier ZFS BAZAR" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org83f772d", + "properties": { + "robust-begin": 168061, + "robust-end": 169520, + "post-blank": 1, + "post-affiliated": 168061, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org4cd6151", + "properties": { + "type": "unordered", + "structure": [ + [ + 168479, + 2, + "- ", + null, + null, + null, + 168544 + ], + [ + 168544, + 2, + "- ", + null, + null, + null, + 168609 + ], + [ + 168609, + 2, + "- ", + null, + null, + null, + 168674 + ], + [ + 168674, + 2, + "- ", + null, + null, + null, + 168739 + ], + [ + 168739, + 2, + "- ", + null, + null, + null, + 168804 + ], + [ + 168804, + 2, + "- ", + null, + null, + null, + 168869 + ], + [ + 168869, + 2, + "- ", + null, + null, + null, + 168934 + ], + [ + 168934, + 2, + "- ", + null, + null, + null, + 168999 + ], + [ + 168999, + 2, + "- ", + null, + null, + null, + 169064 + ], + [ + 169064, + 2, + "- ", + null, + null, + null, + 169129 + ], + [ + 169129, + 2, + "- ", + null, + null, + null, + 169194 + ], + [ + 169194, + 2, + "- ", + null, + null, + null, + 169259 + ], + [ + 169259, + 2, + "- ", + null, + null, + null, + 169522 + ], + [ + 169324, + 3, + "- ", + null, + null, + null, + 169390 + ], + [ + 169390, + 3, + "- ", + null, + null, + null, + 169456 + ], + [ + 169456, + 3, + "- ", + null, + null, + null, + 169522 + ] + ], + "post-blank": 0, + "post-affiliated": 168479, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org81d6449", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168479, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgef2d81a", + "properties": { + "post-blank": 0, + "post-affiliated": 168483, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org940cf3d", + "properties": { + "type": "inactive", + "raw-value": "[2022-04-04 lun. 17:34]", + "post-blank": 0, + "start": "2022-04-04T17:34:00", + "end": "2022-04-04T17:34:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org4eb1fb9", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168544, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org249a0ed", + "properties": { + "post-blank": 0, + "post-affiliated": 168548, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgcdeac19", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-20 dim. 18:55]", + "post-blank": 0, + "start": "2022-03-20T18:55:00", + "end": "2022-03-20T18:55:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgd1ea9be", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168609, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcfe3cfa", + "properties": { + "post-blank": 0, + "post-affiliated": 168613, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1c16288", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-03 jeu. 10:04]", + "post-blank": 0, + "start": "2022-03-03T10:04:00", + "end": "2022-03-03T10:04:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org1500803", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168674, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1eb53d4", + "properties": { + "post-blank": 0, + "post-affiliated": 168678, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd2ec34e", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-21 lun. 23:08]", + "post-blank": 0, + "start": "2022-02-21T23:08:00", + "end": "2022-02-21T23:08:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9d3cbf5", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168739, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org528bb07", + "properties": { + "post-blank": 0, + "post-affiliated": 168743, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org017e722", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-06 dim. 20:42]", + "post-blank": 0, + "start": "2022-02-06T20:42:00", + "end": "2022-02-06T20:42:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org35cac13", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168804, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga4210f7", + "properties": { + "post-blank": 0, + "post-affiliated": 168808, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org812b836", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-06 dim. 11:08]", + "post-blank": 0, + "start": "2022-02-06T11:08:00", + "end": "2022-02-06T11:08:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org968f6e8", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168869, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org56a092f", + "properties": { + "post-blank": 0, + "post-affiliated": 168873, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2a3c95d", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 13:48]", + "post-blank": 0, + "start": "2022-01-20T13:48:00", + "end": "2022-01-20T13:48:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org8e34c72", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168934, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6412992", + "properties": { + "post-blank": 0, + "post-affiliated": 168938, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2666634", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-14 mar. 20:22]", + "post-blank": 0, + "start": "2021-12-14T20:22:00", + "end": "2021-12-14T20:22:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgd78e494", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 168999, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0102257", + "properties": { + "post-blank": 0, + "post-affiliated": 169003, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org97c456d", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 16:05]", + "post-blank": 0, + "start": "2021-12-10T16:05:00", + "end": "2021-12-10T16:05:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org1d5cab1", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169064, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga66c05a", + "properties": { + "post-blank": 0, + "post-affiliated": 169068, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfd874dc", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-08 mer. 17:56]", + "post-blank": 0, + "start": "2021-12-08T17:56:00", + "end": "2021-12-08T17:56:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org2fb8231", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169129, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb0198c9", + "properties": { + "post-blank": 0, + "post-affiliated": 169133, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgcb526dc", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-12 ven. 16:19]", + "post-blank": 0, + "start": "2021-11-12T16:19:00", + "end": "2021-11-12T16:19:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgfe1dccc", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169194, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgaa507bd", + "properties": { + "post-blank": 0, + "post-affiliated": 169198, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org3ce6222", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:04]", + "post-blank": 0, + "start": "2021-10-28T19:04:00", + "end": "2021-10-28T19:04:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9fd7a92", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169259, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org83c8b9f", + "properties": { + "post-blank": 0, + "post-affiliated": 169263, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgde5def2", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-22 ven. 15:17]", + "post-blank": 0, + "start": "2021-10-22T15:17:00", + "end": "2021-10-22T15:17:00" + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org50ba243", + "properties": { + "type": "unordered", + "structure": [ + [ + 168479, + 2, + "- ", + null, + null, + null, + 168544 + ], + [ + 168544, + 2, + "- ", + null, + null, + null, + 168609 + ], + [ + 168609, + 2, + "- ", + null, + null, + null, + 168674 + ], + [ + 168674, + 2, + "- ", + null, + null, + null, + 168739 + ], + [ + 168739, + 2, + "- ", + null, + null, + null, + 168804 + ], + [ + 168804, + 2, + "- ", + null, + null, + null, + 168869 + ], + [ + 168869, + 2, + "- ", + null, + null, + null, + 168934 + ], + [ + 168934, + 2, + "- ", + null, + null, + null, + 168999 + ], + [ + 168999, + 2, + "- ", + null, + null, + null, + 169064 + ], + [ + 169064, + 2, + "- ", + null, + null, + null, + 169129 + ], + [ + 169129, + 2, + "- ", + null, + null, + null, + 169194 + ], + [ + 169194, + 2, + "- ", + null, + null, + null, + 169259 + ], + [ + 169259, + 2, + "- ", + null, + null, + null, + 169522 + ], + [ + 169324, + 3, + "- ", + null, + null, + null, + 169390 + ], + [ + 169390, + 3, + "- ", + null, + null, + null, + 169456 + ], + [ + 169456, + 3, + "- ", + null, + null, + null, + 169522 + ] + ], + "post-blank": 0, + "post-affiliated": 169324, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org5b15534", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169324, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc2a9ffa", + "properties": { + "post-blank": 0, + "post-affiliated": 169329, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org3f9ac5e", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-21 jeu. 09:37]", + "post-blank": 0, + "start": "2021-10-21T09:37:00", + "end": "2021-10-21T09:37:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org354bbf3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169390, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf1a4f51", + "properties": { + "post-blank": 0, + "post-affiliated": 169395, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org6e62ac2", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-06 mer. 23:05]", + "post-blank": 0, + "start": "2021-10-06T23:05:00", + "end": "2021-10-06T23:05:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org84d6427", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 169456, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0978411", + "properties": { + "post-blank": 0, + "post-affiliated": 169461, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgc73fafa", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-06 mer. 22:59]", + "post-blank": 0, + "start": "2021-10-06T22:59:00", + "end": "2021-10-06T22:59:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1de6538", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-03-25 ven. 22:41]", + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:9ef45688-cef1-48c3-bcec-49a86089ac07" + }, + "properties": { + "tags-all": [], + "raw-value": "animer les comptes de réseaux du collectif CHATONS", + "pre-blank": 0, + "robust-begin": 170004, + "robust-end": 170412, + "level": 1, + "priority": null, + "tags": [ + "chatons", + "habitudes" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 169523, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T21:56:00", + "end": "2022-04-17T21:56:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-17", + "end": "2022-04-17", + "type": "active", + "raw-value": "<2022-04-17 jeu. +7d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 7 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "animer les comptes de réseaux du collectif CHATONS" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgafba01a", + "properties": { + "robust-begin": 169601, + "robust-end": 170412, + "post-blank": 2, + "post-affiliated": 169601, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org6bf074d", + "properties": { + "type": "unordered", + "structure": [ + [ + 170006, + 0, + "- ", + null, + null, + null, + 170069 + ], + [ + 170069, + 0, + "- ", + null, + null, + null, + 170132 + ], + [ + 170132, + 0, + "- ", + null, + null, + null, + 170195 + ], + [ + 170195, + 0, + "- ", + null, + null, + null, + 170258 + ] + ], + "post-blank": 0, + "post-affiliated": 170006, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6a91830", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 170006, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd5d44cf", + "properties": { + "post-blank": 0, + "post-affiliated": 170008, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org49cbfc5", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-25 ven. 22:41]", + "post-blank": 0, + "start": "2022-03-25T22:41:00", + "end": "2022-03-25T22:41:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orge53950b", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 170069, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org31834dc", + "properties": { + "post-blank": 0, + "post-affiliated": 170071, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5277dcd", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-09 mer. 10:15]", + "post-blank": 0, + "start": "2022-02-09T10:15:00", + "end": "2022-02-09T10:15:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org67ca8fc", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 170132, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org68a17f0", + "properties": { + "post-blank": 0, + "post-affiliated": 170134, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org39b9c37", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 11:28]", + "post-blank": 0, + "start": "2022-01-27T11:28:00", + "end": "2022-01-27T11:28:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org013a3ea", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 170195, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9a876a9", + "properties": { + "post-blank": 0, + "post-affiliated": 170197, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org931a1e8", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-20 jeu. 12:44]", + "post-blank": 0, + "start": "2022-01-20T12:44:00", + "end": "2022-01-20T12:44:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org03b89c5", + "properties": { + "post-blank": 1, + "post-affiliated": 170258, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2475a30", + "properties": { + "type": "https", + "path": "//wiki.chatons.org/doku.php/aider/animation_reseaux_sociaux", + "format": "plain", + "raw-link": "https://wiki.chatons.org/doku.php/aider/animation_reseaux_sociaux", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2e25d6b", + "properties": { + "post-blank": 0, + "post-affiliated": 170325, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb392350", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*newsletter chatons", + "application": null, + "search-option": "*newsletter chatons", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "newsletter chatons" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org23d84e2", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/FUB fédé utilisateurs bicyclette", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:600c6d3d-ad8a-456d-a3c7-991fee497ee0" + }, + "properties": { + "tags-all": [], + "raw-value": "cottiz annuelle 2022", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 170416, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-13T12:27:00", + "end": "2022-04-13T12:27:00", + "type": "inactive", + "raw-value": "[2022-04-13 mer. 12:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-13", + "end": "2022-04-13", + "type": "active", + "raw-value": "<2022-04-13 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cottiz annuelle 2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org92358ab", + "properties": { + "robust-begin": 170444, + "robust-end": 170816, + "post-blank": 1, + "post-affiliated": 170444, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0ba0b97", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/CIL de gometz -------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:0eac33ee-cf6a-4a77-bb90-1f95a4c316e7" + }, + "properties": { + "tags-all": [], + "raw-value": "tester dwservice, une version libre pour alternative à team viewer @edu", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "edu", + "cil" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 170819, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-13T12:29:00", + "end": "2022-04-13T12:29:00", + "type": "inactive", + "raw-value": "[2022-04-13 mer. 12:29]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tester dwservice, une version libre pour alternative à team viewer @edu" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga1578d7", + "properties": { + "robust-begin": 170908, + "robust-end": 171253, + "post-blank": 2, + "post-affiliated": 170908, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org636cca0", + "drawer": { + "STYLE:HABIT": "", + "LAST_REPEAT": "[2022-02-11 ven. 10:31]", + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "social", + "CUSTOM_ID": "h:f19e9603-4289-460e-acdb-01eb2ce248a8" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv osm montrouge", + "pre-blank": 0, + "robust-begin": 171709, + "robust-end": 171873, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 171257, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T21:56:00", + "end": "2022-04-17T21:56:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-14T18:00:00", + "end": "2022-04-14T18:00:00", + "type": "active", + "raw-value": "<2022-04-14 jeu. 18:00 +1m>", + "repeater": { + "type": "cumulate", + "unit": "month", + "value": 1 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv osm montrouge" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6a13b6b", + "properties": { + "robust-begin": 171288, + "robust-end": 171873, + "post-blank": 1, + "post-affiliated": 171288, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgc283a4b", + "properties": { + "type": "unordered", + "structure": [ + [ + 171711, + 0, + "- ", + null, + null, + null, + 171774 + ], + [ + 171774, + 0, + "- ", + null, + null, + null, + 171875 + ] + ], + "post-blank": 0, + "post-affiliated": 171711, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org40a5708", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 171711, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2917a80", + "properties": { + "post-blank": 0, + "post-affiliated": 171713, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org76c4676", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-11 ven. 10:31]", + "post-blank": 0, + "start": "2022-02-11T10:31:00", + "end": "2022-02-11T10:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org682c684", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 171774, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org36c9c97", + "properties": { + "post-blank": 0, + "post-affiliated": 171776, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgdcde641", + "properties": { + "type": "inactive", + "raw-value": "[2021-12-10 ven. 10:24]", + "post-blank": 0, + "start": "2021-12-10T10:24:00", + "end": "2021-12-10T10:24:00" + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "italic", + "ref": "orgc3ced40", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1369484", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-09 mar. 12:06]", + "post-blank": 0, + "start": "2021-11-09T12:06:00", + "end": "2021-11-09T12:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org03690bc", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:fcfb3dac-3047-4e73-995e-feff769a5086" + }, + "properties": { + "tags-all": [], + "raw-value": "faire du Vosk sur l'audio du café vie privée de Briis", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 171876, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:14:00", + "end": "2022-04-17T22:14:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire du Vosk sur l'audio du café vie privée de Briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcf87def", + "properties": { + "robust-begin": 171937, + "robust-end": 172280, + "post-blank": 2, + "post-affiliated": 171937, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgffbf163", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:756a301e-699a-451f-b143-85d878eb8070" + }, + "properties": { + "tags-all": [], + "raw-value": "voir https://www.patreon.com/lentiyay", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 172284, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:14:00", + "end": "2022-04-17T22:14:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb5c915d", + "properties": { + "type": "https", + "path": "//www.patreon.com/lentiyay", + "format": "plain", + "raw-link": "https://www.patreon.com/lentiyay", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org220d86d", + "properties": { + "robust-begin": 172329, + "robust-end": 172672, + "post-blank": 2, + "post-affiliated": 172329, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9ac9c71", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:f83706a4-909d-411d-84cb-abce7d01f170" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer une instance glitchsoc", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 172676, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:21:00", + "end": "2022-04-17T22:21:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer une instance glitchsoc" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org330ed1f", + "properties": { + "robust-begin": 172720, + "robust-end": 173041, + "post-blank": 1, + "post-affiliated": 172720, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9595b4d", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu", + "CUSTOM_ID": "h:6b569ed9-efd5-485c-977f-b53b62b1bede" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une démo beamer reveal js en orgmode", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "emacs", + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 173044, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:21:00", + "end": "2022-04-17T22:21:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une démo beamer reveal js en orgmode" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga61701a", + "properties": { + "robust-begin": 173110, + "robust-end": 173470, + "post-blank": 1, + "post-affiliated": 173110, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgff48e6c", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "CUSTOM_ID": "h:8c914a12-6257-4ef4-b696-0d3014a0d1b6" + }, + "properties": { + "tags-all": [], + "raw-value": "ajout d'ids automatiques aux headlines dans les textes org", + "pre-blank": 0, + "robust-begin": 173892, + "robust-end": 173956, + "level": 1, + "priority": null, + "tags": [ + "edu", + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 173473, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:29:00", + "end": "2022-04-17T22:29:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:29]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajout d'ids automatiques aux headlines dans les textes org" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbb7fa1f", + "properties": { + "robust-begin": 173553, + "robust-end": 173956, + "post-blank": 1, + "post-affiliated": 173553, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org032458a", + "properties": { + "post-blank": 0, + "post-affiliated": 173893, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org48fc206", + "properties": { + "type": "https", + "path": "//writequit.org/articles/emacs-org-mode-generate-ids.html", + "format": "plain", + "raw-link": "https://writequit.org/articles/emacs-org-mode-generate-ids.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf6dccdd", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "orgmode", + "CUSTOM_ID": "h:45138f96-40cd-4f24-ba4f-63030dd30a12" + }, + "properties": { + "tags-all": [], + "raw-value": "comment faire un site wiki depuis les textes de orgmode", + "pre-blank": 0, + "robust-begin": 174399, + "robust-end": 174427, + "level": 1, + "priority": null, + "tags": [ + "edu", + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 173959, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:30:00", + "end": "2022-04-17T22:30:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment faire un site wiki depuis les textes de orgmode" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org970db82", + "properties": { + "robust-begin": 174034, + "robust-end": 174427, + "post-blank": 1, + "post-affiliated": 174034, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5b38a69", + "properties": { + "post-blank": 0, + "post-affiliated": 174400, + "mode": null, + "granularity": null + }, + "contents": [ + "publication de pages\nox-hugo\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgde31577", + "drawer": { + "ARCHIVE_TIME": "2022-04-17 dim. 22:30", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "orgmode", + "CUSTOM_ID": "h:28f6f35b-0b41-44fd-ab3c-e567d4b9866a" + }, + "properties": { + "tags-all": [], + "raw-value": "display emacs de la liste de fichiers comme un IDE classique sur un coté permanent", + "pre-blank": 0, + "robust-begin": 174902, + "robust-end": 174938, + "level": 1, + "priority": null, + "tags": [ + "doom", + "emacs", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 174430, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:28:00", + "end": "2022-04-17T22:28:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:28]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "display emacs de la liste de fichiers comme un IDE classique sur un coté permanent" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd62f5b1", + "properties": { + "robust-begin": 174537, + "robust-end": 174938, + "post-blank": 1, + "post-affiliated": 174537, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5b4d566", + "properties": { + "post-blank": 0, + "post-affiliated": 174903, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "italic", + "ref": "org7697884", + "properties": { + "post-blank": 1 + }, + "contents": [ + "Entered on" + ] + }, + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgc0a10d5", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-14 dim. 14:31]", + "post-blank": 0, + "start": "2021-11-14T14:31:00", + "end": "2021-11-14T14:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4b48bdc", + "drawer": { + "CUSTOM_ID": "h:d614443f-1f48-493a-a6f7-d42971013111", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "https://pi-man-nikuzume.fanbox.cc/", + "pre-blank": 0, + "robust-begin": 175283, + "robust-end": 176331, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 174941, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-19T21:29:00", + "end": "2022-04-19T21:29:00", + "type": "inactive", + "raw-value": "[2022-04-19 mar. 21:29]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org377041e", + "properties": { + "type": "https", + "path": "//pi-man-nikuzume.fanbox.cc/", + "format": "plain", + "raw-link": "https://pi-man-nikuzume.fanbox.cc/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga41f818", + "properties": { + "robust-begin": 174983, + "robust-end": 176331, + "post-blank": 3, + "post-affiliated": 174983, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org83c1ce8", + "properties": { + "post-blank": 1, + "post-affiliated": 175285, + "mode": null, + "granularity": null + }, + "contents": [ + "café zéro déchet faire un texte à MH Huze pour installer du linux\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf597dfe", + "properties": { + "post-blank": 1, + "post-affiliated": 175355, + "mode": null, + "granularity": null + }, + "contents": [ + "vacances réf 1488871 vacances bleue\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org37731f0", + "properties": { + "post-blank": 1, + "post-affiliated": 175392, + "mode": null, + "granularity": null + }, + "contents": [ + "goûter école prendre gobelets x100 et boisson\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0697987", + "properties": { + "post-blank": 2, + "post-affiliated": 175439, + "mode": null, + "granularity": null + }, + "contents": [ + "récupèrer le livre xkcd à la librairie Brétigny\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf47015b", + "properties": { + "post-blank": 1, + "post-affiliated": 175489, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga729ba0", + "properties": { + "type": "https", + "path": "//pi-man-nikuzume.fanbox.cc/", + "format": "plain", + "raw-link": "https://pi-man-nikuzume.fanbox.cc/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org33478de", + "properties": { + "post-blank": 2, + "post-affiliated": 175525, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org64c9214", + "properties": { + "type": "https", + "path": "//bibliosud.essonne.fr/search.aspx#/Search/", + "format": "plain", + "raw-link": "https://bibliosud.essonne.fr/search.aspx#/Search/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "(query:(ExceptTotalFacet:!t,ForceSearch:!f,HiddenFacetFilter:%7B%7D,InitialSearch:!f,Page:0,PageRange:3,QueryString:'", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "org4ef2154", + "properties": { + "post-blank": 0 + }, + "contents": [ + ":" + ] + }, + "',ResultSize:15,ScenarioCode:AGENDA", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org5d9179d", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "3,ScenarioDisplayMode" + ] + }, + ":display-standard,SearchContext:14,SearchGridFieldsShownOnResultsDTO:!(),SearchLabel:'", + { + "$$data_type": "org-node", + "type": "bold", + "ref": "org5e9552b", + "properties": { + "post-blank": 0 + }, + "contents": [ + ":" + ] + }, + "',SearchTerms:'',SortField:DateStart", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org52a271f", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "sort,SortOrder" + ] + }, + ":1,TemplateParams:(Scenario:'',Scope:BIBRU,Size:!n,Source:'',Support:'',UseCompact:!f),UseSpellChecking:!n))\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2d8bec8", + "properties": { + "post-blank": 1, + "post-affiliated": 176002, + "mode": null, + "granularity": null + }, + "contents": [ + "briis osm transfo\nUn magnifique PSSA comme c'est marqué sur le coté\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6afb376", + "properties": { + "post-blank": 1, + "post-affiliated": 176071, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga5ef354", + "properties": { + "type": "https", + "path": "//security-list.js.org/#/README", + "format": "plain", + "raw-link": "https://security-list.js.org/#/README", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga17e020", + "properties": { + "post-blank": 1, + "post-affiliated": 176110, + "mode": null, + "granularity": null + }, + "contents": [ + "un Google scholar libre sur mastodon\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc9b740a", + "properties": { + "post-blank": 3, + "post-affiliated": 176148, + "mode": null, + "granularity": null + }, + "contents": [ + "webcomic platform Floss ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6043b2e", + "properties": { + "type": "https", + "path": "//retro.social/@danhunsaker/103365830447845857", + "format": "plain", + "raw-link": "https://retro.social/@danhunsaker/103365830447845857", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1d73839", + "properties": { + "post-blank": 1, + "post-affiliated": 176228, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org343bfa9", + "properties": { + "type": "https", + "path": "//config.mmk2410.org/", + "format": "plain", + "raw-link": "https://config.mmk2410.org/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nscholar.archive.org\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org103697e", + "properties": { + "post-blank": 0, + "post-affiliated": 176277, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgecb0eb9", + "properties": { + "type": "https", + "path": "//config.mmk2410.org/", + "format": "plain", + "raw-link": "https://config.mmk2410.org/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfd6f8f5", + "properties": { + "type": "https", + "path": "//scholar.archive.org", + "format": "plain", + "raw-link": "https://scholar.archive.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga0aab9b", + "drawer": { + "CUSTOM_ID": "h:3c7490f4-1886-4a35-9cf9-2e3ace7998f8", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre à jour les papiers de malt urssaf", + "pre-blank": 0, + "robust-begin": 176684, + "robust-end": 176775, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 176336, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-19T22:13:00", + "end": "2022-04-19T22:13:00", + "type": "inactive", + "raw-value": "[2022-04-19 mar. 22:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre à jour les papiers de malt urssaf" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7689845", + "properties": { + "robust-begin": 176384, + "robust-end": 176775, + "post-blank": 1, + "post-affiliated": 176384, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf295bb4", + "properties": { + "post-blank": 0, + "post-affiliated": 176686, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2188bda", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220126153733-prospects.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220126153733-prospects.org::*Liens", + "application": null, + "search-option": "*Liens", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Liens" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc002901", + "drawer": { + "CUSTOM_ID": "h:6367c903-dd66-4c87-800a-bb578fa55c9c", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Meetings", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "MEETING with Ln climatisation", + "pre-blank": 0, + "robust-begin": 177138, + "robust-end": 177155, + "level": 1, + "priority": null, + "tags": [ + "meeting" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 176778, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-19T22:11:00", + "end": "2022-04-19T22:11:00", + "type": "inactive", + "raw-value": "[2022-04-19 mar. 22:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-19T17:00:00", + "end": "2022-04-19T17:00:00", + "type": "active", + "raw-value": "<2022-04-19 mar. 17:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "MEETING with Ln climatisation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd596df0", + "properties": { + "robust-begin": 176825, + "robust-end": 177155, + "post-blank": 1, + "post-affiliated": 176825, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7ae425f", + "properties": { + "post-blank": 0, + "post-affiliated": 177139, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org925126d", + "properties": { + "type": "active", + "raw-value": "<2022-04-19 mar.>", + "post-blank": 0, + "start": "2022-04-19", + "end": "2022-04-19" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge9e9194", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-03-29 mar. 22:24]", + "EFFORT": "120", + "CUSTOM_ID": "h:7b3d51d8-c96b-401d-942f-2e94d3e0a34a", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes" + }, + "properties": { + "tags-all": [], + "raw-value": "se faire un resto avec Claire", + "pre-blank": 0, + "robust-begin": 177628, + "robust-end": 178381, + "level": 1, + "priority": null, + "tags": [ + "claire", + "social" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 177158, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-19T14:30:00", + "end": "2022-04-19T14:30:00", + "type": "inactive", + "raw-value": "[2022-04-19 mar. 14:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-18", + "end": "2022-04-18", + "type": "active", + "raw-value": "<2022-04-18 lun. +10d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 10 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "se faire un resto avec Claire" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgebdab17", + "properties": { + "robust-begin": 177211, + "robust-end": 178381, + "post-blank": 2, + "post-affiliated": 177211, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org9a579fd", + "properties": { + "type": "unordered", + "structure": [ + [ + 177629, + 3, + "- ", + null, + null, + null, + 177695 + ], + [ + 177695, + 3, + "- ", + null, + null, + null, + 177761 + ], + [ + 177761, + 3, + "- ", + null, + null, + null, + 177861 + ], + [ + 177861, + 3, + "- ", + null, + null, + null, + 177927 + ], + [ + 177927, + 3, + "- ", + null, + null, + null, + 177993 + ], + [ + 177993, + 3, + "- ", + null, + null, + null, + 178059 + ], + [ + 178059, + 3, + "- ", + null, + null, + null, + 178125 + ], + [ + 178125, + 3, + "- ", + null, + null, + null, + 178241 + ] + ], + "post-blank": 0, + "post-affiliated": 177629, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgd61aace", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177629, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org87b69c3", + "properties": { + "post-blank": 0, + "post-affiliated": 177634, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org7972fd1", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 22:24]", + "post-blank": 0, + "start": "2022-03-29T22:24:00", + "end": "2022-03-29T22:24:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org0724a22", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177695, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org24548ce", + "properties": { + "post-blank": 0, + "post-affiliated": 177700, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orged29a52", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-07 lun. 15:22]", + "post-blank": 0, + "start": "2022-03-07T15:22:00", + "end": "2022-03-07T15:22:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org4ab6515", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177761, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org77fe48e", + "properties": { + "post-blank": 0, + "post-affiliated": 177766, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgb1fbfeb", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-21 lun. 23:10]", + "post-blank": 1, + "start": "2022-02-21T23:10:00", + "end": "2022-02-21T23:10:00" + }, + "contents": [] + }, + "La ferme de Voisins le Bretonneux\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgcd5e6c1", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177861, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgac9a27e", + "properties": { + "post-blank": 0, + "post-affiliated": 177866, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org58e16ac", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:16]", + "post-blank": 0, + "start": "2021-11-30T22:16:00", + "end": "2021-11-30T22:16:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org28cb7ed", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177927, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org71f5423", + "properties": { + "post-blank": 0, + "post-affiliated": 177932, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd806128", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-12 ven. 18:38]", + "post-blank": 0, + "start": "2021-11-12T18:38:00", + "end": "2021-11-12T18:38:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgd23662d", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 177993, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org95c26ed", + "properties": { + "post-blank": 0, + "post-affiliated": 177998, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgf11fde7", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:06]", + "post-blank": 0, + "start": "2021-10-28T19:06:00", + "end": "2021-10-28T19:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgecca6bb", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 178059, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org31aa96a", + "properties": { + "post-blank": 0, + "post-affiliated": 178064, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgf31254b", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:31]", + "post-blank": 0, + "start": "2021-10-28T12:31:00", + "end": "2021-10-28T12:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgff79c58", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 178125, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5b2ae1b", + "properties": { + "post-blank": 1, + "post-affiliated": 178130, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org460b634", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-27 lun. 17:22]", + "post-blank": 0, + "start": "2021-10-27T17:22:00", + "end": "2021-10-27T17:22:00" + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga6195c5", + "properties": { + "post-blank": 0, + "post-affiliated": 178191, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbe10305", + "properties": { + "type": "https", + "path": "//cipherbliss.com/ou-manger/index.html", + "format": "plain", + "raw-link": "https://cipherbliss.com/ou-manger/index.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgded1837", + "properties": { + "post-blank": 0, + "post-affiliated": 178241, + "mode": null, + "granularity": null + }, + "contents": [ + "resto avec claire, Foret à Senonches, 1h30 de voiture de briis\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3b7c34c", + "properties": { + "type": "https", + "path": "//duckduckgo.com/?t=ffab&q=la+for%C3%AAt%2C+Senonches&ia=web&iaxm=places", + "format": "plain", + "raw-link": "https://duckduckgo.com/?t=ffab&q=la+for%C3%AAt%2C+Senonches&ia=web&iaxm=places", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0737121", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-01-27 jeu. 10:33]", + "EFFORT": "0:15", + "CUSTOM_ID": "h:499c8b64-bfe1-4565-ab03-0ed005feb3d6", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes" + }, + "properties": { + "tags-all": [], + "raw-value": "vérifier les comptes et reporter sur la feuille pognon", + "pre-blank": 0, + "robust-begin": 178874, + "robust-end": 180238, + "level": 1, + "priority": null, + "tags": [ + "pognon" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 178385, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:52:00", + "end": "2022-04-17T22:52:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-24", + "end": "2022-04-24", + "type": "active", + "raw-value": "<2022-04-24 dim. +20d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 20 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérifier les comptes et reporter sur la feuille pognon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org70707b2", + "properties": { + "robust-begin": 178456, + "robust-end": 180238, + "post-blank": 1, + "post-affiliated": 178456, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgd30779f", + "properties": { + "type": "unordered", + "structure": [ + [ + 178875, + 2, + "- ", + null, + null, + null, + 178940 + ], + [ + 178940, + 2, + "- ", + null, + null, + null, + 179005 + ], + [ + 179005, + 2, + "- ", + null, + null, + null, + 179070 + ], + [ + 179070, + 2, + "- ", + null, + null, + null, + 179135 + ], + [ + 179135, + 2, + "- ", + null, + null, + null, + 179200 + ], + [ + 179200, + 2, + "- ", + null, + null, + null, + 179265 + ], + [ + 179265, + 2, + "- ", + null, + null, + null, + 179330 + ], + [ + 179330, + 2, + "- ", + null, + null, + null, + 179395 + ], + [ + 179395, + 2, + "- ", + null, + null, + null, + 179460 + ], + [ + 179460, + 2, + "- ", + null, + null, + null, + 179525 + ], + [ + 179525, + 2, + "- ", + null, + null, + null, + 179590 + ], + [ + 179590, + 2, + "- ", + null, + null, + null, + 179655 + ], + [ + 179655, + 2, + "- ", + null, + null, + null, + 179720 + ], + [ + 179720, + 2, + "- ", + null, + null, + null, + 179785 + ], + [ + 179785, + 2, + "- ", + null, + null, + null, + 179850 + ], + [ + 179850, + 2, + "- ", + null, + null, + null, + 179915 + ], + [ + 179915, + 2, + "- ", + null, + null, + null, + 179980 + ], + [ + 179980, + 2, + "- ", + null, + null, + null, + 180045 + ], + [ + 180045, + 2, + "- ", + null, + null, + null, + 180110 + ], + [ + 180110, + 2, + "- ", + null, + null, + null, + 180175 + ], + [ + 180175, + 2, + "- ", + null, + null, + null, + 180240 + ] + ], + "post-blank": 0, + "post-affiliated": 178875, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgcbc2d08", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 178875, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org162b613", + "properties": { + "post-blank": 0, + "post-affiliated": 178879, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgad59b0c", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 10:33]", + "post-blank": 0, + "start": "2022-01-27T10:33:00", + "end": "2022-01-27T10:33:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgbeb106a", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 178940, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org380e45c", + "properties": { + "post-blank": 0, + "post-affiliated": 178944, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orge5fcb2c", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-30 mar. 22:16]", + "post-blank": 0, + "start": "2021-11-30T22:16:00", + "end": "2021-11-30T22:16:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org42312c4", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179005, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbbfac72", + "properties": { + "post-blank": 0, + "post-affiliated": 179009, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0df012e", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-19 ven. 12:05]", + "post-blank": 0, + "start": "2021-11-19T12:05:00", + "end": "2021-11-19T12:05:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org3930cbe", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179070, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1fa277e", + "properties": { + "post-blank": 0, + "post-affiliated": 179074, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org8191e80", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:46]", + "post-blank": 0, + "start": "2021-11-07T12:46:00", + "end": "2021-11-07T12:46:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orga60909f", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179135, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org17690ee", + "properties": { + "post-blank": 0, + "post-affiliated": 179139, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org4412702", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-30 mar. 10:44]", + "post-blank": 0, + "start": "2021-11-30T10:44:00", + "end": "2021-11-30T10:44:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgbbed9ba", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179200, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org517952e", + "properties": { + "post-blank": 0, + "post-affiliated": 179204, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org4ad4bba", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-25 jeu. 11:55]", + "post-blank": 0, + "start": "2021-11-25T11:55:00", + "end": "2021-11-25T11:55:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orga0e2f0e", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179265, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7a5c1dc", + "properties": { + "post-blank": 0, + "post-affiliated": 179269, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5d0da76", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-14 dim. 14:28]", + "post-blank": 0, + "start": "2021-11-14T14:28:00", + "end": "2021-11-14T14:28:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org0252e6b", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179330, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4190213", + "properties": { + "post-blank": 0, + "post-affiliated": 179334, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org13183e2", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-09 mar. 16:00]", + "post-blank": 0, + "start": "2021-11-09T16:00:00", + "end": "2021-11-09T16:00:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org956cbea", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179395, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org71ed955", + "properties": { + "post-blank": 0, + "post-affiliated": 179399, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgc3a5c88", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:46]", + "post-blank": 0, + "start": "2021-11-07T12:46:00", + "end": "2021-11-07T12:46:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgf442576", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179460, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1568fe1", + "properties": { + "post-blank": 0, + "post-affiliated": 179464, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org697f0d8", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-07 dim. 12:34]", + "post-blank": 0, + "start": "2021-11-07T12:34:00", + "end": "2021-11-07T12:34:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6e477dd", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179525, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgeec348b", + "properties": { + "post-blank": 0, + "post-affiliated": 179529, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgadb8099", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-02 mar. 10:42]", + "post-blank": 0, + "start": "2021-11-02T10:42:00", + "end": "2021-11-02T10:42:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orge8cbd94", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179590, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7cebcec", + "properties": { + "post-blank": 0, + "post-affiliated": 179594, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org0a682c6", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:08]", + "post-blank": 0, + "start": "2021-10-28T19:08:00", + "end": "2021-10-28T19:08:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org15a0858", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179655, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge299662", + "properties": { + "post-blank": 0, + "post-affiliated": 179659, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org54772f8", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:07]", + "post-blank": 0, + "start": "2021-10-28T19:07:00", + "end": "2021-10-28T19:07:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org9ecbeba", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179720, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2fb64e8", + "properties": { + "post-blank": 0, + "post-affiliated": 179724, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org3aa0c9a", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:07]", + "post-blank": 0, + "start": "2021-10-28T19:07:00", + "end": "2021-10-28T19:07:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgd45c5e3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179785, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4b64a25", + "properties": { + "post-blank": 0, + "post-affiliated": 179789, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org407cfe2", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:06]", + "post-blank": 0, + "start": "2021-10-28T19:06:00", + "end": "2021-10-28T19:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgde6dafe", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179850, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd7b4d0d", + "properties": { + "post-blank": 0, + "post-affiliated": 179854, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org14a1cb9", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 15:14]", + "post-blank": 0, + "start": "2021-10-28T15:14:00", + "end": "2021-10-28T15:14:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org85e0986", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179915, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6aea1a2", + "properties": { + "post-blank": 0, + "post-affiliated": 179919, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2d46768", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:31]", + "post-blank": 0, + "start": "2021-10-28T12:31:00", + "end": "2021-10-28T12:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6cf2b02", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 179980, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5e9ecf6", + "properties": { + "post-blank": 0, + "post-affiliated": 179984, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org477e989", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-25 lun. 17:22]", + "post-blank": 0, + "start": "2021-10-25T17:22:00", + "end": "2021-10-25T17:22:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6f6ad1d", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 180045, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2073286", + "properties": { + "post-blank": 0, + "post-affiliated": 180049, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org80974f9", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-07 jeu. 12:10]", + "post-blank": 0, + "start": "2021-10-07T12:10:00", + "end": "2021-10-07T12:10:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org5607225", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 180110, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgac909d3", + "properties": { + "post-blank": 0, + "post-affiliated": 180114, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org3435a31", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-06 mer. 23:02]", + "post-blank": 0, + "start": "2021-10-06T23:02:00", + "end": "2021-10-06T23:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org3f1e675", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 180175, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4e21559", + "properties": { + "post-blank": 0, + "post-affiliated": 180179, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org93bf525", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-05 mar. 09:51]", + "post-blank": 0, + "start": "2021-10-05T09:51:00", + "end": "2021-10-05T09:51:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3a7286b", + "drawer": { + "CUSTOM_ID": "h:fb88a849-9b5c-4a67-9572-07a779f972d1", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "emmerdes" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un tour à la déchetterie avec la model S , les cartons et les pots de fleur", + "pre-blank": 0, + "robust-begin": 180678, + "robust-end": 180842, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 180241, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:52:00", + "end": "2022-04-17T22:52:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un tour à la déchetterie avec la model S , les cartons et les pots de fleur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org201bbbd", + "properties": { + "robust-begin": 180346, + "robust-end": 180842, + "post-blank": 1, + "post-affiliated": 180346, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbb00011", + "properties": { + "post-blank": 0, + "post-affiliated": 180680, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9794ac4", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*envoyer un courrier recommandé restitution Tesla model S", + "application": null, + "search-option": "*envoyer un courrier recommandé restitution Tesla model S", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "envoyer un courrier recommandé restitution Tesla model S" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga1f95bc", + "drawer": { + "CUSTOM_ID": "h:81d176e6-ce4e-44c9-857d-8a5ce4f254c0", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "ajout lieu OSM repair café forges", + "pre-blank": 0, + "robust-begin": 181248, + "robust-end": 181462, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 180845, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:31:00", + "end": "2022-04-17T22:31:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajout lieu OSM repair café forges" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbebc780", + "properties": { + "robust-begin": 180892, + "robust-end": 181462, + "post-blank": 1, + "post-affiliated": 180892, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5ca3683", + "properties": { + "post-blank": 1, + "post-affiliated": 181249, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org684568e", + "properties": { + "type": "https", + "path": "//wiki.openstreetmap.org/wiki/Item:Q16177", + "format": "plain", + "raw-link": "https://wiki.openstreetmap.org/wiki/Item:Q16177", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgadec1e2", + "properties": { + "post-blank": 0, + "post-affiliated": 181298, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge45cf7f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/boulot.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/boulot.org::*cal: bouton aujourd'hui qui repositionne sur le bon mois", + "application": null, + "search-option": "*cal: bouton aujourd'hui qui repositionne sur le bon mois", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "cal: bouton aujourd'hui qui repositionne sur le bon mois" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5ca63ec", + "drawer": { + "CUSTOM_ID": "h:7299f26a-efe2-4fdc-b98c-da9ef04c015e", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "=> essayer une config Hugin", + "pre-blank": 0, + "robust-begin": 181871, + "robust-end": 181882, + "level": 1, + "priority": null, + "tags": [ + "osm", + "création" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 181465, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:31:00", + "end": "2022-04-17T22:31:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "=> essayer une config Hugin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgee73145", + "properties": { + "robust-begin": 181515, + "robust-end": 181882, + "post-blank": 1, + "post-affiliated": 181515, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4e9934c", + "properties": { + "post-blank": 0, + "post-affiliated": 181872, + "mode": null, + "granularity": null + }, + "contents": [ + "photo 360\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0aed31d", + "drawer": { + "CUSTOM_ID": "h:56dd5e36-df5b-4edf-b1b5-25d9cda3d5d9", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "OSM traduction du wiki à lancer", + "pre-blank": 0, + "robust-begin": 182297, + "robust-end": 182354, + "level": 1, + "priority": null, + "tags": [ + "osm", + "traduction" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 181885, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:48:00", + "end": "2022-04-17T22:48:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "OSM traduction du wiki à lancer" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge3bd6ce", + "properties": { + "robust-begin": 181941, + "robust-end": 182354, + "post-blank": 1, + "post-affiliated": 181941, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1a65b51", + "properties": { + "post-blank": 0, + "post-affiliated": 182298, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5de38fc", + "properties": { + "type": "https", + "path": "//wiki.osmfoundation.org/wiki/Special:Log/newusers", + "format": "plain", + "raw-link": "https://wiki.osmfoundation.org/wiki/Special:Log/newusers", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + ")\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge14fb20", + "drawer": { + "CUSTOM_ID": "h:c81b53b6-e4a1-44b0-9b59-6056ac692887", + "ARCHIVE_TIME": "2022-04-19 mar. 22:14", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Parti pirate", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "lire plusse de wiki du programme du parti pirate", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "lecture", + "partipirate" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 182357, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-17T22:43:00", + "end": "2022-04-17T22:43:00", + "type": "inactive", + "raw-value": "[2022-04-17 dim. 22:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lire plusse de wiki du programme du parti pirate" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb5c8c1c", + "properties": { + "robust-begin": 182435, + "robust-end": 182759, + "post-blank": 1, + "post-affiliated": 182435, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga93f9ba", + "drawer": { + "CUSTOM_ID": "h:d7581fa5-86f5-457f-9def-a9ced37d2f6c", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "tenter de prendre rdv passeport briis", + "pre-blank": 0, + "robust-begin": 183135, + "robust-end": 183187, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 182762, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-10T09:54:00", + "end": "2022-05-10T09:54:00", + "type": "inactive", + "raw-value": "[2022-05-10 mar. 09:54]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-02", + "end": "2022-05-02", + "type": "active", + "raw-value": "<2022-05-02 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tenter de prendre rdv passeport briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9dac953", + "properties": { + "robust-begin": 182807, + "robust-end": 183187, + "post-blank": 2, + "post-affiliated": 182807, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5fa7fdf", + "properties": { + "post-blank": 0, + "post-affiliated": 183136, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5ed1898", + "properties": { + "type": "https", + "path": "//www.rdv360.com/mairie-de-briis-sous-forges", + "format": "plain", + "raw-link": "https://www.rdv360.com/mairie-de-briis-sous-forges", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge81175e", + "drawer": { + "CUSTOM_ID": "h:235b48b0-c521-49d3-9516-52d440115b43", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv retour de tesla samedi 10h", + "pre-blank": 0, + "robust-begin": 183563, + "robust-end": 183696, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 183191, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-24T10:54:00", + "end": "2022-04-24T10:54:00", + "type": "inactive", + "raw-value": "[2022-04-24 dim. 10:54]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-23T10:00:00", + "end": "2022-04-23T10:00:00", + "type": "active", + "raw-value": "<2022-04-23 sam. 10:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv retour de tesla samedi 10h" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgdd044eb", + "properties": { + "robust-begin": 183229, + "robust-end": 183696, + "post-blank": 1, + "post-affiliated": 183229, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9e407d1", + "properties": { + "post-blank": 0, + "post-affiliated": 183565, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7ce56a2", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*Partir en vacances dans la maison du sud", + "application": null, + "search-option": "*Partir en vacances dans la maison du sud", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Partir en vacances dans la maison du sud" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd423072", + "drawer": { + "CUSTOM_ID": "h:8629d33e-2d38-44b1-89e3-68625822a714", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "go en vancances thalmont", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 183699, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:33:00", + "end": "2022-05-11T12:33:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-10T12:00:00", + "end": "2022-05-10T12:00:00", + "type": "active", + "raw-value": "<2022-05-10 mar. 12:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "go en vancances thalmont" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org320c4fd", + "properties": { + "robust-begin": 183731, + "robust-end": 184064, + "post-blank": 1, + "post-affiliated": 183731, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org956b8c6", + "drawer": { + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv avecpetite gousse d'ail, discussion vie privée sur mastodon", + "pre-blank": 0, + "robust-begin": 184419, + "robust-end": 184634, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 184067, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:31:00", + "end": "2022-05-11T12:31:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:31]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-11T14:00:00", + "end": "2022-05-11T14:00:00", + "type": "active", + "raw-value": "<2022-05-11 mer. 14:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv avecpetite gousse d'ail, discussion vie privée sur mastodon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org334d49c", + "properties": { + "robust-begin": 184138, + "robust-end": 184634, + "post-blank": 1, + "post-affiliated": 184138, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgaa9c7b3", + "properties": { + "post-blank": 1, + "post-affiliated": 184420, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org93fb4c8", + "properties": { + "type": "https", + "path": "//bbb.faimaison.net/b/ty--g8l-akf-kcd", + "format": "plain", + "raw-link": "https://bbb.faimaison.net/b/ty--g8l-akf-kcd", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4779dd7", + "properties": { + "post-blank": 0, + "post-affiliated": 184467, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org49748ef", + "properties": { + "type": "id", + "path": "45e0952f-19f3-46dd-9986-b9193f613b84", + "format": "bracket", + "raw-link": "id:45e0952f-19f3-46dd-9986-b9193f613b84", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "moderation", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgb7d9cf3", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "mastodon" + ] + } + ] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgca6a433", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211220441-mastodon_upgrade.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211220441-mastodon_upgrade.org::*en tout", + "application": null, + "search-option": "*en tout", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "en tout" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org45badef", + "drawer": { + "CUSTOM_ID": "h:389aa03f-c070-4726-9d05-0ebfcc7f574c", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Meetings", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "MEETING with la fromagère de briis", + "pre-blank": 0, + "robust-begin": 184997, + "robust-end": 185014, + "level": 1, + "priority": null, + "tags": [ + "meeting" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 184637, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-23T11:08:00", + "end": "2022-04-23T11:08:00", + "type": "inactive", + "raw-value": "[2022-04-23 sam. 11:08]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-04-21", + "end": "2022-04-21", + "type": "active", + "raw-value": "<2022-04-21 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "MEETING with la fromagère de briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcb2f7ed", + "properties": { + "robust-begin": 184689, + "robust-end": 185014, + "post-blank": 1, + "post-affiliated": 184689, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org55f8477", + "properties": { + "post-blank": 0, + "post-affiliated": 184998, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgedb4e45", + "properties": { + "type": "active", + "raw-value": "<2022-04-07 jeu.>", + "post-blank": 0, + "start": "2022-04-07", + "end": "2022-04-07" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1b1b48b", + "drawer": { + "CUSTOM_ID": "h:133511ca-d7d0-4e3b-81c0-a647fa8480b3", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Meetings", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "MEETING with taxi vovo pour Briis", + "pre-blank": 0, + "robust-begin": 185381, + "robust-end": 185398, + "level": 1, + "priority": null, + "tags": [ + "meeting" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 185017, + "closed": { + "$$data_type": "timestamp", + "start": "2022-04-23T11:08:00", + "end": "2022-04-23T11:08:00", + "type": "inactive", + "raw-value": "[2022-04-23 sam. 11:08]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-23T11:00:00", + "end": "2022-04-23T11:00:00", + "type": "active", + "raw-value": "<2022-04-23 sam. 11:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "MEETING with taxi vovo pour Briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd2e7f5a", + "properties": { + "robust-begin": 185068, + "robust-end": 185398, + "post-blank": 1, + "post-affiliated": 185068, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5926366", + "properties": { + "post-blank": 0, + "post-affiliated": 185382, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org3ad0c4e", + "properties": { + "type": "active", + "raw-value": "<2022-04-23 sam.>", + "post-blank": 0, + "start": "2022-04-23", + "end": "2022-04-23" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf68f31d", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-03-14 lun. 10:27]", + "CUSTOM_ID": "h:2a722483-5008-4c0d-912a-ef602f63811b", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "faire des courses drive à commander", + "pre-blank": 0, + "robust-begin": 185843, + "robust-end": 186102, + "level": 1, + "priority": null, + "tags": [ + "achats", + "courses", + "habitudes" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 185401, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:33:00", + "end": "2022-05-11T12:33:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-03", + "end": "2022-05-03", + "type": "active", + "raw-value": "<2022-05-03 mar. +15d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 15 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire des courses drive à commander" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcc3cf76", + "properties": { + "robust-begin": 185471, + "robust-end": 186102, + "post-blank": 2, + "post-affiliated": 185471, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orge80b676", + "properties": { + "type": "unordered", + "structure": [ + [ + 185844, + 2, + "- ", + null, + null, + null, + 185909 + ], + [ + 185909, + 2, + "- ", + null, + null, + null, + 185974 + ], + [ + 185974, + 2, + "- ", + null, + null, + null, + 186039 + ], + [ + 186039, + 2, + "- ", + null, + null, + null, + 186104 + ] + ], + "post-blank": 0, + "post-affiliated": 185844, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org3c1536a", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 185844, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org942e83b", + "properties": { + "post-blank": 0, + "post-affiliated": 185848, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org4b475bb", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:27]", + "post-blank": 0, + "start": "2022-03-14T10:27:00", + "end": "2022-03-14T10:27:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgbbbf0c6", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 185909, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org218d044", + "properties": { + "post-blank": 0, + "post-affiliated": 185913, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org913d3eb", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-10 jeu. 18:31]", + "post-blank": 0, + "start": "2022-03-10T18:31:00", + "end": "2022-03-10T18:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org1807f70", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 185974, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org47a20c5", + "properties": { + "post-blank": 0, + "post-affiliated": 185978, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgc60973d", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-14 lun. 17:58]", + "post-blank": 0, + "start": "2022-02-14T17:58:00", + "end": "2022-02-14T17:58:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org1d380a3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186039, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5bf2f98", + "properties": { + "post-blank": 0, + "post-affiliated": 186043, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5b44b32", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-13 jeu. 10:37]", + "post-blank": 0, + "start": "2022-01-13T10:37:00", + "end": "2022-01-13T10:37:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5a91e15", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-03-29 mar. 22:24]", + "EFFORT": "20", + "CUSTOM_ID": "h:dfff5091-3db8-492a-9b78-8b769cd701a2", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes" + }, + "properties": { + "tags-all": [], + "raw-value": "MAJ mastodon", + "pre-blank": 0, + "robust-begin": 186561, + "robust-end": 187227, + "level": 1, + "priority": null, + "tags": [ + "mastodon", + "orgmode" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 186106, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:33:00", + "end": "2022-05-11T12:33:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-02", + "end": "2022-05-02", + "type": "active", + "raw-value": "<2022-05-02 lun. +20d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 20 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "MAJ mastodon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgec65808", + "properties": { + "robust-begin": 186145, + "robust-end": 187227, + "post-blank": 1, + "post-affiliated": 186145, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org4c78aed", + "properties": { + "type": "unordered", + "structure": [ + [ + 186562, + 3, + "- ", + null, + null, + null, + 186628 + ], + [ + 186628, + 3, + "- ", + null, + null, + null, + 186694 + ] + ], + "post-blank": 0, + "post-affiliated": 186562, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6aa6851", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186562, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdd5f93e", + "properties": { + "post-blank": 0, + "post-affiliated": 186567, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orga59efa1", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 22:24]", + "post-blank": 0, + "start": "2022-03-29T22:24:00", + "end": "2022-03-29T22:24:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org8fa7e9d", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186628, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4f2115d", + "properties": { + "post-blank": 0, + "post-affiliated": 186633, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfdca733", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 22:24]", + "post-blank": 0, + "start": "2022-03-29T22:24:00", + "end": "2022-03-29T22:24:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org335bcc2", + "properties": { + "type": "unordered", + "structure": [ + [ + 186775, + 3, + "- ", + null, + null, + null, + 186841 + ], + [ + 186841, + 3, + "- ", + null, + null, + null, + 186907 + ], + [ + 186907, + 3, + "- ", + null, + null, + null, + 186973 + ], + [ + 186973, + 3, + "- ", + null, + null, + null, + 187039 + ], + [ + 187039, + 3, + "- ", + null, + null, + null, + 187166 + ] + ], + "post-blank": 1, + "post-affiliated": 186775, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org0c2c7c6", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186775, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2d6124c", + "properties": { + "post-blank": 0, + "post-affiliated": 186780, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org4321811", + "properties": { + "type": "inactive", + "raw-value": "[2021-11-19 ven. 12:05]", + "post-blank": 0, + "start": "2021-11-19T12:05:00", + "end": "2021-11-19T12:05:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgded93f5", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186841, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfc916d1", + "properties": { + "post-blank": 0, + "post-affiliated": 186846, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org1afe0fe", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:06]", + "post-blank": 0, + "start": "2021-10-28T19:06:00", + "end": "2021-10-28T19:06:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org5b7ba7d", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186907, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf246764", + "properties": { + "post-blank": 0, + "post-affiliated": 186912, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org7cbc39e", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 19:04]", + "post-blank": 0, + "start": "2021-10-28T19:04:00", + "end": "2021-10-28T19:04:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org90d1517", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 186973, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8d7804c", + "properties": { + "post-blank": 0, + "post-affiliated": 186978, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgdc3b7e7", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-28 jeu. 12:31]", + "post-blank": 0, + "start": "2021-10-28T12:31:00", + "end": "2021-10-28T12:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org5ee56ca", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187039, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0c50a3e", + "properties": { + "post-blank": 1, + "post-affiliated": 187044, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org50eda29", + "properties": { + "type": "inactive", + "raw-value": "[2021-10-22 ven. 15:17]", + "post-blank": 0, + "start": "2021-10-22T15:17:00", + "end": "2021-10-22T15:17:00" + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8f8fa56", + "properties": { + "post-blank": 0, + "post-affiliated": 187106, + "mode": null, + "granularity": null + }, + "contents": [ + "docs\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb8fed95", + "properties": { + "type": "https", + "path": "//docs.joinmastodon.org/admin/install/", + "format": "plain", + "raw-link": "https://docs.joinmastodon.org/admin/install/", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgeaa2fe8", + "properties": { + "post-blank": 0, + "post-affiliated": 187167, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2b4f6df", + "properties": { + "type": "id", + "path": "0deab0ae-266d-4d45-96fe-566677ee71a0", + "format": "bracket", + "raw-link": "id:0deab0ae-266d-4d45-96fe-566677ee71a0", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "mastodon", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org27380c5", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "upgrade" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaa38df1", + "drawer": { + "STYLE": "habit", + "LAST_REPEAT": "[2022-03-29 mar. 22:28]", + "EFFORT": "10", + "CUSTOM_ID": "h:c14c7145-cb9f-4616-87cc-be40510a6db9", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "faire du zéro inbox", + "pre-blank": 0, + "robust-begin": 187662, + "robust-end": 188232, + "level": 1, + "priority": null, + "tags": [ + "inbox", + "habitudes" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 187230, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:34:00", + "end": "2022-05-11T12:34:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-21", + "end": "2022-04-21", + "type": "active", + "raw-value": "<2022-04-21 jeu. +7d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 7 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire du zéro inbox" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2634a4f", + "properties": { + "robust-begin": 187275, + "robust-end": 188232, + "post-blank": 2, + "post-affiliated": 187275, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org334cc63", + "properties": { + "type": "unordered", + "structure": [ + [ + 187663, + 6, + "- ", + null, + null, + null, + 187732 + ], + [ + 187732, + 6, + "- ", + null, + null, + null, + 187801 + ], + [ + 187801, + 6, + "- ", + null, + null, + null, + 187870 + ], + [ + 187870, + 6, + "- ", + null, + null, + null, + 187939 + ], + [ + 187939, + 6, + "- ", + null, + null, + null, + 188008 + ] + ], + "post-blank": 0, + "post-affiliated": 187663, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "orgccfe38f", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187663, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgad69661", + "properties": { + "post-blank": 0, + "post-affiliated": 187671, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgdd54cc9", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 22:28]", + "post-blank": 0, + "start": "2022-03-29T22:28:00", + "end": "2022-03-29T22:28:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org27d7df8", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187732, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd96efce", + "properties": { + "post-blank": 0, + "post-affiliated": 187740, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgb9879a0", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-29 mar. 18:02]", + "post-blank": 0, + "start": "2022-03-29T18:02:00", + "end": "2022-03-29T18:02:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org1de7da6", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187801, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0dac45e", + "properties": { + "post-blank": 0, + "post-affiliated": 187809, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgb49c9e4", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-02 mer. 19:34]", + "post-blank": 0, + "start": "2022-03-02T19:34:00", + "end": "2022-03-02T19:34:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org618c48f", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187870, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga27a3ec", + "properties": { + "post-blank": 0, + "post-affiliated": 187878, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd659fbb", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-11 ven. 10:31]", + "post-blank": 0, + "start": "2022-02-11T10:31:00", + "end": "2022-02-11T10:31:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org202c8e8", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 187939, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdd79a1a", + "properties": { + "post-blank": 0, + "post-affiliated": 187947, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd4cb5d7", + "properties": { + "type": "inactive", + "raw-value": "[2022-02-09 mer. 10:15]", + "post-blank": 0, + "start": "2022-02-09T10:15:00", + "end": "2022-02-09T10:15:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "org5f14bce", + "properties": { + "type": "unordered", + "structure": [ + [ + 188089, + 6, + "- ", + null, + null, + null, + 188234 + ] + ], + "post-blank": 0, + "post-affiliated": 188089, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org6b6b7d5", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 188089, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7641b13", + "properties": { + "post-blank": 1, + "post-affiliated": 188097, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgcec41c9", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-24 lun. 13:56]", + "post-blank": 0, + "start": "2022-01-24T13:56:00", + "end": "2022-01-24T13:56:00" + }, + "contents": [] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org98da0ec", + "properties": { + "post-blank": 0, + "post-affiliated": 188159, + "mode": null, + "granularity": null + }, + "contents": [ + "Avec les affaires d'avocat à suivre c'est un brin relou staffaire.\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc2aa7fc", + "drawer": { + "CUSTOM_ID": "h:3787aa4d-57ea-4f95-905c-8773b2d141bc", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "réserver train pour le SOTM 10 au 12 juin", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "reservation", + "osm", + "sotm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 188236, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-03T14:32:00", + "end": "2022-05-03T14:32:00", + "type": "inactive", + "raw-value": "[2022-05-03 mar. 14:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-21", + "end": "2022-04-21", + "type": "active", + "raw-value": "<2022-04-21 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réserver train pour le SOTM 10 au 12 juin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org85a21d9", + "properties": { + "robust-begin": 188308, + "robust-end": 188691, + "post-blank": 1, + "post-affiliated": 188308, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfe1932a", + "drawer": { + "CUSTOM_ID": "h:4ae794f2-1940-460c-a92e-6c93888e7924", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Parti pirate", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "partipirate" + }, + "properties": { + "tags-all": [], + "raw-value": "cottiz annuelle 2022", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 188694, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:16:00", + "end": "2022-05-11T12:16:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-13", + "end": "2022-04-13", + "type": "active", + "raw-value": "<2022-04-13 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "cottiz annuelle 2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org802e2b0", + "properties": { + "robust-begin": 188722, + "robust-end": 189104, + "post-blank": 1, + "post-affiliated": 188722, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2b4f8e6", + "drawer": { + "CUSTOM_ID": "h:a7c7aac8-3a1a-407e-8854-895d3bfbaa57", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Social ------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "carnets d'adresses à dédupliquer - fait dans thunderbird", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "contacts", + "carnet", + "nextcloud", + "tel", + "social" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 189107, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:21:00", + "end": "2022-05-11T12:21:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "carnets d'adresses à dédupliquer - fait dans thunderbird" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org65d04fd", + "properties": { + "robust-begin": 189210, + "robust-end": 189511, + "post-blank": 1, + "post-affiliated": 189210, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org53b221d", + "drawer": { + "CUSTOM_ID": "h:2b952fa9-f722-4804-a38d-341bdc279cfd", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Vacances ---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "vacances organisation claire" + }, + "properties": { + "tags-all": [], + "raw-value": "Partir en vacances du côté de Nantes", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 189514, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:21:00", + "end": "2022-05-11T12:21:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Partir en vacances du côté de Nantes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org68f4f8c", + "properties": { + "robust-begin": 189558, + "robust-end": 189918, + "post-blank": 1, + "post-affiliated": 189558, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga24f536", + "drawer": { + "EFFORT": "30", + "CUSTOM_ID": "h:6cf6dffb-e2d2-453a-af5c-dee627df4d8b", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une vm virtualbox avec Guix pour tester", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "edu", + "guix" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 189921, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:26:00", + "end": "2022-05-11T12:26:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une vm virtualbox avec Guix pour tester" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6042599", + "properties": { + "robust-begin": 189985, + "robust-end": 190349, + "post-blank": 1, + "post-affiliated": 189985, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org42c8237", + "drawer": { + "CUSTOM_ID": "h:d3f6a78e-0063-47ac-98bc-317cea3e10ce", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Sauvegardes et archives --------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un borg backup du dossier stockage syncable et le mettre dans le NAS dans bidules partagés.", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 190352, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:26:00", + "end": "2022-05-11T12:26:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un borg backup du dossier stockage syncable et le mettre dans le NAS dans bidules partagés." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2a3c00a", + "properties": { + "robust-begin": 190466, + "robust-end": 190774, + "post-blank": 1, + "post-affiliated": 190466, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1bbf105", + "drawer": { + "CUSTOM_ID": "h:2e95469d-7f37-439e-841b-dfb2b0aa0499", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "transcrire le doc complet de Disparaitre de Arte", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "dev", + "vosk" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 190777, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:26:00", + "end": "2022-05-11T12:26:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:26]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "transcrire le doc complet de Disparaitre de Arte" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org69cc274", + "properties": { + "robust-begin": 190844, + "robust-end": 191159, + "post-blank": 1, + "post-affiliated": 190844, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1a3de85", + "drawer": { + "CUSTOM_ID": "h:4fe1b8a6-72f6-4f39-896a-775d9fc07cc6", + "ARCHIVE_TIME": "2022-05-11 mer. 12:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev" + }, + "properties": { + "tags-all": [], + "raw-value": "Import de textes dans [[id:75894e8c-5bed-4e34-9ab9-e59bbfefaa20][orgmode]]", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 191162, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:27:00", + "end": "2022-05-11T12:27:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Import de textes dans ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org681718b", + "properties": { + "type": "id", + "path": "75894e8c-5bed-4e34-9ab9-e59bbfefaa20", + "format": "bracket", + "raw-link": "id:75894e8c-5bed-4e34-9ab9-e59bbfefaa20", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "orgmode" + ] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0d34728", + "properties": { + "robust-begin": 191244, + "robust-end": 191581, + "post-blank": 1, + "post-affiliated": 191244, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfd93cda", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "courrier recommandé la poste pour résilier assurance voiture", + "pre-blank": 0, + "robust-begin": 191899, + "robust-end": 192499, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 191584, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:32:00", + "end": "2022-05-18T13:32:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "courrier recommandé la poste pour résilier assurance voiture" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3f44e6f", + "properties": { + "robust-begin": 191652, + "robust-end": 192499, + "post-blank": 1, + "post-affiliated": 191652, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "quote-block", + "ref": "org1df191a", + "properties": { + "post-blank": 0, + "post-affiliated": 191989, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6c78807", + "properties": { + "post-blank": 1, + "post-affiliated": 192006, + "mode": null, + "granularity": null + }, + "contents": [ + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcf17e84", + "properties": { + "post-blank": 1, + "post-affiliated": 192007, + "mode": null, + "granularity": null + }, + "contents": [ + "Bonjour,\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org59edf7e", + "properties": { + "post-blank": 0, + "post-affiliated": 192020, + "mode": null, + "granularity": null + }, + "contents": [ + "ayant restitué mon véhicule de Leasing (chez GCI Finance Référence CL10232240-v1) auprès de l'entreprise Tesla, la Tesla Model S immatriculée EL-333-AF et au VIN numéro 5YJSA7E23HF181147, je souhaite résilier mon contrat d'assurance auto Pacifica tout risque intégral, au jour du 23 Avril 2022 et être remboursé du trop perçu qui aurait pu être prélevé après cette date.\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5a88859", + "properties": { + "post-blank": 1, + "post-affiliated": 192406, + "mode": null, + "granularity": null + }, + "contents": [ + "22 Quai de la Rapée, 75012 Paris, France,\ncrédit agricole serviuce résiliation\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1c9b78b", + "properties": { + "post-blank": 0, + "post-affiliated": 192486, + "mode": null, + "granularity": null + }, + "contents": [ + "75012 paris\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge6144ef", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "tel pour trouver l'adresse a qui envoyer le recommandé de résiliation", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 192502, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:12:00", + "end": "2022-05-18T13:12:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tel pour trouver l'adresse a qui envoyer le recommandé de résiliation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4271fd4", + "properties": { + "robust-begin": 192579, + "robust-end": 192611, + "post-blank": 1, + "post-affiliated": 192579, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga8fcd97", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "retrouver le numéro de contrat sur un papier", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 192614, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:12:00", + "end": "2022-05-18T13:12:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "retrouver le numéro de contrat sur un papier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgbb61d8d", + "properties": { + "robust-begin": 192666, + "robust-end": 192698, + "post-blank": 0, + "post-affiliated": 192666, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2837876", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "trouver le tel de contact de pacifica 0800050617", + "pre-blank": 0, + "robust-begin": 192790, + "robust-end": 192875, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 192700, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:12:00", + "end": "2022-05-18T13:12:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver le tel de contact de pacifica 0800050617" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org55795d1", + "properties": { + "robust-begin": 192756, + "robust-end": 192875, + "post-blank": 3, + "post-affiliated": 192756, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4d5cc94", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "kdenlive voir comment afficher les miniatures de vidéos et le menu de config non traduit en français. win 10.", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 192880, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:53:00", + "end": "2022-05-18T12:53:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:53]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "kdenlive voir comment afficher les miniatures de vidéos et le menu de config non traduit en français. win 10." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0c1e594", + "properties": { + "robust-begin": 192997, + "robust-end": 193243, + "post-blank": 2, + "post-affiliated": 192997, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4a926d0", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "https://sotm2022.openstreetmap.fr/inscription.html inscription sotm visiteur", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 193247, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:52:00", + "end": "2022-05-18T12:52:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf2c6369", + "properties": { + "type": "https", + "path": "//sotm2022.openstreetmap.fr/inscription.html", + "format": "plain", + "raw-link": "https://sotm2022.openstreetmap.fr/inscription.html", + "application": null, + "search-option": null, + "post-blank": 1, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "inscription sotm visiteur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6c72ce3", + "properties": { + "robust-begin": 193331, + "robust-end": 193577, + "post-blank": 2, + "post-affiliated": 193331, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org018b139", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "recontacte @petitegoussedail interview mastodon privacy", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 193581, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:52:00", + "end": "2022-05-18T12:52:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "recontacte @petitegoussedail interview mastodon privacy" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org64ceac8", + "properties": { + "robust-begin": 193644, + "robust-end": 193890, + "post-blank": 2, + "post-affiliated": 193644, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2dd3570", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "rachat de lunettes de soleil helia, stylet samsung disparus après sortie dans le park à Brétigny. je me souviens avoir eu la paire de lunettes noir accrochée au t short. peut être dans un tiroir du bureau. dans le placard d'helia, ou en haut d'un meuble. niche a coussins ? stylet dans doublure de manteau lainage ?", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 193894, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:52:00", + "end": "2022-05-18T12:52:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rachat de lunettes de soleil helia, stylet samsung disparus après sortie dans le park à Brétigny. je me souviens avoir eu la paire de lunettes noir accrochée au t short. peut être dans un tiroir du bureau. dans le placard d'helia, ou en haut d'un meuble. niche a coussins ? stylet dans doublure de manteau lainage ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org843e991", + "properties": { + "robust-begin": 194217, + "robust-end": 194463, + "post-blank": 2, + "post-affiliated": 194217, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgeb94d59", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer pièces à la compta pour la déclaration de revenus.", + "pre-blank": 0, + "robust-begin": 194780, + "robust-end": 194815, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 194467, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:52:00", + "end": "2022-05-18T12:52:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer pièces à la compta pour la déclaration de revenus." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org352507c", + "properties": { + "robust-begin": 194533, + "robust-end": 194815, + "post-blank": 3, + "post-affiliated": 194533, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd0f90ce", + "properties": { + "post-blank": 0, + "post-affiliated": 194782, + "mode": null, + "granularity": null + }, + "contents": [ + "achat de nom de domaine fromagerie\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1070e52", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "devis pour portail dadoubadoune chez une grande surface", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 194820, + "title": [ + "devis pour portail dadoubadoune chez une grande surface" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7c059b0", + "properties": { + "robust-begin": 194883, + "robust-end": 195095, + "post-blank": 2, + "post-affiliated": 194883, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgda1f438", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "voir wisp guile http://dustycloud.org/blog/wisp-lisp-alternative/ Guix", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 195099, + "title": [ + "voir wisp guile ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgbe9fcea", + "properties": { + "type": "http", + "path": "//dustycloud.org/blog/wisp-lisp-alternative/", + "format": "plain", + "raw-link": "http://dustycloud.org/blog/wisp-lisp-alternative/", + "application": null, + "search-option": null, + "post-blank": 1, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "Guix" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9e18516", + "properties": { + "robust-begin": 195177, + "robust-end": 195389, + "post-blank": 2, + "post-affiliated": 195177, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org77c2640", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer documents a justine pour déclaration revenus", + "pre-blank": 0, + "robust-begin": 195728, + "robust-end": 196110, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 195393, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T16:01:00", + "end": "2022-05-18T16:01:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 16:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-16", + "end": "2022-05-16", + "type": "active", + "raw-value": "<2022-05-16 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer documents a justine pour déclaration revenus" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7aab26c", + "properties": { + "robust-begin": 195453, + "robust-end": 195727, + "post-blank": 0, + "post-affiliated": 195453, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge9390a1", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "donner codes d'accès aux impots", + "pre-blank": 0, + "robust-begin": 195804, + "robust-end": 195890, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 195729, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T15:37:00", + "end": "2022-05-18T15:37:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 15:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "donner codes d'accès aux impots" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org568b654", + "properties": { + "robust-begin": 195769, + "robust-end": 195890, + "post-blank": 0, + "post-affiliated": 195769, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4b22137", + "properties": { + "post-blank": 0, + "post-affiliated": 195804, + "mode": "property-drawer", + "granularity": null + }, + "contents": [ + "Je veux bien à nouveau tes codes d’accès, je n’arrive pas à remettre la main dessus.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9078823", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "Aussi, peux tu m’adresser le relevés d’intérêts et assurance du prêt payées en 2021 s’il te plait?", + "pre-blank": 0, + "robust-begin": 196034, + "robust-end": 196110, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 195892, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T15:52:00", + "end": "2022-05-18T15:52:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 15:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Aussi, peux tu m’adresser le relevés d’intérêts et assurance du prêt payées en 2021 s’il te plait?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgc6a467c", + "properties": { + "robust-begin": 195999, + "robust-end": 196110, + "post-blank": 2, + "post-affiliated": 195999, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org48bdb3f", + "properties": { + "post-blank": 0, + "post-affiliated": 196034, + "mode": "property-drawer", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge165f60", + "properties": { + "type": "id", + "path": "8146ba02-f03f-4143-972d-536b4c8a5f56", + "format": "bracket", + "raw-link": "id:8146ba02-f03f-4143-972d-536b4c8a5f56", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "déclaration", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org825b248", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "de" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgbced7f4", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "revenus" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org813a9ad", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "impots" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org235d58a", + "drawer": { + "CUSTOM_ID": "h:b525f733-1cd3-41f7-8c1b-d424da56ddba", + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "chèque énergie à faire marcher", + "pre-blank": 0, + "robust-begin": 196480, + "robust-end": 196613, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 196114, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-13T11:20:00", + "end": "2022-05-13T11:20:00", + "type": "inactive", + "raw-value": "[2022-05-13 ven. 11:20]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-04-21", + "end": "2022-04-21", + "type": "active", + "raw-value": "<2022-04-21 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "chèque énergie à faire marcher" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org35433a3", + "properties": { + "robust-begin": 196152, + "robust-end": 196613, + "post-blank": 1, + "post-affiliated": 196152, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd8595da", + "properties": { + "post-blank": 0, + "post-affiliated": 196482, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgcb3c8c6", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*Partir en vacances dans la maison du sud", + "application": null, + "search-option": "*Partir en vacances dans la maison du sud", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Partir en vacances dans la maison du sud" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3346fd2", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer derniers relevés de compte bourso et envoyer à Numbr", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 196616, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T15:08:00", + "end": "2022-05-11T15:08:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 15:08]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-11", + "end": "2022-05-11", + "type": "active", + "raw-value": "<2022-05-11 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer derniers relevés de compte bourso et envoyer à Numbr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org285c968", + "properties": { + "robust-begin": 196686, + "robust-end": 196960, + "post-blank": 1, + "post-affiliated": 196686, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga004fdb", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "regarder mémoire du tel samsung si ya les photos de kartaview et mapillary", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 196963, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T11:36:00", + "end": "2022-05-17T11:36:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 11:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "regarder mémoire du tel samsung si ya les photos de kartaview et mapillary" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org699eed7", + "properties": { + "robust-begin": 197045, + "robust-end": 197319, + "post-blank": 1, + "post-affiliated": 197045, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbf5ef87", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer la fromagère par tel pour prendre rdv", + "pre-blank": 0, + "robust-begin": 197651, + "robust-end": 197749, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 197322, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T09:52:00", + "end": "2022-05-17T09:52:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 09:52]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer la fromagère par tel pour prendre rdv" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgac00a76", + "properties": { + "robust-begin": 197376, + "robust-end": 197749, + "post-blank": 1, + "post-affiliated": 197376, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6a193d7", + "properties": { + "post-blank": 0, + "post-affiliated": 197653, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc2ef829", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org:::PROPERTIES:", + "application": null, + "search-option": ":PROPERTIES:", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga17631e", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre rdv avec gens de malt", + "pre-blank": 0, + "robust-begin": 198064, + "robust-end": 198162, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 197752, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-16T09:12:00", + "end": "2022-05-16T09:12:00", + "type": "inactive", + "raw-value": "[2022-05-16 lun. 09:12]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-16", + "end": "2022-05-16", + "type": "active", + "raw-value": "<2022-05-16 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prendre rdv avec gens de malt" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7598466", + "properties": { + "robust-begin": 197789, + "robust-end": 198162, + "post-blank": 1, + "post-affiliated": 197789, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb642945", + "properties": { + "post-blank": 0, + "post-affiliated": 198066, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf1f7d71", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org:::PROPERTIES:", + "application": null, + "search-option": ":PROPERTIES:", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org317eac1", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer la config qui empêche de faire du clocking", + "pre-blank": 0, + "robust-begin": 198506, + "robust-end": 198659, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 198165, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-16T10:06:00", + "end": "2022-05-16T10:06:00", + "type": "inactive", + "raw-value": "[2022-05-16 lun. 10:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-16", + "end": "2022-05-16", + "type": "active", + "raw-value": "<2022-05-16 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réparer la config qui empêche de faire du clocking" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org06cfec8", + "properties": { + "robust-begin": 198231, + "robust-end": 198659, + "post-blank": 1, + "post-affiliated": 198231, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf5ccf11", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "OSM mettre des liens vers les moyens de communication matrix là où y'a besoin", + "pre-blank": 0, + "robust-begin": 198994, + "robust-end": 199191, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 198662, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T09:53:00", + "end": "2022-05-17T09:53:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 09:53]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "OSM mettre des liens vers les moyens de communication matrix là où y'a besoin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6d93645", + "properties": { + "robust-begin": 198747, + "robust-end": 199191, + "post-blank": 1, + "post-affiliated": 198747, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd8a3ad2", + "properties": { + "post-blank": 0, + "post-affiliated": 199084, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1fd1397", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*projet rideaux dans le salon", + "application": null, + "search-option": "*projet rideaux dans le salon", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "projet rideaux dans le salon" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb68d960", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire devis de 13j pour client", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 199194, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-16T16:03:00", + "end": "2022-05-16T16:03:00", + "type": "inactive", + "raw-value": "[2022-05-16 lun. 16:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-16", + "end": "2022-05-16", + "type": "active", + "raw-value": "<2022-05-16 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire devis de 13j pour client" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org56575d1", + "properties": { + "robust-begin": 199232, + "robust-end": 199506, + "post-blank": 1, + "post-affiliated": 199232, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge734788", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire marcher fusion2sphere", + "pre-blank": 0, + "robust-begin": 199797, + "robust-end": 200106, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 199509, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T12:49:00", + "end": "2022-05-18T12:49:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 12:49]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire marcher fusion2sphere" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge106e75", + "properties": { + "robust-begin": 199550, + "robust-end": 200106, + "post-blank": 1, + "post-affiliated": 199550, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb94f6d4", + "properties": { + "post-blank": 1, + "post-affiliated": 199885, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org365f61a", + "properties": { + "type": "id", + "path": "e7989888-6afd-4cc2-b75e-1c746b37fdcc", + "format": "bracket", + "raw-link": "id:e7989888-6afd-4cc2-b75e-1c746b37fdcc", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "capture", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org08a2757", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "360" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgf641489", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "osm" + ] + } + ] + }, + "\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga827dec", + "properties": { + "post-blank": 0, + "post-affiliated": 199949, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga88298b", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220516180932-capture_360_osm.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220516180932-capture_360_osm.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20220516180932-capture", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org1e43df3", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "360" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org88e7410", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "osm.org" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1ea12ae", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "copier les photos du tel oneplus kartaview", + "pre-blank": 0, + "robust-begin": 200406, + "robust-end": 200654, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 200109, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T10:07:00", + "end": "2022-05-17T10:07:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 10:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "copier les photos du tel oneplus kartaview" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6135dea", + "properties": { + "robust-begin": 200159, + "robust-end": 200654, + "post-blank": 1, + "post-affiliated": 200159, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc638a36", + "properties": { + "post-blank": 0, + "post-affiliated": 200495, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2fd2c54", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220516123540-canaux_de_communication_osm.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220516123540-canaux_de_communication_osm.org::*Messageries instantanées libres", + "application": null, + "search-option": "*Messageries instantanées libres", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Messageries instantanées libres" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcabfb9a", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "copier les photos de gopro tour du centre briis", + "pre-blank": 0, + "robust-begin": 200959, + "robust-end": 201208, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 200657, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T10:04:00", + "end": "2022-05-17T10:04:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 10:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "copier les photos de gopro tour du centre briis" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org16f3259", + "properties": { + "robust-begin": 200712, + "robust-end": 201208, + "post-blank": 1, + "post-affiliated": 200712, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8577d62", + "properties": { + "post-blank": 0, + "post-affiliated": 201049, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc29bc9d", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220516123540-canaux_de_communication_osm.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220516123540-canaux_de_communication_osm.org::*Messageries instantanées libres", + "application": null, + "search-option": "*Messageries instantanées libres", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Messageries instantanées libres" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgabcc25e", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un backup du tel samsung s21", + "pre-blank": 0, + "robust-begin": 201528, + "robust-end": 201784, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 201211, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T11:35:00", + "end": "2022-05-17T11:35:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 11:35]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un backup du tel samsung s21" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org262dfc0", + "properties": { + "robust-begin": 201253, + "robust-end": 201784, + "post-blank": 1, + "post-affiliated": 201253, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfe3bd4f", + "properties": { + "post-blank": 0, + "post-affiliated": 201617, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf541b2e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*trouver comment lister les évènements de openeventdatabase", + "application": null, + "search-option": "*trouver comment lister les évènements de openeventdatabase", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "trouver comment lister les évènements de openeventdatabase" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgede9036", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un recommandé pour supprimer assurance tesla model s", + "pre-blank": 0, + "robust-begin": 202128, + "robust-end": 202219, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 201787, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:32:00", + "end": "2022-05-18T13:32:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un recommandé pour supprimer assurance tesla model s" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2e946a4", + "properties": { + "robust-begin": 201853, + "robust-end": 202127, + "post-blank": 0, + "post-affiliated": 201853, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga9e329a", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "trouver l'adresse de pacifica assurance courrier", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 202129, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T13:32:00", + "end": "2022-05-18T13:32:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 13:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver l'adresse de pacifica assurance courrier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd6f8a1a", + "properties": { + "robust-begin": 202186, + "robust-end": 202219, + "post-blank": 2, + "post-affiliated": 202186, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9c52717", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Relances régulières", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "Choix de portail pour la maison avec dadoubadoune", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 202223, + "title": [ + "Choix de portail pour la maison avec dadoubadoune" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga8c60d6", + "properties": { + "robust-begin": 202280, + "robust-end": 202482, + "post-blank": 1, + "post-affiliated": 202280, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org94d86d4", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Relances régulières", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "Claire supprimer une des deux assurances habitation", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 202485, + "title": [ + "Claire supprimer une des deux assurances habitation" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6f5271a", + "properties": { + "robust-begin": 202544, + "robust-end": 202746, + "post-blank": 2, + "post-affiliated": 202544, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org36ed8e8", + "drawer": { + "STYLE": "habit", + "EFFORT": "10", + "LAST_REPEAT": "[2022-03-31 jeu. 19:03]", + "CUSTOM_ID": "h:e94772cc-3bf5-42c9-8cd2-c5ec7392a94c", + "ARCHIVE_TIME": "2022-05-18 mer. 17:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Habitudes", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "habitudes" + }, + "properties": { + "tags-all": [], + "raw-value": "récupérer les reward patreon", + "pre-blank": 0, + "robust-begin": 203202, + "robust-end": 203397, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 202750, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T15:17:00", + "end": "2022-05-11T15:17:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 15:17]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-15", + "end": "2022-07-15", + "type": "active", + "raw-value": "<2022-07-15 ven. +30d>", + "repeater": { + "type": "cumulate", + "unit": "day", + "value": 30 + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "récupérer les reward patreon" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org78935ac", + "properties": { + "robust-begin": 202786, + "robust-end": 203397, + "post-blank": 1, + "post-affiliated": 202786, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "plain-list", + "ref": "orgde1b2f6", + "properties": { + "type": "unordered", + "structure": [ + [ + 203204, + 2, + "- ", + null, + null, + null, + 203269 + ], + [ + 203269, + 2, + "- ", + null, + null, + null, + 203334 + ], + [ + 203334, + 2, + "- ", + null, + null, + null, + 203399 + ] + ], + "post-blank": 0, + "post-affiliated": 203204, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "item", + "ref": "org4063f97", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 203204, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge8c79f2", + "properties": { + "post-blank": 0, + "post-affiliated": 203208, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org2d08b55", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-31 jeu. 19:03]", + "post-blank": 0, + "start": "2022-03-31T19:03:00", + "end": "2022-03-31T19:03:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "orge0609f3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 203269, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc237813", + "properties": { + "post-blank": 0, + "post-affiliated": 203273, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orge4bb9fc", + "properties": { + "type": "inactive", + "raw-value": "[2022-03-14 lun. 10:27]", + "post-blank": 0, + "start": "2022-03-14T10:27:00", + "end": "2022-03-14T10:27:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "item", + "ref": "org04fa8a3", + "properties": { + "bullet": "- ", + "checkbox": null, + "counter": null, + "pre-blank": 0, + "post-blank": 0, + "post-affiliated": 203334, + "tag": [], + "mode": "item", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org275dd1a", + "properties": { + "post-blank": 0, + "post-affiliated": 203338, + "mode": null, + "granularity": null + }, + "contents": [ + "State \"DONE\" from \"TODO\" ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org585d4f9", + "properties": { + "type": "inactive", + "raw-value": "[2022-01-27 jeu. 09:14]", + "post-blank": 0, + "start": "2022-01-27T09:14:00", + "end": "2022-01-27T09:14:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1e4a932", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 22:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "envoi courrier edf", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 203400, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T17:36:00", + "end": "2022-05-18T17:36:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 17:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-18", + "end": "2022-05-18", + "type": "active", + "raw-value": "<2022-05-18 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoi courrier edf" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcfb38b1", + "properties": { + "robust-begin": 203426, + "robust-end": 203700, + "post-blank": 2, + "post-affiliated": 203426, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5bde26a", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 22:00", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "résoudre erreur emacs au refill", + "pre-blank": 0, + "robust-begin": 204018, + "robust-end": 204239, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 203704, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T17:36:00", + "end": "2022-05-18T17:36:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 17:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "résoudre erreur emacs au refill" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0cd57aa", + "properties": { + "robust-begin": 203743, + "robust-end": 204239, + "post-blank": 1, + "post-affiliated": 203743, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge030b68", + "properties": { + "post-blank": 1, + "post-affiliated": 204021, + "mode": null, + "granularity": null + }, + "contents": [ + "org-agenda-archive-with: Symbol’s value as variable is void: org-fold-core-style\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgac7d959", + "properties": { + "post-blank": 0, + "post-affiliated": 204103, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd382323", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*préparer documentation pour l'atelier issy", + "application": null, + "search-option": "*préparer documentation pour l'atelier issy", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "préparer documentation pour l'atelier issy" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgeb41163", + "drawer": { + "ARCHIVE_TIME": "2022-05-18 mer. 22:01", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED faire un compte mastodon pour les législatives 4e circo de lessonne", + "pre-blank": 0, + "robust-begin": 204600, + "robust-end": 204698, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 204242, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-17T09:53:00", + "end": "2022-05-17T09:53:00", + "type": "inactive", + "raw-value": "[2022-05-17 mar. 09:53]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-17", + "end": "2022-05-17", + "type": "active", + "raw-value": "<2022-05-17 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED faire un compte mastodon pour les législatives 4e circo de lessonne" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf8c2b4d", + "properties": { + "robust-begin": 204321, + "robust-end": 204698, + "post-blank": 1, + "post-affiliated": 204321, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3d5f5c5", + "properties": { + "post-blank": 0, + "post-affiliated": 204602, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org81d3dfe", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211200710-index_wiki_tykayn.org:::PROPERTIES:", + "application": null, + "search-option": ":PROPERTIES:", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7cf16c9", + "drawer": { + "CUSTOM_ID": "h:b3d799ba-33ab-41fb-a7c0-e59621e46218", + "ARCHIVE_TIME": "2022-05-18 mer. 22:01", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Illustration Rozenn -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "CANCELED", + "ARCHIVE_ITAGS": "illustration rozenn" + }, + "properties": { + "tags-all": [], + "raw-value": "CANCELED relance du projet illu", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "mail" + ], + "todo-keyword": null, + "todo-type": null, + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 204701, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-11T12:21:00", + "end": "2022-05-11T12:21:00", + "type": "inactive", + "raw-value": "[2022-05-11 mer. 12:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-02", + "end": "2022-05-02", + "type": "active", + "raw-value": "<2022-05-02 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "CANCELED relance du projet illu" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga90caf3", + "properties": { + "robust-begin": 204742, + "robust-end": 205131, + "post-blank": 1, + "post-affiliated": 204742, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2511ef9", + "drawer": { + "ARCHIVE_TIME": "2022-05-20 ven. 11:01", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "qui est 0185640123", + "pre-blank": 0, + "robust-begin": 205441, + "robust-end": 205467, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 205134, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T23:04:00", + "end": "2022-05-18T23:04:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 23:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-21", + "end": "2022-05-21", + "type": "active", + "raw-value": "<2022-05-21 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "qui est 0185640123" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org73d9ece", + "properties": { + "robust-begin": 205166, + "robust-end": 205467, + "post-blank": 1, + "post-affiliated": 205166, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf4972d4", + "properties": { + "post-blank": 0, + "post-affiliated": 205442, + "mode": null, + "granularity": null + }, + "contents": [ + "c'était tesla chambourcy\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc99e8f5", + "drawer": { + "ARCHIVE_TIME": "2022-05-20 ven. 11:01", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "vérifier le compte kraken", + "pre-blank": 0, + "robust-begin": 205730, + "robust-end": 205903, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 205470, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-18T22:01:00", + "end": "2022-05-18T22:01:00", + "type": "inactive", + "raw-value": "[2022-05-18 mer. 22:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérifier le compte kraken" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge456a49", + "properties": { + "robust-begin": 205503, + "robust-end": 205903, + "post-blank": 1, + "post-affiliated": 205503, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga4ec7bb", + "properties": { + "post-blank": 0, + "post-affiliated": 205732, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org742e16e", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::#h:4d44c6f6-120b-4c21-b892-ac802dbae5b0", + "application": null, + "search-option": "#h:4d44c6f6-120b-4c21-b892-ac802dbae5b0", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/tasks.org::#h:4d44c6f6-120b-4c21-b892-ac802dbae5b0" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8d1e85a", + "drawer": { + "ARCHIVE_TIME": "2022-05-23 lun. 11:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "tester keybinder de debian pour faire des raccourcis globaux", + "pre-blank": 0, + "robust-begin": 206212, + "robust-end": 206295, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 5, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 205906, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:21:00", + "end": "2022-05-23T11:21:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tester keybinder de debian pour faire des raccourcis globaux" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org26a538e", + "properties": { + "robust-begin": 205974, + "robust-end": 206295, + "post-blank": 5, + "post-affiliated": 205974, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9a493b9", + "drawer": { + "ARCHIVE_TIME": "2022-05-23 lun. 11:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "test addon firefox css exfil", + "pre-blank": 0, + "robust-begin": 206577, + "robust-end": 206638, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 206302, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-20T12:55:00", + "end": "2022-05-20T12:55:00", + "type": "inactive", + "raw-value": "[2022-05-20 ven. 12:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "test addon firefox css exfil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org39a9f62", + "properties": { + "robust-begin": 206338, + "robust-end": 206638, + "post-blank": 2, + "post-affiliated": 206338, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgdf552c1", + "properties": { + "post-blank": 0, + "post-affiliated": 206578, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgcbed64a", + "properties": { + "type": "https", + "path": "//addons.mozilla.org/firefox/addon/css-exfil-protection", + "format": "plain", + "raw-link": "https://addons.mozilla.org/firefox/addon/css-exfil-protection", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1a95cf3", + "drawer": { + "ARCHIVE_TIME": "2022-05-23 lun. 11:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "verif helia inscrite maison des enfants", + "pre-blank": 0, + "robust-begin": 206956, + "robust-end": 207083, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 206642, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:21:00", + "end": "2022-05-23T11:21:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-08-24", + "end": "2022-08-24", + "type": "active", + "raw-value": "<2022-08-24 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "verif helia inscrite maison des enfants" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2a2b328", + "properties": { + "robust-begin": 206689, + "robust-end": 207083, + "post-blank": 3, + "post-affiliated": 206689, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org88b46c4", + "properties": { + "post-blank": 0, + "post-affiliated": 206957, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgea84640", + "properties": { + "type": "https", + "path": "//portail.berger-levrault.fr/MairieBriisSousForges91640/activites/planning", + "format": "plain", + "raw-link": "https://portail.berger-levrault.fr/MairieBriisSousForges91640/activites/planning", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nyes jusqu'a la fin de lannée scolaire 2022\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0de3d3c", + "drawer": { + "ARCHIVE_TIME": "2022-05-23 lun. 11:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "transférer ses bitcoin vers le compte kraken", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "pognon" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 207088, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:27:00", + "end": "2022-05-23T11:27:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "transférer ses bitcoin vers le compte kraken" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org910c885", + "properties": { + "robust-begin": 207149, + "robust-end": 207386, + "post-blank": 2, + "post-affiliated": 207149, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga33477a", + "drawer": { + "ARCHIVE_TIME": "2022-05-23 lun. 11:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "Dimanche c’est l’après-midi sécurité routière à l’école maternelle", + "pre-blank": 0, + "robust-begin": 207712, + "robust-end": 207789, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 207390, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-22T15:00:00", + "end": "2022-05-22T15:00:00", + "type": "active", + "raw-value": "<2022-05-22 dim. 15:00--16:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Dimanche c’est l’après-midi sécurité routière à l’école maternelle" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcad0200", + "properties": { + "robust-begin": 207464, + "robust-end": 207789, + "post-blank": 1, + "post-affiliated": 207464, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgeefc91a", + "properties": { + "post-blank": 0, + "post-affiliated": 207713, + "mode": null, + "granularity": null + }, + "contents": [ + "\t 14h - 15h pour les GS\n15h - 16h pour les MS\n16h - 17h pour les PS\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2126440", + "drawer": { + "CUSTOM_ID": "h:da3d968f-2643-4ab7-92ab-223080121418", + "ARCHIVE_TIME": "2022-05-23 lun. 12:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------/mastodon", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "mastodon" + }, + "properties": { + "tags-all": [], + "raw-value": "tester la migration vers glitch social localement", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "glitch", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 207792, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:55:00", + "end": "2022-05-23T11:55:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:55]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "tester la migration vers glitch social localement" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org392eb30", + "properties": { + "robust-begin": 207862, + "robust-end": 208206, + "post-blank": 1, + "post-affiliated": 207862, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8e1f1d8", + "drawer": { + "EFFORT": "1:00", + "CUSTOM_ID": "h:1f59f942-8c6e-4b1d-8b1f-8c75e582330f", + "ARCHIVE_TIME": "2022-05-23 lun. 12:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode emacs", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu orgmode" + }, + "properties": { + "tags-all": [], + "raw-value": "custom agenda view avec les next en bas de la journée", + "pre-blank": 0, + "robust-begin": 208660, + "robust-end": 208740, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 208209, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:56:00", + "end": "2022-05-23T11:56:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "custom agenda view avec les next en bas de la journée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org401d44e", + "properties": { + "robust-begin": 208278, + "robust-end": 208740, + "post-blank": 1, + "post-affiliated": 208278, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2fe911d", + "drawer": { + "CUSTOM_ID": "h:5d026720-f008-404a-9391-65af592f6f3e", + "ARCHIVE_TIME": "2022-05-23 lun. 12:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation ---------------------------/emacs et orgmode emacs", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "orgmode" + }, + "properties": { + "tags-all": [], + "raw-value": "comment utiliser les tags pour les fichiers org roam, lister les fichiers avec ce tag ?", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "edu", + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 208743, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-23T11:56:00", + "end": "2022-05-23T11:56:00", + "type": "inactive", + "raw-value": "[2022-05-23 lun. 11:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment utiliser les tags pour les fichiers org roam, lister les fichiers avec ce tag ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4bf3d1a", + "properties": { + "robust-begin": 208850, + "robust-end": 209213, + "post-blank": 1, + "post-affiliated": 208850, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org81050ca", + "drawer": { + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "dire a netna que je poserai bien Hélia le jeudi soir au lieu du Vendredi pour le 9 juin", + "pre-blank": 0, + "robust-begin": 209586, + "robust-end": 209667, + "level": 1, + "priority": null, + "tags": [ + "family" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 209216, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T11:38:00", + "end": "2022-05-25T11:38:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 11:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-24", + "end": "2022-05-24", + "type": "active", + "raw-value": "<2022-05-24 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "dire a netna que je poserai bien Hélia le jeudi soir au lieu du Vendredi pour le 9 juin" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org18bd479", + "properties": { + "robust-begin": 209320, + "robust-end": 209667, + "post-blank": 2, + "post-affiliated": 209320, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orge8bb220", + "drawer": { + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "commander des bowls", + "pre-blank": 0, + "robust-begin": 209964, + "robust-end": 210138, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 209671, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-26T15:06:00", + "end": "2022-05-26T15:06:00", + "type": "inactive", + "raw-value": "[2022-05-26 jeu. 15:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-24", + "end": "2022-05-24", + "type": "active", + "raw-value": "<2022-05-24 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander des bowls" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5de4f60", + "properties": { + "robust-begin": 209698, + "robust-end": 210138, + "post-blank": 1, + "post-affiliated": 209698, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org854ea96", + "properties": { + "post-blank": 0, + "post-affiliated": 210048, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org23e0153", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/config.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/config.org::*Template de capture", + "application": null, + "search-option": "*Template de capture", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Template de capture" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org28deacb", + "drawer": { + "EFFORT": "30", + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------/rdv dourdan mairie pour passeport", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "emmerdes administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "check des papiers nécessaire au rdv pour les passeport", + "pre-blank": 0, + "robust-begin": 210569, + "robust-end": 211001, + "level": 1, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 210141, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-26T10:51:00", + "end": "2022-05-26T10:51:00", + "type": "inactive", + "raw-value": "[2022-05-26 jeu. 10:51]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-26", + "end": "2022-05-26", + "type": "active", + "raw-value": "<2022-05-26 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "check des papiers nécessaire au rdv pour les passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3c3f2b6", + "properties": { + "robust-begin": 210208, + "robust-end": 211001, + "post-blank": 1, + "post-affiliated": 210208, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org89c7a5c", + "properties": { + "post-blank": 0, + "post-affiliated": 210844, + "mode": null, + "granularity": null + }, + "contents": [ + "validité de l'extrait de naissance 3 mois, émis le 10 Mars 2022\ncarte ID périmée\nphoto identité\ntimbre fiscal\njustificatif de domicile\nlivret de famille\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org29c9722", + "drawer": { + "EFFORT": "15", + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif emmerdes" + }, + "properties": { + "tags-all": [], + "raw-value": "recontacter pierre pour trouver des gens qui veulent installer des démo de framadate funky chez framasoft et Didier du chapril", + "pre-blank": 0, + "robust-begin": 211462, + "robust-end": 211609, + "level": 1, + "priority": null, + "tags": [ + "email", + "boulot", + "framadate" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 211004, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T14:27:00", + "end": "2022-05-25T14:27:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 14:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "recontacter pierre pour trouver des gens qui veulent installer des démo de framadate funky chez framasoft et Didier du chapril" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3dd1698", + "properties": { + "robust-begin": 211163, + "robust-end": 211609, + "post-blank": 3, + "post-affiliated": 211163, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcfae675", + "drawer": { + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "osm" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer du pognon a Donat pour la chambre à Nantes pour SOTM2022", + "pre-blank": 0, + "robust-begin": 212030, + "robust-end": 212180, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 211614, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T11:32:00", + "end": "2022-05-25T11:32:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 11:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-23", + "end": "2022-05-23", + "type": "active", + "raw-value": "<2022-05-23 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer du pognon a Donat pour la chambre à Nantes pour SOTM2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8d19c0a", + "properties": { + "robust-begin": 211686, + "robust-end": 212108, + "post-blank": 1, + "post-affiliated": 211686, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org768b3e5", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "trouver le rib de Donat", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 2, + "priority": 65, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 212111, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T11:32:00", + "end": "2022-05-25T11:32:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 11:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver le rib de Donat" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org764f4b1", + "properties": { + "robust-begin": 212148, + "robust-end": 212180, + "post-blank": 1, + "post-affiliated": 212148, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb05148a", + "drawer": { + "ARCHIVE_TIME": "2022-05-26 jeu. 23:35", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Dev ----------------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev" + }, + "properties": { + "tags-all": [], + "raw-value": "restaurer film spectacle de dadou badoune du <2022-05-24 mar.> supprimé par erreur", + "pre-blank": 0, + "robust-begin": 212549, + "robust-end": 212922, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 212183, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T11:37:00", + "end": "2022-05-25T11:37:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 11:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "restaurer film spectacle de dadou badoune du ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org6ac65ee", + "properties": { + "type": "active", + "raw-value": "<2022-05-24 mar.>", + "post-blank": 1, + "start": "2022-05-24", + "end": "2022-05-24" + }, + "contents": [] + }, + "supprimé par erreur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcbe715f", + "properties": { + "robust-begin": 212273, + "robust-end": 212630, + "post-blank": 1, + "post-affiliated": 212273, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0c974da", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "trouver un logiciel de restauration de fichier supprimé", + "pre-blank": 0, + "robust-begin": 212759, + "robust-end": 212922, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 212633, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-25T11:34:00", + "end": "2022-05-25T11:34:00", + "type": "inactive", + "raw-value": "[2022-05-25 mer. 11:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-26", + "end": "2022-05-26", + "type": "active", + "raw-value": "<2022-05-26 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver un logiciel de restauration de fichier supprimé" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf15e7de", + "properties": { + "robust-begin": 212697, + "robust-end": 212922, + "post-blank": 1, + "post-affiliated": 212697, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org22fc85d", + "properties": { + "post-blank": 0, + "post-affiliated": 212841, + "mode": null, + "granularity": null + }, + "contents": [ + "foremost\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfb67775", + "properties": { + "type": "id", + "path": "96750498-df06-4b7e-ba93-881f75c1b0db", + "format": "bracket", + "raw-link": "id:96750498-df06-4b7e-ba93-881f75c1b0db", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "restauration-de-fichiers" + ] + }, + "\n" + ] + } + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1d2bb37", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver gens procuration", + "pre-blank": 0, + "robust-begin": 213195, + "robust-end": 213276, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 212925, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-27T22:10:00", + "end": "2022-05-27T22:10:00", + "type": "inactive", + "raw-value": "[2022-05-27 ven. 22:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver gens procuration" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org960fa81", + "properties": { + "robust-begin": 212957, + "robust-end": 213276, + "post-blank": 2, + "post-affiliated": 212957, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org56b2e5b", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer pour avoir le plan de la rue boissière retapée", + "pre-blank": 0, + "robust-begin": 213609, + "robust-end": 213934, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 213280, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T10:17:00", + "end": "2022-05-30T10:17:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 10:17]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-30", + "end": "2022-05-30", + "type": "active", + "raw-value": "<2022-05-30 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer pour avoir le plan de la rue boissière retapée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeaff11f", + "properties": { + "robust-begin": 213343, + "robust-end": 213934, + "post-blank": 1, + "post-affiliated": 213343, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf9f92b5", + "properties": { + "post-blank": 1, + "post-affiliated": 213758, + "mode": null, + "granularity": null + }, + "contents": [ + "problème avec les abaissements de trottoir\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org90f74fe", + "properties": { + "post-blank": 0, + "post-affiliated": 213803, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge59ce5f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220525142754-passeport.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220525142754-passeport.org::*Comment faire un passeport", + "application": null, + "search-option": "*Comment faire un passeport", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Comment faire un passeport" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org88ef408", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "imprimer la feuille de pré demande de passeport", + "pre-blank": 0, + "robust-begin": 214283, + "robust-end": 214618, + "level": 1, + "priority": null, + "tags": [ + "emmerdes", + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 213937, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T09:59:00", + "end": "2022-05-30T09:59:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 09:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-28", + "end": "2022-05-28", + "type": "active", + "raw-value": "<2022-05-28 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "imprimer la feuille de pré demande de passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga660a0f", + "properties": { + "robust-begin": 214017, + "robust-end": 214618, + "post-blank": 1, + "post-affiliated": 214017, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga801cc8", + "properties": { + "post-blank": 0, + "post-affiliated": 214367, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org8b91ef2", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220525142754-passeport.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220525142754-passeport.org::*reprendre rdv en ligne pour récupérer le passeport un mois après dans une autre mairie", + "application": null, + "search-option": "*reprendre rdv en ligne pour récupérer le passeport un mois après dans une autre mairie", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "reprendre rdv en ligne pour récupérer le passeport un mois après dans une autre mairie" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgac97431", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 11:41", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "réception de famille fontenay", + "pre-blank": 0, + "robust-begin": 214924, + "robust-end": 215128, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 214621, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T10:00:00", + "end": "2022-05-30T10:00:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 10:00]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-29", + "end": "2022-05-29", + "type": "active", + "raw-value": "<2022-05-29 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réception de famille fontenay" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge1ea64f", + "properties": { + "robust-begin": 214658, + "robust-end": 215128, + "post-blank": 1, + "post-affiliated": 214658, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org748c42e", + "properties": { + "post-blank": 0, + "post-affiliated": 215008, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd77a323", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org::*Assmeblée générale", + "application": null, + "search-option": "*Assmeblée générale", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Assmeblée générale" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbd782be", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "répéter les événements avec Alt-x org-clone-subtree-with-time-shift", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 215131, + "title": [ + "répéter les événements avec Alt-x org-clone-subtree-with-time-shift" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6878d77", + "properties": { + "robust-begin": 215206, + "robust-end": 215410, + "post-blank": 1, + "post-affiliated": 215206, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org56b8102", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire des tâches à loguer dans le temps en entête de la page de tâches pour la lecture", + "pre-blank": 0, + "robust-begin": 215745, + "robust-end": 216015, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 215413, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:59:00", + "end": "2022-05-30T11:59:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire des tâches à loguer dans le temps en entête de la page de tâches pour la lecture" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1e02fe1", + "properties": { + "robust-begin": 215507, + "robust-end": 216015, + "post-blank": 1, + "post-affiliated": 215507, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org184f538", + "properties": { + "post-blank": 0, + "post-affiliated": 215893, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb1d80f6", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220524133730-efforts_gaches.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220524133730-efforts_gaches.org::*Oublier le contexte", + "application": null, + "search-option": "*Oublier le contexte", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Oublier le contexte" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgec89a1c", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "proposer de se réunir avec le CIL gometz", + "pre-blank": 0, + "robust-begin": 216312, + "robust-end": 216549, + "level": 1, + "priority": null, + "tags": [ + "email" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 216018, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:59:00", + "end": "2022-05-30T11:59:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:59]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "proposer de se réunir avec le CIL gometz" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga72a08a", + "properties": { + "robust-begin": 216074, + "robust-end": 216549, + "post-blank": 1, + "post-affiliated": 216074, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbbcdaf8", + "properties": { + "post-blank": 0, + "post-affiliated": 216396, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org5166e25", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgfbeebec", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "maison.org" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org38112ea", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre ctrl+T pour créer un nouveau todo", + "pre-blank": 0, + "robust-begin": 216846, + "robust-end": 217050, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 216552, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:47:00", + "end": "2022-05-30T11:47:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre ctrl+T pour créer un nouveau todo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4e54897", + "properties": { + "robust-begin": 216608, + "robust-end": 217050, + "post-blank": 1, + "post-affiliated": 216608, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2002ef9", + "properties": { + "post-blank": 0, + "post-affiliated": 216930, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb632f40", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org::*Assmeblée générale", + "application": null, + "search-option": "*Assmeblée générale", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Assmeblée générale" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0db5a75", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "Faire une note chiffrée avec ma clé GPG", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 217053, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-15T17:30:00", + "end": "2021-12-15T17:30:00", + "type": "inactive", + "raw-value": "[2021-12-15 mer. 17:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2021-12-14", + "end": "2021-12-14", + "type": "active", + "raw-value": "<2021-12-14 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Faire une note chiffrée avec ma clé GPG" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5e2ed48", + "properties": { + "robust-begin": 217100, + "robust-end": 217347, + "post-blank": 2, + "post-affiliated": 217100, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3cbee66", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un export de chaque billet de blog pour les mettre dans le wiki orgroam", + "pre-blank": 0, + "robust-begin": 217667, + "robust-end": 217788, + "level": 1, + "priority": null, + "tags": [ + "blog", + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 217351, + "closed": { + "$$data_type": "timestamp", + "start": "2022-03-29T17:36:00", + "end": "2022-03-29T17:36:00", + "type": "inactive", + "raw-value": "[2022-03-29 mar. 17:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un export de chaque billet de blog pour les mettre dans le wiki orgroam" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org580897b", + "properties": { + "robust-begin": 217447, + "robust-end": 217788, + "post-blank": 1, + "post-affiliated": 217447, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbf8c121", + "properties": { + "post-blank": 0, + "post-affiliated": 217668, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org16ba516", + "properties": { + "type": "id", + "path": "f3c4546c-dd7e-4fe7-85a8-d7f80962e372", + "format": "bracket", + "raw-link": "id:f3c4546c-dd7e-4fe7-85a8-d7f80962e372", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "data", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgc6df33f", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "scraping" + ] + } + ] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org42615b0", + "properties": { + "type": "id", + "path": "f3c4546c-dd7e-4fe7-85a8-d7f80962e372", + "format": "bracket", + "raw-link": "id:f3c4546c-dd7e-4fe7-85a8-d7f80962e372", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "data", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org8b99531", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "scraping" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9126010", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------/faire procuration pour législatives de 2022", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "imprimer papier pour procuration", + "pre-blank": 0, + "robust-begin": 218150, + "robust-end": 218228, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 217791, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:43:00", + "end": "2022-05-30T11:43:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "imprimer papier pour procuration" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8ad0292", + "properties": { + "robust-begin": 217831, + "robust-end": 218228, + "post-blank": 2, + "post-affiliated": 217831, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org38df0ae", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------/faire procuration pour législatives de 2022", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "aller au poste de police de limours pour faire controler ma demande de procuration", + "pre-blank": 0, + "robust-begin": 218641, + "robust-end": 218719, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 218232, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:43:00", + "end": "2022-05-30T11:43:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "aller au poste de police de limours pour faire controler ma demande de procuration" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3aa7ee2", + "properties": { + "robust-begin": 218322, + "robust-end": 218719, + "post-blank": 2, + "post-affiliated": 218322, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc992774", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------/faire du tipage à Heu réka,stupid economics", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif pognon" + }, + "properties": { + "tags-all": [], + "raw-value": "commander une clim", + "pre-blank": 0, + "robust-begin": 219084, + "robust-end": 219162, + "level": 1, + "priority": null, + "tags": [ + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 218723, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T12:07:00", + "end": "2022-05-30T12:07:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 12:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commander une clim" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7942fb2", + "properties": { + "robust-begin": 218758, + "robust-end": 219162, + "post-blank": 2, + "post-affiliated": 218758, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org51d86d9", + "drawer": { + "CUSTOM_ID": "h:a0049b81-e02a-40d5-847b-5da77f193c03", + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness liness---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness" + }, + "properties": { + "tags-all": [], + "raw-value": "changer domiciliation de liness", + "pre-blank": 0, + "robust-begin": 219580, + "robust-end": 219658, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 219166, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:45:00", + "end": "2022-05-30T11:45:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "changer domiciliation de liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1174c8f", + "properties": { + "robust-begin": 219205, + "robust-end": 219658, + "post-blank": 2, + "post-affiliated": 219205, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf4b78ac", + "drawer": { + "CUSTOM_ID": "h:250f450c-ec3e-4b9f-932b-4688e6a712ca", + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness liness---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness" + }, + "properties": { + "tags-all": [], + "raw-value": "liness réunion annuelle:liness:juvisy:", + "pre-blank": 0, + "robust-begin": 220086, + "robust-end": 220164, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 219662, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:45:00", + "end": "2022-05-30T11:45:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "liness réunion annuelle:liness:juvisy:" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3081fad", + "properties": { + "robust-begin": 219708, + "robust-end": 220164, + "post-blank": 2, + "post-affiliated": 219708, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8008c08", + "drawer": { + "ARCHIVE_TIME": "2022-05-30 lun. 14:59", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "trouver la liste des clés sur osm", + "pre-blank": 0, + "robust-begin": 220514, + "robust-end": 220799, + "level": 1, + "priority": null, + "tags": [ + "osm", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 220168, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T12:01:00", + "end": "2022-05-30T12:01:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 12:01]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "trouver la liste des clés sur osm" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0b5830d", + "properties": { + "robust-begin": 220219, + "robust-end": 220799, + "post-blank": 1, + "post-affiliated": 220219, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgfef0f3b", + "properties": { + "post-blank": 0, + "post-affiliated": 220595, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd3f6570", + "properties": { + "type": "id", + "path": "3eb3f5b5-d08b-4f85-9a78-b3d3d426a2a6", + "format": "bracket", + "raw-link": "id:3eb3f5b5-d08b-4f85-9a78-b3d3d426a2a6", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "osm", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org7524656", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "openstreetmap" + ] + } + ] + }, + "\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org68d2591", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20211211225031-osm_openstreetmap.org::*anatomie des étiquettes OSM", + "application": null, + "search-option": "*anatomie des étiquettes OSM", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "anatomie des étiquettes OSM" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org51d1aed", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "fromagère site, form de contact, changer \"contact me\" en Nous contacter", + "pre-blank": 0, + "robust-begin": 221147, + "robust-end": 221294, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 220802, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-02T11:34:00", + "end": "2022-06-02T11:34:00", + "type": "inactive", + "raw-value": "[2022-06-02 jeu. 11:34]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-02", + "end": "2022-06-02", + "type": "active", + "raw-value": "<2022-06-02 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "fromagère site, form de contact, changer \"contact me\" en Nous contacter" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb40794d", + "properties": { + "robust-begin": 220881, + "robust-end": 221294, + "post-blank": 1, + "post-affiliated": 220881, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org615a84e", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "weboob devient woob, test liaison banque", + "pre-blank": 0, + "robust-begin": 221583, + "robust-end": 221664, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 221297, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-01T11:36:00", + "end": "2022-06-01T11:36:00", + "type": "inactive", + "raw-value": "[2022-06-01 mer. 11:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "weboob devient woob, test liaison banque" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org14231ef", + "properties": { + "robust-begin": 221345, + "robust-end": 221664, + "post-blank": 1, + "post-affiliated": 221345, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4db1060", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire photo id", + "pre-blank": 0, + "robust-begin": 221927, + "robust-end": 222008, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 221667, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T12:18:00", + "end": "2022-06-08T12:18:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 12:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire photo id" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org41d828c", + "properties": { + "robust-begin": 221689, + "robust-end": 222008, + "post-blank": 2, + "post-affiliated": 221689, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org293f62a", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "échange de clés GPG avec liness", + "pre-blank": 0, + "robust-begin": 222279, + "robust-end": 222516, + "level": 1, + "priority": null, + "tags": [ + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 222012, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T15:48:00", + "end": "2022-05-30T15:48:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 15:48]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "échange de clés GPG avec liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7b6a626", + "properties": { + "robust-begin": 222060, + "robust-end": 222516, + "post-blank": 1, + "post-affiliated": 222060, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge8d93d8", + "properties": { + "post-blank": 0, + "post-affiliated": 222363, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga907c56", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org260ee76", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "maison.org" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfb6b65e", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "rétablir Deft recherche", + "pre-blank": 0, + "robust-begin": 222769, + "robust-end": 223074, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 222519, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T15:02:00", + "end": "2022-05-30T15:02:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 15:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rétablir Deft recherche" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org1391e20", + "properties": { + "robust-begin": 222550, + "robust-end": 223074, + "post-blank": 1, + "post-affiliated": 222550, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge0c6124", + "properties": { + "post-blank": 0, + "post-affiliated": 222985, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org3da19ac", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*nettoyer gouttieres", + "application": null, + "search-option": "*nettoyer gouttieres", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "nettoyer gouttieres" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfeae7d6", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "faire procuration pour législatives de 2022", + "pre-blank": 0, + "robust-begin": 223431, + "robust-end": 223836, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 223077, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T12:14:00", + "end": "2022-06-08T12:14:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-07", + "end": "2022-06-07", + "type": "active", + "raw-value": "<2022-06-07 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire procuration pour législatives de 2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgecca9dd", + "properties": { + "robust-begin": 223128, + "robust-end": 223645, + "post-blank": 1, + "post-affiliated": 223128, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgd44b3cb", + "properties": { + "post-blank": 0, + "post-affiliated": 223580, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga543a61", + "properties": { + "type": "id", + "path": "8874f400-b495-49d9-b750-e0fbc0a90f3b", + "format": "bracket", + "raw-link": "id:8874f400-b495-49d9-b750-e0fbc0a90f3b", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "procuration", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org2966f87", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "élections" + ] + } + ] + }, + "\n" + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org353c409", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "donner ma carte d'électeur à Eudeline", + "pre-blank": 0, + "robust-begin": 223756, + "robust-end": 223836, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 223648, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T12:14:00", + "end": "2022-06-08T12:14:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 12:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-07", + "end": "2022-06-07", + "type": "active", + "raw-value": "<2022-06-07 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "donner ma carte d'électeur à Eudeline" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf447746", + "properties": { + "robust-begin": 223694, + "robust-end": 223836, + "post-blank": 2, + "post-affiliated": 223694, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org42e7aa2", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "vérif relevés de compte si je dois des sous à Franciliens.net", + "pre-blank": 0, + "robust-begin": 224227, + "robust-end": 224308, + "level": 1, + "priority": null, + "tags": [ + "email", + "pognon" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 223840, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-06T19:08:00", + "end": "2022-06-06T19:08:00", + "type": "inactive", + "raw-value": "[2022-06-06 lun. 19:08]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-12", + "end": "2022-06-12", + "type": "active", + "raw-value": "<2022-06-12 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vérif relevés de compte si je dois des sous à Franciliens.net" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf742c66", + "properties": { + "robust-begin": 223924, + "robust-end": 224308, + "post-blank": 2, + "post-affiliated": 223924, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org94af26e", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Associations ----------------------------/Liness liness---------------------------------/envoyer le pdf à la préfecture, voir avec Didier", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "liness" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un pdf du compte rendu PV de l'AG de liness", + "pre-blank": 0, + "robust-begin": 224741, + "robust-end": 224819, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 224312, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T15:50:00", + "end": "2022-05-30T15:50:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 15:50]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un pdf du compte rendu PV de l'AG de liness" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgabd7323", + "properties": { + "robust-begin": 224369, + "robust-end": 224819, + "post-blank": 2, + "post-affiliated": 224369, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgef83b63", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Achats de trucs -----------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "achats" + }, + "properties": { + "tags-all": [], + "raw-value": "achat télécommande contact impulsion pour le portail", + "pre-blank": 0, + "robust-begin": 225178, + "robust-end": 225259, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 224823, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-31T14:45:00", + "end": "2022-05-31T14:45:00", + "type": "inactive", + "raw-value": "[2022-05-31 mar. 14:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-30", + "end": "2022-05-30", + "type": "active", + "raw-value": "<2022-05-30 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "achat télécommande contact impulsion pour le portail" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org67c5e7a", + "properties": { + "robust-begin": 224883, + "robust-end": 225259, + "post-blank": 2, + "post-affiliated": 224883, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org57895e4", + "drawer": { + "ARCHIVE_TIME": "2022-06-08 mer. 21:57", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Tel", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "PHONE la mairie de dourdan wtf", + "pre-blank": 0, + "robust-begin": 225548, + "robust-end": 225653, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 225263, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-07T21:36:00", + "end": "2022-06-07T21:36:00", + "type": "inactive", + "raw-value": "[2022-06-07 mar. 21:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-07", + "end": "2022-06-07", + "type": "active", + "raw-value": "<2022-06-07 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "PHONE la mairie de dourdan wtf" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org09e8b2e", + "properties": { + "robust-begin": 225307, + "robust-end": 225653, + "post-blank": 1, + "post-affiliated": 225307, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9d13717", + "properties": { + "post-blank": 0, + "post-affiliated": 225631, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org105a814", + "properties": { + "type": "inactive", + "raw-value": "[2022-06-06 lun. 19:07]", + "post-blank": 0, + "start": "2022-06-06T19:07:00", + "end": "2022-06-06T19:07:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3dc4eed", + "drawer": { + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire un compte pour les voix du nucléaire sur mastodon cipherbliss", + "pre-blank": 0, + "robust-begin": 225969, + "robust-end": 226050, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 225656, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T22:06:00", + "end": "2022-06-08T22:06:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 22:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un compte pour les voix du nucléaire sur mastodon cipherbliss" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org08020dc", + "properties": { + "robust-begin": 225731, + "robust-end": 226050, + "post-blank": 2, + "post-affiliated": 225731, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org83f92c4", + "drawer": { + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "préparer affaires d'hélia", + "pre-blank": 0, + "robust-begin": 226353, + "robust-end": 226434, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 226054, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-10T10:43:00", + "end": "2022-06-10T10:43:00", + "type": "inactive", + "raw-value": "[2022-06-10 ven. 10:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-09", + "end": "2022-06-09", + "type": "active", + "raw-value": "<2022-06-09 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "préparer affaires d'hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org19caa29", + "properties": { + "robust-begin": 226087, + "robust-end": 226434, + "post-blank": 2, + "post-affiliated": 226087, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf380815", + "drawer": { + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire ses affaires pour SOTM fr", + "pre-blank": 0, + "robust-begin": 226749, + "robust-end": 226830, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 226438, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-10T10:43:00", + "end": "2022-06-10T10:43:00", + "type": "inactive", + "raw-value": "[2022-06-10 ven. 10:43]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-09", + "end": "2022-06-09", + "type": "active", + "raw-value": "<2022-06-09 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire ses affaires pour SOTM fr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org589858b", + "properties": { + "robust-begin": 226483, + "robust-end": 226830, + "post-blank": 2, + "post-affiliated": 226483, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8b53451", + "drawer": { + "CUSTOM_ID": "h:117e4721-0f17-4598-bf2e-d3ad3ea41e43", + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "déclaration de revenus à compléter sur le site des impots", + "pre-blank": 0, + "robust-begin": 227258, + "robust-end": 227646, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 226834, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-07T21:36:00", + "end": "2022-06-07T21:36:00", + "type": "inactive", + "raw-value": "[2022-06-07 mar. 21:36]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-08", + "end": "2022-06-08", + "type": "active", + "raw-value": "<2022-06-08 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "déclaration de revenus à compléter sur le site des impots" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga98f0e3", + "properties": { + "robust-begin": 226899, + "robust-end": 227646, + "post-blank": 1, + "post-affiliated": 226899, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7f1e08f", + "properties": { + "post-blank": 1, + "post-affiliated": 227409, + "mode": null, + "granularity": null + }, + "contents": [ + "voir le mail de Numbr pour les détails\nreporté dans la fiche pognon\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4daf368", + "properties": { + "post-blank": 0, + "post-affiliated": 227478, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org9eecaeb", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*envoyer pièces à la compta pour la déclaration de revenus.", + "application": null, + "search-option": "*envoyer pièces à la compta pour la déclaration de revenus.", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "envoyer pièces à la compta pour la déclaration de revenus." + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf0f4e89", + "drawer": { + "CUSTOM_ID": "h:8e167093-59c8-4f43-a3a5-6cc705f2629c", + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "rdv dourdan mairie pour passeport", + "pre-blank": 0, + "robust-begin": 228065, + "robust-end": 228182, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 227649, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-17T12:04:00", + "end": "2022-06-17T12:04:00", + "type": "inactive", + "raw-value": "[2022-06-17 ven. 12:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-16", + "end": "2022-06-16", + "type": "active", + "raw-value": "<2022-06-16 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-06-16T11:00:00", + "end": "2022-06-16T11:00:00", + "type": "active", + "raw-value": "<2022-06-16 jeu. 11:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv dourdan mairie pour passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf1191c6", + "properties": { + "robust-begin": 227706, + "robust-end": 228182, + "post-blank": 1, + "post-affiliated": 227706, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org62fcfab", + "properties": { + "post-blank": 0, + "post-affiliated": 228145, + "mode": null, + "granularity": null + }, + "contents": [ + " Esplanade Jean Moulin\n91410 Dourdan\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc7e681d", + "drawer": { + "ARCHIVE_TIME": "2022-06-17 ven. 12:04", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Emmerdes administratif -----------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "administratif" + }, + "properties": { + "tags-all": [], + "raw-value": "passeport : voir si les photos actuelles sont ok", + "pre-blank": 0, + "robust-begin": 228544, + "robust-end": 228625, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 228185, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-06T19:06:00", + "end": "2022-06-06T19:06:00", + "type": "inactive", + "raw-value": "[2022-06-06 lun. 19:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-31", + "end": "2022-05-31", + "type": "active", + "raw-value": "<2022-05-31 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "passeport : voir si les photos actuelles sont ok" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfc3cdcc", + "properties": { + "robust-begin": 228241, + "robust-end": 228625, + "post-blank": 1, + "post-affiliated": 228241, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1831116", + "drawer": { + "ARCHIVE_TIME": "2022-06-23 jeu. 15:46", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "redemander justif mairie de sauchay", + "pre-blank": 0, + "robust-begin": 228925, + "robust-end": 229006, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 228628, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-23T12:09:00", + "end": "2022-06-23T12:09:00", + "type": "inactive", + "raw-value": "[2022-06-23 jeu. 12:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "redemander justif mairie de sauchay" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge0e490a", + "properties": { + "robust-begin": 228687, + "robust-end": 229006, + "post-blank": 2, + "post-affiliated": 228687, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3bc9fdc", + "drawer": { + "ARCHIVE_TIME": "2022-06-23 jeu. 15:46", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "ajout dans tiime dela mention EI \"Nous tenions à vous rappeler que depuis l’entrée en vigueur d’un nouveau décret du 15/05/2022, vous devez désormais ajouter de nouvelles mentions obligatoires dans vos documents et correspondances à usage professionnel (notamment vos factures, devis et RIB)", + "pre-blank": 0, + "robust-begin": 229547, + "robust-end": 229750, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 229010, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-23T12:10:00", + "end": "2022-06-23T12:10:00", + "type": "inactive", + "raw-value": "[2022-06-23 jeu. 12:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajout dans tiime dela mention EI \"Nous tenions à vous rappeler que depuis l’entrée en vigueur d’un nouveau décret du 15/05/2022, vous devez désormais ajouter de nouvelles mentions obligatoires dans vos documents et correspondances à usage professionnel (notamment vos factures, devis et RIB)" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org870b1e1", + "properties": { + "robust-begin": 229309, + "robust-end": 229750, + "post-blank": 2, + "post-affiliated": 229309, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb229698", + "properties": { + "post-blank": 0, + "post-affiliated": 229631, + "mode": null, + "granularity": null + }, + "contents": [ + "Sur ces documents, vous devrez désormais indiquer avant ou après votre nom la mention \"EI\" ou \"Entrepreneur individuel\".\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org22f9b98", + "drawer": { + "ARCHIVE_TIME": "2022-06-23 jeu. 15:46", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "retrouver script de postinstall ubuntu debian", + "pre-blank": 0, + "robust-begin": 230051, + "robust-end": 230132, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 229754, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-23T12:11:00", + "end": "2022-06-23T12:11:00", + "type": "inactive", + "raw-value": "[2022-06-23 jeu. 12:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "retrouver script de postinstall ubuntu debian" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf40be49", + "properties": { + "robust-begin": 229813, + "robust-end": 230132, + "post-blank": 2, + "post-affiliated": 229813, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3201284", + "drawer": { + "ARCHIVE_TIME": "2022-06-23 jeu. 15:46", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "écrire à gometz la demande de créneaux CIL gometz", + "pre-blank": 0, + "robust-begin": 230475, + "robust-end": 230765, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 230136, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-22T22:09:00", + "end": "2022-06-22T22:09:00", + "type": "inactive", + "raw-value": "[2022-06-22 mer. 22:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-21", + "end": "2022-06-21", + "type": "active", + "raw-value": "<2022-06-21 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "écrire à gometz la demande de créneaux CIL gometz" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf67c351", + "properties": { + "robust-begin": 230209, + "robust-end": 230765, + "post-blank": 1, + "post-affiliated": 230209, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb5593db", + "properties": { + "post-blank": 0, + "post-affiliated": 230623, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org6488b1d", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220621103558-gometz.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220621103558-gometz.org::*Message pour créneaux associatifs", + "application": null, + "search-option": "*Message pour créneaux associatifs", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Message pour créneaux associatifs" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1f5864f", + "drawer": { + "ARCHIVE_TIME": "2022-06-23 jeu. 15:46", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "écrire pour le forum des assos de gometz", + "pre-blank": 0, + "robust-begin": 231098, + "robust-end": 231280, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 230768, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-23T15:09:00", + "end": "2022-06-23T15:09:00", + "type": "inactive", + "raw-value": "[2022-06-23 jeu. 15:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-23", + "end": "2022-06-23", + "type": "active", + "raw-value": "<2022-06-23 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "écrire pour le forum des assos de gometz" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org683a83e", + "properties": { + "robust-begin": 230832, + "robust-end": 231280, + "post-blank": 1, + "post-affiliated": 230832, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbaa5c92", + "properties": { + "post-blank": 0, + "post-affiliated": 231182, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgf9a607a", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220617121214-lemonway.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220617121214-lemonway.org::*validation", + "application": null, + "search-option": "*validation", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "validation" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgeb0fb99", + "drawer": { + "CUSTOM_ID": "h:cb8c8a42-8187-41a2-92a0-6684fc08336b", + "ARCHIVE_TIME": "2022-06-27 lun. 09:44", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "exporter ses photos de kartaview dans archives photo", + "pre-blank": 0, + "robust-begin": 231677, + "robust-end": 231918, + "level": 1, + "priority": null, + "tags": [ + "adminsys", + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 231283, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T09:27:00", + "end": "2022-06-27T09:27:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 09:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "exporter ses photos de kartaview dans archives photo" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga759a43", + "properties": { + "robust-begin": 231361, + "robust-end": 231918, + "post-blank": 1, + "post-affiliated": 231361, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org45a7e42", + "properties": { + "post-blank": 0, + "post-affiliated": 231761, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfa28a32", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*refuser création espace santé ameli pour hélia et moi", + "application": null, + "search-option": "*refuser création espace santé ameli pour hélia et moi", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "refuser création espace santé ameli pour hélia et moi" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org97c6222", + "drawer": { + "ARCHIVE_TIME": "2022-06-27 lun. 09:44", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "osm", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "fix le prob de login sur la vm de mobilizon OSM", + "pre-blank": 0, + "robust-begin": 232203, + "robust-end": 232421, + "level": 1, + "priority": null, + "tags": [ + "osm", + "dev", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 231921, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T09:24:00", + "end": "2022-06-27T09:24:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 09:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "fix le prob de login sur la vm de mobilizon OSM" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgda517ba", + "properties": { + "robust-begin": 231990, + "robust-end": 232421, + "post-blank": 1, + "post-affiliated": 231990, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org90ada0d", + "properties": { + "post-blank": 1, + "post-affiliated": 232286, + "mode": null, + "granularity": null + }, + "contents": [ + "ssh tykayn@mobilizon.vm.openstreetmap.fr\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9890f8b", + "properties": { + "post-blank": 0, + "post-affiliated": 232328, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org2bb2197", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/config.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/config.org::*Vue d'agenda Orgmode", + "application": null, + "search-option": "*Vue d'agenda Orgmode", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Vue d'agenda Orgmode" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3937a29", + "drawer": { + "ARCHIVE_TIME": "2022-06-27 lun. 09:44", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "osm/OpenStreetMap -----------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "OSM voir le suivi du projet de mapillary version libre avec Panier Avide", + "pre-blank": 0, + "robust-begin": 232771, + "robust-end": 232849, + "level": 1, + "priority": null, + "tags": [ + "osm", + "edu" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 232424, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T09:22:00", + "end": "2022-06-27T09:22:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 09:22]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "OSM voir le suivi du projet de mapillary version libre avec Panier Avide" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5e64f34", + "properties": { + "robust-begin": 232514, + "robust-end": 232849, + "post-blank": 1, + "post-affiliated": 232514, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3f0cc73", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "redemander justif mairie de sauchay", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 232852, + "title": [ + "redemander justif mairie de sauchay" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4a1b325", + "properties": { + "robust-begin": 232896, + "robust-end": 233100, + "post-blank": 1, + "post-affiliated": 232896, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org32c8705", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "faire photo id", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 233103, + "title": [ + "faire photo id" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org380e005", + "properties": { + "robust-begin": 233125, + "robust-end": 233329, + "post-blank": 1, + "post-affiliated": 233125, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgc50abfc", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "ajout dans tiime dela mention EI \"Nous tenions à vous rappeler que depuis l’entrée en vigueur d’un nouveau décret du 15/05/2022, vous devez désormais ajouter de nouvelles mentions obligatoires dans vos documents et correspondances à usage professionnel (notamment vos factures, devis et RIB)", + "pre-blank": 0, + "robust-begin": 233869, + "robust-end": 234071, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 233332, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T18:58:00", + "end": "2022-06-27T18:58:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 18:58]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajout dans tiime dela mention EI \"Nous tenions à vous rappeler que depuis l’entrée en vigueur d’un nouveau décret du 15/05/2022, vous devez désormais ajouter de nouvelles mentions obligatoires dans vos documents et correspondances à usage professionnel (notamment vos factures, devis et RIB)" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgea26baf", + "properties": { + "robust-begin": 233631, + "robust-end": 234071, + "post-blank": 3, + "post-affiliated": 233631, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1851c13", + "properties": { + "post-blank": 0, + "post-affiliated": 233952, + "mode": null, + "granularity": null + }, + "contents": [ + "Sur ces documents, vous devrez désormais indiquer avant ou après votre nom la mention \"EI\" ou \"Entrepreneur individuel\".\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org45d3cb9", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "réflexion sur la postérité de mes fichiers, test de transmission de backup borg", + "pre-blank": 0, + "robust-begin": 234368, + "robust-end": 234422, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 234076, + "title": [ + "réflexion sur la postérité de mes fichiers, test de transmission de backup borg" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga84abd8", + "properties": { + "robust-begin": 234163, + "robust-end": 234422, + "post-blank": 1, + "post-affiliated": 234163, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge2ce517", + "properties": { + "post-blank": 0, + "post-affiliated": 234369, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org7080ae8", + "properties": { + "type": "id", + "path": "7d26f698-6f44-4aea-8fe3-f3f36041b4ee", + "format": "bracket", + "raw-link": "id:7d26f698-6f44-4aea-8fe3-f3f36041b4ee", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "postérité" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4ee2bf8", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "réflexion sur la postérité de mes fichiers, test de transmission de backup borg", + "pre-blank": 0, + "robust-begin": 234750, + "robust-end": 234886, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 234425, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T11:03:00", + "end": "2022-06-27T11:03:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 11:03]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réflexion sur la postérité de mes fichiers, test de transmission de backup borg" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8d28aa2", + "properties": { + "robust-begin": 234512, + "robust-end": 234886, + "post-blank": 1, + "post-affiliated": 234512, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org23f19e4", + "properties": { + "post-blank": 0, + "post-affiliated": 234833, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1747cef", + "properties": { + "type": "id", + "path": "7d26f698-6f44-4aea-8fe3-f3f36041b4ee", + "format": "bracket", + "raw-link": "id:7d26f698-6f44-4aea-8fe3-f3f36041b4ee", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "postérité" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0790689", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "demander essai avec un autre email pour mon compte freelance republik", + "pre-blank": 0, + "robust-begin": 235232, + "robust-end": 235313, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 234889, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-28T14:44:00", + "end": "2022-06-28T14:44:00", + "type": "inactive", + "raw-value": "[2022-06-28 mar. 14:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-28", + "end": "2022-06-28", + "type": "active", + "raw-value": "<2022-06-28 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "demander essai avec un autre email pour mon compte freelance republik" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgafbf501", + "properties": { + "robust-begin": 234966, + "robust-end": 235313, + "post-blank": 2, + "post-affiliated": 234966, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org084c8cd", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "call Mr Store pour installer pergola", + "pre-blank": 0, + "robust-begin": 235627, + "robust-end": 235725, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 235317, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-30T09:02:00", + "end": "2022-06-30T09:02:00", + "type": "inactive", + "raw-value": "[2022-06-30 jeu. 09:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-29", + "end": "2022-06-29", + "type": "active", + "raw-value": "<2022-06-29 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "call Mr Store pour installer pergola" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6758529", + "properties": { + "robust-begin": 235361, + "robust-end": 235725, + "post-blank": 1, + "post-affiliated": 235361, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org79f5f5c", + "properties": { + "post-blank": 0, + "post-affiliated": 235710, + "mode": null, + "granularity": null + }, + "contents": [ + "contact stéphane\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org991d745", + "drawer": { + "EFFORT": "0:15", + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Administration système ---------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "adminsys" + }, + "properties": { + "tags-all": [], + "raw-value": "maj mobilizon du chapril", + "pre-blank": 0, + "robust-begin": 236098, + "robust-end": 236419, + "level": 1, + "priority": 66, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 235728, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-28T18:10:00", + "end": "2022-06-28T18:10:00", + "type": "inactive", + "raw-value": "[2022-06-28 mar. 18:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-05-30", + "end": "2022-05-30", + "type": "active", + "raw-value": "<2022-05-30 lun.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "maj mobilizon du chapril" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6570ac8", + "properties": { + "robust-begin": 235765, + "robust-end": 236419, + "post-blank": 2, + "post-affiliated": 235765, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf85bbc6", + "properties": { + "post-blank": 0, + "post-affiliated": 236248, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgfc17b1f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::#h:3ad068fe-7d87-4337-a08a-c618219ad00e", + "application": null, + "search-option": "#h:3ad068fe-7d87-4337-a08a-c618219ad00e", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/tasks.org::#h:3ad068fe-7d87-4337-a08a-c618219ad00e" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org3ed0def", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "installer weboob pour consulter les comptes dans", + "pre-blank": 0, + "robust-begin": 236720, + "robust-end": 236957, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 236423, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T09:44:00", + "end": "2022-06-27T09:44:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 09:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "installer weboob pour consulter les comptes dans" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgebddd20", + "properties": { + "robust-begin": 236487, + "robust-end": 236957, + "post-blank": 1, + "post-affiliated": 236487, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org5252ffc", + "properties": { + "post-blank": 0, + "post-affiliated": 236804, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org78161d2", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage_maison.org", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/org-roam/20220525110750-menage", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org3bcb39f", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "maison.org" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf3572bb", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 09:27", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer de faire marcher org-babel pour publier sa config emacs", + "pre-blank": 0, + "robust-begin": 237272, + "robust-end": 237422, + "level": 1, + "priority": null, + "tags": [ + "emacs" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 236960, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T09:44:00", + "end": "2022-06-27T09:44:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 09:44]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer de faire marcher org-babel pour publier sa config emacs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org49ec8c0", + "properties": { + "robust-begin": 237039, + "robust-end": 237422, + "post-blank": 1, + "post-affiliated": 237039, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org268565b", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 11:19", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre les dates de maison des enfants a hélia", + "pre-blank": 0, + "robust-begin": 237745, + "robust-end": 237892, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 237425, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-30T09:38:00", + "end": "2022-06-30T09:38:00", + "type": "inactive", + "raw-value": "[2022-06-30 jeu. 09:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-29", + "end": "2022-06-29", + "type": "active", + "raw-value": "<2022-06-29 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre les dates de maison des enfants a hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd88e92c", + "properties": { + "robust-begin": 237479, + "robust-end": 237892, + "post-blank": 1, + "post-affiliated": 237479, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org678e5b2", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 11:19", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer facture à Freelance républik", + "pre-blank": 0, + "robust-begin": 238196, + "robust-end": 238424, + "level": 1, + "priority": null, + "tags": [ + "boulot" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 237895, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-30T09:40:00", + "end": "2022-06-30T09:40:00", + "type": "inactive", + "raw-value": "[2022-06-30 jeu. 09:40]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-06-29", + "end": "2022-06-29", + "type": "active", + "raw-value": "<2022-06-29 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer facture à Freelance républik" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8fa6c0d", + "properties": { + "robust-begin": 237948, + "robust-end": 238424, + "post-blank": 2, + "post-affiliated": 237948, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9261f81", + "properties": { + "post-blank": 1, + "post-affiliated": 238279, + "mode": null, + "granularity": null + }, + "contents": [ + "Anne-Marie LAO\nBusiness Developer @FreelanceRepublik\ncomptabilite@freelancerepublik.com\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org99756fa", + "properties": { + "post-blank": 0, + "post-affiliated": 238368, + "mode": null, + "granularity": null + }, + "contents": [ + "Mob : +33645703204\n16 rue Trézel - 92300 Levallois-Perret\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org541fbea", + "drawer": { + "ARCHIVE_TIME": "2022-06-30 jeu. 11:19", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "enlever le lien d'origine lors de la capture d'une tâche", + "pre-blank": 0, + "robust-begin": 238711, + "robust-end": 238800, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 238428, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:58:00", + "end": "2022-05-30T11:58:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:58]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "enlever le lien d'origine lors de la capture d'une tâche" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgda21477", + "properties": { + "robust-begin": 238492, + "robust-end": 238800, + "post-blank": 1, + "post-affiliated": 238492, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc3b93d0", + "properties": { + "post-blank": 0, + "post-affiliated": 238713, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgb20feb8", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::*ajouter git gutter", + "application": null, + "search-option": "*ajouter git gutter", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "ajouter git gutter" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbf4ca22", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "relancer la mairie de gometz pour les accès à la page de l'asso du cil", + "pre-blank": 0, + "robust-begin": 239160, + "robust-end": 239269, + "level": 1, + "priority": null, + "tags": [ + "cil", + "email" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 238803, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-01T11:37:00", + "end": "2022-07-01T11:37:00", + "type": "inactive", + "raw-value": "[2022-07-01 ven. 11:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-06-30", + "end": "2022-06-30", + "type": "active", + "raw-value": "<2022-06-30 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "relancer la mairie de gometz pour les accès à la page de l'asso du cil" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org294f02c", + "properties": { + "robust-begin": 238893, + "robust-end": 239269, + "post-blank": 1, + "post-affiliated": 238893, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf5d082d", + "properties": { + "post-blank": 0, + "post-affiliated": 239244, + "mode": null, + "granularity": null + }, + "contents": [ + "accueil@gometzlechatel.fr\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2b2b2cb", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "répondre a ophélie", + "pre-blank": 0, + "robust-begin": 239580, + "robust-end": 239754, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 239272, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-06T11:23:00", + "end": "2022-07-06T11:23:00", + "type": "inactive", + "raw-value": "[2022-07-06 mer. 11:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-01", + "end": "2022-07-01", + "type": "active", + "raw-value": "<2022-07-01 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "répondre a ophélie" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org82f98e0", + "properties": { + "robust-begin": 239314, + "robust-end": 239754, + "post-blank": 1, + "post-affiliated": 239314, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgf98ecea", + "properties": { + "post-blank": 0, + "post-affiliated": 239664, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1443c4f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/reunions.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/reunions.org::*Prochaines actions", + "application": null, + "search-option": "*Prochaines actions", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Prochaines actions" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6611fe8", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "réparer nextcloud", + "pre-blank": 0, + "robust-begin": 240048, + "robust-end": 240194, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 239757, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-01T11:33:00", + "end": "2022-07-01T11:33:00", + "type": "inactive", + "raw-value": "[2022-07-01 ven. 11:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-06-28", + "end": "2022-06-28", + "type": "active", + "raw-value": "<2022-06-28 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "réparer nextcloud" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org312fb8b", + "properties": { + "robust-begin": 239782, + "robust-end": 240194, + "post-blank": 1, + "post-affiliated": 239782, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org68ad0fd", + "properties": { + "post-blank": 0, + "post-affiliated": 240131, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga014c2b", + "properties": { + "type": "https", + "path": "//gist.github.com/eliroca/bdfff89b5ba247db8072db9e93e1c882", + "format": "plain", + "raw-link": "https://gist.github.com/eliroca/bdfff89b5ba247db8072db9e93e1c882", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org7cd4c2c", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "aller à la piscine de janvry avec hélia", + "pre-blank": 0, + "robust-begin": 240510, + "robust-end": 240591, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 240197, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-10T18:21:00", + "end": "2022-07-10T18:21:00", + "type": "inactive", + "raw-value": "[2022-07-10 dim. 18:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-09", + "end": "2022-07-09", + "type": "active", + "raw-value": "<2022-07-09 sam.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "aller à la piscine de janvry avec hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2e5c07d", + "properties": { + "robust-begin": 240244, + "robust-end": 240591, + "post-blank": 2, + "post-affiliated": 240244, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org397f43d", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "retrouver quel dépot avait un greeting bot mastodon choissant l'account_id", + "pre-blank": 0, + "robust-begin": 240915, + "robust-end": 240996, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 240595, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-13T11:07:00", + "end": "2022-07-13T11:07:00", + "type": "inactive", + "raw-value": "[2022-07-13 mer. 11:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "retrouver quel dépot avait un greeting bot mastodon choissant l'account", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org93991fd", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "id" + ] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcf28657", + "properties": { + "robust-begin": 240677, + "robust-end": 240996, + "post-blank": 2, + "post-affiliated": 240677, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9344a37", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "recontacter le club info de janvry", + "pre-blank": 0, + "robust-begin": 241277, + "robust-end": 241358, + "level": 1, + "priority": null, + "tags": [ + "mail", + "écriture" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 241000, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-06T17:15:00", + "end": "2022-07-06T17:15:00", + "type": "inactive", + "raw-value": "[2022-07-06 mer. 17:15]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "recontacter le club info de janvry" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge143165", + "properties": { + "robust-begin": 241058, + "robust-end": 241358, + "post-blank": 2, + "post-affiliated": 241058, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8600f26", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "osm", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "proposer à hkjlml de faire une carto partie en Essonne", + "pre-blank": 0, + "robust-begin": 241691, + "robust-end": 241772, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 241362, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-08T14:14:00", + "end": "2022-07-08T14:14:00", + "type": "inactive", + "raw-value": "[2022-07-08 ven. 14:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-05", + "end": "2022-07-05", + "type": "active", + "raw-value": "<2022-07-05 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "proposer à hkjlml de faire une carto partie en Essonne" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org632ef0c", + "properties": { + "robust-begin": 241450, + "robust-end": 241772, + "post-blank": 1, + "post-affiliated": 241450, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1f13455", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "rdv mairie de Briis pour faire un passeport", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "ARCHIVE" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": true, + "commentedp": false, + "post-affiliated": 241775, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T22:07:00", + "end": "2022-06-08T22:07:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 22:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-06T10:00:00", + "end": "2022-07-06T10:00:00", + "type": "active", + "raw-value": "<2022-07-06 mer. 10:00>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv mairie de Briis pour faire un passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga910a51", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre le dossier de binaires snap dans le path dans le fichier bash aliases.", + "pre-blank": 0, + "robust-begin": 242221, + "robust-end": 242302, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 241903, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-13T10:33:00", + "end": "2022-07-13T10:33:00", + "type": "inactive", + "raw-value": "[2022-07-13 mer. 10:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre le dossier de binaires snap dans le path dans le fichier bash aliases." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7ebd995", + "properties": { + "robust-begin": 241988, + "robust-end": 242302, + "post-blank": 2, + "post-affiliated": 241988, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4561ccb", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "voir le papier générale des services pour ajouter prestation à la déclaration d'impôts", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 242306, + "title": [ + "voir le papier générale des services pour ajouter prestation à la déclaration d'impôts" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd17825a", + "properties": { + "robust-begin": 242416, + "robust-end": 242615, + "post-blank": 2, + "post-affiliated": 242416, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgd577a7f", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre une serviette dans le sac de badminton", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 5, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 242619, + "closed": { + "$$data_type": "timestamp", + "start": "2022-05-30T11:57:00", + "end": "2022-05-30T11:57:00", + "type": "inactive", + "raw-value": "[2022-05-30 lun. 11:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre une serviette dans le sac de badminton" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5fef918", + "properties": { + "robust-begin": 242672, + "robust-end": 242904, + "post-blank": 5, + "post-affiliated": 242672, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgaf94e0e", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "essayer le jeu de samulus birdnet deviner", + "pre-blank": 0, + "robust-begin": 243193, + "robust-end": 243397, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 242911, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-13T10:16:00", + "end": "2022-07-13T10:16:00", + "type": "inactive", + "raw-value": "[2022-07-13 mer. 10:16]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "essayer le jeu de samulus birdnet deviner" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5593657", + "properties": { + "robust-begin": 242960, + "robust-end": 243397, + "post-blank": 1, + "post-affiliated": 242960, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbb8488e", + "properties": { + "post-blank": 0, + "post-affiliated": 243277, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orga379fc6", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/org-roam/20220527115215-liness_ag_2022.org::*Assmeblée générale", + "application": null, + "search-option": "*Assmeblée générale", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "Assmeblée générale" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf43cb16", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Meetings", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "with rdv lemonway mercredi midi", + "pre-blank": 0, + "robust-begin": 243634, + "robust-end": 243657, + "level": 1, + "priority": null, + "tags": [ + "meeting" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 243400, + "title": [ + "with rdv lemonway mercredi midi" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgaccb7ed", + "properties": { + "robust-begin": 243449, + "robust-end": 243657, + "post-blank": 1, + "post-affiliated": 243449, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0e85255", + "properties": { + "post-blank": 0, + "post-affiliated": 243635, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgddca5f6", + "properties": { + "type": "active", + "raw-value": "<2022-06-01 mer. 12:00>", + "post-blank": 0, + "start": "2022-06-01T12:00:00", + "end": "2022-06-01T12:00:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org9480488", + "drawer": { + "ARCHIVE_TIME": "2022-07-13 mer. 11:08", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Tel", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "PHONE rdv hélia dr Guez", + "pre-blank": 0, + "robust-begin": 243938, + "robust-end": 244109, + "level": 1, + "priority": null, + "tags": [ + "tel" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 243660, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-01T11:37:00", + "end": "2022-07-01T11:37:00", + "type": "inactive", + "raw-value": "[2022-07-01 ven. 11:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-01", + "end": "2022-07-01", + "type": "active", + "raw-value": "<2022-07-01 ven.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "PHONE rdv hélia dr Guez" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9b142b4", + "properties": { + "robust-begin": 243697, + "robust-end": 244109, + "post-blank": 1, + "post-affiliated": 243697, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1e86f57", + "properties": { + "post-blank": 0, + "post-affiliated": 244087, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgd8c178f", + "properties": { + "type": "inactive", + "raw-value": "[2022-06-28 mar. 10:08]", + "post-blank": 0, + "start": "2022-06-28T10:08:00", + "end": "2022-06-28T10:08:00" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5b51f4e", + "drawer": { + "ARCHIVE_TIME": "2022-07-18 lun. 10:24", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "liness post ag", + "pre-blank": 0, + "robust-begin": 244377, + "robust-end": 245018, + "level": 1, + "priority": null, + "tags": [ + "liness" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 244112, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-19", + "end": "2022-07-19", + "type": "active", + "raw-value": "<2022-07-19 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "liness post ag" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgcfeb2ef", + "properties": { + "robust-begin": 244143, + "robust-end": 245018, + "post-blank": 1, + "post-affiliated": 244143, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb844b0a", + "properties": { + "post-blank": 1, + "post-affiliated": 244460, + "mode": null, + "granularity": null + }, + "contents": [ + " ajouter l'adresse de Pascal :\nPascal Kouai\n2 rue Condorcet\n91260 Juvisy sur Orge\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7fa77f1", + "properties": { + "post-blank": 1, + "post-affiliated": 244543, + "mode": null, + "granularity": null + }, + "contents": [ + "C'est le nouveau siège !\nPlus tard après les déclarations en préfecture faire un courrier commun avec Pascal adressé à la mairie de Juvisy expliquant notre rapprochement avec le CIJ et notre domiciliation à Juvisy.\nDe toutes les manières il faut attendre l'accord de Michel trésorier du CIJ.\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org49f66b4", + "properties": { + "post-blank": 1, + "post-affiliated": 244836, + "mode": null, + "granularity": null + }, + "contents": [ + "Pour la déclaration en préfecture :\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga76d2bf", + "properties": { + "post-blank": 0, + "post-affiliated": 244873, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org37d3d06", + "properties": { + "type": "https", + "path": "//www.service-public.fr/compte/se-connecter?targetUrl=/loginSuccessFromSp&typeCompte=association", + "format": "plain", + "raw-link": "https://www.service-public.fr/compte/se-connecter?targetUrl=/loginSuccessFromSp&typeCompte=association", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\nidentifiant : adm@liness.org\nMDP : Liness91\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2f04c83", + "drawer": { + "ARCHIVE_TIME": "2022-07-18 lun. 10:24", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox/upload de carte ID sur e-attestations", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "suivi de carte d'identité dourdan", + "pre-blank": 0, + "robust-begin": 245366, + "robust-end": 245444, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 245021, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T10:20:00", + "end": "2022-07-18T10:20:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 10:20]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-08-04", + "end": "2022-08-04", + "type": "active", + "raw-value": "<2022-08-04 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "suivi de carte d'identité dourdan" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org09332c9", + "properties": { + "robust-begin": 245062, + "robust-end": 245444, + "post-blank": 2, + "post-affiliated": 245062, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8e92c77", + "drawer": { + "ARCHIVE_TIME": "2022-07-18 lun. 10:24", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "site web de Didier, un bec et des ailes . fr", + "pre-blank": 0, + "robust-begin": 245766, + "robust-end": 246027, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 245448, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T10:18:00", + "end": "2022-07-18T10:18:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 10:18]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-05", + "end": "2022-07-05", + "type": "active", + "raw-value": "<2022-07-05 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "site web de Didier, un bec et des ailes . fr" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgd177a72", + "properties": { + "robust-begin": 245500, + "robust-end": 246027, + "post-blank": 1, + "post-affiliated": 245500, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgc381f0a", + "properties": { + "post-blank": 0, + "post-affiliated": 245979, + "mode": null, + "granularity": null + }, + "contents": [ + "mettre un wordpress et lui faire un compte admin\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgcb5c995", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "inscrire helia à la maison des enfants pendant l'été", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 246030, + "title": [ + "inscrire helia à la maison des enfants pendant l'été" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf5bfd66", + "properties": { + "robust-begin": 246090, + "robust-end": 246247, + "post-blank": 2, + "post-affiliated": 246090, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf6960b7", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "cra du mois à mettre motmani@lemonway.com en contact", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 246251, + "title": [ + "cra du mois à mettre motmani@lemonway.com en contact" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org198372a", + "properties": { + "robust-begin": 246311, + "robust-end": 246468, + "post-blank": 2, + "post-affiliated": 246311, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org358e2a4", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "devis pour peinture thermique toit réduction chaleur", + "pre-blank": 0, + "robust-begin": 246690, + "robust-end": 246755, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 246472, + "title": [ + "devis pour peinture thermique toit réduction chaleur" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgeb4f5eb", + "properties": { + "robust-begin": 246532, + "robust-end": 246755, + "post-blank": 2, + "post-affiliated": 246532, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9cdd555", + "properties": { + "post-blank": 0, + "post-affiliated": 246691, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orge1a105f", + "properties": { + "type": "id", + "path": "e0ccfa0b-3e12-4edc-8f1c-da9b53b1f6aa", + "format": "bracket", + "raw-link": "id:e0ccfa0b-3e12-4edc-8f1c-da9b53b1f6aa", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "protection", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org7be5c4c", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "thermique" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf2b64ad", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "bureau conforama allblack", + "pre-blank": 0, + "robust-begin": 246950, + "robust-end": 246980, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 246759, + "title": [ + "bureau conforama allblack" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0412b7b", + "properties": { + "robust-begin": 246792, + "robust-end": 246980, + "post-blank": 2, + "post-affiliated": 246792, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org27a862d", + "properties": { + "post-blank": 0, + "post-affiliated": 246951, + "mode": null, + "granularity": null + }, + "contents": [ + "et fauteuil de bureau, niala\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org235ee19", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "prendre rdv mairie de Dourdan retrait de carte id", + "pre-blank": 0, + "robust-begin": 247199, + "robust-end": 248473, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 246984, + "title": [ + "prendre rdv mairie de Dourdan retrait de carte id" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2354fc3", + "properties": { + "robust-begin": 247041, + "robust-end": 247198, + "post-blank": 3, + "post-affiliated": 247041, + "mode": "section", + "granularity": null + }, + "contents": [] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org60c9bab", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "DL le gros dossier de ressources des voix du nuc et le mettre dans les archives spaceship", + "pre-blank": 0, + "robust-begin": 247335, + "robust-end": 247485, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 247203, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T10:28:00", + "end": "2022-07-19T10:28:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 10:28]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "DL le gros dossier de ressources des voix du nuc et le mettre dans les archives spaceship" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga761192", + "properties": { + "robust-begin": 247301, + "robust-end": 247485, + "post-blank": 0, + "post-affiliated": 247301, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org053372c", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "upload de carte ID sur e-attestations", + "pre-blank": 0, + "robust-begin": 247590, + "robust-end": 247761, + "level": 2, + "priority": null, + "tags": [ + "boulot", + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 247487, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T17:38:00", + "end": "2022-07-18T17:38:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 17:38]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "upload de carte ID sur e-attestations" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org51101fa", + "properties": { + "robust-begin": 247556, + "robust-end": 247761, + "post-blank": 2, + "post-affiliated": 247556, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8a00fcb", + "properties": { + "post-blank": 0, + "post-affiliated": 247675, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0b5af6b", + "properties": { + "type": "https", + "path": "//declarants.e-attestations.com/EAttestationsFO/fo/E-Attestations.html#DOCUMENT", + "format": "plain", + "raw-link": "https://declarants.e-attestations.com/EAttestationsFO/fo/E-Attestations.html#DOCUMENT", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org6726489", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "faire un ebook des écrits du camp chatons", + "pre-blank": 0, + "robust-begin": 247849, + "robust-end": 247992, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 247765, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T10:24:00", + "end": "2022-07-18T10:24:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 10:24]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire un ebook des écrits du camp chatons" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org32305c4", + "properties": { + "robust-begin": 247815, + "robust-end": 247992, + "post-blank": 0, + "post-affiliated": 247815, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7c787e0", + "properties": { + "post-blank": 0, + "post-affiliated": 247934, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org34e7079", + "properties": { + "type": "id", + "path": "b72d5aea-be1b-44af-bc21-261bcdf38c37", + "format": "bracket", + "raw-link": "id:b72d5aea-be1b-44af-bc21-261bcdf38c37", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "camp", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgcd4eb11", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "chatons" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org45fde6c", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "activer le français sur le site wordpress un bec et des ailes", + "pre-blank": 0, + "robust-begin": 248142, + "robust-end": 248225, + "level": 2, + "priority": 66, + "tags": [ + "adminsys" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 247994, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T21:56:00", + "end": "2022-07-20T21:56:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-24", + "end": "2022-07-24", + "type": "active", + "raw-value": "<2022-07-24 dim.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "activer le français sur le site wordpress un bec et des ailes" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org92d4755", + "properties": { + "robust-begin": 248080, + "robust-end": 248225, + "post-blank": 1, + "post-affiliated": 248080, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgea95c67", + "drawer": { + }, + "properties": { + "tags-all": [], + "raw-value": "rdv montage de la pergola", + "pre-blank": 0, + "robust-begin": 248325, + "robust-end": 248473, + "level": 2, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 248228, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T21:56:00", + "end": "2022-07-20T21:56:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 21:56]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-07-26", + "end": "2022-07-26", + "type": "active", + "raw-value": "<2022-07-26 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rdv montage de la pergola" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf93e8fe", + "properties": { + "robust-begin": 248262, + "robust-end": 248473, + "post-blank": 1, + "post-affiliated": 248262, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgad2b780", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "rallonger l'expiration de la clé GPG", + "pre-blank": 0, + "robust-begin": 248739, + "robust-end": 249999, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 248476, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T15:07:00", + "end": "2022-07-18T15:07:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 15:07]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rallonger l'expiration de la clé GPG" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4442e93", + "properties": { + "robust-begin": 248520, + "robust-end": 249999, + "post-blank": 1, + "post-affiliated": 248520, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org6b98d14", + "properties": { + "post-blank": 1, + "post-affiliated": 248822, + "mode": null, + "granularity": null + }, + "contents": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge342718", + "properties": { + "post-blank": 1, + "post-affiliated": 248860, + "mode": null, + "granularity": null + }, + "contents": [ + "mDMEXi6zDhYJKwYBBAHaRw8BAQdA1/aU6fF3hXUgQPRzS9Vlv7WiS29Y1PnOjUnU\nrIaXhia0MWNvbnRhY3RAY2lwaGVyYmxpc3MuY29tIDxjb250YWN0QGNpcGhlcmJs\naXNzLmNvbT6IlQQQFgoAPQYLCQcIAwIEFQgKAgQWAgEAAhkBAhsDAh4BFiEEZKib\nGGXmZSP9hny1h5Yfyvl4VP8FAmKV62YFCQWCtKIACgkQh5Yfyvl4VP/fSwD9F/G9\nLbML4sdoKTiPk4l3hzX74l5d8D65bHV0lPW7ZDAA/1xxky249EajncvDLvoWNKMr\nSSWhCW5vCgK7kQc/94QOtEVCYXB0aXN0ZSBMZW1vaW5lIC0gQ2lwaGVyYmxpc3Mg\nKGFrYSBUeWtheW4pIDxjb250YWN0QGNpcGhlcmJsaXNzLmNvbT6IlgQTFgoAPgIb\nAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgBYhBGSomxhl5mUj/YZ8tYeWH8r5eFT/\nBQJiletsBQkFgrSiAAoJEIeWH8r5eFT/HtEA/Rct/EBgX8w7UbslRLyVOwe5ooUY\nR3vLWPqmZL7UJ6TYAQDPgRbmq1kxNXIy8ars0UM+VPOKyyUKSauykeEFb1fBArg4\nBF4usw4SCisGAQQBl1UBBQEBB0DvwugtdUzAujZnyyEW4AbNEgQ7vdRuFKdP0Lie\n9Ye+WQMBCAeIYQQYFggACQUCXi7DdAIbDAAKCRCHlh/K+XhU/13rAQD63PlsJuES\nm5kGevhsIsZedqwAtWLB91yNGkKqeB1f4gD/W0rDLIUw911NoS3UUDK/phBrHazf\nbpbHx6QSXperrQi4MwReLrRiFgkrBgEEAdpHDwEBB0A+VFZm8LpfukCSxRoBRqip\nwxsKld4G4phBLPPweRWVqYhhBBgWCgAJBQJeLsN0AhsMAAoJEIeWH8r5eFT/vDQB\nALKO4wKAM9gZv2yE+/JCNg6QPh1OOc6m7yNM1AGn7HXgAP9ieavf8HKw7yrV7pAR\nVq3VPt+Fd2kUsMfCH7B3mbl3Cg==\n=R/A/\n-----END PGP PUBLIC KEY BLOCK-----\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0df33fe", + "properties": { + "post-blank": 0, + "post-affiliated": 249971, + "mode": null, + "granularity": null + }, + "contents": [ + "DEADLINE: ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "org5773a45", + "properties": { + "type": "active", + "raw-value": "<2023-01-03 mar.>", + "post-blank": 0, + "start": "2023-01-03", + "end": "2023-01-03" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0b042e1", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 10:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Not inbox/visite du site elec EDF paris saclay", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer un mail de confirmation après avoir eu le passeport", + "pre-blank": 0, + "robust-begin": 250325, + "robust-end": 250425, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 250002, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-18T17:33:00", + "end": "2022-07-18T17:33:00", + "type": "inactive", + "raw-value": "[2022-07-18 lun. 17:33]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer un mail de confirmation après avoir eu le passeport" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga77ed81", + "properties": { + "robust-begin": 250069, + "robust-end": 250425, + "post-blank": 1, + "post-affiliated": 250069, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org7ca8ed6", + "properties": { + "post-blank": 0, + "post-affiliated": 250405, + "mode": null, + "granularity": null + }, + "contents": [ + "amelie.aligon@edf.fr\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org244bbdc", + "drawer": { + "CUSTOM_ID": "h:be5219a1-f488-4613-adfc-186e7ef54d25", + "ARCHIVE_TIME": "2022-07-19 mar. 14:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "Publier script de backup avec borg sur la forge chapril", + "pre-blank": 0, + "robust-begin": null, + "robust-end": null, + "level": 1, + "priority": null, + "tags": [ + "dev", + "backup" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 250428, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T22:02:00", + "end": "2022-06-08T22:02:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 22:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Publier script de backup avec borg sur la forge chapril" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org171207a", + "properties": { + "robust-begin": 250504, + "robust-end": 250772, + "post-blank": 1, + "post-affiliated": 250504, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org75c8fa9", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 14:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Bazar Inbox", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "bazar" + }, + "properties": { + "tags-all": [], + "raw-value": "transmettre le justif d'achat de véchiule tesla model 3 Numbr dans Tiime", + "pre-blank": 0, + "robust-begin": 251149, + "robust-end": 251227, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 250775, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:21:00", + "end": "2022-07-19T14:21:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:21]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-19", + "end": "2022-07-19", + "type": "active", + "raw-value": "<2022-07-19 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "transmettre le justif d'achat de véchiule tesla model 3 Numbr dans Tiime" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgfb601ec", + "properties": { + "robust-begin": 250855, + "robust-end": 251227, + "post-blank": 2, + "post-affiliated": 250855, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2d27fce", + "drawer": { + "CUSTOM_ID": "h:15075843-4e11-44c0-b20e-cf8c0d6fe930", + "ARCHIVE_TIME": "2022-07-19 mar. 14:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/*Rangement de tâches/Social/Associations ----------------------------", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "voir les prix des baches à imprimer pour évènements café vie privée", + "pre-blank": 0, + "robust-begin": 251673, + "robust-end": 251751, + "level": 1, + "priority": null, + "tags": [ + "cafe", + "boulot" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 251231, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:30:00", + "end": "2022-07-19T14:30:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:30]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "voir les prix des baches à imprimer pour évènements café vie privée" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org72cc749", + "properties": { + "robust-begin": 251320, + "robust-end": 251751, + "post-blank": 2, + "post-affiliated": 251320, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5af9ed4", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 14:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/*Rangement de tâches/Recherches et éducation", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu" + }, + "properties": { + "tags-all": [], + "raw-value": "comment gérer les clés GPG dans thunderbird", + "pre-blank": 0, + "robust-begin": 252103, + "robust-end": 252184, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 251755, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T12:10:00", + "end": "2022-07-19T12:10:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 12:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "comment gérer les clés GPG dans thunderbird" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org0604ca4", + "properties": { + "robust-begin": 251806, + "robust-end": 252184, + "post-blank": 2, + "post-affiliated": 251806, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org39c22d6", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 14:34", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/*Rangement de tâches/Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu" + }, + "properties": { + "tags-all": [], + "raw-value": "DL de films pour claire et hélia", + "pre-blank": 0, + "robust-begin": 252527, + "robust-end": 252673, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 252188, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T12:10:00", + "end": "2022-07-19T12:10:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 12:10]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "DL de films pour claire et hélia" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9ac6245", + "properties": { + "robust-begin": 252228, + "robust-end": 252673, + "post-blank": 1, + "post-affiliated": 252228, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orge9181c8", + "properties": { + "post-blank": 0, + "post-affiliated": 252610, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org0d1aba9", + "properties": { + "type": "id", + "path": "b92e637b-01bb-4dc4-a5ca-e39a9d218002", + "format": "bracket", + "raw-link": "id:b92e637b-01bb-4dc4-a5ca-e39a9d218002", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "films", + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "orgf79951b", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "à" + ] + }, + { + "$$data_type": "org-node", + "type": "subscript", + "ref": "org4a80c73", + "properties": { + "use-brackets-p": false, + "post-blank": 0 + }, + "contents": [ + "télécharger" + ] + } + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbd20e08", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/OSM OpenStreetmap/autre", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "créer le compte de motoculture pour faire du jardinage.", + "pre-blank": 0, + "robust-begin": 252986, + "robust-end": 253099, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 252676, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:37:00", + "end": "2022-07-19T14:37:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "créer le compte de motoculture pour faire du jardinage." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org55c7139", + "properties": { + "robust-begin": 252745, + "robust-end": 253099, + "post-blank": 1, + "post-affiliated": 252745, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4580e1d", + "properties": { + "post-blank": 0, + "post-affiliated": 253066, + "mode": null, + "granularity": null + }, + "contents": [ + "dégommer du violet de la bd topo.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga50b4ca", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/OSM OpenStreetmap/autre", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "coordonner des attributions de département, voir les lieux ou y'a le moins de contributeux.", + "pre-blank": 0, + "robust-begin": 253448, + "robust-end": 253585, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 253102, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:37:00", + "end": "2022-07-19T14:37:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "coordonner des attributions de département, voir les lieux ou y'a le moins de contributeux." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org534d77b", + "properties": { + "robust-begin": 253207, + "robust-end": 253585, + "post-blank": 1, + "post-affiliated": 253207, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgcb28d0d", + "properties": { + "post-blank": 0, + "post-affiliated": 253528, + "mode": null, + "granularity": null + }, + "contents": [ + "faire un topic sur le forum avec un post en wiki à éditer\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org4d2b642", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/OSM OpenStreetmap/autre", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "inciter a la complétion au niveau macro avant de s'attaquer aux détails.", + "pre-blank": 0, + "robust-begin": 253915, + "robust-end": 253993, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 253588, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:37:00", + "end": "2022-07-19T14:37:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "inciter a la complétion au niveau macro avant de s'attaquer aux détails." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org89fb3c6", + "properties": { + "robust-begin": 253674, + "robust-end": 253993, + "post-blank": 2, + "post-affiliated": 253674, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5749348", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/OSM OpenStreetmap/autre", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "> <@tykaynchu:matrix.org> quelqu'un sait comment je peux compter le nombre d'adresses d'une ville dans overpass turbo ?", + "pre-blank": 0, + "robust-begin": 254371, + "robust-end": 254520, + "level": 1, + "priority": null, + "tags": [ + "osm" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 253997, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:37:00", + "end": "2022-07-19T14:37:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:37]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "> <@tykaynchu:matrix.org> quelqu'un sait comment je peux compter le nombre d'adresses d'une ville dans overpass turbo ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb30b9ab", + "properties": { + "robust-begin": 254130, + "robust-end": 254520, + "post-blank": 1, + "post-affiliated": 254130, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org1a8aa0f", + "properties": { + "post-blank": 0, + "post-affiliated": 254451, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org075fc3f", + "properties": { + "type": "id", + "path": "6f15a829-51c7-46d1-a6c8-53f58f642b1a", + "format": "bracket", + "raw-link": "id:6f15a829-51c7-46d1-a6c8-53f58f642b1a", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "overpass compter adresses" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2e2982f", + "drawer": { + "CUSTOM_ID": "h:02e10668-90cf-41f9-976b-99b0e0ea0040", + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/Dev ---------------------------------------/Transcription Vosk", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "vosk transcription améliorer le script de conversion de tous les inputs", + "pre-blank": 0, + "robust-begin": 254947, + "robust-end": 255025, + "level": 1, + "priority": null, + "tags": [ + "dev", + "vosk" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 254523, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T15:05:00", + "end": "2022-07-19T15:05:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 15:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "vosk transcription améliorer le script de conversion de tous les inputs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf95d3c4", + "properties": { + "robust-begin": 254613, + "robust-end": 255025, + "post-blank": 2, + "post-affiliated": 254613, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga7fb95f", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/CHATONS\tchatons/Chatons Perso chatons chataigne", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "Débuter une spécification de mon projet de chatonchataigne [[id:fde22733-6a13-44a4-9ed7-c1775843a5fa][chataigne]]", + "pre-blank": 0, + "robust-begin": 255415, + "robust-end": 255493, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 255029, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T15:15:00", + "end": "2022-07-19T15:15:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 15:15]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Débuter une spécification de mon projet de chatonchataigne ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org1d74a7d", + "properties": { + "type": "id", + "path": "fde22733-6a13-44a4-9ed7-c1775843a5fa", + "format": "bracket", + "raw-link": "id:fde22733-6a13-44a4-9ed7-c1775843a5fa", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "chataigne" + ] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge7217ea", + "properties": { + "robust-begin": 255150, + "robust-end": 255493, + "post-blank": 2, + "post-affiliated": 255150, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgf30e209", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Bazar Inbox à trier dans les tâches", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "bazar" + }, + "properties": { + "tags-all": [], + "raw-value": "clarifier Area et Projects dans la liste de tâches", + "pre-blank": 0, + "robust-begin": 255861, + "robust-end": 255939, + "level": 1, + "priority": null, + "tags": [ + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 255497, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:46:00", + "end": "2022-07-19T14:46:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "clarifier Area et Projects dans la liste de tâches" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org535e92a", + "properties": { + "robust-begin": 255571, + "robust-end": 255939, + "post-blank": 2, + "post-affiliated": 255571, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgbacd398", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Rangement de tâches/Suivis - Relances régulières", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "suivi de pergola anti froid", + "pre-blank": 0, + "robust-begin": 256254, + "robust-end": 256407, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 255943, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-08-02", + "end": "2022-08-02", + "type": "active", + "raw-value": "<2022-08-02 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "suivi de pergola anti froid" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org35f9611", + "properties": { + "robust-begin": 255978, + "robust-end": 256407, + "post-blank": 3, + "post-affiliated": 255978, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org833133d", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Rangement de tâches/Recherches et éducation/Emacs orgmode/faire un script pour importer ma config emacs", + "ARCHIVE_CATEGORY": "???", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu" + }, + "properties": { + "tags-all": [], + "raw-value": "héberger ma config.org sur une forge logicielle", + "pre-blank": 0, + "robust-begin": 256829, + "robust-end": 257001, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 256412, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-08T22:02:00", + "end": "2022-06-08T22:02:00", + "type": "inactive", + "raw-value": "[2022-06-08 mer. 22:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "héberger ma config.org sur une forge logicielle" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgffcb868", + "properties": { + "robust-begin": 256473, + "robust-end": 257001, + "post-blank": 1, + "post-affiliated": 256473, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org9420177", + "properties": { + "post-blank": 0, + "post-affiliated": 256831, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "org24a4a5f", + "properties": { + "type": "file", + "path": "~/Nextcloud/textes/orgmode/tasks.org", + "format": "bracket", + "raw-link": "file:~/Nextcloud/textes/orgmode/tasks.org::#h:91529c4d-4521-4af8-a0d3-f16b7491a236", + "application": null, + "search-option": "#h:91529c4d-4521-4af8-a0d3-f16b7491a236", + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "file:~/Nextcloud/textes/orgmode/tasks.org::#h:91529c4d-4521-4af8-a0d3-f16b7491a236" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org95ec8f2", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:29", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Rangement de tâches/Recherches et éducation", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "edu" + }, + "properties": { + "tags-all": [], + "raw-value": "ajouter git gutter", + "pre-blank": 0, + "robust-begin": 257334, + "robust-end": 257412, + "level": 1, + "priority": null, + "tags": [ + "dev" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 257004, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T14:47:00", + "end": "2022-07-19T14:47:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 14:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "ajouter git gutter" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org255b79a", + "properties": { + "robust-begin": 257036, + "robust-end": 257412, + "post-blank": 1, + "post-affiliated": 257036, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgfd6139e", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/Projets non triés", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "lister les projets dans l'archive stockage syncable www html et le dossier utilisateur www ici", + "pre-blank": 0, + "robust-begin": 257752, + "robust-end": 257830, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 257415, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T15:45:00", + "end": "2022-07-19T15:45:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 15:45]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lister les projets dans l'archive stockage syncable www html et le dossier utilisateur www ici" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga43e896", + "properties": { + "robust-begin": 257517, + "robust-end": 257830, + "post-blank": 1, + "post-affiliated": 257517, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org78a5a1e", + "drawer": { + "ARCHIVE_TIME": "2022-07-19 mar. 15:54", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/Projets non triés", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE" + }, + "properties": { + "tags-all": [], + "raw-value": "lister projets de tedomum", + "pre-blank": 0, + "robust-begin": 258101, + "robust-end": 258179, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 257833, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T15:47:00", + "end": "2022-07-19T15:47:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 15:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "lister projets de tedomum" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org7d79485", + "properties": { + "robust-begin": 257866, + "robust-end": 258179, + "post-blank": 1, + "post-affiliated": 257866, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org19d26ac", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "copier le bazar de data de Claire qui a été mis sur le disque Louisbraille, dans le NAS.", + "pre-blank": 0, + "robust-begin": 258530, + "robust-end": 258632, + "level": 1, + "priority": 65, + "tags": [ + "claire" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 258182, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T13:46:00", + "end": "2022-07-20T13:46:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 13:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "copier le bazar de data de Claire qui a été mis sur le disque Louisbraille, dans le NAS." + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orge481e2d", + "properties": { + "robust-begin": 258292, + "robust-end": 258632, + "post-blank": 1, + "post-affiliated": 258292, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org4d61c43", + "properties": { + "post-blank": 0, + "post-affiliated": 258613, + "mode": null, + "granularity": null + }, + "contents": [ + "claire devra trier.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5ee2522", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Inbox", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "inbox" + }, + "properties": { + "tags-all": [], + "raw-value": "disque 5to, remettre un bon mot de passe", + "pre-blank": 0, + "robust-begin": 258921, + "robust-end": 259002, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 258635, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T13:46:00", + "end": "2022-07-20T13:46:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 13:46]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "disque 5to, remettre un bon mot de passe" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3fe6d01", + "properties": { + "robust-begin": 258683, + "robust-end": 259002, + "post-blank": 2, + "post-affiliated": 258683, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga8a09cd", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/OSM OpenStreetmap/autre", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "osm" + }, + "properties": { + "tags-all": [], + "raw-value": "Faire un compte de motocultrice pour dégommer du violet", + "pre-blank": 0, + "robust-begin": 259331, + "robust-end": 259473, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 259006, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T22:32:00", + "end": "2022-07-19T22:32:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 22:32]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Faire un compte de motocultrice pour dégommer du violet" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org27c0189", + "properties": { + "robust-begin": 259069, + "robust-end": 259473, + "post-blank": 1, + "post-affiliated": 259069, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgeba947b", + "properties": { + "post-blank": 0, + "post-affiliated": 259411, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgd66be81", + "properties": { + "type": "id", + "path": "78d1674d-2560-4c0f-a3e9-de1305839fdf", + "format": "bracket", + "raw-link": "id:78d1674d-2560-4c0f-a3e9-de1305839fdf", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "dégommer du violet" + ] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org8af9e1e", + "drawer": { + "EFFORT": "10", + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Bazar Inbox à trier dans les tâches", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "bazar" + }, + "properties": { + "tags-all": [], + "raw-value": "rendre le laptop nitro utilisable pour le camp chatons avec emacs et la syncro nextcloud", + "pre-blank": 0, + "robust-begin": 259907, + "robust-end": 259985, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 259476, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T14:06:00", + "end": "2022-07-20T14:06:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 14:06]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-08-02", + "end": "2022-08-02", + "type": "active", + "raw-value": "<2022-08-02 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "rendre le laptop nitro utilisable pour le camp chatons avec emacs et la syncro nextcloud" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org3174f4f", + "properties": { + "robust-begin": 259572, + "robust-end": 259985, + "post-blank": 2, + "post-affiliated": 259572, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orga7ac102", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Bazar Inbox à trier dans les tâches", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "bazar" + }, + "properties": { + "tags-all": [], + "raw-value": "prélèvement avance de tva annuel", + "pre-blank": 0, + "robust-begin": 260401, + "robust-end": 260519, + "level": 1, + "priority": null, + "tags": [ + "boulot", + "administratif" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 259989, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T16:09:00", + "end": "2022-07-19T16:09:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 16:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2023-07-19", + "end": "2023-07-19", + "type": "active", + "raw-value": "<2023-07-19 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-19", + "end": "2022-07-19", + "type": "active", + "raw-value": "<2022-07-19 mar.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "prélèvement avance de tva annuel" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org912baa4", + "properties": { + "robust-begin": 260052, + "robust-end": 260519, + "post-blank": 1, + "post-affiliated": 260052, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org2534743", + "properties": { + "post-blank": 0, + "post-affiliated": 260481, + "mode": null, + "granularity": null + }, + "contents": [ + "2022: un peu plus de 2000€ deux mille.\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org73a0be8", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Communication/Social/Associations ----------------------------/Liness liness---------------------------------", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "communication social liness" + }, + "properties": { + "tags-all": [], + "raw-value": "envoyer le pdf à la préfecture, voir avec Didier", + "pre-blank": 0, + "robust-begin": 260972, + "robust-end": 261050, + "level": 1, + "priority": 66, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 4, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 260522, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-19T22:27:00", + "end": "2022-07-19T22:27:00", + "type": "inactive", + "raw-value": "[2022-07-19 mar. 22:27]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "envoyer le pdf à la préfecture, voir avec Didier" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org2cd5940", + "properties": { + "robust-begin": 260583, + "robust-end": 261050, + "post-blank": 4, + "post-affiliated": 260583, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org78a6d0b", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "poc de chiffrement de champs", + "pre-blank": 0, + "robust-begin": 261446, + "robust-end": 261601, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 261056, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-27T17:53:00", + "end": "2022-06-27T17:53:00", + "type": "inactive", + "raw-value": "[2022-06-27 lun. 17:53]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "poc de chiffrement de champs" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga9b987e", + "properties": { + "robust-begin": 261092, + "robust-end": 261601, + "post-blank": 1, + "post-affiliated": 261092, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org8c2096a", + "properties": { + "post-blank": 0, + "post-affiliated": 261526, + "mode": null, + "granularity": null + }, + "contents": [ + "Envoyer un contenu de formulaire, objet litéral.\nFait le ", + { + "$$data_type": "org-node", + "type": "timestamp", + "ref": "orgfe46dd1", + "properties": { + "type": "active", + "raw-value": "<2022-06-24 ven.>", + "post-blank": 0, + "start": "2022-06-24", + "end": "2022-06-24" + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org5d117ae", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "un enum des url de back", + "pre-blank": 0, + "robust-begin": 261989, + "robust-end": 262155, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 3, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 261604, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T11:05:00", + "end": "2022-07-20T11:05:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 11:05]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "un enum des url de back" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org315b17f", + "properties": { + "robust-begin": 261635, + "robust-end": 262155, + "post-blank": 3, + "post-affiliated": 261635, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orga249c36", + "properties": { + "post-blank": 0, + "post-affiliated": 262072, + "mode": null, + "granularity": null + }, + "contents": [ + "3dcardinit\nsuccess\nerror\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org61ff230", + "properties": { + "type": "https", + "path": "//www.typescriptlang.org/docs/handbook/enums.html", + "format": "plain", + "raw-link": "https://www.typescriptlang.org/docs/handbook/enums.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org0ffec89", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "commencer a estimer les tickets", + "pre-blank": 0, + "robust-begin": 262553, + "robust-end": 262634, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 262160, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-14T10:02:00", + "end": "2022-07-14T10:02:00", + "type": "inactive", + "raw-value": "[2022-07-14 jeu. 10:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "commencer a estimer les tickets" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org77b8c4d", + "properties": { + "robust-begin": 262199, + "robust-end": 262634, + "post-blank": 1, + "post-affiliated": 262199, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org437b944", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre openPGP dans la démo vue3 pour faire du chiffrement côté client", + "pre-blank": 0, + "robust-begin": 263069, + "robust-end": 263150, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 262637, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T10:14:00", + "end": "2022-07-20T10:14:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 10:14]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre openPGP dans la démo vue3 pour faire du chiffrement côté client" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org5144c42", + "properties": { + "robust-begin": 262715, + "robust-end": 263150, + "post-blank": 2, + "post-affiliated": 262715, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org09bb68b", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre fichier régularité fiscale dans les docs d'attestations", + "pre-blank": 0, + "robust-begin": 263606, + "robust-end": 263687, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 263154, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-14T10:02:00", + "end": "2022-07-14T10:02:00", + "type": "inactive", + "raw-value": "[2022-07-14 jeu. 10:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "deadline": { + "$$data_type": "timestamp", + "start": "2022-07-06", + "end": "2022-07-06", + "type": "active", + "raw-value": "<2022-07-06 mer.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre fichier régularité fiscale dans les docs d'attestations" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org02ec1ab", + "properties": { + "robust-begin": 263224, + "robust-end": 263687, + "post-blank": 2, + "post-affiliated": 263224, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2d1ee6a", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "Réviser les best practices TDD 2022", + "pre-blank": 0, + "robust-begin": 264088, + "robust-end": 264350, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 263691, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-21T10:23:00", + "end": "2022-06-21T10:23:00", + "type": "inactive", + "raw-value": "[2022-06-21 mar. 10:23]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Réviser les best practices TDD 2022" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgf1b567e", + "properties": { + "robust-begin": 263734, + "robust-end": 264350, + "post-blank": 1, + "post-affiliated": 263734, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org0fe976a", + "properties": { + "post-blank": 1, + "post-affiliated": 264171, + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgc4ba17d", + "properties": { + "type": "https", + "path": "//scand.com/wp-content/uploads/2020/06/TDD-circle-1.jpg", + "format": "plain", + "raw-link": "https://scand.com/wp-content/uploads/2020/06/TDD-circle-1.jpg", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "]]\n" + ] + }, + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org92dbf71", + "properties": { + "post-blank": 0, + "post-affiliated": 264238, + "mode": null, + "granularity": null + }, + "contents": [ + "découplage entre lieux de tests et implémentation,\nconvention de nommage, fonctions desxcriptives, groupement\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb1cca6e", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "savoir si on masque le CVV", + "pre-blank": 0, + "robust-begin": 264741, + "robust-end": 264846, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 264353, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-08T10:09:00", + "end": "2022-07-08T10:09:00", + "type": "inactive", + "raw-value": "[2022-07-08 ven. 10:09]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "savoir si on masque le CVV" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org9393de6", + "properties": { + "robust-begin": 264387, + "robust-end": 264846, + "post-blank": 1, + "post-affiliated": 264387, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgb91a0a4", + "properties": { + "post-blank": 0, + "post-affiliated": 264824, + "mode": null, + "granularity": null + }, + "contents": [ + "input de type password\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2f43c3b", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "faire une démo d'iframe qui envoie un évènement à son parent", + "pre-blank": 0, + "robust-begin": 265271, + "robust-end": 265418, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 264849, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-29T15:11:00", + "end": "2022-06-29T15:11:00", + "type": "inactive", + "raw-value": "[2022-06-29 mer. 15:11]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire une démo d'iframe qui envoie un évènement à son parent" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org204af40", + "properties": { + "robust-begin": 264917, + "robust-end": 265418, + "post-blank": 2, + "post-affiliated": 264917, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org1ad5850", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "mettre la section des webcomponents dans le dépot git", + "pre-blank": 0, + "robust-begin": 265837, + "robust-end": 265915, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 265422, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-28T11:04:00", + "end": "2022-06-28T11:04:00", + "type": "inactive", + "raw-value": "[2022-06-28 mar. 11:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "mettre la section des webcomponents dans le dépot git" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org56b2a5e", + "properties": { + "robust-begin": 265483, + "robust-end": 265915, + "post-blank": 2, + "post-affiliated": 265483, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org156c9e8", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "champ de date, complétion avec slash ?", + "pre-blank": 0, + "robust-begin": 266319, + "robust-end": 266525, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 265919, + "closed": { + "$$data_type": "timestamp", + "start": "2022-06-28T11:04:00", + "end": "2022-06-28T11:04:00", + "type": "inactive", + "raw-value": "[2022-06-28 mar. 11:04]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "champ de date, complétion avec slash ?" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga5268dc", + "properties": { + "robust-begin": 265965, + "robust-end": 266525, + "post-blank": 2, + "post-affiliated": 265965, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org01d3cc4", + "properties": { + "post-blank": 0, + "post-affiliated": 266399, + "mode": null, + "granularity": null + }, + "contents": [ + "savoir si on réécrit l'affichage pour intégrer l'espacement entre mois et année avec un slash comme d'autres le proposent\nyes\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org83e7c37", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 21:56", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Misson framadate", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work framadate" + }, + "properties": { + "tags-all": [], + "raw-value": "quand on ferme la modale on doit remettre le focus sur le bouton qui l'a ouvert", + "pre-blank": 0, + "robust-begin": 266953, + "robust-end": 267029, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 266529, + "closed": { + "$$data_type": "timestamp", + "start": "2021-12-17T17:47:00", + "end": "2021-12-17T17:47:00", + "type": "inactive", + "raw-value": "[2021-12-17 ven. 17:47]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "quand on ferme la modale on doit remettre le focus sur le bouton qui l'a ouvert" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orgb56a695", + "properties": { + "robust-begin": 266616, + "robust-end": 267029, + "post-blank": 1, + "post-affiliated": 266616, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "org3d58f63", + "properties": { + "post-blank": 0, + "post-affiliated": 266954, + "mode": null, + "granularity": null + }, + "contents": [ + "design pattern aria\n", + { + "$$data_type": "org-node", + "type": "link", + "ref": "org781a0c8", + "properties": { + "type": "https", + "path": "//pidila.gitlab.io/scampi/documentation/modal.html", + "format": "plain", + "raw-link": "https://pidila.gitlab.io/scampi/documentation/modal.html", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [] + }, + "\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org2b70ef7", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 22:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/www Dev ---------------------------------------/Feuille de rapport Orgmode Archive/Faire une fonction avec nodejs présentant les tâches archivées comme pour", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev orgmode orgarchive" + }, + "properties": { + "tags-all": [], + "raw-value": "afficher les tâches groupées par jour", + "pre-blank": 0, + "robust-begin": 267492, + "robust-end": 267570, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 267032, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:02:00", + "end": "2022-07-20T22:02:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "afficher les tâches groupées par jour" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org6870921", + "properties": { + "robust-begin": 267077, + "robust-end": 267570, + "post-blank": 2, + "post-affiliated": 267077, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb8cd25e", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 22:03", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/www Dev ---------------------------------------/Feuille de rapport Orgmode Archive/Faire une fonction avec nodejs présentant les tâches archivées comme pour", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev orgmode orgarchive" + }, + "properties": { + "tags-all": [], + "raw-value": "parser l'export json", + "pre-blank": 0, + "robust-begin": 268017, + "robust-end": 268095, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 267574, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:02:00", + "end": "2022-07-20T22:02:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:02]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "parser l'export json" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4e98d9e", + "properties": { + "robust-begin": 267602, + "robust-end": 268095, + "post-blank": 1, + "post-affiliated": 267602, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org994f799", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 22:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Projets/www Dev ---------------------------------------/Feuille de rapport Orgmode Archive", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "dev orgmode orgarchive" + }, + "properties": { + "tags-all": [], + "raw-value": "Faire une fonction avec nodejs présentant les tâches archivées comme pour [[id:86a226f9-5d05-43aa-b571-c282920df9d1][git-all]]", + "pre-blank": 0, + "robust-begin": 268573, + "robust-end": 268651, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 2, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 268098, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:13:00", + "end": "2022-07-20T22:13:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:13]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "Faire une fonction avec nodejs présentant les tâches archivées comme pour ", + { + "$$data_type": "org-node", + "type": "link", + "ref": "orgaf01042", + "properties": { + "type": "id", + "path": "86a226f9-5d05-43aa-b571-c282920df9d1", + "format": "bracket", + "raw-link": "id:86a226f9-5d05-43aa-b571-c282920df9d1", + "application": null, + "search-option": null, + "post-blank": 0, + "is-internal": false, + "target-ref": null, + "is-inline-image": false + }, + "contents": [ + "git-all" + ] + } + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org4d0d39a", + "properties": { + "robust-begin": 268232, + "robust-end": 268651, + "post-blank": 2, + "post-affiliated": 268232, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "org467e51e", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 22:20", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Boulot ----------------------------------------/Mission actuelle:\t\tlemonway_boulot", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "boulot work lemonway" + }, + "properties": { + "tags-all": [], + "raw-value": "faire apparaitre un formulaire dans l'app vue", + "pre-blank": 0, + "robust-begin": 269062, + "robust-end": 269154, + "level": 1, + "priority": null, + "tags": [], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 1, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 268655, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T13:57:00", + "end": "2022-07-20T13:57:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 13:57]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "faire apparaitre un formulaire dans l'app vue" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "orga36b8bd", + "properties": { + "robust-begin": 268708, + "robust-end": 269154, + "post-blank": 1, + "post-affiliated": 268708, + "mode": "section", + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "paragraph", + "ref": "orgbbeac19", + "properties": { + "post-blank": 0, + "post-affiliated": 269142, + "mode": null, + "granularity": null + }, + "contents": [ + ":boulot:work:\n" + ] + } + ] + } + ] + }, + { + "$$data_type": "org-node", + "type": "headline", + "ref": "orgb4382a9", + "drawer": { + "ARCHIVE_TIME": "2022-07-20 mer. 22:21", + "ARCHIVE_FILE": "~/Nextcloud/textes/orgmode/tasks.org", + "ARCHIVE_OLPATH": "Aires de responsabilité/Bazar Inbox à trier dans les tâches", + "ARCHIVE_CATEGORY": "tasks", + "ARCHIVE_TODO": "DONE", + "ARCHIVE_ITAGS": "bazar" + }, + "properties": { + "tags-all": [], + "raw-value": "préparer sac d'hélia pour la sortie au zoo Thoiry avec la maison des enfants", + "pre-blank": 0, + "robust-begin": 269571, + "robust-end": 269649, + "level": 1, + "priority": null, + "tags": [ + "sortie" + ], + "todo-keyword": "DONE", + "todo-type": "done", + "post-blank": 0, + "footnote-section-p": false, + "archivedp": false, + "commentedp": false, + "post-affiliated": 269157, + "closed": { + "$$data_type": "timestamp", + "start": "2022-07-20T22:20:00", + "end": "2022-07-20T22:20:00", + "type": "inactive", + "raw-value": "[2022-07-20 mer. 22:20]", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "scheduled": { + "$$data_type": "timestamp", + "start": "2022-07-21", + "end": "2022-07-21", + "type": "active", + "raw-value": "<2022-07-21 jeu.>", + "repeater": { + "type": null, + "unit": null, + "value": null + }, + "warning": { + "type": null, + "unit": null, + "value": null + } + }, + "title": [ + "préparer sac d'hélia pour la sortie au zoo Thoiry avec la maison des enfants" + ], + "mode": null, + "granularity": null + }, + "contents": [ + { + "$$data_type": "org-node", + "type": "section", + "ref": "org8cbcd3b", + "properties": { + "robust-begin": 269250, + "robust-end": 269649, + "post-blank": 0, + "post-affiliated": 269250, + "mode": "section", + "granularity": null + }, + "contents": [] + } + ] + } + ] +} diff --git a/yarn.lock b/yarn.lock index c9a2451..c1802a3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,225 +2,220 @@ # yarn lockfile v1 -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== +"abbrev@1": + "integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" + "version" "1.1.1" -anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== +"anymatch@~3.1.2": + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +"balanced-match@^1.0.0": + "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + "version" "1.0.2" -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +"binary-extensions@^2.0.0": + "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + "version" "2.2.0" -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== +"brace-expansion@^1.1.7": + "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + "version" "1.1.11" dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" + "balanced-match" "^1.0.0" + "concat-map" "0.0.1" -braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +"braces@~3.0.2": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" dependencies: - fill-range "^7.0.1" + "fill-range" "^7.0.1" -chokidar@^3.5.2: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== +"chokidar@^3.5.2": + "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" + "version" "3.5.3" dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" + "anymatch" "~3.1.2" + "braces" "~3.0.2" + "glob-parent" "~5.1.2" + "is-binary-path" "~2.1.0" + "is-glob" "~4.0.1" + "normalize-path" "~3.0.0" + "readdirp" "~3.6.0" optionalDependencies: - fsevents "~2.3.2" + "fsevents" "~2.3.2" -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== +"concat-map@0.0.1": + "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "version" "0.0.1" -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== +"debug@^3.2.7": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" dependencies: - ms "^2.1.1" + "ms" "^2.1.1" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +"fill-range@^7.0.1": + "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + "version" "7.0.1" dependencies: - to-regex-range "^5.0.1" + "to-regex-range" "^5.0.1" -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== +"glob-parent@~5.1.2": + "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + "version" "5.1.2" dependencies: - is-glob "^4.0.1" + "is-glob" "^4.0.1" -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== +"has-flag@^3.0.0": + "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + "version" "3.0.0" -ignore-by-default@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" - integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== +"ignore-by-default@^1.0.1": + "integrity" "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" + "resolved" "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz" + "version" "1.0.1" -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== +"is-binary-path@~2.1.0": + "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + "version" "2.1.0" dependencies: - binary-extensions "^2.0.0" + "binary-extensions" "^2.0.0" -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +"is-extglob@^2.1.1": + "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + "version" "2.1.1" -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== +"is-glob@^4.0.1", "is-glob@~4.0.1": + "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + "version" "4.0.3" dependencies: - is-extglob "^2.1.1" + "is-extglob" "^2.1.1" -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +"is-number@^7.0.0": + "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + "version" "7.0.0" -minimatch@^3.0.4: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== +"minimatch@^3.0.4": + "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + "version" "3.1.2" dependencies: - brace-expansion "^1.1.7" + "brace-expansion" "^1.1.7" -ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +"ms@^2.1.1": + "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + "version" "2.1.3" -node-fs@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/node-fs/-/node-fs-0.1.7.tgz#32323cccb46c9fbf0fc11812d45021cc31d325bb" - integrity sha512-XqDBlmUKgDGe76+lZ/0sRBF3XW2vVcK07+ZPvdpUTK8jrvtPahUd0aBqJ9+ZjB01ANjZLuvK3O/eoMVmz62rpA== +"node-fs@^0.1.7": + "integrity" "sha512-XqDBlmUKgDGe76+lZ/0sRBF3XW2vVcK07+ZPvdpUTK8jrvtPahUd0aBqJ9+ZjB01ANjZLuvK3O/eoMVmz62rpA==" + "resolved" "https://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz" + "version" "0.1.7" -nodemon@^2.0.19: - version "2.0.19" - resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.19.tgz#cac175f74b9cb8b57e770d47841995eebe4488bd" - integrity sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A== +"nodemon@^2.0.19": + "integrity" "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==" + "resolved" "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz" + "version" "2.0.19" dependencies: - chokidar "^3.5.2" - debug "^3.2.7" - ignore-by-default "^1.0.1" - minimatch "^3.0.4" - pstree.remy "^1.1.8" - semver "^5.7.1" - simple-update-notifier "^1.0.7" - supports-color "^5.5.0" - touch "^3.1.0" - undefsafe "^2.0.5" + "chokidar" "^3.5.2" + "debug" "^3.2.7" + "ignore-by-default" "^1.0.1" + "minimatch" "^3.0.4" + "pstree.remy" "^1.1.8" + "semver" "^5.7.1" + "simple-update-notifier" "^1.0.7" + "supports-color" "^5.5.0" + "touch" "^3.1.0" + "undefsafe" "^2.0.5" -nopt@~1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" - integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg== +"nopt@~1.0.10": + "integrity" "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==" + "resolved" "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz" + "version" "1.0.10" dependencies: - abbrev "1" + "abbrev" "1" -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +"normalize-path@^3.0.0", "normalize-path@~3.0.0": + "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + "version" "3.0.0" -picomatch@^2.0.4, picomatch@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +"picomatch@^2.0.4", "picomatch@^2.2.1": + "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + "version" "2.3.1" -pstree.remy@^1.1.8: - version "1.1.8" - resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" - integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== +"pstree.remy@^1.1.8": + "integrity" "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" + "resolved" "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz" + "version" "1.1.8" -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== +"readdirp@~3.6.0": + "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + "version" "3.6.0" dependencies: - picomatch "^2.2.1" + "picomatch" "^2.2.1" -semver@^5.7.1: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== +"semver@^5.7.1": + "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + "version" "5.7.1" -semver@~7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== +"semver@~7.0.0": + "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" + "version" "7.0.0" -simple-update-notifier@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz#7edf75c5bdd04f88828d632f762b2bc32996a9cc" - integrity sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew== +"simple-update-notifier@^1.0.7": + "integrity" "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==" + "resolved" "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz" + "version" "1.0.7" dependencies: - semver "~7.0.0" + "semver" "~7.0.0" -supports-color@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== +"supports-color@^5.5.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" dependencies: - has-flag "^3.0.0" + "has-flag" "^3.0.0" -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== +"to-regex-range@^5.0.1": + "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + "version" "5.0.1" dependencies: - is-number "^7.0.0" + "is-number" "^7.0.0" -touch@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" - integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== +"touch@^3.1.0": + "integrity" "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==" + "resolved" "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz" + "version" "3.1.0" dependencies: - nopt "~1.0.10" + "nopt" "~1.0.10" -undefsafe@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" - integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== +"undefsafe@^2.0.5": + "integrity" "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" + "resolved" "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz" + "version" "2.0.5"