This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
const form = document.getElementById("notes-form");
|
const form = document.getElementById("notes-form");
|
||||||
const authorInput = document.getElementById("note-author");
|
const authorInput = document.getElementById("note-author");
|
||||||
const contentInput = document.getElementById("note-content");
|
const contentInput = document.getElementById("note-content");
|
||||||
|
const authorFilter = document.getElementById("notes-author-filter");
|
||||||
|
let notesCache = [];
|
||||||
|
|
||||||
if (!wall) return;
|
if (!wall) return;
|
||||||
|
|
||||||
@@ -34,6 +36,53 @@
|
|||||||
return el;
|
return el;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function normaliseAuthor(author) {
|
||||||
|
return (author || "").trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
function populateAuthorFilter(notes) {
|
||||||
|
if (!authorFilter) return;
|
||||||
|
|
||||||
|
const previousValue = authorFilter.value;
|
||||||
|
const authors = Array.from(
|
||||||
|
new Set(notes.map(note => normaliseAuthor(note.author_name)).filter(Boolean))
|
||||||
|
).sort((a, b) => a.localeCompare(b, undefined, { sensitivity: "base" }));
|
||||||
|
|
||||||
|
authorFilter.innerHTML = '<option value="">All authors</option>';
|
||||||
|
|
||||||
|
authors.forEach(author => {
|
||||||
|
const option = document.createElement("option");
|
||||||
|
option.value = author;
|
||||||
|
option.textContent = author;
|
||||||
|
authorFilter.appendChild(option);
|
||||||
|
});
|
||||||
|
|
||||||
|
authorFilter.value = authors.includes(previousValue) ? previousValue : "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderNotes() {
|
||||||
|
wall.innerHTML = "";
|
||||||
|
|
||||||
|
const selectedAuthor = authorFilter ? authorFilter.value : "";
|
||||||
|
const notes = selectedAuthor
|
||||||
|
? notesCache.filter(note => normaliseAuthor(note.author_name) === selectedAuthor)
|
||||||
|
: notesCache;
|
||||||
|
|
||||||
|
if (notesCache.length === 0) {
|
||||||
|
wall.innerHTML = "<p>No notes yet.</p>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (notes.length === 0) {
|
||||||
|
wall.innerHTML = "<p>No notes for this author.</p>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
notes.forEach(note => {
|
||||||
|
wall.appendChild(renderNote(note));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async function loadNotes() {
|
async function loadNotes() {
|
||||||
wall.innerHTML = "<p>Loading notes…</p>";
|
wall.innerHTML = "<p>Loading notes…</p>";
|
||||||
|
|
||||||
@@ -42,16 +91,9 @@
|
|||||||
if (!res.ok) throw new Error("Failed to fetch notes");
|
if (!res.ok) throw new Error("Failed to fetch notes");
|
||||||
|
|
||||||
const notes = await res.json();
|
const notes = await res.json();
|
||||||
wall.innerHTML = "";
|
notesCache = notes;
|
||||||
|
populateAuthorFilter(notesCache);
|
||||||
if (notes.length === 0) {
|
renderNotes();
|
||||||
wall.innerHTML = "<p>No notes yet.</p>";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
notes.forEach(note => {
|
|
||||||
wall.appendChild(renderNote(note));
|
|
||||||
});
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
wall.innerHTML = "<p>Could not load notes.</p>";
|
wall.innerHTML = "<p>Could not load notes.</p>";
|
||||||
@@ -98,5 +140,9 @@
|
|||||||
form.addEventListener("submit", submitNote);
|
form.addEventListener("submit", submitNote);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (authorFilter) {
|
||||||
|
authorFilter.addEventListener("change", renderNotes);
|
||||||
|
}
|
||||||
|
|
||||||
loadNotes();
|
loadNotes();
|
||||||
})();
|
})();
|
||||||
|
|||||||
@@ -443,6 +443,38 @@ body.no-sidenotes {
|
|||||||
NOTES BOARD
|
NOTES BOARD
|
||||||
========================= */
|
========================= */
|
||||||
|
|
||||||
|
#notes-tools {
|
||||||
|
display: flex;
|
||||||
|
align-items: end;
|
||||||
|
justify-content: flex-end;
|
||||||
|
gap: 0.65rem;
|
||||||
|
margin: 1.25rem 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notes-tools label {
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.75rem;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notes-author-filter {
|
||||||
|
min-width: min(220px, 100%);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: 8px;
|
||||||
|
background: var(--surface);
|
||||||
|
color: var(--fg);
|
||||||
|
font: inherit;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
line-height: 1.2;
|
||||||
|
padding: 0.45rem 0.65rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notes-author-filter:focus {
|
||||||
|
outline: 2px solid color-mix(in oklab, var(--accent) 45%, transparent);
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
#notes-wall {
|
#notes-wall {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
||||||
@@ -458,7 +490,9 @@ body.no-sidenotes {
|
|||||||
.note {
|
.note {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 1rem 1rem 0.9rem;
|
padding: 1rem 1rem 0.9rem;
|
||||||
background: --code-bg;
|
background: var(--surface);
|
||||||
|
color: var(--fg);
|
||||||
|
border: 1px solid var(--border);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 2px 6px rgba(0, 0, 0, 0.08),
|
0 2px 6px rgba(0, 0, 0, 0.08),
|
||||||
@@ -466,7 +500,9 @@ body.no-sidenotes {
|
|||||||
transform: rotate(var(--note-tilt, 0deg));
|
transform: rotate(var(--note-tilt, 0deg));
|
||||||
transition:
|
transition:
|
||||||
transform 0.15s ease,
|
transform 0.15s ease,
|
||||||
box-shadow 0.15s ease;
|
box-shadow 0.15s ease,
|
||||||
|
background-color 0.2s ease,
|
||||||
|
border-color 0.2s ease;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -511,7 +547,7 @@ body.no-sidenotes {
|
|||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
color: #555;
|
color: var(--muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
.note-author {
|
.note-author {
|
||||||
@@ -533,7 +569,7 @@ body.no-sidenotes {
|
|||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
line-height: 1.45;
|
line-height: 1.45;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
color: --fg;
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================
|
/* =========================
|
||||||
@@ -545,6 +581,11 @@ body.no-sidenotes {
|
|||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#notes-tools {
|
||||||
|
align-items: stretch;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.note {
|
.note {
|
||||||
transform: none;
|
transform: none;
|
||||||
}
|
}
|
||||||
@@ -567,7 +608,9 @@ body.no-sidenotes {
|
|||||||
#notes-form {
|
#notes-form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
background: --bg;
|
background: var(--surface);
|
||||||
|
color: var(--fg);
|
||||||
|
border: 1px solid var(--border);
|
||||||
padding: 1.25rem 1.25rem 1.1rem;
|
padding: 1.25rem 1.25rem 1.1rem;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
@@ -600,7 +643,7 @@ body.no-sidenotes {
|
|||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
letter-spacing: 0.08em;
|
letter-spacing: 0.08em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: #666;
|
color: var(--muted);
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -613,12 +656,13 @@ body.no-sidenotes {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
color: var(--fg);
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
line-height: 1.45;
|
line-height: 1.45;
|
||||||
padding: 0.3rem 0;
|
padding: 0.3rem 0;
|
||||||
margin-bottom: 0.9rem;
|
margin-bottom: 0.9rem;
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
#notes-form textarea {
|
#notes-form textarea {
|
||||||
@@ -630,12 +674,12 @@ body.no-sidenotes {
|
|||||||
#notes-form input:focus,
|
#notes-form input:focus,
|
||||||
#notes-form textarea:focus {
|
#notes-form textarea:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-bottom-color: #999;
|
border-bottom-color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* placeholder */
|
/* placeholder */
|
||||||
#notes-form ::placeholder {
|
#notes-form ::placeholder {
|
||||||
color: #aaa;
|
color: var(--muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* =========================
|
/* =========================
|
||||||
@@ -651,14 +695,15 @@ body.no-sidenotes {
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
border: none;
|
border: none;
|
||||||
background: #222;
|
background: var(--fg);
|
||||||
color: #fff;
|
color: var(--bg);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#notes-form button:hover {
|
#notes-form button:hover {
|
||||||
background: #000;
|
background: var(--accent);
|
||||||
|
color: var(--surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
#notes-form button:disabled {
|
#notes-form button:disabled {
|
||||||
|
|||||||
0
blogs/blogs-list.org
Executable file → Normal file
0
blogs/blogs-list.org
Executable file → Normal file
@@ -5,6 +5,13 @@
|
|||||||
#+SLUG: notes
|
#+SLUG: notes
|
||||||
|
|
||||||
#+BEGIN_EXPORT html
|
#+BEGIN_EXPORT html
|
||||||
|
<div id="notes-tools" aria-label="Note filters">
|
||||||
|
<label for="notes-author-filter">Filter by author</label>
|
||||||
|
<select id="notes-author-filter">
|
||||||
|
<option value="">All authors</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="notes-wall">
|
<div id="notes-wall">
|
||||||
<p>Loading notes…</p>
|
<p>Loading notes…</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,9 +13,9 @@ See the categories: @@html:<a href="../../home/categories.html">Categories</a>@@
|
|||||||
- [[file:restful-api.org][Restful API]] @@html:<span class="post-date">15-02-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:restful-api.org][Restful API]] @@html:<span class="post-date">15-02-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
|
||||||
** January 2026
|
** January 2026
|
||||||
- [[file:database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
|
||||||
- [[file:monitoring-and-logging.org][Monitoring and Logging]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:monitoring-and-logging.org][Monitoring and Logging]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:pipelines.org][Pipelines and how they work (as well as CI/CD)]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:pipelines.org][Pipelines and how they work (as well as CI/CD)]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
|
||||||
** December 2025
|
** December 2025
|
||||||
- [[file:probation-objectives.org][Probation Objectives:]] @@html:<span class="post-date">08-12-2025 17:55</span>@@ @@html:<a href="/tags/review.html"><span class="post-tag">review</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:probation-objectives.org][Probation Objectives:]] @@html:<span class="post-date">08-12-2025 17:55</span>@@ @@html:<a href="/tags/review.html"><span class="post-tag">review</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
@@ -23,13 +23,13 @@ See the categories: @@html:<a href="../../home/categories.html">Categories</a>@@
|
|||||||
** November 2025
|
** November 2025
|
||||||
- [[file:airflow.org][Datamarts, Airflow and DAG's]] @@html:<span class="post-date">15-11-2025 18:37</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:airflow.org][Datamarts, Airflow and DAG's]] @@html:<span class="post-date">15-11-2025 18:37</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:normalisation.org][Benefits of Normalisation]] @@html:<span class="post-date">10-11-2025 18:04</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:normalisation.org][Benefits of Normalisation]] @@html:<span class="post-date">10-11-2025 18:04</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:management-of-self.org][Management of self training]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
|
||||||
- [[file:wireframe-designs.org][Wireframe Designs]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:wireframe-designs.org][Wireframe Designs]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:management-of-self.org][Management of self training]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:career-intro.org][Career Introduction]] @@html:<span class="post-date">06-11-2025 21:29</span>@@ @@html:<a href="/tags/introduction.html"><span class="post-tag">introduction</span></a>@@
|
- [[file:career-intro.org][Career Introduction]] @@html:<span class="post-date">06-11-2025 21:29</span>@@ @@html:<a href="/tags/introduction.html"><span class="post-tag">introduction</span></a>@@
|
||||||
- [[file:invest-principles.org][Invest Principles]] @@html:<span class="post-date">06-11-2025 21:08</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:invest-principles.org][Invest Principles]] @@html:<span class="post-date">06-11-2025 21:08</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:retrospectives.org][Retrospectives]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
|
||||||
- [[file:lean.org][Lean]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:lean.org][Lean]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:retrospectives.org][Retrospectives]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
|
||||||
** October 2025
|
** October 2025
|
||||||
- [[file:owasp.org][OWASP Top Ten]] @@html:<span class="post-date">19-10-2025 13:21</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:owasp.org][OWASP Top Ten]] @@html:<span class="post-date">19-10-2025 13:21</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
|||||||
@@ -4,12 +4,8 @@
|
|||||||
See the categories: @@html:<a href="../home/categories.html">Categories</a>@@
|
See the categories: @@html:<a href="../home/categories.html">Categories</a>@@
|
||||||
|
|
||||||
* Posts:
|
* Posts:
|
||||||
- [[file:career/career-list.org][Career List]] @@html:<span class="post-date">09-05-2026 01:18</span>@@
|
- [[file:career/career-list.org][Career List]] @@html:<span class="post-date">09-05-2026 15:06</span>@@
|
||||||
- [[file:posts-list.sync-conflict-20260509-011812-NE5VEIB.org][Posts List]] @@html:<span class="post-date">09-05-2026 01:18</span>@@
|
- [[file:posts-list.sync-conflict-20260509-150632-VT6366A.org][Posts List]] @@html:<span class="post-date">09-05-2026 15:06</span>@@
|
||||||
- [[file:posts-list.sync-conflict-20260509-011752-NE5VEIB.org][Posts List]] @@html:<span class="post-date">09-05-2026 01:17</span>@@
|
|
||||||
- [[file:posts-list.sync-conflict-20260509-011732-NE5VEIB.org][Posts List]] @@html:<span class="post-date">09-05-2026 01:17</span>@@
|
|
||||||
- [[file:posts-list.sync-conflict-20260509-005434-VT6366A.org][Posts List]] @@html:<span class="post-date">09-05-2026 00:54</span>@@
|
|
||||||
- [[file:posts-list.sync-conflict-20260417-233432-VT6366A.org][Posts List]] @@html:<span class="post-date">14-04-2026 16:36</span>@@
|
|
||||||
- [[file:career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]] @@html:<span class="post-date">11-03-2026 17:18</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]] @@html:<span class="post-date">11-03-2026 17:18</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:career/javascript.org][Understands the Javascript language]] @@html:<span class="post-date">11-03-2026 16:52</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:career/javascript.org][Understands the Javascript language]] @@html:<span class="post-date">11-03-2026 16:52</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
- [[file:career/restful-api.org][Restful API]] @@html:<span class="post-date">15-02-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
- [[file:career/restful-api.org][Restful API]] @@html:<span class="post-date">15-02-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
|||||||
26
posts/posts-list.sync-conflict-20260509-150632-VT6366A.org
Normal file
26
posts/posts-list.sync-conflict-20260509-150632-VT6366A.org
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
#+TITLE: Posts List
|
||||||
|
#+OPTIONS: toc:nil num:nil
|
||||||
|
|
||||||
|
See the categories: @@html:<a href="../home/categories.html">Categories</a>@@
|
||||||
|
|
||||||
|
* Posts:
|
||||||
|
- [[file:career/career-list.org][Career List]] @@html:<span class="post-date">09-05-2026 15:05</span>@@
|
||||||
|
- [[file:career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]] @@html:<span class="post-date">11-03-2026 17:18</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/javascript.org][Understands the Javascript language]] @@html:<span class="post-date">11-03-2026 16:52</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/restful-api.org][Restful API]] @@html:<span class="post-date">15-02-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/monitoring-and-logging.org][Monitoring and Logging]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/pipelines.org][Pipelines and how they work (as well as CI/CD)]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:<span class="post-date">18-01-2026 23:00</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/probation-objectives.org][Probation Objectives:]] @@html:<span class="post-date">08-12-2025 17:55</span>@@ @@html:<a href="/tags/review.html"><span class="post-tag">review</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/airflow.org][Datamarts, Airflow and DAG's]] @@html:<span class="post-date">15-11-2025 18:37</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/normalisation.org][Benefits of Normalisation]] @@html:<span class="post-date">10-11-2025 18:04</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/wireframe-designs.org][Wireframe Designs]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/management-of-self.org][Management of self training]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] @@html:<span class="post-date">06-11-2025 22:01</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/career-intro.org][Career Introduction]] @@html:<span class="post-date">06-11-2025 21:29</span>@@ @@html:<a href="/tags/introduction.html"><span class="post-tag">introduction</span></a>@@
|
||||||
|
- [[file:career/invest-principles.org][Invest Principles]] @@html:<span class="post-date">06-11-2025 21:08</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/lean.org][Lean]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/retrospectives.org][Retrospectives]] @@html:<span class="post-date">05-11-2025 20:46</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/owasp.org][OWASP Top Ten]] @@html:<span class="post-date">19-10-2025 13:21</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:career/solid-principles.org][SOLID Principles]] @@html:<span class="post-date">18-10-2025 19:14</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||||
|
- [[file:posts-intro.org][Posts Introduction]] @@html:<span class="post-date">06-08-2025 00:00</span>@@ @@html:<a href="/tags/introduction.html"><span class="post-tag">introduction</span></a>@@
|
||||||
@@ -2,18 +2,16 @@
|
|||||||
#+OPTIONS: toc:nil num:nil
|
#+OPTIONS: toc:nil num:nil
|
||||||
|
|
||||||
* Recently Updated (top 26 files)
|
* Recently Updated (top 26 files)
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011812-NE5VEIB.org][Posts List]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
- [[file:posts/posts-list.sync-conflict-20260509-150632-VT6366A.org][Posts List]] @@html:<span class="post-date">2026-05-09 15:06</span>@@
|
||||||
- [[file:sitemap.sync-conflict-20260509-011812-NE5VEIB.org][Sitemap]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:sitemap.sync-conflict-20260509-150632-VT6366A.org][Sitemap]] @@html:<span class="post-date">2026-05-09 15:06</span>@@
|
||||||
- [[file:recently-updated.sync-conflict-20260509-011802-NE5VEIB.org][Recently Updated]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:sitemap.sync-conflict-20260509-150611-VT6366A.org][Sitemap]] @@html:<span class="post-date">2026-05-09 15:06</span>@@
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011752-NE5VEIB.org][Posts List]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:home/notes.org][Notes]] @@html:<span class="post-date">2026-05-09 15:05</span>@@
|
||||||
- [[file:sitemap.sync-conflict-20260509-011752-NE5VEIB.org][Sitemap]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:home/wird-tracker.org][Wird Tracker]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011732-NE5VEIB.org][Posts List]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:home/status.org][Competency Status Board]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:sitemap.sync-conflict-20260509-011732-NE5VEIB.org][Sitemap]] @@html:<span class="post-date">2026-05-09 01:17</span>@@
|
- [[file:home/services.org][Service]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:sitemap.sync-conflict-20260509-005434-VT6366A.org][Sitemap]] @@html:<span class="post-date">2026-05-09 00:54</span>@@
|
- [[file:home/contact.org][Contact]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-005434-VT6366A.org][Posts List]] @@html:<span class="post-date">2026-05-09 00:54</span>@@
|
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:recently-updated.sync-conflict-20260509-005434-VT6366A.org][Recently Updated]] @@html:<span class="post-date">2026-05-09 00:54</span>@@
|
- [[file:home/guide/setup.org][Setup]] @@html:<span class="post-date">2026-05-09 01:18</span>@@
|
||||||
- [[file:home/login.org][Login]] @@html:<span class="post-date">2026-05-09 00:46</span>@@
|
|
||||||
- [[file:home/guide/setup.org][Setup]] @@html:<span class="post-date">2026-05-09 00:33</span>@@
|
|
||||||
- [[file:blogs/2026/05-may/ai-datacamp-08-05.org][AI Datacamp]] @@html:<span class="post-date">2026-05-08 12:49</span>@@
|
- [[file:blogs/2026/05-may/ai-datacamp-08-05.org][AI Datacamp]] @@html:<span class="post-date">2026-05-08 12:49</span>@@
|
||||||
- [[file:blogs/2026/05-may/using-codex-07-05-26.org][Using Codex]] @@html:<span class="post-date">2026-05-07 16:12</span>@@
|
- [[file:blogs/2026/05-may/using-codex-07-05-26.org][Using Codex]] @@html:<span class="post-date">2026-05-07 16:12</span>@@
|
||||||
- [[file:blogs/2026/05-may/03-05-week-review.org][[03-05-2026] - Weekly Review]] @@html:<span class="post-date">2026-05-03 12:00</span>@@
|
- [[file:blogs/2026/05-may/03-05-week-review.org][[03-05-2026] - Weekly Review]] @@html:<span class="post-date">2026-05-03 12:00</span>@@
|
||||||
@@ -22,9 +20,11 @@
|
|||||||
- [[file:blogs/2026/04-april/april-almost-over-28-04.org][April is almost over...]] @@html:<span class="post-date">2026-04-28 15:33</span>@@
|
- [[file:blogs/2026/04-april/april-almost-over-28-04.org][April is almost over...]] @@html:<span class="post-date">2026-04-28 15:33</span>@@
|
||||||
- [[file:blogs/2026/04-april/26-04-week-review.org][[26-04-2026] - Weekly Review]] @@html:<span class="post-date">2026-04-26 12:00</span>@@
|
- [[file:blogs/2026/04-april/26-04-week-review.org][[26-04-2026] - Weekly Review]] @@html:<span class="post-date">2026-04-26 12:00</span>@@
|
||||||
- [[file:blogs/2026/04-april/adding-more-wird-22-04-26.org][Adding another Wird]] @@html:<span class="post-date">2026-04-22 16:04</span>@@
|
- [[file:blogs/2026/04-april/adding-more-wird-22-04-26.org][Adding another Wird]] @@html:<span class="post-date">2026-04-22 16:04</span>@@
|
||||||
- [[file:home/wird-tracker.org][Wird Tracker]] @@html:<span class="post-date">2026-04-22 11:58</span>@@
|
|
||||||
- [[file:blogs/2026/04-april/sitting-outside-in-the-sun-21-04-26.org][Sitting in the sun]] @@html:<span class="post-date">2026-04-21 13:01</span>@@
|
- [[file:blogs/2026/04-april/sitting-outside-in-the-sun-21-04-26.org][Sitting in the sun]] @@html:<span class="post-date">2026-04-21 13:01</span>@@
|
||||||
- [[file:blogs/2026/04-april/19-04-week-review.org][[19-04-2026] - Weekly Review]] @@html:<span class="post-date">2026-04-19 12:00</span>@@
|
- [[file:blogs/2026/04-april/19-04-week-review.org][[19-04-2026] - Weekly Review]] @@html:<span class="post-date">2026-04-19 12:00</span>@@
|
||||||
- [[file:blogs/2026/04-april/ending-the-week-17-04-26.org][End of week thoughts]] @@html:<span class="post-date">2026-04-17 16:17</span>@@
|
- [[file:blogs/2026/04-april/ending-the-week-17-04-26.org][End of week thoughts]] @@html:<span class="post-date">2026-04-17 16:17</span>@@
|
||||||
- [[file:blogs/2026/04-april/16-04-26.org][Rambles]] @@html:<span class="post-date">2026-04-16 16:02</span>@@
|
- [[file:blogs/2026/04-april/16-04-26.org][Rambles]] @@html:<span class="post-date">2026-04-16 16:02</span>@@
|
||||||
- [[file:posts/posts-list.sync-conflict-20260417-233432-VT6366A.org][Posts List]] @@html:<span class="post-date">2026-04-14 16:36</span>@@
|
- [[file:blogs/2026/04-april/comparison-14-04.org][Comparison is the thief of joy]] @@html:<span class="post-date">2026-04-14 09:55</span>@@
|
||||||
|
- [[file:blogs/2026/04-april/12-04-week-review.org][[12-04-2026] - Weekly Review]] @@html:<span class="post-date">2026-04-12 12:00</span>@@
|
||||||
|
- [[file:blogs/2026/04-april/starting-new-rotation-08-04-26.org][Starting new rotation]] @@html:<span class="post-date">2026-04-08 16:15</span>@@
|
||||||
|
- [[file:blogs/2026/04-april/action-plan-07-04-26.org][Action plan to change teams]] @@html:<span class="post-date">2026-04-07 10:04</span>@@
|
||||||
|
|||||||
27
sitemap.org
27
sitemap.org
@@ -1,17 +1,13 @@
|
|||||||
#+TITLE: Sitemap
|
#+TITLE: Sitemap
|
||||||
|
|
||||||
- [[file:index.org][Home]]
|
- [[file:index.org][Home]]
|
||||||
- [[file:recently-updated.sync-conflict-20260509-005434-VT6366A.org][Recently Updated]]
|
- [[file:sitemap.sync-conflict-20260509-150611-VT6366A.org][Sitemap]]
|
||||||
- [[file:sitemap.sync-conflict-20260509-005434-VT6366A.org][Sitemap]]
|
- [[file:sitemap.sync-conflict-20260509-150632-VT6366A.org][Sitemap]]
|
||||||
- [[file:sitemap.sync-conflict-20260509-011732-NE5VEIB.org][Sitemap]]
|
|
||||||
- [[file:sitemap.sync-conflict-20260509-011752-NE5VEIB.org][Sitemap]]
|
|
||||||
- [[file:recently-updated.sync-conflict-20260509-011802-NE5VEIB.org][Recently Updated]]
|
|
||||||
- [[file:sitemap.sync-conflict-20260509-011812-NE5VEIB.org][Sitemap]]
|
|
||||||
- [[file:wip.org][Work in progress]]
|
- [[file:wip.org][Work in progress]]
|
||||||
- [[file:recently-updated.org][Recently Updated]]
|
- [[file:recently-updated.org][Recently Updated]]
|
||||||
- tags
|
- tags
|
||||||
- [[file:tags/review.sync-conflict-20260328-203248-VT6366A.org][Tag: review]]
|
|
||||||
- [[file:tags/life.sync-conflict-20260417-233423-VT6366A.org][Tag: life]]
|
- [[file:tags/life.sync-conflict-20260417-233423-VT6366A.org][Tag: life]]
|
||||||
|
- [[file:tags/review.sync-conflict-20260328-203248-VT6366A.org][Tag: review]]
|
||||||
- [[file:tags/introduction.org][Tag: introduction]]
|
- [[file:tags/introduction.org][Tag: introduction]]
|
||||||
- [[file:tags/learning.org][Tag: learning]]
|
- [[file:tags/learning.org][Tag: learning]]
|
||||||
- [[file:tags/notes.org][Tag: notes]]
|
- [[file:tags/notes.org][Tag: notes]]
|
||||||
@@ -21,9 +17,9 @@
|
|||||||
- [[file:tags/life.org][Tag: life]]
|
- [[file:tags/life.org][Tag: life]]
|
||||||
- [[file:tags/education.org][Tag: education]]
|
- [[file:tags/education.org][Tag: education]]
|
||||||
- [[file:tags/insights.org][Tag: insights]]
|
- [[file:tags/insights.org][Tag: insights]]
|
||||||
|
- [[file:tags/reading.org][Tag: reading]]
|
||||||
- [[file:tags/emacs.org][Tag: emacs]]
|
- [[file:tags/emacs.org][Tag: emacs]]
|
||||||
- [[file:tags/maths.org][Tag: maths]]
|
- [[file:tags/maths.org][Tag: maths]]
|
||||||
- [[file:tags/reading.org][Tag: reading]]
|
|
||||||
- books
|
- books
|
||||||
- [[file:books/books-list.org][Books List]]
|
- [[file:books/books-list.org][Books List]]
|
||||||
- clean-code
|
- clean-code
|
||||||
@@ -32,28 +28,23 @@
|
|||||||
- [[file:lima/lima-list.org][Lima]]
|
- [[file:lima/lima-list.org][Lima]]
|
||||||
- home
|
- home
|
||||||
- [[file:home/countdown.org][Countdown]]
|
- [[file:home/countdown.org][Countdown]]
|
||||||
- [[file:home/contact.org][Contact]]
|
|
||||||
- [[file:home/backlog.org][Backlog]]
|
- [[file:home/backlog.org][Backlog]]
|
||||||
- [[file:home/notes.org][Notes]]
|
|
||||||
- [[file:home/services.org][Service]]
|
|
||||||
- [[file:home/status.org][Competency Status Board]]
|
- [[file:home/status.org][Competency Status Board]]
|
||||||
- [[file:home/wird-tracker.org][Wird Tracker]]
|
- [[file:home/wird-tracker.org][Wird Tracker]]
|
||||||
- [[file:home/login.org][Login]]
|
- [[file:home/contact.org][Contact]]
|
||||||
|
- [[file:home/services.org][Service]]
|
||||||
|
- [[file:home/notes.org][Notes]]
|
||||||
- [[file:home/categories.org][Categories]]
|
- [[file:home/categories.org][Categories]]
|
||||||
- guide
|
- guide
|
||||||
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
|
||||||
- [[file:home/guide/setup.org][Setup]]
|
- [[file:home/guide/setup.org][Setup]]
|
||||||
|
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
||||||
- blogs
|
- blogs
|
||||||
- [[file:blogs/blogs-intro.org][Blogs Introduction]]
|
- [[file:blogs/blogs-intro.org][Blogs Introduction]]
|
||||||
- [[file:blogs/publish-pages.org][How to publish pages using Org Publish]]
|
- [[file:blogs/publish-pages.org][How to publish pages using Org Publish]]
|
||||||
- [[file:blogs/blogs-list.org][Blogs List]]
|
- [[file:blogs/blogs-list.org][Blogs List]]
|
||||||
- posts
|
- posts
|
||||||
- [[file:posts/posts-intro.org][Posts Introduction]]
|
- [[file:posts/posts-intro.org][Posts Introduction]]
|
||||||
- [[file:posts/posts-list.sync-conflict-20260417-233432-VT6366A.org][Posts List]]
|
- [[file:posts/posts-list.sync-conflict-20260509-150632-VT6366A.org][Posts List]]
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-005434-VT6366A.org][Posts List]]
|
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011732-NE5VEIB.org][Posts List]]
|
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011752-NE5VEIB.org][Posts List]]
|
|
||||||
- [[file:posts/posts-list.sync-conflict-20260509-011812-NE5VEIB.org][Posts List]]
|
|
||||||
- [[file:posts/posts-list.org][Posts List]]
|
- [[file:posts/posts-list.org][Posts List]]
|
||||||
- career
|
- career
|
||||||
- [[file:posts/career/solid-principles.org][SOLID Principles]]
|
- [[file:posts/career/solid-principles.org][SOLID Principles]]
|
||||||
|
|||||||
65
sitemap.sync-conflict-20260509-150611-VT6366A.org
Normal file
65
sitemap.sync-conflict-20260509-150611-VT6366A.org
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
#+TITLE: Sitemap
|
||||||
|
|
||||||
|
- [[file:index.org][Home]]
|
||||||
|
- [[file:wip.org][Work in progress]]
|
||||||
|
- [[file:recently-updated.org][Recently Updated]]
|
||||||
|
- home
|
||||||
|
- [[file:home/countdown.org][Countdown]]
|
||||||
|
- [[file:home/backlog.org][Backlog]]
|
||||||
|
- [[file:home/status.org][Competency Status Board]]
|
||||||
|
- [[file:home/services.org][Service]]
|
||||||
|
- [[file:home/wird-tracker.org][Wird Tracker]]
|
||||||
|
- [[file:home/contact.org][Contact]]
|
||||||
|
- [[file:home/notes.org][Notes]]
|
||||||
|
- [[file:home/categories.org][Categories]]
|
||||||
|
- guide
|
||||||
|
- [[file:home/guide/setup.org][Setup]]
|
||||||
|
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
||||||
|
- books
|
||||||
|
- [[file:books/books-list.org][Books List]]
|
||||||
|
- clean-code
|
||||||
|
- [[file:books/clean-code/clean-code-notes.org][Clean Code Notes]]
|
||||||
|
- blogs
|
||||||
|
- [[file:blogs/blogs-intro.org][Blogs Introduction]]
|
||||||
|
- [[file:blogs/publish-pages.org][How to publish pages using Org Publish]]
|
||||||
|
- [[file:blogs/blogs-list.org][Blogs List]]
|
||||||
|
- lima
|
||||||
|
- [[file:lima/lima-list.org][Lima]]
|
||||||
|
- tags
|
||||||
|
- [[file:tags/life.sync-conflict-20260417-233423-VT6366A.org][Tag: life]]
|
||||||
|
- [[file:tags/review.sync-conflict-20260328-203248-VT6366A.org][Tag: review]]
|
||||||
|
- [[file:tags/introduction.org][Tag: introduction]]
|
||||||
|
- [[file:tags/learning.org][Tag: learning]]
|
||||||
|
- [[file:tags/notes.org][Tag: notes]]
|
||||||
|
- [[file:tags/review.org][Tag: review]]
|
||||||
|
- [[file:tags/website.org][Tag: website]]
|
||||||
|
- [[file:tags/life.org][Tag: life]]
|
||||||
|
- [[file:tags/update.org][Tag: update]]
|
||||||
|
- [[file:tags/insights.org][Tag: insights]]
|
||||||
|
- [[file:tags/emacs.org][Tag: emacs]]
|
||||||
|
- [[file:tags/education.org][Tag: education]]
|
||||||
|
- [[file:tags/reading.org][Tag: reading]]
|
||||||
|
- [[file:tags/maths.org][Tag: maths]]
|
||||||
|
- posts
|
||||||
|
- [[file:posts/posts-intro.org][Posts Introduction]]
|
||||||
|
- [[file:posts/posts-list.org][Posts List]]
|
||||||
|
- career
|
||||||
|
- [[file:posts/career/solid-principles.org][SOLID Principles]]
|
||||||
|
- [[file:posts/career/owasp.org][OWASP Top Ten]]
|
||||||
|
- [[file:posts/career/lean.org][Lean]]
|
||||||
|
- [[file:posts/career/retrospectives.org][Retrospectives]]
|
||||||
|
- [[file:posts/career/invest-principles.org][Invest Principles]]
|
||||||
|
- [[file:posts/career/career-intro.org][Career Introduction]]
|
||||||
|
- [[file:posts/career/wireframe-designs.org][Wireframe Designs]]
|
||||||
|
- [[file:posts/career/management-of-self.org][Management of self training]]
|
||||||
|
- [[file:posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
||||||
|
- [[file:posts/career/normalisation.org][Benefits of Normalisation]]
|
||||||
|
- [[file:posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
||||||
|
- [[file:posts/career/probation-objectives.org][Probation Objectives:]]
|
||||||
|
- [[file:posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
||||||
|
- [[file:posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
||||||
|
- [[file:posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
||||||
|
- [[file:posts/career/restful-api.org][Restful API]]
|
||||||
|
- [[file:posts/career/javascript.org][Understands the Javascript language]]
|
||||||
|
- [[file:posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
||||||
|
- [[file:posts/career/career-list.org][Career List]]
|
||||||
66
sitemap.sync-conflict-20260509-150632-VT6366A.org
Normal file
66
sitemap.sync-conflict-20260509-150632-VT6366A.org
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#+TITLE: Sitemap
|
||||||
|
|
||||||
|
- [[file:index.org][Home]]
|
||||||
|
- [[file:sitemap.sync-conflict-20260509-150611-VT6366A.org][Sitemap]]
|
||||||
|
- [[file:wip.org][Work in progress]]
|
||||||
|
- [[file:recently-updated.org][Recently Updated]]
|
||||||
|
- home
|
||||||
|
- [[file:home/countdown.org][Countdown]]
|
||||||
|
- [[file:home/backlog.org][Backlog]]
|
||||||
|
- [[file:home/status.org][Competency Status Board]]
|
||||||
|
- [[file:home/services.org][Service]]
|
||||||
|
- [[file:home/wird-tracker.org][Wird Tracker]]
|
||||||
|
- [[file:home/contact.org][Contact]]
|
||||||
|
- [[file:home/notes.org][Notes]]
|
||||||
|
- [[file:home/categories.org][Categories]]
|
||||||
|
- guide
|
||||||
|
- [[file:home/guide/setup.org][Setup]]
|
||||||
|
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
||||||
|
- books
|
||||||
|
- [[file:books/books-list.org][Books List]]
|
||||||
|
- clean-code
|
||||||
|
- [[file:books/clean-code/clean-code-notes.org][Clean Code Notes]]
|
||||||
|
- blogs
|
||||||
|
- [[file:blogs/blogs-intro.org][Blogs Introduction]]
|
||||||
|
- [[file:blogs/publish-pages.org][How to publish pages using Org Publish]]
|
||||||
|
- [[file:blogs/blogs-list.org][Blogs List]]
|
||||||
|
- lima
|
||||||
|
- [[file:lima/lima-list.org][Lima]]
|
||||||
|
- tags
|
||||||
|
- [[file:tags/life.sync-conflict-20260417-233423-VT6366A.org][Tag: life]]
|
||||||
|
- [[file:tags/review.sync-conflict-20260328-203248-VT6366A.org][Tag: review]]
|
||||||
|
- [[file:tags/learning.org][Tag: learning]]
|
||||||
|
- [[file:tags/introduction.org][Tag: introduction]]
|
||||||
|
- [[file:tags/notes.org][Tag: notes]]
|
||||||
|
- [[file:tags/website.org][Tag: website]]
|
||||||
|
- [[file:tags/review.org][Tag: review]]
|
||||||
|
- [[file:tags/life.org][Tag: life]]
|
||||||
|
- [[file:tags/emacs.org][Tag: emacs]]
|
||||||
|
- [[file:tags/education.org][Tag: education]]
|
||||||
|
- [[file:tags/update.org][Tag: update]]
|
||||||
|
- [[file:tags/reading.org][Tag: reading]]
|
||||||
|
- [[file:tags/insights.org][Tag: insights]]
|
||||||
|
- [[file:tags/maths.org][Tag: maths]]
|
||||||
|
- posts
|
||||||
|
- [[file:posts/posts-intro.org][Posts Introduction]]
|
||||||
|
- [[file:posts/posts-list.org][Posts List]]
|
||||||
|
- career
|
||||||
|
- [[file:posts/career/solid-principles.org][SOLID Principles]]
|
||||||
|
- [[file:posts/career/owasp.org][OWASP Top Ten]]
|
||||||
|
- [[file:posts/career/lean.org][Lean]]
|
||||||
|
- [[file:posts/career/retrospectives.org][Retrospectives]]
|
||||||
|
- [[file:posts/career/invest-principles.org][Invest Principles]]
|
||||||
|
- [[file:posts/career/career-intro.org][Career Introduction]]
|
||||||
|
- [[file:posts/career/wireframe-designs.org][Wireframe Designs]]
|
||||||
|
- [[file:posts/career/management-of-self.org][Management of self training]]
|
||||||
|
- [[file:posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
||||||
|
- [[file:posts/career/normalisation.org][Benefits of Normalisation]]
|
||||||
|
- [[file:posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
||||||
|
- [[file:posts/career/probation-objectives.org][Probation Objectives:]]
|
||||||
|
- [[file:posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
||||||
|
- [[file:posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
||||||
|
- [[file:posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
||||||
|
- [[file:posts/career/restful-api.org][Restful API]]
|
||||||
|
- [[file:posts/career/javascript.org][Understands the Javascript language]]
|
||||||
|
- [[file:posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
||||||
|
- [[file:posts/career/career-list.org][Career List]]
|
||||||
@@ -5,16 +5,16 @@
|
|||||||
- [[file:../posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
- [[file:../posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
||||||
- [[file:../posts/career/javascript.org][Understands the Javascript language]]
|
- [[file:../posts/career/javascript.org][Understands the Javascript language]]
|
||||||
- [[file:../posts/career/restful-api.org][Restful API]]
|
- [[file:../posts/career/restful-api.org][Restful API]]
|
||||||
- [[file:../posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
|
||||||
- [[file:../posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
- [[file:../posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
||||||
- [[file:../posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
- [[file:../posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
||||||
|
- [[file:../posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
||||||
- [[file:../posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
- [[file:../posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
||||||
- [[file:../posts/career/normalisation.org][Benefits of Normalisation]]
|
- [[file:../posts/career/normalisation.org][Benefits of Normalisation]]
|
||||||
- [[file:../posts/career/management-of-self.org][Management of self training]]
|
|
||||||
- [[file:../posts/career/wireframe-designs.org][Wireframe Designs]]
|
- [[file:../posts/career/wireframe-designs.org][Wireframe Designs]]
|
||||||
|
- [[file:../posts/career/management-of-self.org][Management of self training]]
|
||||||
- [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
- [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
||||||
- [[file:../posts/career/invest-principles.org][Invest Principles]]
|
- [[file:../posts/career/invest-principles.org][Invest Principles]]
|
||||||
- [[file:../posts/career/retrospectives.org][Retrospectives]]
|
|
||||||
- [[file:../posts/career/lean.org][Lean]]
|
- [[file:../posts/career/lean.org][Lean]]
|
||||||
|
- [[file:../posts/career/retrospectives.org][Retrospectives]]
|
||||||
- [[file:../posts/career/owasp.org][OWASP Top Ten]]
|
- [[file:../posts/career/owasp.org][OWASP Top Ten]]
|
||||||
- [[file:../posts/career/solid-principles.org][SOLID Principles]]
|
- [[file:../posts/career/solid-principles.org][SOLID Principles]]
|
||||||
|
|||||||
@@ -5,17 +5,17 @@
|
|||||||
- [[file:../posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
- [[file:../posts/career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]]
|
||||||
- [[file:../posts/career/javascript.org][Understands the Javascript language]]
|
- [[file:../posts/career/javascript.org][Understands the Javascript language]]
|
||||||
- [[file:../posts/career/restful-api.org][Restful API]]
|
- [[file:../posts/career/restful-api.org][Restful API]]
|
||||||
- [[file:../posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
|
||||||
- [[file:../posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
- [[file:../posts/career/monitoring-and-logging.org][Monitoring and Logging]]
|
||||||
- [[file:../posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
- [[file:../posts/career/pipelines.org][Pipelines and how they work (as well as CI/CD)]]
|
||||||
|
- [[file:../posts/career/database-permissions.org][Database Permissions, Roles, and Accounts]]
|
||||||
- [[file:../posts/career/probation-objectives.org][Probation Objectives:]]
|
- [[file:../posts/career/probation-objectives.org][Probation Objectives:]]
|
||||||
- [[file:../posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
- [[file:../posts/career/airflow.org][Datamarts, Airflow and DAG's]]
|
||||||
- [[file:../posts/career/normalisation.org][Benefits of Normalisation]]
|
- [[file:../posts/career/normalisation.org][Benefits of Normalisation]]
|
||||||
- [[file:../posts/career/management-of-self.org][Management of self training]]
|
|
||||||
- [[file:../posts/career/wireframe-designs.org][Wireframe Designs]]
|
- [[file:../posts/career/wireframe-designs.org][Wireframe Designs]]
|
||||||
|
- [[file:../posts/career/management-of-self.org][Management of self training]]
|
||||||
- [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
- [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]]
|
||||||
- [[file:../posts/career/invest-principles.org][Invest Principles]]
|
- [[file:../posts/career/invest-principles.org][Invest Principles]]
|
||||||
- [[file:../posts/career/retrospectives.org][Retrospectives]]
|
|
||||||
- [[file:../posts/career/lean.org][Lean]]
|
- [[file:../posts/career/lean.org][Lean]]
|
||||||
|
- [[file:../posts/career/retrospectives.org][Retrospectives]]
|
||||||
- [[file:../posts/career/owasp.org][OWASP Top Ten]]
|
- [[file:../posts/career/owasp.org][OWASP Top Ten]]
|
||||||
- [[file:../posts/career/solid-principles.org][SOLID Principles]]
|
- [[file:../posts/career/solid-principles.org][SOLID Principles]]
|
||||||
|
|||||||
Reference in New Issue
Block a user