fixing gitignore

This commit is contained in:
2025-12-28 21:19:27 +00:00
parent fb120bc50a
commit 8f234a746d
221 changed files with 8064 additions and 11740 deletions

View File

@@ -0,0 +1,27 @@
#+TITLE: Benefits of Reading
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-14 Thu 23:36>
#+FILETAGS: :reading:insights:
#+COMMENTS: t
#+SLUG: benefits-of-reading
* Benefits [fn:1]
At times, I find myself being able to digest material more quickly and efficiently, and so I thought to myself as to what the probable cause of this was. The answer transpired to be the inculcating of reading in my daily routine. As humans, we are constantly surrounded with information, some are noisy, some are useful. We can choose to /filter/ out noisy information by limiting exposure of their avenues, however the topic I wanted to briefly touch upon is what are the (cognitive and non-cognitive) benefits of increasing the intake of useful information through the medium of reading?
** Mental Stimulation
The brain is a muscle, in order to keep any muscle strong and healthy, it needs stimulation and attention. Thus, reading is an excellent way of ensuring the brain is /fit and healthy/.
** Stress Reduction
A well written novel or informative book can go a long way in making you forget about the worries of the world.
** Increase in Knowledge
Reading will always fill your head with new information.
** Entertainment
A plethora of genres can keep anyone entertained!
** Better writing skills
Being exposed to different writing styles allows you to be influenced to obtaining your own unique writing style.
[fn:1] Check the following [[https://www.crawshawacademy.org.uk/seecmsfile/?id=165][link]]

View File

@@ -0,0 +1,25 @@
#+TITLE: Benefits of Reading
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-14 Thu 23:36>
#+FILETAGS: :reading:insights:
* Benefits [fn:1]
At times, I find myself being able to digest material more quickly and efficiently, and so I thought to myself as to what the probable cause of this was. The answer transpired to be the inculcating of reading in my daily routine. As humans, we are constantly surrounded with information, some are noisy, some are useful. We can choose to /filter/ out noisy information by limiting exposure of their avenues, however the topic I wanted to briefly touch upon is what are the (cognitive and non-cognitive) benefits of increasing the intake of useful information through the medium of reading?
** Mental Stimulation
The brain is a muscle, in order to keep any muscle strong and healthy, it needs stimulation and attention. Thus, reading is an excellent way of ensuring the brain is /fit and healthy/.
** Stress Reduction
A well written novel or informative book can go a long way in making you forget about the worries of the world.
** Increase in Knowledge
Reading will always fill your head with new information.
** Entertainment
A plethora of genres can keep anyone entertained!
** Better writing skills
Being exposed to different writing styles allows you to be influenced to obtaining your own unique writing style.
[fn:1] Check the following [[https://www.crawshawacademy.org.uk/seecmsfile/?id=165][link]]

View File

@@ -0,0 +1,10 @@
#+TITLE: Hilbert's Hotel
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-11 Mon 18:39>
#+FILETAGS: :maths:insights:
#+COMMENTS: t
#+SLUG: hilberts-hotel
I recently stumbled across a thought experiment in mathematics, where the counterintuitive nature of infinity is portrayed. There is a hotel with an infinite number of rooms, all of which are occupied with a guest. There is a paradox upon the arrival of a new guest, the hotel is still shown to be able to accomodate this guest, despite it being previously coined as /full/.
See: [[https://plus.maths.org/content/hilberts-hotel][this link]] for more details on the full experimental thought and the proofs alongside.

View File

@@ -0,0 +1,8 @@
#+TITLE: Hilbert's Hotel
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-11 Mon 18:39>
#+FILETAGS: :maths:insights:
I recently stumbled across a thought experiment in mathematics, where the counterintuitive nature of infinity is portrayed. There is a hotel with an infinite number of rooms, all of which are occupied with a guest. There is a paradox upon the arrival of a new guest, the hotel is still shown to be able to accomodate this guest, despite it being previously coined as /full/.
See: [[https://plus.maths.org/content/hilberts-hotel][this link]] for more details on the full experimental thought and the proofs alongside.

View File

@@ -1,7 +1,9 @@
#+TITLE: 09-08-2025: Website Changes
#+OPTIONS: num:nil title:nil
#+OPTIONS: num:nil toc:nil
#+DATE: <2025-08-09 Sat>
#+FILETAGS: :emacs:website:
#+COMMENTS: t
#+SLUG: spending-all-day-on-this-website
* What was worked on

View File

@@ -0,0 +1,36 @@
#+TITLE: 09-08-2025: Website Changes
#+OPTIONS: num:nil toc:nil
#+DATE: <2025-08-09 Sat>
#+FILETAGS: :emacs:website:
* What was worked on
I saw a few websites that used marginal notes on the right side of the screen like [[https://ogbe.net/blog/emacs_org_static_site][this one]], so I decided to try and implement this feature in this wesbite. In my mind I thought of using an external pre-configured CSS that I can just insert and ta-da it would work.
How wrong I was.
See, this website is published with ~org-publish~, meaning the org files that are written are converted to HTML through a transcoder. And as I already had a ~org.css~[fn:1] stylesheet which was primarily used for syntax highlighting, it caused some layout and formatting issue when I tried to use something like ~tufte.css~[fn:2]. Anyways, long story short, the main thing I worked on today was styling this website, and ensuring certain macros worked:
#+BEGIN_SRC emacs-lisp
(setq org-export-global-macros
(append
'(("sidenote"
. "@@html:<label for=\"sn$1\" class=\"margin-toggle sidenote-number\"></label><input type=\"checkbox\" id=\"sn$1\" class=\"margin-toggle\"/><span class=\"sidenote\">$2</span>@@")
("epigraph" . "@@html:<div class=\"epigraph\"><blockquote>$1<footer>$2</footer></blockquote></div>@@")
("epigraph_single" . "@@html:<div class=\"epigraph\"><blockquote>$1</blockquote></div>@@")
("epigraph3" . "@@html:<div class=\"epigraph\"><blockquote>$1<footer>$2, <cite>$3</cite></footer></blockquote></div>@@")
("kbd" . "@@html:<kbd>$1</kbd>@@@@latex:\\texttt{$1}@@")
("margimg"
. "@@html:<aside class=\"marginnote\"><figure class=\"mn-fig\"><img src=\"$1\" alt=\"$2\" class=\"mn-img\" loading=\"lazy\" decoding=\"async\"/>$3</figure></aside>@@")
org-export-global-macros)))
#+END_SRC
This worked quite nicely, and I made sure to make these changes accessible on smaller devices. Anyways, I quite like this style of posting. Nothing formal nor technical, just a bunch of rambling on about random things.
Oh, and also there's a darkmode theme switch now for you night owls.
[fn:1] See: https://gongzhitaao.org/orgcss/
[fn:2] See: https://edwardtufte.github.io/tufte-css/

View File

@@ -0,0 +1,20 @@
#+TITLE: Third Time
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-28 Thu 17:08>
#+FILETAGS: :insights:
#+COMMENTS: t
#+SLUG: third-time
* A more structured way of working
{{{sidenote(1, Useful for people who don't like the constrained working limit of 25 minutes for instance.)}}}
Whilst researching for different ways to use pomodoro [fn:1] on Emacs [fn:2], I came across this package titled: ~pomm.el~. In this package it had an interesting feature called /pomm-third-time/[fn:3]. The ideology behind is as follows:
- You work as long as you want.
- Your break is calculated using the formula: ~Time of break = 1/3 x Time of work~.
- If you take a shorter break, the remaining break time is accumulated and added to the next break (within the same session).
[fn:1] - https://en.wikipedia.org/wiki/Pomodoro_Technique
[fn:2] - https://www.gnu.org/software/emacs/
[fn:3] - https://www.lesswrong.com/posts/RWu8eZqbwgB9zaerh/third-time-a-better-way-to-work

View File

@@ -0,0 +1,18 @@
#+TITLE: Third Time
#+OPTIONS: num:nil tags:t
#+DATE: <2025-08-28 Thu 17:08>
#+FILETAGS: :insights:
* A more structured way of working
{{{sidenote(1, Useful for people who don't like the constrained working limit of 25 minutes for instance.)}}}
Whilst researching for different ways to use pomodoro [fn:1] on Emacs [fn:2], I came across this package titled: ~pomm.el~. In this package it had an interesting feature called /pomm-third-time/[fn:3]. The ideology behind is as follows:
- You work as long as you want.
- Your break is calculated using the formula: ~Time of break = 1/3 x Time of work~.
- If you take a shorter break, the remaining break time is accumulated and added to the next break (within the same session).
[fn:1] - https://en.wikipedia.org/wiki/Pomodoro_Technique
[fn:2] - https://www.gnu.org/software/emacs/
[fn:3] - https://www.lesswrong.com/posts/RWu8eZqbwgB9zaerh/third-time-a-better-way-to-work

View File

@@ -1,9 +1,11 @@
#+TITLE: Wacom With Arch
#+DATE: <2025-08-08 Fri>
#+OPTIONS: toc:nil num:nil title:nil
#+OPTIONS: toc:nil num:nil
#+FILETAGS: :insights:
#+COMMENTS: t
#+SLUG: wacom-with-arch
* Wacom With Arch
* Setting up Wacom Tablet in Arch Hyprland
I purchased a [[https://www.wacom.com/en-gb/products/one-by-wacom][One by Wacom]] tablet almost 2 years ago now and it works flawlessly in both Windows and MacOS and even in most Linux distros with some configuration.

View File

@@ -0,0 +1,18 @@
#+TITLE: Wacom With Arch
#+DATE: <2025-08-08 Fri>
#+OPTIONS: toc:nil num:nil
#+FILETAGS: :insights:
* Setting up Wacom Tablet in Arch Hyprland
I purchased a [[https://www.wacom.com/en-gb/products/one-by-wacom][One by Wacom]] tablet almost 2 years ago now and it works flawlessly in both Windows and MacOS and even in most Linux distros with some configuration.
However with Arch and Hyprland, there were some issues related to the ~xserver~ it was running on. The X input driver module (e.g. xf86-input-wacom) is linked into the X server which in turn is in charge of rendering and generic input events. Hyprland on the other hand uses the Wayland display server protocol (replacement for the X protocol) hence why there is difficulty in input mapping.
I came across this issue as I was able to get the tablet to work across multiple monitors (mapping to a single one) through the ~xsetwacom~ function - which, at the time I was using Ubuntu. But with Hyprland there needs to be some manual intervention. I came across this [[https://thomaspurnell.com/003_wacom_graphics_hyprland/wacom_hyprland.html][post]] which explains nicely how to map the tablet to a single monitor. I took this approach with a slight configuration; in my ~hyprland.conf~ file, I simply added the following line:
#+BEGIN_SRC
exec-once = hyprctl keyword "device[wacom-one-by-wacom-m-pen]:output" "DP-1"
#+END_SRC
which mapped the device to the primary monitor DP-1.

View File

@@ -2,6 +2,8 @@
#+DATE: <2025-08-08 Fri>
#+OPTIONS: toc:nil num:nil
#+FILETAGS: :emacs:review:
#+COMMENTS: t
#+SLUG: what-i-want-to-do-with-emacs
I first started using Emacs (and Linux for that matter) since around the end of 2023, and it's been well over a year of trial and error with this text editor. At first I was using this for all sorts of things such as:
@@ -17,7 +19,7 @@ One thing I realised is just how powerful Emacs really is, just recently I found
After some thinking I narrowed it down and collated it in the following diagram:
[[../../../assets/2025-08-08-emacs.svg]]
[[../../../assets/sketchnotes/2025-08-08-emacs.svg]]
Of course this is the current workflow, where the text in red are items I /currently/ use Emacs for (high percentage likelihood this will increase), and the items in blue text are ones I plan on adding to my workflow. The main thing I want from this is to ensure consistency in daily practices.

View File

@@ -2,6 +2,8 @@
#+DATE: <2025-08-07 Thu>
#+OPTIONS: toc:nil num:nil
#+FILETAGS: :education:
#+COMMENTS: t
#+SLUG: zettlekasten
* The Zettelkasten Method
@@ -9,9 +11,10 @@ This Zettelkasten method is growing in popularity for taking notes. Ever felt as
The [[https://zettelkasten.de/introduction/][official website]] describes in detail exactly what the Zettelkasten method is, providing use cases and benefits to this method. The part I wanted to highlighted in this is the following paragraph, where the author depicts how this concept would be explained to someone unfamiliar with it:
#+BEGIN_QUOTE
{{{epigraph_single(A Zettelkasten is a personal tool for thinking and writing. It has hypertextual features to make a web of thoughts possible. The difference to other systems is that you create a web of thoughts instead of notes of arbitrary size and form\, and emphasize connection\, not a collection.
)}}}
A Zettelkasten is a personal tool for thinking and writing. It has hypertextual features to make a web of thoughts possible. The difference to other systems is that you create a web of thoughts instead of notes of arbitrary size and form, and emphasize connection, not a collection.
#+END_QUOTE
This web of thoughts is exactly what makes it useful, it takes on the seemingly cluttered /mess of information/ and is able to link the nodes together to create something meaningful and useful.

View File

@@ -1,6 +0,0 @@
#+TITLE: Wacom With Arch
#+DATE: <2025-08-08 Fri>
#+OPTIONS: toc:nil num:nil title:nil
#+FILETAGS: :insights:
* Wacom With Arch

View File

@@ -0,0 +1,22 @@
#+TITLE: [02-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-02 Sun>
#+filetags: :review:
#+COMMENTS: t
#+SLUG: 02-11-25-week-review
[Was a mid week file, then moved it to a review file]
* Mid Week Review
- Mostly work related updates. Working from home on monday 10th (for trial, so we get used to it and connecting to the VPN)
- Subsequently we will be able to work from home on mondays and fridays for the following weeks (beginning either 17th or 24th?)
- Still working on powerbi (not a fan)
- Upskilling needs to take more this week and the next
- Probation meeting on thursday next week [06/11]
- It's getting darker earlier and more windy
* TODOS
** DONE
Write the retrospective notes
** DONE
More competencies

View File

@@ -0,0 +1,20 @@
#+TITLE: [02-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-02 Sun>
#+filetags: :review:
[Was a mid week file, then moved it to a review file]
* Mid Week Review
- Mostly work related updates. Working from home on monday 10th (for trial, so we get used to it and connecting to the VPN)
- Subsequently we will be able to work from home on mondays and fridays for the following weeks (beginning either 17th or 24th?)
- Still working on powerbi (not a fan)
- Upskilling needs to take more this week and the next
- Probation meeting on thursday next week [06/11]
- It's getting darker earlier and more windy
* TODOS
** DONE
Write the retrospective notes
** DONE
More competencies

View File

@@ -0,0 +1,44 @@
#+TITLE: [09-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE:<2025-11-09 Sun 20:08>
#+filetags: :review:
#+COMMENTS: t
#+SLUG: 09-11-25-week-review
* Weekly review
- Week 5 work finished!
- Working from home on monday 10th.
- Maybe do weekly work retrospectives? Using the start stop continue model.
- Probation meeting went quite well Alhamdulillah. Keep doing what you're doing was the message.
- Should start to record successes, either here or on post-it notes. Helps with imposter syndrome.
- Led a meeting for the first time (07/11). Was with Lloyd and Oli from team monopoly (SecDevOps). They understood the problem statement clearly and everything was explained properly to them.
- Bowling Kata was reduced to 29 minutes.
Some thoughts about the nginx reverse proxying architecture. This week I transferred all the docker services to a subdomain.
[[../../../assets/sketchnotes/09-11-2025-nginx-architecture.svg]]
Weekly retrospective using the start stop continue model:
[[../../../assets/sketchnotes/09-11-2025-retrospectives.svg]]
Here is the current state of the competencies (20.5%):
[[../../../assets/images/competencies/competencies-09-11-25.png]]
During the meeting, we were told to achieve 60% by the end of January.
And here is the dev plan:
[[../../../assets/images/competencies/dev-plan-09-11-25.png]]
* Next week:
- Competencies to do:
- Aware of the Benefits of Normalisation
- Aware of PowerShell, Python, Bash and Pester
- Aware of Lean, Agile & extreme programming Principles
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,42 @@
#+TITLE: [09-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE:<2025-11-09 Sun 20:08>
#+filetags: :review:
* Weekly review
- Week 5 work finished!
- Working from home on monday 10th.
- Maybe do weekly work retrospectives? Using the start stop continue model.
- Probation meeting went quite well Alhamdulillah. Keep doing what you're doing was the message.
- Should start to record successes, either here or on post-it notes. Helps with imposter syndrome.
- Led a meeting for the first time (07/11). Was with Lloyd and Oli from team monopoly (SecDevOps). They understood the problem statement clearly and everything was explained properly to them.
- Bowling Kata was reduced to 29 minutes.
Some thoughts about the nginx reverse proxying architecture. This week I transferred all the docker services to a subdomain.
[[../../../assets/sketchnotes/09-11-2025-nginx-architecture.svg]]
Weekly retrospective using the start stop continue model:
[[../../../assets/sketchnotes/09-11-2025-retrospectives.svg]]
Here is the current state of the competencies (20.5%):
[[../../../assets/images/competencies/competencies-09-11-25.png]]
During the meeting, we were told to achieve 60% by the end of January.
And here is the dev plan:
[[../../../assets/images/competencies/dev-plan-09-11-25.png]]
* Next week:
- Competencies to do:
- Aware of the Benefits of Normalisation
- Aware of PowerShell, Python, Bash and Pester
- Aware of Lean, Agile & extreme programming Principles
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,90 @@
#+TITLE: [16-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE:<2025-11-10 Mon 17:44>
#+filetags: :review:
#+WIP:
#+COMMENTS: t
#+SLUG: 16-11-25-week-review
* Previous Week List:
- Competencies to do:
- +Aware of the Benefits of Normalisation+
- Aware of PowerShell, Python, Bash and Pester
- +Aware of Lean, Agile & extreme programming Principles+
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
- +Understands responsive design+
- +Understands Network design+
* Weekly review:
- <2025-11-10 Mon>:
- Got assigned to create a database that can help the whole company. Value added work! The database will have system names linked to the team names. In other words, which teams are working under which systems? Also it will have the repo names and which teams own which repos.
- <2025-11-11 Tue>
- Worked on getting the DB for the system-team-repo. Met with Jez and he said to get the IPT names and use them instead. [reminder to attatch the links for this].
- Created a powershell script to load all the data into the SQL server (local)
- <2025-11-12 Wed>
- Met with the whole team monopoly (+ others). -> First time being in a group huddle
- Was interesting to see how [[https://www.yworks.com/][yworks]] is used
- <2025-11-13 Thu>
- Angular training. Was taught about the new Angular 19 changes and how to use them. Things like the the ~@~ decorator was discussed.
- <2025-11-14 Fri>
- Training on datamarts and airflow. Learnt a lot about how they can be used. I wrote a few slack messages explaining to the team what it is, and also got clarification from Filipo. Also sent a request to create a new repository for this project.
Was able to complete 4/5 competencies this week. The reason for not completing them is that Friday was used mainly for meetings and other admin tasks. In hindsight, I /could/ have completed them, as there were times when I chose to not do value added work.
[[../../../assets/sketchnotes/16-11-2025-retrospectives.svg]]
Daily retrospectives:
[[../../../assets/images/reviews/16-11-25-daily-retros.jpg]]
One thing that really helped this week is ~guac~. I was able to use this whilst at work, very handy when wanting to refer to some notes/files that is only located at home.
[[../../../assets/images/reviews/15-11-2025-guac.png]]
* Other
** Airflow/Datamart
[[../../../posts/career/airflow.org][Airflow Post]]
*** Diagram
*A work colleague has written the following and made this diagram*
[[../../../assets/images/diagrams/airflow.png]]
1. AZDO repo for our datamart to go in. Clone the data mart example template
2. Datamart, can use one big one that has different tables for everything that we need.
3. Local airflow that calls api and gets data. continuation tokens can be used. there is a good example
4. Upload everything to microlise servers where it is run automatically
5. Power bi, change data sources to be references to our sql. Can have all tables in power bi. Use filters
*** Summary that I wrote in slack:
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DataMart.SQLServer: very useful link explaining what datamarts are, ELT (extract, load, transform) orchestration and how to set this up
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DataMart.DataEngineering.InsightReadiness: an example of what a datamart repo looks like. in the template repo, the two important files are tsqlt and DataMartTemplate (in this instance its called InsightReadiness )
- tsqlt coverage should be above 60%
- https://microliseuk.sharepoint.com/sites/msteams_bb7636: This link is the CoP (community of practice) for the airflow. You'll find useful information regarding what apache airflow is and how to set things up.
- https://microliseuk.sharepoint.com/sites/msteams_bb7636/SitePages/Getting-started-with-Airflow.aspx: This link tells you how to set airflow up locally. Once you're done, this will be published to an airflow scheduler platform. Keep in mind that when you want to publish this, document that it succeeds in the PR.
- Just a summary from Filippo:
- A DataMart it's simply a database that is made ad-hoc to contain a certain subset of data (Specific tables with specific columns).
- Once that is created Airflow is used to put data in that database. So it extract data from other sources (APIS, databases) and loads it into the datamart we have created.
- Once you get Airflow locally working and a new Datamart (deployed locally) you can then write a dag to load data into the Mart.
- http://airmastqa01.mms.local:8080/home: this link shows all the DAGs that are currently running in a testing environment, and when they are scheduled. Login using MSUP (edited)
- http://airmastprd01.mms.local:8080/home: This link is the prod version
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DevDocs?path=/Airflow/HowTo/PowerBiReportRefresh.md&version=GBmain&_a=preview: Might prove to be useful when we do the powerbi refresh thing...
* Next week:
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
- Aware of PowerShell, Python, Bash and Pester

View File

@@ -0,0 +1,87 @@
#+TITLE: [16-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE:<2025-11-10 Mon 17:44>
#+filetags: :review:
#+WIP:
* Previous Week List:
- Competencies to do:
- +Aware of the Benefits of Normalisation+
- Aware of PowerShell, Python, Bash and Pester
- +Aware of Lean, Agile & extreme programming Principles+
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
- +Understands responsive design+
- +Understands Network design+
* Weekly review:
- <2025-11-10 Mon>:
- Got assigned to create a database that can help the whole company. Value added work! The database will have system names linked to the team names. In other words, which teams are working under which systems? Also it will have the repo names and which teams own which repos.
- <2025-11-11 Tue>
- Worked on getting the DB for the system-team-repo. Met with Jez and he said to get the IPT names and use them instead. [reminder to attatch the links for this].
- Created a powershell script to load all the data into the SQL server (local)
- <2025-11-12 Wed>
- Met with the whole team monopoly (+ others). -> First time being in a group huddle
- Was interesting to see how [[https://www.yworks.com/][yworks]] is used
- <2025-11-13 Thu>
- Angular training. Was taught about the new Angular 19 changes and how to use them. Things like the the ~@~ decorator was discussed.
- <2025-11-14 Fri>
- Training on datamarts and airflow. Learnt a lot about how they can be used. I wrote a few slack messages explaining to the team what it is, and also got clarification from Filipo. Also sent a request to create a new repository for this project.
Was able to complete 4/5 competencies this week. The reason for not completing them is that Friday was used mainly for meetings and other admin tasks. In hindsight, I /could/ have completed them, as there were times when I chose to not do value added work.
[[../../../assets/sketchnotes/16-11-2025-retrospectives.svg]]
Daily retrospectives:
[[../../../assets/images/reviews/16-11-25-daily-retros.jpg]]
One thing that really helped this week is ~guac~. I was able to use this whilst at work, very handy when wanting to refer to some notes/files that is only located at home.
[[../../../assets/images/reviews/15-11-2025-guac.png]]
* Other
** Airflow/Datamart
[[../../../posts/career/airflow.org][Airflow Post]]
*** Diagram
*A work colleague has written the following and made this diagram*
[[../../../assets/images/diagrams/airflow.png]]
1. AZDO repo for our datamart to go in. Clone the data mart example template
2. Datamart, can use one big one that has different tables for everything that we need.
3. Local airflow that calls api and gets data. continuation tokens can be used. there is a good example
4. Upload everything to microlise servers where it is run automatically
5. Power bi, change data sources to be references to our sql. Can have all tables in power bi. Use filters
*** Summary that I wrote in slack:
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DataMart.SQLServer: very useful link explaining what datamarts are, ELT (extract, load, transform) orchestration and how to set this up
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DataMart.DataEngineering.InsightReadiness: an example of what a datamart repo looks like. in the template repo, the two important files are tsqlt and DataMartTemplate (in this instance its called InsightReadiness )
- tsqlt coverage should be above 60%
- https://microliseuk.sharepoint.com/sites/msteams_bb7636: This link is the CoP (community of practice) for the airflow. You'll find useful information regarding what apache airflow is and how to set things up.
- https://microliseuk.sharepoint.com/sites/msteams_bb7636/SitePages/Getting-started-with-Airflow.aspx: This link tells you how to set airflow up locally. Once you're done, this will be published to an airflow scheduler platform. Keep in mind that when you want to publish this, document that it succeeds in the PR.
- Just a summary from Filippo:
- A DataMart it's simply a database that is made ad-hoc to contain a certain subset of data (Specific tables with specific columns).
- Once that is created Airflow is used to put data in that database. So it extract data from other sources (APIS, databases) and loads it into the datamart we have created.
- Once you get Airflow locally working and a new Datamart (deployed locally) you can then write a dag to load data into the Mart.
- http://airmastqa01.mms.local:8080/home: this link shows all the DAGs that are currently running in a testing environment, and when they are scheduled. Login using MSUP (edited)
- http://airmastprd01.mms.local:8080/home: This link is the prod version
- https://azdo.microlise.com/MicroliseCollection/Microlise/_git/DevDocs?path=/Airflow/HowTo/PowerBiReportRefresh.md&version=GBmain&_a=preview: Might prove to be useful when we do the powerbi refresh thing...
* Next week:
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
- Aware of PowerShell, Python, Bash and Pester

View File

@@ -0,0 +1,78 @@
#+TITLE: [23-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-17 Mon 18:05>
#+filetags: :review:
#+WIP:
#+COMMENTS: t
#+SLUG: 23-11-25-week-review
* Previous Week List:
- Competencies to do:
- +Aware of PowerShell, Python, Bash and Pester+
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
There wasn't much time to do competencies this week because the new sprint started. We were told that this project should ideally be finished within the next two weeks so that we can start working on some other things (Angular related; Kevin did say that it would be related to creating a system that shows who makes the commits, how often and the relationship between committers).
* Weekly Review
- <2025-11-17 Mon>:
- Created a new repository for the team using the #help-azdo channel.
- Set up this repo by renaming references etc.
- Played around with datamarts, got the team and system tables working, although haven't yet written the ~tSQLt~ tests for them yet.
- <2025-11-18 Tue>
- Demo-ed the STR (system team repo) database.
- Started to create the tables for the Mean time to restore and lead time for change.
- <2025-11-19 Wed>
- Finished off creating the data tables for MTTR and LTTC
- <2025-11-20 Thu>
- Started creating Airflows for the repositories table
- <2025-11-21 Fri>
- Data science training, Research Operations, Kafka, Airflow
** Daily retrospectives:
[[../../../assets/images/reviews/23-11-25-daily-retros.jpg]]
** Weekly retrospectives
[[../../../assets/sketchnotes/23-11-2025-retrospectives.svg]]
* Other
** Books
As I finished another book and also spent some time adding more services, I wanted to collate a list of books (of a wide genre) to read. One I came across is [[https://theinvisiblementor.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-summary/][Ikigai]].
** reader.zainezq.com
Something interesting I found when I wanted to take notes on the book called /The Toyota Way/; this is a service that lets you read books as well as convert a ~pdf~ file to ~epub~.
[[../../../assets/images/reviews/23-11-2025-reader.png]]
** booksvnc.zainezq.com
In order to add books, edit metadata and start the server for the ~reader.zainezq.com~
[[../../../assets/images/reviews/23-11-2025-vnc.png]]
** netdata.zainezq.com
One thing I wanted to have information for is:
#+BEGIN_SRC bash
uname -a
hostnamectl
cat /etc/os-release
lscpu
free -h
lsblk -f
df -h
ip a
#+END_SRC
[[../../../assets/images/reviews/23-11-2025-netdata.png]]
* Next Week
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,76 @@
#+TITLE: [23-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-17 Mon 18:05>
#+filetags: :review:
#+WIP:
* Previous Week List:
- Competencies to do:
- +Aware of PowerShell, Python, Bash and Pester+
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
There wasn't much time to do competencies this week because the new sprint started. We were told that this project should ideally be finished within the next two weeks so that we can start working on some other things (Angular related; Kevin did say that it would be related to creating a system that shows who makes the commits, how often and the relationship between committers).
* Weekly Review
- <2025-11-17 Mon>:
- Created a new repository for the team using the #help-azdo channel.
- Set up this repo by renaming references etc.
- Played around with datamarts, got the team and system tables working, although haven't yet written the ~tSQLt~ tests for them yet.
- <2025-11-18 Tue>
- Demo-ed the STR (system team repo) database.
- Started to create the tables for the Mean time to restore and lead time for change.
- <2025-11-19 Wed>
- Finished off creating the data tables for MTTR and LTTC
- <2025-11-20 Thu>
- Started creating Airflows for the repositories table
- <2025-11-21 Fri>
- Data science training, Research Operations, Kafka, Airflow
** Daily retrospectives:
[[../../../assets/images/reviews/23-11-25-daily-retros.jpg]]
** Weekly retrospectives
[[../../../assets/sketchnotes/23-11-2025-retrospectives.svg]]
* Other
** Books
As I finished another book and also spent some time adding more services, I wanted to collate a list of books (of a wide genre) to read. One I came across is [[https://theinvisiblementor.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-summary/][Ikigai]].
** reader.zainezq.com
Something interesting I found when I wanted to take notes on the book called /The Toyota Way/; this is a service that lets you read books as well as convert a ~pdf~ file to ~epub~.
[[../../../assets/images/reviews/23-11-2025-reader.png]]
** booksvnc.zainezq.com
In order to add books, edit metadata and start the server for the ~reader.zainezq.com~
[[../../../assets/images/reviews/23-11-2025-vnc.png]]
** netdata.zainezq.com
One thing I wanted to have information for is:
#+BEGIN_SRC bash
uname -a
hostnamectl
cat /etc/os-release
lscpu
free -h
lsblk -f
df -h
ip a
#+END_SRC
[[../../../assets/images/reviews/23-11-2025-netdata.png]]
* Next Week
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,167 @@
#+TITLE: [30-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-30 Sun 17:09>
#+filetags: :review:
#+WIP:
#+COMMENTS: t
#+SLUG: 30-11-25-week-review
* Previous Week List:
- Competencies to do:
- +Aware of relational databases+
- +Aware of TLS and SSL+
- +Aware of good error handling and logging+
- Understanding of TCP/IP
- Understands Server Operating Systems (might be tough)
Been extremely busy with this sprint, getting the work delivered in a timely manner; there wasn't as much time to focus on competencies.
* Weekly Review
- <2025-11-24 Mon>:
- Got the news the company is reducing staff. See this [[https://www.thebusinessdesk.com/eastmidlands/news/2104597-microlise-issues-profit-warning-after-weaker-than-expected-trading][article]]
- Got the DAG for PR's to work
- <2025-11-25 Tue>
- Worked mainly on threads and commits DAGs
- <2025-11-26 Wed>
- We had a meeting with Kevin on the scoring system for the redundancy thing
- Finished creating and testing all the DAG's
- <2025-11-27 Thu>
- Refinement meeting
- Started creating base case tests for SQL
- Made a script to automate the creation of testing files
- <2025-11-28 Fri>
- Finished base case tests
- Training with Lloyd on SRE and Techops
** Daily retrospectives:
[[../../../assets/images/reviews/30-11-25-daily-retros.jpg]]
** Weekly retrospectives
[[../../../assets/sketchnotes/30-11-2025-retrospectives.svg]]
* Other
** Powershell script:
Here is the powershell script that generates the files for testing:
#+BEGIN_SRC ps1
# Define the base folders
$securityFolder = "C:\Users\zqayyum\Source\Repos\DataMart.Academy.DoraMetrics\tsqlt\Security"
$scriptsFolder = "C:\Users\zqayyum\Source\Repos\DataMart.Academy.DoraMetrics\tsqlt"
# Create base folders if they don't exist
if (!(Test-Path $securityFolder)) { New-Item -ItemType Directory -Path $securityFolder }
if (!(Test-Path $scriptsFolder)) { New-Item -ItemType Directory -Path $scriptsFolder }
# Define main file names (schemas)
$fileNames = @(
"testMergeStagingDataCommits.sql",
"testMergeStagingDataEnvironments.sql",
"testMergeStagingDataPullRequests.sql",
"testMergeStagingDataReleases.sql",
"testMergeStagingDataRepositories.sql",
"testMergeStagingDataThreads.sql"
)
# Define stored procedure test files
$storedProcFiles = @(
"Test changed rows are logged.sql",
"Test changed rows are not logged as inserted.sql",
"Test changed rows are updated.sql",
"Test errors are logged.sql",
"Test import date on changed rows is updated.sql",
"Test new rows are inserted.sql",
"Test new rows are not logged as updated.sql"
)
foreach ($name in $fileNames) {
# Create .sql file under Security
$filePath = Join-Path $securityFolder $name
$schemaName = [System.IO.Path]::GetFileNameWithoutExtension($name)
# Content for schema file
$schemaContent = @"
CREATE SCHEMA [$schemaName]
AUTHORIZATION [dbo];
GO
EXECUTE sp_addextendedproperty
@name = N'tSQLt.TestClass',
@value = 1,
@level0type = N'SCHEMA',
@level0name = N'$schemaName';
GO
"@
Set-Content -Path $filePath -Value $schemaContent
# Create schema folder under Scripts
$schemaFolderPath = Join-Path $scriptsFolder $schemaName
if (!(Test-Path $schemaFolderPath)) {
New-Item -ItemType Directory -Path $schemaFolderPath | Out-Null
}
# Create Stored Procedures subfolder
$storedProcFolderPath = Join-Path $schemaFolderPath "Stored Procedures"
if (!(Test-Path $storedProcFolderPath)) {
New-Item -ItemType Directory -Path $storedProcFolderPath | Out-Null
}
# Create stored procedure files with dynamic content
foreach ($procFile in $storedProcFiles) {
$procFilePath = Join-Path $storedProcFolderPath $procFile
$procName = [System.IO.Path]::GetFileNameWithoutExtension($procFile)
$procContent = @"
CREATE PROCEDURE $schemaName.[$procName]
AS
BEGIN
SET NOCOUNT ON;
-- Assemble
DECLARE @RowsUpdated INT;
EXEC tsqlt.FakeTable @SchemaName = 'staging', @TableName = 'tbl_TemplateTable';
EXEC tsqlt.FakeTable @SchemaName = 'data', @TableName = 'tbl_TemplateTable';
EXEC tsqlt.FakeTable @SchemaName = 'logging', @TableName = 'tbl_ExecutionCounts';
INSERT INTO data.tbl_TemplateTable(UnitDescription, TrunionDisplacementInMM)
VALUES('UT7000', '9');
INSERT INTO staging.tbl_TemplateTable(UnitDescription, TrunionDisplacementInMM)
VALUES('UT7000', '6');
-- Act
EXEC staging.pr_MergeStagingData;
-- Assert
SELECT @RowsUpdated = RowsUpdated FROM logging.tbl_ExecutionCounts;
EXEC tsqlt.AssertEquals
@Actual = @RowsUpdated,
@Expected = 1;
END
"@
Set-Content -Path $procFilePath -Value $procContent
}
}
Write-Host "All files and folders created successfully with dynamic procedure content"
#+END_SRC
** Finances
I decided to spin up a docker container to manage finances. For the moment there is no way to connect to a Bank without using an intermediary (privacy concerns).
[[../../../assets/images/reviews/30-11-2025-acutal.png]]
* Next Week
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,165 @@
#+TITLE: [30-11-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-11-30 Sun 17:09>
#+filetags: :review:
#+WIP:
* Previous Week List:
- Competencies to do:
- +Aware of relational databases+
- +Aware of TLS and SSL+
- +Aware of good error handling and logging+
- Understanding of TCP/IP
- Understands Server Operating Systems (might be tough)
Been extremely busy with this sprint, getting the work delivered in a timely manner; there wasn't as much time to focus on competencies.
* Weekly Review
- <2025-11-24 Mon>:
- Got the news the company is reducing staff. See this [[https://www.thebusinessdesk.com/eastmidlands/news/2104597-microlise-issues-profit-warning-after-weaker-than-expected-trading][article]]
- Got the DAG for PR's to work
- <2025-11-25 Tue>
- Worked mainly on threads and commits DAGs
- <2025-11-26 Wed>
- We had a meeting with Kevin on the scoring system for the redundancy thing
- Finished creating and testing all the DAG's
- <2025-11-27 Thu>
- Refinement meeting
- Started creating base case tests for SQL
- Made a script to automate the creation of testing files
- <2025-11-28 Fri>
- Finished base case tests
- Training with Lloyd on SRE and Techops
** Daily retrospectives:
[[../../../assets/images/reviews/30-11-25-daily-retros.jpg]]
** Weekly retrospectives
[[../../../assets/sketchnotes/30-11-2025-retrospectives.svg]]
* Other
** Powershell script:
Here is the powershell script that generates the files for testing:
#+BEGIN_SRC ps1
# Define the base folders
$securityFolder = "C:\Users\zqayyum\Source\Repos\DataMart.Academy.DoraMetrics\tsqlt\Security"
$scriptsFolder = "C:\Users\zqayyum\Source\Repos\DataMart.Academy.DoraMetrics\tsqlt"
# Create base folders if they don't exist
if (!(Test-Path $securityFolder)) { New-Item -ItemType Directory -Path $securityFolder }
if (!(Test-Path $scriptsFolder)) { New-Item -ItemType Directory -Path $scriptsFolder }
# Define main file names (schemas)
$fileNames = @(
"testMergeStagingDataCommits.sql",
"testMergeStagingDataEnvironments.sql",
"testMergeStagingDataPullRequests.sql",
"testMergeStagingDataReleases.sql",
"testMergeStagingDataRepositories.sql",
"testMergeStagingDataThreads.sql"
)
# Define stored procedure test files
$storedProcFiles = @(
"Test changed rows are logged.sql",
"Test changed rows are not logged as inserted.sql",
"Test changed rows are updated.sql",
"Test errors are logged.sql",
"Test import date on changed rows is updated.sql",
"Test new rows are inserted.sql",
"Test new rows are not logged as updated.sql"
)
foreach ($name in $fileNames) {
# Create .sql file under Security
$filePath = Join-Path $securityFolder $name
$schemaName = [System.IO.Path]::GetFileNameWithoutExtension($name)
# Content for schema file
$schemaContent = @"
CREATE SCHEMA [$schemaName]
AUTHORIZATION [dbo];
GO
EXECUTE sp_addextendedproperty
@name = N'tSQLt.TestClass',
@value = 1,
@level0type = N'SCHEMA',
@level0name = N'$schemaName';
GO
"@
Set-Content -Path $filePath -Value $schemaContent
# Create schema folder under Scripts
$schemaFolderPath = Join-Path $scriptsFolder $schemaName
if (!(Test-Path $schemaFolderPath)) {
New-Item -ItemType Directory -Path $schemaFolderPath | Out-Null
}
# Create Stored Procedures subfolder
$storedProcFolderPath = Join-Path $schemaFolderPath "Stored Procedures"
if (!(Test-Path $storedProcFolderPath)) {
New-Item -ItemType Directory -Path $storedProcFolderPath | Out-Null
}
# Create stored procedure files with dynamic content
foreach ($procFile in $storedProcFiles) {
$procFilePath = Join-Path $storedProcFolderPath $procFile
$procName = [System.IO.Path]::GetFileNameWithoutExtension($procFile)
$procContent = @"
CREATE PROCEDURE $schemaName.[$procName]
AS
BEGIN
SET NOCOUNT ON;
-- Assemble
DECLARE @RowsUpdated INT;
EXEC tsqlt.FakeTable @SchemaName = 'staging', @TableName = 'tbl_TemplateTable';
EXEC tsqlt.FakeTable @SchemaName = 'data', @TableName = 'tbl_TemplateTable';
EXEC tsqlt.FakeTable @SchemaName = 'logging', @TableName = 'tbl_ExecutionCounts';
INSERT INTO data.tbl_TemplateTable(UnitDescription, TrunionDisplacementInMM)
VALUES('UT7000', '9');
INSERT INTO staging.tbl_TemplateTable(UnitDescription, TrunionDisplacementInMM)
VALUES('UT7000', '6');
-- Act
EXEC staging.pr_MergeStagingData;
-- Assert
SELECT @RowsUpdated = RowsUpdated FROM logging.tbl_ExecutionCounts;
EXEC tsqlt.AssertEquals
@Actual = @RowsUpdated,
@Expected = 1;
END
"@
Set-Content -Path $procFilePath -Value $procContent
}
}
Write-Host "All files and folders created successfully with dynamic procedure content"
#+END_SRC
** Finances
I decided to spin up a docker container to manage finances. For the moment there is no way to connect to a Bank without using an intermediary (privacy concerns).
[[../../../assets/images/reviews/30-11-2025-acutal.png]]
* Next Week
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP

View File

@@ -0,0 +1,66 @@
#+TITLE: [07-12-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-12-07 Sun 20:34>
#+filetags: :review:
#+WIP:
#+COMMENTS: t
#+SLUG: 07-12-25-week-review
* Previous Week List:
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
* Weekly Review:
This week has been so busy with getting the airflow working and the datamarts tested. Our team suggested to use the Friday as a 'training day', I told myself I'd work until lunch, then use the afternoon to tick off some competencies and reading, however it took me all day to finish off the DAG's.
- <2025-12-01 Mon>:
- I continued working on the Datamart testing, getting majority of the tables tested
- <2025-12-02 Tue>
- Started to work on the airflow testing
- Had our retros, demos and refinement sessions
- <2025-12-03 Wed>
- Created and finished off the suite testing for the airflows. Started to look into pipelines
- <2025-12-04 Thu>
- Fixing some airflow tests
- Started to get the STR (System Team Repo) merged into a datamart/airflow
- Made a pipeline with the help of Oliver Gamble (main and gated)
- <2025-12-05 Fri>
- Completed the airflow DAG for repositories
** Daily retrospectives:
[[../../../assets/images/reviews/07-12-25-daily-retros.jpg]]
** Weekly retrospectives:
[[../../../assets/sketchnotes/07-12-2025-retrospectives.svg]]
* Other
- In the Weekly List, I need to document things outside of competencies. The weekly review should not be limited to work.
- I added a new docker service for running a self hosted VPN (~wg-easy~). The link for this is [[https:wgeasy.zainezq.com][here]].
- I used to use a reading tracker to see which books I'm reading and have read. I want to get this back in use. An entry looks like:
#+BEGIN_SRC elisp
,* Book Title
:PROPERTIES:
:Author:
:Status:
:Group:
:STARTED:
:FINISHED:
:Category:
:END:
#+END_SRC
- The current amount of time it takes to build this website can be found using the following command: ~time emacs -Q --script build-site.el~. And currently it outputs:
#+BEGIN_SRC zsh
real 0m8.468s
user 0m7.316s
sys 0m1.068s
#+END_SRC
The old website used to take a full minute to build, so this isn't too bad (also considering the other website was much /smaller/ in comparison to this one).

View File

@@ -0,0 +1,64 @@
#+TITLE: [07-12-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-12-07 Sun 20:34>
#+filetags: :review:
#+WIP:
* Previous Week List:
- Understands Server Operating Systems (might be tough)
- Understanding of TCP/IP
* Weekly Review:
This week has been so busy with getting the airflow working and the datamarts tested. Our team suggested to use the Friday as a 'training day', I told myself I'd work until lunch, then use the afternoon to tick off some competencies and reading, however it took me all day to finish off the DAG's.
- <2025-12-01 Mon>:
- I continued working on the Datamart testing, getting majority of the tables tested
- <2025-12-02 Tue>
- Started to work on the airflow testing
- Had our retros, demos and refinement sessions
- <2025-12-03 Wed>
- Created and finished off the suite testing for the airflows. Started to look into pipelines
- <2025-12-04 Thu>
- Fixing some airflow tests
- Started to get the STR (System Team Repo) merged into a datamart/airflow
- Made a pipeline with the help of Oliver Gamble (main and gated)
- <2025-12-05 Fri>
- Completed the airflow DAG for repositories
** Daily retrospectives:
[[../../../assets/images/reviews/07-12-25-daily-retros.jpg]]
** Weekly retrospectives:
[[../../../assets/sketchnotes/07-12-2025-retrospectives.svg]]
* Other
- In the Weekly List, I need to document things outside of competencies. The weekly review should not be limited to work.
- I added a new docker service for running a self hosted VPN (~wg-easy~). The link for this is [[https:wgeasy.zainezq.com][here]].
- I used to use a reading tracker to see which books I'm reading and have read. I want to get this back in use. An entry looks like:
#+BEGIN_SRC elisp
,* Book Title
:PROPERTIES:
:Author:
:Status:
:Group:
:STARTED:
:FINISHED:
:Category:
:END:
#+END_SRC
- The current amount of time it takes to build this website can be found using the following command: ~time emacs -Q --script build-site.el~. And currently it outputs:
#+BEGIN_SRC zsh
real 0m8.468s
user 0m7.316s
sys 0m1.068s
#+END_SRC
The old website used to take a full minute to build, so this isn't too bad (also considering the other website was much /smaller/ in comparison to this one).

View File

@@ -0,0 +1,22 @@
#+TITLE: [14-12-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-12-09 Tue 12:12>
#+filetags: :review:
#+WIP:
#+COMMENTS: t
#+SLUG: 14-12-25-week-review
* Week List:
- +Can Measure Computer Performance on Disk, CPU, RAM, Network+
- +Tests SQL queries and tSQL code+
- +Aware of Basic Infrastructure as Code Concepts+
- +Aware of Distributed Systems+
- +Can Measure Computer Performance on Disk, CPU, RAM, Network+
- +Tests SQL queries and tSQL code+
- +Aware of Archiving Procedures+
* Weekly Review:
Not much to show this week, I've been really busy trying to finalise the project, although I reckon it may take another week. I did get to do a lot more competencies at the start of the week however.
* Other

View File

@@ -0,0 +1,21 @@
#+TITLE: [14-12-2025] - Weekly Review
#+OPTIONS: num:nil
#+DATE: <2025-12-09 Tue 12:12>
#+filetags: :review:
#+WIP:
* Week List:
- +Can Measure Computer Performance on Disk, CPU, RAM, Network+
- +Tests SQL queries and tSQL code+
- +Aware of Basic Infrastructure as Code Concepts+
- +Aware of Distributed Systems+
- +Can Measure Computer Performance on Disk, CPU, RAM, Network+
- +Tests SQL queries and tSQL code+
- +Aware of Archiving Procedures+
* Weekly Review:
Not much to show this week, I've been really busy trying to finalise the project, although I reckon it may take another week. I did get to do a lot more competencies at the start of the week however.
* Other

26
blogs/2025/2025-list.org Normal file
View File

@@ -0,0 +1,26 @@
#+TITLE: 2025 List
#+OPTIONS: toc:nil num:nil
See the categories: @@html:<a href="../../categories.html">Categories</a>@@
* 2025
** December 2025
- [[file:12-december/14-12-week-review.org][[14-12-2025] - Weekly Review]] @@html:<span class="post-date">09-12-2025 12:12</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:12-december/07-12-week-review.org][[07-12-2025] - Weekly Review]] @@html:<span class="post-date">07-12-2025 20:34</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
** November 2025
- [[file:11-november/30-11-week-review.org][[30-11-2025] - Weekly Review]] @@html:<span class="post-date">30-11-2025 17:09</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:11-november/23-11-week-review.org][[23-11-2025] - Weekly Review]] @@html:<span class="post-date">17-11-2025 18:05</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:11-november/16-11-week-review.org][[16-11-2025] - Weekly Review]] @@html:<span class="post-date">10-11-2025 17:44</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:11-november/09-11-week-review.org][[09-11-2025] - Weekly Review]] @@html:<span class="post-date">09-11-2025 20:08</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:11-november/02-11-week-review.org][[02-11-2025] - Weekly Review]] @@html:<span class="post-date">02-11-2025 00:00</span>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
** August 2025
- [[file:08-august/third-time.org][Third Time]] @@html:<span class="post-date">28-08-2025 17:08</span>@@ @@html:<a href="/tags/insights.html"> <span class="post-tag">insights</span> </a>@@
- [[file:08-august/benefits-of-reading.org][Benefits of Reading]] @@html:<span class="post-date">14-08-2025 23:36</span>@@ @@html:<a href="/tags/reading.html"> <span class="post-tag">reading</span> </a>@@ @@html:<a href="/tags/insights.html"> <span class="post-tag">insights</span> </a>@@
- [[file:08-august/hilberts.hotel.org][Hilbert's Hotel]] @@html:<span class="post-date">11-08-2025 18:39</span>@@ @@html:<a href="/tags/maths.html"> <span class="post-tag">maths</span> </a>@@ @@html:<a href="/tags/insights.html"> <span class="post-tag">insights</span> </a>@@
- [[file:08-august/spending-the-whole-day-on-this-website.org][09-08-2025: Website Changes]] @@html:<span class="post-date">09-08-2025 00:00</span>@@ @@html:<a href="/tags/emacs.html"> <span class="post-tag">emacs</span> </a>@@ @@html:<a href="/tags/website.html"> <span class="post-tag">website</span> </a>@@
- [[file:08-august/what-do-i-want-to-do-with-emacs.org][What Do I Want To Do With Emacs]] @@html:<span class="post-date">08-08-2025 00:00</span>@@ @@html:<a href="/tags/emacs.html"> <span class="post-tag">emacs</span> </a>@@ @@html:<a href="/tags/review.html"> <span class="post-tag">review</span> </a>@@
- [[file:08-august/wacom-with-arch.org][Wacom With Arch]] @@html:<span class="post-date">08-08-2025 00:00</span>@@ @@html:<a href="/tags/insights.html"> <span class="post-tag">insights</span> </a>@@
- [[file:08-august/zettelkasten.org][Zettelkasten Method]] @@html:<span class="post-date">07-08-2025 00:00</span>@@ @@html:<a href="/tags/education.html"> <span class="post-tag">education</span> </a>@@