diff --git a/blogs/blogs-list.org b/blogs/blogs-list.org index d798b85..ebd7fa7 100755 --- a/blogs/blogs-list.org +++ b/blogs/blogs-list.org @@ -84,7 +84,7 @@ See the categories: @@html:Categories@@ - [[file:2025/08-august/benefits-of-reading.org][Benefits of Reading]] @@html:14-08-2025 23:36@@ @@html:reading@@ @@html:insights@@ - [[file:2025/08-august/hilberts.hotel.org][Hilbert's Hotel]] @@html:11-08-2025 18:39@@ @@html:maths@@ @@html:insights@@ - [[file:2025/08-august/spending-the-whole-day-on-this-website.org][09-08-2025: Website Changes]] @@html:09-08-2025 00:00@@ @@html:emacs@@ @@html:website@@ -- [[file:2025/08-august/wacom-with-arch.org][Wacom With Arch]] @@html:08-08-2025 00:00@@ @@html:insights@@ - [[file:2025/08-august/what-do-i-want-to-do-with-emacs.org][What Do I Want To Do With Emacs]] @@html:08-08-2025 00:00@@ @@html:emacs@@ @@html:review@@ +- [[file:2025/08-august/wacom-with-arch.org][Wacom With Arch]] @@html:08-08-2025 00:00@@ @@html:insights@@ - [[file:2025/08-august/zettelkasten.org][Zettelkasten Method]] @@html:07-08-2025 00:00@@ @@html:education@@ - [[file:blogs-intro.org][Blogs Introduction]] @@html:06-08-2025 00:00@@ @@html:introduction@@ diff --git a/lima/instructions.md b/lima/instructions.md index 5bd6846..ecf4801 100644 --- a/lima/instructions.md +++ b/lima/instructions.md @@ -1,15 +1,492 @@ -# Instructions +# Instructions for Writing Lima Pages -Here lies instructions for a non technical person.... +This page explains how to write and publish pages for Lima using the authoring service. -## Old nextcloud stuff -I made quite a few changes. It all started when I realised that not everyone knows how to use `.org` files and editing with them (they are quite niche). So I decided to make a very unique solution by having markdown files, which through a process of very complicated transformations result into the very page you’re looking at now :) +The authoring service is a simple web page where you can create, edit, save, and publish writing without touching code. Think of it like a private writing desk for the website. -- You can edit files using this link in [nextcloud](https://nextcloud.zainezq.com/apps/files/files/18016?dir=/lima-website). -- You can pretty much use all the text editing features, minus a few unique ones like callouts. -- Inserting attachments is a cool feature, you can simply just use the *insert attachments* button, and insert the image that you want to insert. -- To insert links to other pages, you can use the insert link button and insert the URL where the page exists. For example, If I wanted to add a link to the main page it would be: -- One other thing is the [server dashboard](https://zone.zainezq.com/), the purpose of this is so that whenever any changes are made here, you can just click the **Update Website** button which rebuilds the website (cool isn’t it. Had to meddle with makefiles and threads). -- I probably didn’t explain it as well, but you can create folders and files under the `lima-website` directory. The files must have a `.md` extension at the end (markdown). +## The Website You Need -- One other thing, a more personal one: what do you think of all this? am i doing too much? am i doing too little? am i overengineering things? am i forcing you to do something you dont wanna do? these little trinkets work for me, but i’m not sure if it would work for someone else, so at any point if you have reservations, let me know okay? +Open this link: + +[https://author.zainezq.com](https://author.zainezq.com) + +If you are using the computer where the website is being worked on directly, this local link may also work: + +[http://127.0.0.1:8765](http://127.0.0.1:8765) + +Most of the time, use `https://author.zainezq.com`. + +## What You Will See + +The authoring page has two main areas: + +- The left side shows existing pages. +- The right side is where you write or edit a page. + +On the left side, there is also a search box and a filter. You can use the filter to show only Lima pages. + +On the right side, you will see fields such as: + +- Page +- Title +- Slug +- Markdown file path +- Content +- Preview +- Save and build + +You do not need to understand all the technical words. The important ones are explained below. + +## Quick Version + +To write a new Lima page: + +1. Open [https://author.zainezq.com](https://author.zainezq.com). +2. Click **New**. +3. Change **Page** to **Lima**. +4. Type a clear **Title**. +5. Write your page in **Content**. +6. Check how it looks in **Preview**. +7. Click **Save and build**. +8. Wait for the build status to finish. +9. Visit the finished page on the main website. + +## Creating a New Lima Page + +### 1. Click New + +Click the **New** button near the top-left of the authoring service. + +This clears the writing area and prepares a blank page. + +### 2. Choose Lima + +In the **Page** dropdown, choose **Lima**. + +This is important. Lima pages are written differently from the main blog pages. When you choose **Lima**, the editor switches to the simpler writing format and shows a preview. + +### 3. Add a Title + +In the **Title** box, write the page title. + +For example: + +- My First Lima Blog +- Our Trip to London +- Thoughts from Today +- A Recipe I Loved + +The title should be written naturally, the same way you want it to appear on the website. + +### 4. Check the Slug + +The **Slug** is the simple web-friendly version of the title. + +For example, if the title is: + +`Our Trip to London` + +The slug may become: + +`our-trip-to-london` + +You usually do not need to change this. It is created automatically from the title. + +### 5. Check the Markdown File Path + +The **Markdown file path** is where the page will be saved. + +For Lima pages, it should look like this: + +`lima/our-trip-to-london.md` + +The important parts are: + +- It starts with `lima/`. +- It ends with `.md`. +- It uses simple lowercase words with hyphens instead of spaces. + +Usually, this is filled in automatically. You only need to check that it looks sensible. + +## Writing the Page + +Write your page in the **Content** box. + +You can write normally, like this: + +```markdown +# Our Trip to London + +We went to London on Saturday and had a lovely day. + +The weather was better than expected, and we found a small cafe near the station. +``` + +For most writing, you can simply type paragraphs and leave a blank line between them. + +## Using Headings + +Headings help split a longer page into sections. + +Use the heading buttons in the toolbar, or type them yourself. + +Use one `#` for the main heading: + +```markdown +# My Main Heading +``` + +Use two `##` for a section: + +```markdown +## What Happened +``` + +Use three `###` for a smaller section: + +```markdown +### A Small Detail +``` + +A simple page might look like this: + +```markdown +# Our Trip to London + +We went to London for the day. + +## The Journey + +The train was busy, but we found seats. + +## Food + +We had lunch at a small cafe. + +## Final Thoughts + +It was a good day and I would like to go again. +``` + +## Making Text Bold or Italic + +You can highlight text using the toolbar. + +To make something bold: + +1. Highlight the words. +2. Click **B**. + +It will look like this while editing: + +```markdown +This was **really important** to me. +``` + +To make something italic: + +1. Highlight the words. +2. Click **I**. + +It will look like this while editing: + +```markdown +It felt *very peaceful*. +``` + +## Lists + +Use a list when you want to show several points clearly. + +For a bullet list: + +```markdown +- First thing +- Second thing +- Third thing +``` + +For a numbered list: + +```markdown +1. First step +2. Second step +3. Third step +``` + +You can also use the **List** and **1. List** buttons in the toolbar. + +## Quotes + +Use a quote if you want something to stand out. + +Click the **Quote** button, or type: + +```markdown +> This is a quote or a highlighted thought. +``` + +## Adding Links + +### Link to Another Website + +To add a normal link: + +1. Highlight the words you want people to click. +2. Click **Link**. +3. Replace `https://` with the website address. + +For example: + +```markdown +[BBC News](https://www.bbc.co.uk/news) +``` + +On the website, people will see the words `BBC News` and can click them. + +### Link to Another Page on This Website + +To link to another existing page: + +1. Click **Link to page**. +2. Choose the page from the list. +3. Click **Insert link**. + +This is easier than copying and pasting a website address yourself. + +## Adding Images + +To add an image: + +1. Put your cursor where you want the image to appear. +2. Click **Insert image**. +3. Choose the image from your computer. +4. Wait for it to upload. + +The editor will insert some text into your page. It may look something like this: + +```markdown +![photo-name.jpg](https://zainezq.com/assets/images/hzone/2026/05/photo-name.jpg) +``` + +Do not worry if that looks strange. That is just how the website knows where the image is. + +After inserting the image, check the **Preview** area to make sure it appears. + +## Using the Preview + +When writing a Lima page, the editor shows a **Preview** next to the content. + +The preview is there so you can check: + +- Headings look right. +- Images appear. +- Lists are formatted properly. +- Links look sensible. +- Paragraphs are not too squashed together. + +The preview is not always exactly identical to the final website, but it is close enough to catch most mistakes. + +## Saving and Publishing + +When you are ready: + +1. Click **Save and build**. +2. Wait for the message to say that the page was saved and the build was queued. +3. Watch the **Build queue** section. +4. When the build finishes successfully, the page should be available on the main website. + +Saving does two things: + +- It saves your writing. +- It rebuilds the website so the new or changed page can appear online. + +If the build is still running, wait a little before checking the public page. + +## Finding the Finished Page + +If your file path is: + +`lima/our-trip-to-london.md` + +The finished page should be: + +`https://zainezq.com/lima/our-trip-to-london.html` + +The rule is: + +- Remove `.md`. +- Replace it with `.html`. +- Put `https://zainezq.com/` at the front. + +So: + +`lima/example-page.md` + +becomes: + +`https://zainezq.com/lima/example-page.html` + +## Editing an Existing Lima Page + +To edit a page you already wrote: + +1. Open [https://author.zainezq.com](https://author.zainezq.com). +2. On the left side, set the filter to **Lima**. +3. Click the page you want to edit. +4. Make your changes in the **Content** box. +5. Check the **Preview**. +6. Click **Save and build**. +7. Wait for the build to finish. + +If you cannot find the page, use the search box on the left. + +## Unsaved Changes and Drafts + +The authoring service tries to protect your work while you are writing. + +If you start typing, you may see a message like: + +`Unsaved changes.` + +This means the browser knows you have changed something but have not saved it properly yet. + +Important: + +- **Save and build** is the proper save button. +- The unsaved draft is only a temporary helper. +- Do not rely on the draft forever. +- If you have written something important, click **Save and build**. + +If you want to throw away your changes, click **Discard changes**. + +## A Good Simple Blog Structure + +If you are not sure how to structure a post, use this: + +```markdown +# Title of the Post + +Write a short introduction here. Say what the post is about. + +## What Happened + +Write the main story or main idea. + +## What I Thought + +Write your reflections, feelings, or lessons. + +## Favourite Part + +Add a detail, memory, photo, quote, or moment that stood out. + +## Final Thoughts + +End with a short closing paragraph. +``` + +You do not have to use all of those sections. They are just a helpful starting point. + +## Common Mistakes + +### The Page Type Is Not Lima + +If the page type is not set to **Lima**, you may not see the right toolbar or preview. + +Before writing a Lima page, always check that **Page** says **Lima**. + +### The File Path Does Not Start With Lima + +Lima pages should be saved under `lima/`. + +Good: + +`lima/my-page.md` + +Not right for Lima: + +`blogs/2026/05-may/my-page.org` + +### The File Path Does Not End With .md + +Lima pages use `.md`. + +Good: + +`lima/my-page.md` + +Not right: + +`lima/my-page` + +### The Page Has Not Appeared Yet + +If the page has not appeared on the website: + +1. Check whether the build is still running. +2. Wait a minute and refresh the public page. +3. Check the **Latest build log** for an obvious error. +4. If it still does not work, ask Zaine to check the build. + +### An Image Does Not Show + +If an image does not show: + +1. Check the preview first. +2. Try saving and building. +3. Refresh the public page. +4. If it still does not show, ask Zaine to check whether the image uploaded properly. + +## Helpful Writing Tips + +- Write the title first. +- Keep paragraphs short. +- Use headings when the page starts to feel long. +- Add images after the main writing is mostly done. +- Use the preview before saving. +- Save and build when you finish a proper section of work. +- If something looks confusing in the editor, check the preview before worrying. + +## Mini Cheat Sheet + +```markdown +# Big heading + +## Section heading + +### Smaller heading + +This is a normal paragraph. + +This is **bold** text. + +This is *italic* text. + +- Bullet point +- Bullet point +- Bullet point + +1. First +2. Second +3. Third + +> A quote or highlighted thought. + +[Link text](https://example.com) + +![Image description](https://example.com/image.jpg) +``` + +## When in Doubt + +For a normal Lima page, the safest workflow is: + +1. Click **New**. +2. Choose **Lima**. +3. Add a title. +4. Write normally. +5. Use the preview. +6. Click **Save and build**. + +If anything feels unclear, write the words first and fix the formatting afterwards. The writing matters more than getting the formatting perfect straight away. diff --git a/lima/lima-list.org b/lima/lima-list.org index 83c5e7a..b91b32c 100755 --- a/lima/lima-list.org +++ b/lima/lima-list.org @@ -1,6 +1,4 @@ #+TITLE: Lima -- [[file:test/test.html][test]] -- [[file:index.html][index]] - [[file:instructions.html][instructions]] -- [[file:index.sync-conflict-20260509-192354-VT6366A.html][index.sync-conflict-20260509-192354-VT6366A]] \ No newline at end of file +- [[file:index.html][index]] \ No newline at end of file diff --git a/posts/career/career-list.org b/posts/career/career-list.org index dc34d42..4e470f7 100755 --- a/posts/career/career-list.org +++ b/posts/career/career-list.org @@ -13,9 +13,9 @@ See the categories: @@html:Categories@@ - [[file:restful-api.org][Restful API]] @@html:15-02-2026 23:00@@ @@html:@@ @@html:@@ ** January 2026 -- [[file:database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ - [[file:monitoring-and-logging.org][Monitoring and Logging]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ - [[file:pipelines.org][Pipelines and how they work (as well as CI/CD)]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ +- [[file:database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ ** December 2025 - [[file:probation-objectives.org][Probation Objectives:]] @@html:08-12-2025 17:55@@ @@html:@@ @@html:@@ @@ -23,13 +23,13 @@ See the categories: @@html:Categories@@ ** November 2025 - [[file:airflow.org][Datamarts, Airflow and DAG's]] @@html:15-11-2025 18:37@@ @@html:@@ @@html:@@ - [[file:normalisation.org][Benefits of Normalisation]] @@html:10-11-2025 18:04@@ @@html:@@ @@html:@@ -- [[file:management-of-self.org][Management of self training]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:wireframe-designs.org][Wireframe Designs]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ +- [[file:management-of-self.org][Management of self training]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:career-intro.org][Career Introduction]] @@html:06-11-2025 21:29@@ @@html:@@ - [[file:invest-principles.org][Invest Principles]] @@html:06-11-2025 21:08@@ @@html:@@ @@html:@@ -- [[file:retrospectives.org][Retrospectives]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ - [[file:lean.org][Lean]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ +- [[file:retrospectives.org][Retrospectives]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ ** October 2025 - [[file:owasp.org][OWASP Top Ten]] @@html:19-10-2025 13:21@@ @@html:@@ @@html:@@ diff --git a/posts/posts-list.org b/posts/posts-list.org index 330845d..a1cadfb 100755 --- a/posts/posts-list.org +++ b/posts/posts-list.org @@ -4,24 +4,23 @@ See the categories: @@html:Categories@@ * Posts: -- [[file:career/career-list.org][Career List]] @@html:09-05-2026 20:06@@ -- [[file:posts-list.sync-conflict-20260509-195434-NE5VEIB.org][Posts List]] @@html:09-05-2026 19:54@@ +- [[file:career/career-list.org][Career List]] @@html:09-05-2026 20:13@@ - [[file:career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]] @@html:11-03-2026 17:18@@ @@html:@@ @@html:@@ - [[file:career/javascript.org][Understands the Javascript language]] @@html:11-03-2026 16:52@@ @@html:@@ @@html:@@ - [[file:career/restful-api.org][Restful API]] @@html:15-02-2026 23:00@@ @@html:@@ @@html:@@ -- [[file:career/database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ - [[file:career/monitoring-and-logging.org][Monitoring and Logging]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ - [[file:career/pipelines.org][Pipelines and how they work (as well as CI/CD)]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ +- [[file:career/database-permissions.org][Database Permissions, Roles, and Accounts]] @@html:18-01-2026 23:00@@ @@html:@@ @@html:@@ - [[file:career/probation-objectives.org][Probation Objectives:]] @@html:08-12-2025 17:55@@ @@html:@@ @@html:@@ - [[file:career/airflow.org][Datamarts, Airflow and DAG's]] @@html:15-11-2025 18:37@@ @@html:@@ @@html:@@ - [[file:career/normalisation.org][Benefits of Normalisation]] @@html:10-11-2025 18:04@@ @@html:@@ @@html:@@ -- [[file:career/management-of-self.org][Management of self training]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:career/wireframe-designs.org][Wireframe Designs]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ +- [[file:career/management-of-self.org][Management of self training]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] @@html:06-11-2025 22:01@@ @@html:@@ @@html:@@ - [[file:career/career-intro.org][Career Introduction]] @@html:06-11-2025 21:29@@ @@html:@@ - [[file:career/invest-principles.org][Invest Principles]] @@html:06-11-2025 21:08@@ @@html:@@ @@html:@@ -- [[file:career/retrospectives.org][Retrospectives]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ - [[file:career/lean.org][Lean]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ +- [[file:career/retrospectives.org][Retrospectives]] @@html:05-11-2025 20:46@@ @@html:@@ @@html:@@ - [[file:career/owasp.org][OWASP Top Ten]] @@html:19-10-2025 13:21@@ @@html:@@ @@html:@@ - [[file:career/solid-principles.org][SOLID Principles]] @@html:18-10-2025 19:14@@ @@html:@@ @@html:@@ - [[file:posts-intro.org][Posts Introduction]] @@html:06-08-2025 00:00@@ @@html:@@ \ No newline at end of file diff --git a/recently-updated.org b/recently-updated.org index 9e8d38a..a5f2f7f 100755 --- a/recently-updated.org +++ b/recently-updated.org @@ -2,14 +2,13 @@ #+OPTIONS: toc:nil num:nil * Recently Updated (top 26 files) -- [[file:posts/posts-list.sync-conflict-20260509-195434-NE5VEIB.org][Posts List]] @@html:2026-05-09 19:54@@ -- [[file:home/wird-tracker.org][Wird Tracker]] @@html:2026-05-09 18:19@@ -- [[file:home/status.org][Competency Status Board]] @@html:2026-05-09 18:19@@ -- [[file:home/services.org][Service]] @@html:2026-05-09 18:19@@ -- [[file:home/notes.org][Notes]] @@html:2026-05-09 18:19@@ -- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]] @@html:2026-05-09 18:19@@ -- [[file:home/guide/setup.org][Setup]] @@html:2026-05-09 18:19@@ -- [[file:home/contact.org][Contact]] @@html:2026-05-09 18:19@@ +- [[file:home/wird-tracker.org][Wird Tracker]] @@html:2026-05-09 20:13@@ +- [[file:home/status.org][Competency Status Board]] @@html:2026-05-09 20:13@@ +- [[file:home/services.org][Service]] @@html:2026-05-09 20:13@@ +- [[file:home/notes.org][Notes]] @@html:2026-05-09 20:13@@ +- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]] @@html:2026-05-09 20:13@@ +- [[file:home/guide/setup.org][Setup]] @@html:2026-05-09 20:13@@ +- [[file:home/contact.org][Contact]] @@html:2026-05-09 20:13@@ - [[file:blogs/2026/05-may/authoring-service-09-05-26.org][Authoring Service]] @@html:2026-05-09 17:49@@ - [[file:blogs/2026/05-may/ai-datacamp-08-05.org][AI Datacamp]] @@html:2026-05-08 12:49@@ - [[file:blogs/2026/05-may/using-codex-07-05-26.org][Using Codex]] @@html:2026-05-07 16:12@@ @@ -28,3 +27,4 @@ - [[file:blogs/2026/04-april/starting-new-rotation-08-04-26.org][Starting new rotation]] @@html:2026-04-08 16:15@@ - [[file:blogs/2026/04-april/action-plan-07-04-26.org][Action plan to change teams]] @@html:2026-04-07 10:04@@ - [[file:blogs/2026/04-april/weekly-target-06-04-26.org][[06-04-2026] - Weekly target]] @@html:2026-04-06 22:53@@ +- [[file:blogs/2026/04-april/making-notes-through-org-noter-06-05.org][Making Notes through Org Noter]] @@html:2026-04-06 14:30@@ diff --git a/sitemap.org b/sitemap.org index e567364..94407d0 100755 --- a/sitemap.org +++ b/sitemap.org @@ -3,64 +3,63 @@ - [[file:index.org][Home]] - [[file:wip.org][Work in progress]] - [[file:recently-updated.org][Recently Updated]] -- 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]] +- books + - [[file:books/books-list.org][Books List]] + - clean-code + - [[file:books/clean-code/clean-code-notes.org][Clean Code Notes]] - home - [[file:home/countdown.org][Countdown]] - [[file:home/backlog.org][Backlog]] + - [[file:home/categories.org][Categories]] - [[file:home/contact.org][Contact]] + - [[file:home/notes.org][Notes]] + - [[file:home/services.org][Service]] - [[file:home/status.org][Competency Status Board]] - [[file:home/wird-tracker.org][Wird Tracker]] - - [[file:home/services.org][Service]] - - [[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]] -- lima - - [[file:lima/lima-list.org][Lima]] +- 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]] - 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/review.org][Tag: review]] - [[file:tags/update.org][Tag: update]] - [[file:tags/life.org][Tag: life]] - - [[file:tags/education.org][Tag: education]] - - [[file:tags/insights.org][Tag: insights]] - - [[file:tags/reading.org][Tag: reading]] - [[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.sync-conflict-20260509-195434-NE5VEIB.org][Posts List]] - - [[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/retrospectives.org][Retrospectives]] - - [[file:posts/career/lean.org][Lean]] - - [[file:posts/career/invest-principles.org][Invest Principles]] - - [[file:posts/career/career-intro.org][Career Introduction]] - - [[file:posts/career/management-of-self.org][Management of self training]] - - [[file:posts/career/wireframe-designs.org][Wireframe Designs]] - - [[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/database-permissions.org][Database Permissions, Roles, and Accounts]] - - [[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/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]] \ No newline at end of file + - [[file:tags/insights.org][Tag: insights]] +- lima + - [[file:lima/lima-list.org][Lima]] \ No newline at end of file diff --git a/tags/learning.org b/tags/learning.org index ef43c84..fa15dfe 100755 --- a/tags/learning.org +++ b/tags/learning.org @@ -5,16 +5,16 @@ - [[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/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/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/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/management-of-self.org][Management of self training]] - [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] - [[file:../posts/career/invest-principles.org][Invest Principles]] -- [[file:../posts/career/retrospectives.org][Retrospectives]] - [[file:../posts/career/lean.org][Lean]] +- [[file:../posts/career/retrospectives.org][Retrospectives]] - [[file:../posts/career/owasp.org][OWASP Top Ten]] - [[file:../posts/career/solid-principles.org][SOLID Principles]] diff --git a/tags/notes.org b/tags/notes.org index 6d9fc80..3e2f335 100755 --- a/tags/notes.org +++ b/tags/notes.org @@ -5,17 +5,17 @@ - [[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/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/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/airflow.org][Datamarts, Airflow and DAG's]] - [[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/management-of-self.org][Management of self training]] - [[file:../posts/career/requirements-features.org][Requirements, features, user stories, tasks, walking skeletons]] - [[file:../posts/career/invest-principles.org][Invest Principles]] -- [[file:../posts/career/retrospectives.org][Retrospectives]] - [[file:../posts/career/lean.org][Lean]] +- [[file:../posts/career/retrospectives.org][Retrospectives]] - [[file:../posts/career/owasp.org][OWASP Top Ten]] - [[file:../posts/career/solid-principles.org][SOLID Principles]]