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 = `
` } 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