Removing the close button for the initial pane

This commit is contained in:
2025-12-28 20:51:41 +00:00
parent bb6b6c5768
commit fd12f0255d
116 changed files with 341 additions and 325 deletions

View File

@@ -317,6 +317,9 @@ nav {
.pane-root {
background-color: var(--bg);
}
.pane-root .pane-close {
display: none !important;
}
.pane-header {
display: none; /* Hide the old pane-header */
@@ -682,6 +685,11 @@ li ol li::before {
border-right: none;
border-bottom: 1px dotted var(--border);
}
.pane-fullscreen {
display: none !important;
}
}
/* =========================================================
FULLSCREEN PANE MODE

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Technical MOC</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>technical_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AOC Notes</title>
@@ -308,9 +308,9 @@ some regex below: this checks if the input is of the correct format.
<h2 id="org40202d1"><a href="#org40202d1">Day 4</a></h2>
<div class="outline-text-2" id="text-org40202d1">
</div>
<div id="outline-container-org08e99ae" class="outline-3">
<h3 id="org08e99ae"><a href="#org08e99ae">part 1</a></h3>
<div class="outline-text-3" id="text-org08e99ae">
<div id="outline-container-orgc4db3e6" class="outline-3">
<h3 id="orgc4db3e6"><a href="#orgc4db3e6">part 1</a></h3>
<div class="outline-text-3" id="text-orgc4db3e6">
<p>
was extremely difficult. i had to load the input as a 2d array,
</p>
@@ -377,9 +377,9 @@ After scanning all positions and directions in the grid, the total count is retu
</div>
</div>
</div>
<div id="outline-container-orge4bc797" class="outline-3">
<h3 id="orge4bc797"><a href="#orge4bc797">part 2</a></h3>
<div class="outline-text-3" id="text-orge4bc797">
<div id="outline-container-org2e9ef8c" class="outline-3">
<h3 id="org2e9ef8c"><a href="#org2e9ef8c">part 2</a></h3>
<div class="outline-text-3" id="text-org2e9ef8c">
<p>
was alot easier, i looped through the whole grid, and wherever there is the letter &rsquo;A&rsquo;, i want to check around it, it can be in the form:
</p>
@@ -547,13 +547,13 @@ Same approach as in Part One but applied after sorting.
<h2 id="org6bbf4e0"><a href="#org6bbf4e0">Day 6</a></h2>
<div class="outline-text-2" id="text-org6bbf4e0">
</div>
<div id="outline-container-org72470d2" class="outline-3">
<h3 id="org72470d2"><a href="#org72470d2">Part 1</a></h3>
<div class="outline-text-3" id="text-org72470d2">
<div id="outline-container-orgd37ccb8" class="outline-3">
<h3 id="orgd37ccb8"><a href="#orgd37ccb8">Part 1</a></h3>
<div class="outline-text-3" id="text-orgd37ccb8">
</div>
<div id="outline-container-org7be7a52" class="outline-4">
<h4 id="org7be7a52"><a href="#org7be7a52">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org7be7a52">
<div id="outline-container-org6e12e3d" class="outline-4">
<h4 id="org6e12e3d"><a href="#org6e12e3d">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org6e12e3d">
<div class="org-src-container">
<pre class="src src-java">List&lt;String&gt; input = Files.readAllLines(Paths.get("aoc_24/src/day_6/input"));
int rows = input.size();
@@ -563,9 +563,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-org420c018" class="outline-4">
<h4 id="org420c018"><a href="#org420c018">Guard Initialization</a></h4>
<div class="outline-text-4" id="text-org420c018">
<div id="outline-container-org31152d1" class="outline-4">
<h4 id="org31152d1"><a href="#org31152d1">Guard Initialization</a></h4>
<div class="outline-text-4" id="text-org31152d1">
<div class="org-src-container">
<pre class="src src-java">for (int r = 0; r &lt; rows; r++) {
for (int c = 0; c &lt; cols; c++) {
@@ -581,9 +581,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-org547ea8a" class="outline-4">
<h4 id="org547ea8a"><a href="#org547ea8a">Movement Directions</a></h4>
<div class="outline-text-4" id="text-org547ea8a">
<div id="outline-container-org7aa6019" class="outline-4">
<h4 id="org7aa6019"><a href="#org7aa6019">Movement Directions</a></h4>
<div class="outline-text-4" id="text-org7aa6019">
<div class="org-src-container">
<pre class="src src-java">Map&lt;Character, int[]&gt; directions = Map.of(
'^', new int[] {-1, 0},
@@ -595,9 +595,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-org2230dd3" class="outline-4">
<h4 id="org2230dd3"><a href="#org2230dd3">Turning Logic</a></h4>
<div class="outline-text-4" id="text-org2230dd3">
<div id="outline-container-org23aed04" class="outline-4">
<h4 id="org23aed04"><a href="#org23aed04">Turning Logic</a></h4>
<div class="outline-text-4" id="text-org23aed04">
<div class="org-src-container">
<pre class="src src-java">Map&lt;Character, Character&gt; turnRight = Map.of(
'^', '&gt;',
@@ -645,13 +645,13 @@ visited.add(guardRow + "," + guardCol);
</div>
</div>
</div>
<div id="outline-container-orgf53dba6" class="outline-3">
<h3 id="orgf53dba6"><a href="#orgf53dba6">Part 2</a></h3>
<div class="outline-text-3" id="text-orgf53dba6">
<div id="outline-container-org2a5be15" class="outline-3">
<h3 id="org2a5be15"><a href="#org2a5be15">Part 2</a></h3>
<div class="outline-text-3" id="text-org2a5be15">
</div>
<div id="outline-container-org687a886" class="outline-4">
<h4 id="org687a886"><a href="#org687a886">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org687a886">
<div id="outline-container-org0611f53" class="outline-4">
<h4 id="org0611f53"><a href="#org0611f53">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org0611f53">
<div class="org-src-container">
<pre class="src src-java">List&lt;String&gt; input = Files.readAllLines(Paths.get("aoc_24/src/day_6/input"));
int rows = input.size();
@@ -661,9 +661,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-org81638e1" class="outline-4">
<h4 id="org81638e1"><a href="#org81638e1">Guard Initialization</a></h4>
<div class="outline-text-4" id="text-org81638e1">
<div id="outline-container-org38bc87d" class="outline-4">
<h4 id="org38bc87d"><a href="#org38bc87d">Guard Initialization</a></h4>
<div class="outline-text-4" id="text-org38bc87d">
<div class="org-src-container">
<pre class="src src-java">for (int r = 0; r &lt; rows; r++) {
for (int c = 0; c &lt; cols; c++) {
@@ -679,9 +679,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-orga44831c" class="outline-4">
<h4 id="orga44831c"><a href="#orga44831c">Movement Directions</a></h4>
<div class="outline-text-4" id="text-orga44831c">
<div id="outline-container-org4c014f6" class="outline-4">
<h4 id="org4c014f6"><a href="#org4c014f6">Movement Directions</a></h4>
<div class="outline-text-4" id="text-org4c014f6">
<div class="org-src-container">
<pre class="src src-java">Map&lt;Character, int[]&gt; directions = Map.of(
'^', new int[] {-1, 0},
@@ -693,9 +693,9 @@ char[][] map = new char[rows][cols];
</div>
</div>
</div>
<div id="outline-container-orgdcff4b8" class="outline-4">
<h4 id="orgdcff4b8"><a href="#orgdcff4b8">Turning Logic</a></h4>
<div class="outline-text-4" id="text-orgdcff4b8">
<div id="outline-container-org1c9552f" class="outline-4">
<h4 id="org1c9552f"><a href="#org1c9552f">Turning Logic</a></h4>
<div class="outline-text-4" id="text-org1c9552f">
<div class="org-src-container">
<pre class="src src-java">Map&lt;Character, Character&gt; turnRight = Map.of(
'^', '&gt;',
@@ -774,13 +774,13 @@ System.out.println("Number of valid obstruction positions: " + validObstructions
<h2 id="org1d44d9d"><a href="#org1d44d9d">Day 7</a></h2>
<div class="outline-text-2" id="text-org1d44d9d">
</div>
<div id="outline-container-org1f85780" class="outline-3">
<h3 id="org1f85780"><a href="#org1f85780">Part 1</a></h3>
<div class="outline-text-3" id="text-org1f85780">
<div id="outline-container-org651ead7" class="outline-3">
<h3 id="org651ead7"><a href="#org651ead7">Part 1</a></h3>
<div class="outline-text-3" id="text-org651ead7">
</div>
<div id="outline-container-org531103a" class="outline-4">
<h4 id="org531103a"><a href="#org531103a">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org531103a">
<div id="outline-container-org90d95ed" class="outline-4">
<h4 id="org90d95ed"><a href="#org90d95ed">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org90d95ed">
<ul class="org-ul">
<li>Parse the input file, where each line is in the format `&lt;testValue&gt;: &lt;number1&gt; &lt;number2&gt; &#x2026;`</li>
<li>`testValue` is a target number, and we determine if it can be computed by combining the given numbers with `+` or `*`.</li>
@@ -798,9 +798,9 @@ for (String line : input) {
</div>
</div>
</div>
<div id="outline-container-org727d62b" class="outline-4">
<h4 id="org727d62b"><a href="#org727d62b">Validation Logic</a></h4>
<div class="outline-text-4" id="text-org727d62b">
<div id="outline-container-org9ae93a6" class="outline-4">
<h4 id="org9ae93a6"><a href="#org9ae93a6">Validation Logic</a></h4>
<div class="outline-text-4" id="text-org9ae93a6">
<ul class="org-ul">
<li>The `isValidEquation` function checks if any combination of operators (`+` or `*`) between the numbers matches the `testValue`.</li>
<li>Evaluation is performed left-to-right.</li>
@@ -833,9 +833,9 @@ for (String line : input) {
</div>
</div>
</div>
<div id="outline-container-org5ae1a22" class="outline-4">
<h4 id="org5ae1a22"><a href="#org5ae1a22">Operator Combination Generator</a></h4>
<div class="outline-text-4" id="text-org5ae1a22">
<div id="outline-container-orgad23731" class="outline-4">
<h4 id="orgad23731"><a href="#orgad23731">Operator Combination Generator</a></h4>
<div class="outline-text-4" id="text-orgad23731">
<ul class="org-ul">
<li>Generate all possible combinations of `+` and `*` for `n-1` positions (where `n` is the number of numbers).</li>
</ul>
@@ -861,9 +861,9 @@ private static void generateOperatorCombinationsRecursive(String[] current, int
</div>
</div>
</div>
<div id="outline-container-org94d96bd" class="outline-4">
<h4 id="org94d96bd"><a href="#org94d96bd">Main Logic</a></h4>
<div class="outline-text-4" id="text-org94d96bd">
<div id="outline-container-orgd11bb60" class="outline-4">
<h4 id="orgd11bb60"><a href="#orgd11bb60">Main Logic</a></h4>
<div class="outline-text-4" id="text-orgd11bb60">
<ul class="org-ul">
<li>Iterate over each line of input.</li>
<li>Parse `testValue` and numbers.</li>
@@ -885,13 +885,13 @@ System.out.println("Total Calibration Result: " + totalCalibrationResult);
</div>
</div>
</div>
<div id="outline-container-orgaf81a83" class="outline-3">
<h3 id="orgaf81a83"><a href="#orgaf81a83">Part 2</a></h3>
<div class="outline-text-3" id="text-orgaf81a83">
<div id="outline-container-org4991c73" class="outline-3">
<h3 id="org4991c73"><a href="#org4991c73">Part 2</a></h3>
<div class="outline-text-3" id="text-org4991c73">
</div>
<div id="outline-container-org20e50c9" class="outline-4">
<h4 id="org20e50c9"><a href="#org20e50c9">Input Parsing</a></h4>
<div class="outline-text-4" id="text-org20e50c9">
<div id="outline-container-orgc5c81c7" class="outline-4">
<h4 id="orgc5c81c7"><a href="#orgc5c81c7">Input Parsing</a></h4>
<div class="outline-text-4" id="text-orgc5c81c7">
<ul class="org-ul">
<li>Reads an input file where each line is formatted as `&lt;testValue&gt;: &lt;number1&gt; &lt;number2&gt; &#x2026;`.</li>
<li>Parses `testValue` and the numbers to evaluate equations that could result in `testValue`.</li>
@@ -909,9 +909,9 @@ for (String line : input) {
</div>
</div>
</div>
<div id="outline-container-orgeb02ff8" class="outline-4">
<h4 id="orgeb02ff8"><a href="#orgeb02ff8">Validation Logic</a></h4>
<div class="outline-text-4" id="text-orgeb02ff8">
<div id="outline-container-org10fefac" class="outline-4">
<h4 id="org10fefac"><a href="#org10fefac">Validation Logic</a></h4>
<div class="outline-text-4" id="text-org10fefac">
<ul class="org-ul">
<li>The `isValidEquation` function checks if any combination of operators (`+`, `*`, or `||`) between numbers can match the `testValue`.</li>
<li>Includes support for a new operator `||`:
@@ -951,9 +951,9 @@ for (String line : input) {
</div>
</div>
</div>
<div id="outline-container-org3c9e4dd" class="outline-4">
<h4 id="org3c9e4dd"><a href="#org3c9e4dd">Operator Combination Generator</a></h4>
<div class="outline-text-4" id="text-org3c9e4dd">
<div id="outline-container-orgac546eb" class="outline-4">
<h4 id="orgac546eb"><a href="#orgac546eb">Operator Combination Generator</a></h4>
<div class="outline-text-4" id="text-orgac546eb">
<ul class="org-ul">
<li>Generates all possible combinations of `+`, `*`, and `||` operators for `n-1` positions (where `n` is the number of numbers).</li>
<li>Recursively builds the combinations.</li>
@@ -980,9 +980,9 @@ private static void generateOperatorCombinationsRecursive(String[] current, int
</div>
</div>
</div>
<div id="outline-container-orgf1d64f5" class="outline-4">
<h4 id="orgf1d64f5"><a href="#orgf1d64f5">Main Logic</a></h4>
<div class="outline-text-4" id="text-orgf1d64f5">
<div id="outline-container-org5a2ff67" class="outline-4">
<h4 id="org5a2ff67"><a href="#org5a2ff67">Main Logic</a></h4>
<div class="outline-text-4" id="text-org5a2ff67">
<ul class="org-ul">
<li>Iterates over each line of input.</li>
<li>Parses `testValue` and numbers.</li>
@@ -1417,9 +1417,9 @@ Would you like to make any adjustments or add further examples?
<h2 id="orgf810444"><a href="#orgf810444">Day 12</a></h2>
<div class="outline-text-2" id="text-orgf810444">
</div>
<div id="outline-container-org15b04d1" class="outline-3">
<h3 id="org15b04d1"><a href="#org15b04d1">Core Logic and Functionality</a></h3>
<div class="outline-text-3" id="text-org15b04d1">
<div id="outline-container-org38fab89" class="outline-3">
<h3 id="org38fab89"><a href="#org38fab89">Core Logic and Functionality</a></h3>
<div class="outline-text-3" id="text-org38fab89">
<ol class="org-ol">
<li>Coordinates Mapping:
<ul class="org-ul">
@@ -1501,9 +1501,9 @@ p2 += area * fetchSides(fences);
</ul></li>
</ol>
</div>
<div id="outline-container-org954dfa1" class="outline-4">
<h4 id="org954dfa1"><a href="#org954dfa1">Core Logic and Functionality</a></h4>
<div class="outline-text-4" id="text-org954dfa1">
<div id="outline-container-orgb23e1e5" class="outline-4">
<h4 id="orgb23e1e5"><a href="#orgb23e1e5">Core Logic and Functionality</a></h4>
<div class="outline-text-4" id="text-orgb23e1e5">
<ul class="org-ul">
<li>Coordinates mapping using a Map&lt;Character, List&lt;Point&gt;&gt; to track character positions.</li>
<li>Flood-fill algorithm using a stack to explore regions of connected characters.</li>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>leetcode_notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-org-roam</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-gtd</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>fyp</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>uni_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>uni_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>tpis</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>uml_fyp</title>
@@ -1229,7 +1229,7 @@ WorkspaceController &#x2013;&gt; AngularClient : 200 OK + workspaceId
<h3 id="orgee85374"><a href="#orgee85374">Draft 1:</a></h3>
<div class="outline-text-3" id="text-orgee85374">
<div id="orged15f8d" class="figure">
<div id="orgc29c9b6" class="figure">
<p><img src="file:///home/zaine/master-folder/FYP/uml/draft1.png" alt="draft1.png" />
</p>
</div>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Brain MOC</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>job_application_cover_letters</title>
@@ -299,9 +299,9 @@ English GCSE: 6
<h2 id="org84dabd3"><a href="#org84dabd3">Stantec</a></h2>
<div class="outline-text-2" id="text-org84dabd3">
</div>
<div id="outline-container-org3ca982c" class="outline-3">
<h3 id="org3ca982c"><a href="#org3ca982c">Cover letter:</a></h3>
<div class="outline-text-3" id="text-org3ca982c">
<div id="outline-container-orgb6d6ee4" class="outline-3">
<h3 id="orgb6d6ee4"><a href="#orgb6d6ee4">Cover letter:</a></h3>
<div class="outline-text-3" id="text-orgb6d6ee4">
<p>
<a href="file:///home/zaine/master-folder/CV's/Cover Letter/Santec/Santec.pdf">File</a>
<b>CONTAINS SPELLING MISTAKES - USE BT ONE</b>
@@ -430,9 +430,9 @@ Please use this space to provide any other information you feel would support yo
<h2 id="org669ea14"><a href="#org669ea14">BT</a></h2>
<div class="outline-text-2" id="text-org669ea14">
</div>
<div id="outline-container-orge52fe43" class="outline-3">
<h3 id="orge52fe43"><a href="#orge52fe43">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-orge52fe43">
<div id="outline-container-org344e48e" class="outline-3">
<h3 id="org344e48e"><a href="#org344e48e">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-org344e48e">
<p>
<a href="file:///home/zaine/master-folder/CV's/Cover Letter/btgroup/BT_group_cl.pdf">file</a>
Dear Hiring Manager,
@@ -469,9 +469,9 @@ Zaine-Ul-Abideen Qayyum
<h2 id="org3e04fa9"><a href="#org3e04fa9">Panoptech</a></h2>
<div class="outline-text-2" id="text-org3e04fa9">
</div>
<div id="outline-container-org04651b0" class="outline-3">
<h3 id="org04651b0"><a href="#org04651b0">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-org04651b0">
<div id="outline-container-orgeb38d30" class="outline-3">
<h3 id="orgeb38d30"><a href="#orgeb38d30">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-orgeb38d30">
<p>
Dear Hiring Manager,
</p>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>job_application_cover_letters</title>
@@ -299,9 +299,9 @@ English GCSE: 6
<h2 id="orgf2e297f"><a href="#orgf2e297f">Stantec</a></h2>
<div class="outline-text-2" id="text-orgf2e297f">
</div>
<div id="outline-container-org167bd9d" class="outline-3">
<h3 id="org167bd9d"><a href="#org167bd9d">Cover letter:</a></h3>
<div class="outline-text-3" id="text-org167bd9d">
<div id="outline-container-orga36012f" class="outline-3">
<h3 id="orga36012f"><a href="#orga36012f">Cover letter:</a></h3>
<div class="outline-text-3" id="text-orga36012f">
<p>
<a href="file:///home/zaine/master-folder/CV's/Cover Letter/Santec/Santec.pdf">File</a>
<b>CONTAINS SPELLING MISTAKES - USE BT ONE</b>
@@ -430,9 +430,9 @@ Please use this space to provide any other information you feel would support yo
<h2 id="orgf29c794"><a href="#orgf29c794">BT</a></h2>
<div class="outline-text-2" id="text-orgf29c794">
</div>
<div id="outline-container-org8d61d24" class="outline-3">
<h3 id="org8d61d24"><a href="#org8d61d24">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-org8d61d24">
<div id="outline-container-org42354de" class="outline-3">
<h3 id="org42354de"><a href="#org42354de">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-org42354de">
<p>
<a href="file:///home/zaine/master-folder/CV's/Cover Letter/btgroup/BT_group_cl.pdf">file</a>
Dear Hiring Manager,
@@ -469,9 +469,9 @@ Zaine-Ul-Abideen Qayyum
<h2 id="org8ec7367"><a href="#org8ec7367">Panoptech</a></h2>
<div class="outline-text-2" id="text-org8ec7367">
</div>
<div id="outline-container-orgfc3be46" class="outline-3">
<h3 id="orgfc3be46"><a href="#orgfc3be46">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-orgfc3be46">
<div id="outline-container-org198c783" class="outline-3">
<h3 id="org198c783"><a href="#org198c783">Cover Letter:</a></h3>
<div class="outline-text-3" id="text-org198c783">
<p>
Dear Hiring Manager,
</p>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>haskell_notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>lazy_evaluation</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>c_notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>socket_programming_in_c</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>web-port-notes</title>
@@ -611,9 +611,9 @@ You can add a commit detail by doing this:
<h3 id="orgbc4123e"><a href="#orgbc4123e">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2024-12-17 Tue&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-orgbc4123e">
</div>
<div id="outline-container-orgbf0a751" class="outline-4">
<h4 id="orgbf0a751"><a href="#orgbf0a751">Details</a></h4>
<div class="outline-text-4" id="text-orgbf0a751">
<div id="outline-container-org2d4c726" class="outline-4">
<h4 id="org2d4c726"><a href="#org2d4c726">Details</a></h4>
<div class="outline-text-4" id="text-org2d4c726">
<p>
This commit was focused on getting the blog section ready. So far ive decided to go for a static approach, whereby the blogs are stored in a .json file and populated in an array. The &rsquo;slug&rsquo; property is found in:
</p>
@@ -627,18 +627,18 @@ These three must be consistent
</p>
</div>
</div>
<div id="outline-container-orgcbd2fe7" class="outline-4">
<h4 id="orgcbd2fe7"><a href="#orgcbd2fe7">What to work on next:</a></h4>
<div class="outline-text-4" id="text-orgcbd2fe7">
<div id="outline-container-org4bc05e8" class="outline-4">
<h4 id="org4bc05e8"><a href="#org4bc05e8">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org4bc05e8">
<ul class="org-ul">
<li>the rendering of the content of the blogs</li>
<li>the github project population: match the blog page stylings.</li>
</ul>
</div>
</div>
<div id="outline-container-orge0ef7dd" class="outline-4">
<h4 id="orge0ef7dd"><a href="#orge0ef7dd">Commit message:</a></h4>
<div class="outline-text-4" id="text-orge0ef7dd">
<div id="outline-container-org38dae40" class="outline-4">
<h4 id="org38dae40"><a href="#org38dae40">Commit message:</a></h4>
<div class="outline-text-4" id="text-org38dae40">
<p>
&ldquo;Worked on the blog page, did stylings and began to populate&rdquo;
</p>
@@ -649,9 +649,9 @@ These three must be consistent
<h3 id="org4758cf6"><a href="#org4758cf6">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2024-12-18 Wed&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-org4758cf6">
</div>
<div id="outline-container-orgd279e4a" class="outline-4">
<h4 id="orgd279e4a"><a href="#orgd279e4a">Details</a></h4>
<div class="outline-text-4" id="text-orgd279e4a">
<div id="outline-container-orgf61f049" class="outline-4">
<h4 id="orgf61f049"><a href="#orgf61f049">Details</a></h4>
<div class="outline-text-4" id="text-orgf61f049">
<p>
Decided to change the way the blog is rendered. Using a json index object to display the list (slug is importnant), then blog detail is displayed as a rendered <b>HTML</b> from a markdown file. The scss was changed as well:
</p>
@@ -664,17 +664,17 @@ this loads the theme for the code blocks.
</p>
</div>
</div>
<div id="outline-container-org4931061" class="outline-4">
<h4 id="org4931061"><a href="#org4931061">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org4931061">
<div id="outline-container-orge2bf181" class="outline-4">
<h4 id="orge2bf181"><a href="#orge2bf181">What to work on next:</a></h4>
<div class="outline-text-4" id="text-orge2bf181">
<ul class="org-ul">
<li>the github project population: match the blog page stylings.</li>
</ul>
</div>
</div>
<div id="outline-container-orgf464679" class="outline-4">
<h4 id="orgf464679"><a href="#orgf464679">Commit message:</a></h4>
<div class="outline-text-4" id="text-orgf464679">
<div id="outline-container-orge6ce5b7" class="outline-4">
<h4 id="orge6ce5b7"><a href="#orge6ce5b7">Commit message:</a></h4>
<div class="outline-text-4" id="text-orge6ce5b7">
<p>
&ldquo;continued work on blog page, stylings are done, the rendering changed from using json to md.&rdquo;
</p>
@@ -685,25 +685,25 @@ this loads the theme for the code blocks.
<h3 id="orgf67e4a5"><a href="#orgf67e4a5">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2024-12-20 Fri&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-orgf67e4a5">
</div>
<div id="outline-container-org228e857" class="outline-4">
<h4 id="org228e857"><a href="#org228e857">Details</a></h4>
<div class="outline-text-4" id="text-org228e857">
<div id="outline-container-org2ec9931" class="outline-4">
<h4 id="org2ec9931"><a href="#org2ec9931">Details</a></h4>
<div class="outline-text-4" id="text-org2ec9931">
<p>
Worked on the github project display, kept the same look as the blogs. Also done the about me section in the homepage (added some random ai generated info - need to change). Also done the contacts (set up a smpt gmail server)
</p>
</div>
</div>
<div id="outline-container-org2cbf541" class="outline-4">
<h4 id="org2cbf541"><a href="#org2cbf541">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org2cbf541">
<div id="outline-container-orgf76ebc3" class="outline-4">
<h4 id="orgf76ebc3"><a href="#orgf76ebc3">What to work on next:</a></h4>
<div class="outline-text-4" id="text-orgf76ebc3">
<ul class="org-ul">
<li>Get rid of all the hardcoded blogs, and begin first blog.</li>
</ul>
</div>
</div>
<div id="outline-container-orgc444a18" class="outline-4">
<h4 id="orgc444a18"><a href="#orgc444a18">Commit message:</a></h4>
<div class="outline-text-4" id="text-orgc444a18">
<div id="outline-container-orgcab8eb8" class="outline-4">
<h4 id="orgcab8eb8"><a href="#orgcab8eb8">Commit message:</a></h4>
<div class="outline-text-4" id="text-orgcab8eb8">
<p>
&ldquo;finished contact section - added smtp gmail server&rdquo;
</p>
@@ -714,45 +714,45 @@ Worked on the github project display, kept the same look as the blogs. Also done
<h3 id="org1d1efc9"><a href="#org1d1efc9">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2025-01-01 Wed&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-org1d1efc9">
</div>
<div id="outline-container-orgdbd6381" class="outline-4">
<h4 id="orgdbd6381"><a href="#orgdbd6381">Details</a></h4>
<div class="outline-text-4" id="text-orgdbd6381">
<div id="outline-container-org097edf9" class="outline-4">
<h4 id="org097edf9"><a href="#org097edf9">Details</a></h4>
<div class="outline-text-4" id="text-org097edf9">
<p>
Deployed (changed back to emailjs)
</p>
</div>
</div>
<div id="outline-container-org016d509" class="outline-4">
<h4 id="org016d509"><a href="#org016d509">What to work on next:</a></h4>
<div id="outline-container-org89de7a6" class="outline-4">
<h4 id="org89de7a6"><a href="#org89de7a6">What to work on next:</a></h4>
</div>
<div id="outline-container-orgaaa2a77" class="outline-4">
<h4 id="orgaaa2a77"><a href="#orgaaa2a77">Commit message:</a></h4>
<div id="outline-container-orgd183520" class="outline-4">
<h4 id="orgd183520"><a href="#orgd183520">Commit message:</a></h4>
</div>
</div>
<div id="outline-container-org0017479" class="outline-3">
<h3 id="org0017479"><a href="#org0017479">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2025-01-12 Sun&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-org0017479">
</div>
<div id="outline-container-org21e86ba" class="outline-4">
<h4 id="org21e86ba"><a href="#org21e86ba">Details</a></h4>
<div class="outline-text-4" id="text-org21e86ba">
<div id="outline-container-orga34d78e" class="outline-4">
<h4 id="orga34d78e"><a href="#orga34d78e">Details</a></h4>
<div class="outline-text-4" id="text-orga34d78e">
<ul class="org-ul">
<li>added new blog: prefrontal cortex and self discipline</li>
<li>added a estimated time to read</li>
</ul>
</div>
</div>
<div id="outline-container-org4514f98" class="outline-4">
<h4 id="org4514f98"><a href="#org4514f98">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org4514f98">
<div id="outline-container-org5c12d0a" class="outline-4">
<h4 id="org5c12d0a"><a href="#org5c12d0a">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org5c12d0a">
<p>
more blogs
</p>
</div>
</div>
<div id="outline-container-org17d34f1" class="outline-4">
<h4 id="org17d34f1"><a href="#org17d34f1">Commit message:</a></h4>
<div class="outline-text-4" id="text-org17d34f1">
<div id="outline-container-org9f7fd40" class="outline-4">
<h4 id="org9f7fd40"><a href="#org9f7fd40">Commit message:</a></h4>
<div class="outline-text-4" id="text-org9f7fd40">
<p>
&ldquo;added new blog&rdquo;
</p>
@@ -763,49 +763,49 @@ more blogs
<h3 id="org4f304c9"><a href="#org4f304c9">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2025-02-15 Sat&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-org4f304c9">
</div>
<div id="outline-container-org831d9b2" class="outline-4">
<h4 id="org831d9b2"><a href="#org831d9b2">Details</a></h4>
<div class="outline-text-4" id="text-org831d9b2">
<div id="outline-container-org006a0b3" class="outline-4">
<h4 id="org006a0b3"><a href="#org006a0b3">Details</a></h4>
<div class="outline-text-4" id="text-org006a0b3">
<ul class="org-ul">
<li>added tags with persistency. Redid the whole UI (theme)</li>
</ul>
</div>
</div>
<div id="outline-container-org95af45f" class="outline-4">
<h4 id="org95af45f"><a href="#org95af45f">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org95af45f">
<div id="outline-container-orgbc943b6" class="outline-4">
<h4 id="orgbc943b6"><a href="#orgbc943b6">What to work on next:</a></h4>
<div class="outline-text-4" id="text-orgbc943b6">
<ul class="org-ul">
<li>add a cv section</li>
</ul>
</div>
</div>
<div id="outline-container-orgfbb529a" class="outline-4">
<h4 id="orgfbb529a"><a href="#orgfbb529a">Commit message:</a></h4>
<div id="outline-container-org24118a6" class="outline-4">
<h4 id="org24118a6"><a href="#org24118a6">Commit message:</a></h4>
</div>
</div>
<div id="outline-container-org0b0cee7" class="outline-3">
<h3 id="org0b0cee7"><a href="#org0b0cee7">Commit on <span class="timestamp-wrapper"><span class="timestamp">&lt;2025-03-14 Fri&gt;</span></span></a></h3>
<div class="outline-text-3" id="text-org0b0cee7">
</div>
<div id="outline-container-orga50fb8d" class="outline-4">
<h4 id="orga50fb8d"><a href="#orga50fb8d">Details</a></h4>
<div class="outline-text-4" id="text-orga50fb8d">
<div id="outline-container-org47f8d45" class="outline-4">
<h4 id="org47f8d45"><a href="#org47f8d45">Details</a></h4>
<div class="outline-text-4" id="text-org47f8d45">
<ul class="org-ul">
<li>added quizzes and used firebase for storage</li>
</ul>
</div>
</div>
<div id="outline-container-org0fa5a9f" class="outline-4">
<h4 id="org0fa5a9f"><a href="#org0fa5a9f">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org0fa5a9f">
<div id="outline-container-org79e6eea" class="outline-4">
<h4 id="org79e6eea"><a href="#org79e6eea">What to work on next:</a></h4>
<div class="outline-text-4" id="text-org79e6eea">
<ul class="org-ul">
<li>rendering of images , spending more time on blogs and creating quizzes</li>
</ul>
</div>
</div>
<div id="outline-container-org6a493ab" class="outline-4">
<h4 id="org6a493ab"><a href="#org6a493ab">Commit message:</a></h4>
<div class="outline-text-4" id="text-org6a493ab">
<div id="outline-container-org3bde07d" class="outline-4">
<h4 id="org3bde07d"><a href="#org3bde07d">Commit message:</a></h4>
<div class="outline-text-4" id="text-org3bde07d">
<p class="backlinks-section" id="backlinks">
Backlinks
</p>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-emacs-config-blorg</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>github_notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>book_notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>the_science_of_self_discipline</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-prefront-cortex-blorg</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_week1</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_lab_1</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_lec_1</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_week2</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_lec_2</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>i3-wm</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-new-emacs-config-blorg</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_week5</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>afp_lec_5</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-keybindings</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-urge-surfing-blorg</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-growth-mindset</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-emotional-intelligence</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-week-12-reflection</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-elisp</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_1</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_2</title>
@@ -285,9 +285,9 @@ Configuration sampling is used to select representative samples for learning per
<h3 id="org34412d1"><a href="#org34412d1">Binary Sampling Strategies</a></h3>
<div class="outline-text-3" id="text-org34412d1">
</div>
<div id="outline-container-orga1bf4b7" class="outline-4">
<h4 id="orga1bf4b7"><a href="#orga1bf4b7">Option-wise Strategy</a></h4>
<div class="outline-text-4" id="text-orga1bf4b7">
<div id="outline-container-org0bf1908" class="outline-4">
<h4 id="org0bf1908"><a href="#org0bf1908">Option-wise Strategy</a></h4>
<div class="outline-text-4" id="text-org0bf1908">
<ul class="org-ul">
<li>Each binary option is selected at least once in some configuration.</li>
<li>Minimize other options to reduce unknown interaction effects.</li>
@@ -305,9 +305,9 @@ Configuration sampling is used to select representative samples for learning per
</ul>
</div>
</div>
<div id="outline-container-orgef8f97c" class="outline-4">
<h4 id="orgef8f97c"><a href="#orgef8f97c">Negative Option-wise Strategy</a></h4>
<div class="outline-text-4" id="text-orgef8f97c">
<div id="outline-container-org80959ab" class="outline-4">
<h4 id="org80959ab"><a href="#org80959ab">Negative Option-wise Strategy</a></h4>
<div class="outline-text-4" id="text-org80959ab">
<ul class="org-ul">
<li>For each option: one configuration where it is disabled, all others enabled.</li>
<li>Adds one all-yes configuration.</li>
@@ -334,8 +334,8 @@ Both strategies are used for sampling configurations in systems with binary opti
</p>
</div>
<ul class="org-ul">
<li><a id="org919455a"></a><a href="#org919455a">Option-wise Strategy</a><br />
<div class="outline-text-5" id="text-org919455a">
<li><a id="org78494e1"></a><a href="#org78494e1">Option-wise Strategy</a><br />
<div class="outline-text-5" id="text-org78494e1">
<ul class="org-ul">
<li><b><b>Goal:</b></b> Ensure each option is enabled (selected) at least once across configurations.</li>
<li>For every binary option, create a configuration where it is <b><b>on</b></b>.</li>
@@ -350,8 +350,8 @@ Both strategies are used for sampling configurations in systems with binary opti
</ul>
</div>
</li>
<li><a id="org85342bc"></a><a href="#org85342bc">Negative Option-wise Strategy</a><br />
<div class="outline-text-5" id="text-org85342bc">
<li><a id="orga8add10"></a><a href="#orga8add10">Negative Option-wise Strategy</a><br />
<div class="outline-text-5" id="text-orga8add10">
<ul class="org-ul">
<li><b><b>Goal:</b></b> Ensure each option is disabled (deselected) at least once.</li>
<li>For each option, create a configuration where it is <b><b>off</b></b>, and <b><b>all others are on</b></b>.</li>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_3</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_4</title>
@@ -409,9 +409,9 @@ e. <b><b>Survivor Selection</b></b>:
</ol>
</div>
</div>
<div id="outline-container-org147f072" class="outline-3">
<h3 id="org147f072"><a href="#org147f072">4. Fitness Function</a></h3>
<div class="outline-text-3" id="text-org147f072">
<div id="outline-container-org80dc091" class="outline-3">
<h3 id="org80dc091"><a href="#org80dc091">4. Fitness Function</a></h3>
<div class="outline-text-3" id="text-org80dc091">
<ul class="org-ul">
<li>The fitness function is derived from the problems objective or quality function.</li>
<li>It assigns a single real-valued score to each individual (phenotype).</li>
@@ -491,9 +491,9 @@ e. <b><b>Survivor Selection</b></b>:
</div>
</div>
</div>
<div id="outline-container-org9bf0ecd" class="outline-3">
<h3 id="org9bf0ecd"><a href="#org9bf0ecd">4. Fitness Function</a></h3>
<div class="outline-text-3" id="text-org9bf0ecd">
<div id="outline-container-org73e80f0" class="outline-3">
<h3 id="org73e80f0"><a href="#org73e80f0">4. Fitness Function</a></h3>
<div class="outline-text-3" id="text-org73e80f0">
<ul class="org-ul">
<li>Guides the <b><b>selection of parents</b></b> in the genetic algorithm.</li>
<li>Aims to <b><b>maximize code coverage</b></b>.</li>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-magit</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_5</title>
@@ -290,9 +290,9 @@
<h2 id="org3046aac"><a href="#org3046aac">5.1 Model-Free Tuning for ORM Systems - Intelligent Software Engineering</a></h2>
<div class="outline-text-2" id="text-org3046aac">
</div>
<div id="outline-container-org1fc968f" class="outline-3">
<h3 id="org1fc968f"><a href="#org1fc968f">1. Introduction and Background</a></h3>
<div class="outline-text-3" id="text-org1fc968f">
<div id="outline-container-org46ff2ea" class="outline-3">
<h3 id="org46ff2ea"><a href="#org46ff2ea">1. Introduction and Background</a></h3>
<div class="outline-text-3" id="text-org46ff2ea">
<ul class="org-ul">
<li>This approach was proposed by Singh et al. (2016).</li>
<li>The goal is to optimize Object-Relational Mapping (ORM) systems without relying on models.</li>
@@ -386,9 +386,9 @@ Interpretation:
<h2 id="org5e9c0bc"><a href="#org5e9c0bc">5.2 Model-Free Tuning with BestConfig - Intelligent Software Engineering</a></h2>
<div class="outline-text-2" id="text-org5e9c0bc">
</div>
<div id="outline-container-orgf5e8b58" class="outline-3">
<h3 id="orgf5e8b58"><a href="#orgf5e8b58">1. Introduction and Background</a></h3>
<div class="outline-text-3" id="text-orgf5e8b58">
<div id="outline-container-org9196a2e" class="outline-3">
<h3 id="org9196a2e"><a href="#org9196a2e">1. Introduction and Background</a></h3>
<div class="outline-text-3" id="text-org9196a2e">
<ul class="org-ul">
<li>BestConfig is a model-free configuration tuning system proposed by <b><b>Zhu et al. (2017)</b></b>.</li>
<li>It focuses on tuning for <b><b>a single performance objective</b></b> (e.g., throughput, latency).</li>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ise_week_7</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>java_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>java_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>fyp-report-planning</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wp-sadness</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>linux_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>linux_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>wacom-notes</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-evil</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>systemd_services</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>microlise-assessment</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>gpg-encryption</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>linux-arch-linux</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>the_clean_coder</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>recipes-moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>recipes-main</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>recipes-ideas</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>recipes-done</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>career_moc</title>
@@ -284,8 +284,8 @@ Microlise recomended me to read this
</p>
</div>
<ul class="org-ul">
<li><a id="orgfb6d10a"></a><a href="#orgfb6d10a">Book Link:</a><br />
<div class="outline-text-5" id="text-orgfb6d10a">
<li><a id="orgc97fa5f"></a><a href="#orgc97fa5f">Book Link:</a><br />
<div class="outline-text-5" id="text-orgc97fa5f">
<ul class="org-ul">
<li><a href="file:///home/zaine/master-folder/pdfs/technical/so_good_they_cant_ignore_you.pdf">Book Internal PDF</a></li>
<li><a href="https://zserver.zapto.org/calibre/read/5/pdf">Book External PDF</a></li>
@@ -302,8 +302,8 @@ Microlise recomended me to read this
</p>
</div>
<ul class="org-ul">
<li><a id="org66d14a3"></a><a href="#org66d14a3">Book Link:</a><br />
<div class="outline-text-5" id="text-org66d14a3">
<li><a id="orgb2c160f"></a><a href="#orgb2c160f">Book Link:</a><br />
<div class="outline-text-5" id="text-orgb2c160f">
<ul class="org-ul">
<li><a href="file:///home/zaine/master-folder/pdfs/technical/The Clean Coder.pdf">Book Internal PDF</a></li>
<li><a href="https://zserver.zapto.org/calibre/read/10/pdf">Book External PDF</a></li>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>maven-pom-file</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>so_good_they_cant_ignore_you</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>so_good_they_cant_ignore_you</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>career_capital</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>deliberate_practice</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>advanced-networking</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>stanford_marshmallow_experiment</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>neuroplasticity</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>test_driven_development</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>bowling-kata</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>java-portswrigger-test</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>java-junit-testing</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>self_hosting</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>postgres</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>books-org-agenda</title>
@@ -250,9 +250,9 @@
<h2 id="org4526748"><a href="#org4526748">Books</a></h2>
<div class="outline-text-2" id="text-org4526748">
</div>
<div id="outline-container-org2baaba4" class="outline-3">
<h3 id="org2baaba4"><a href="#org2baaba4">English Books</a></h3>
<div class="outline-text-3" id="text-org2baaba4">
<div id="outline-container-org93eaf92" class="outline-3">
<h3 id="org93eaf92"><a href="#org93eaf92">English Books</a></h3>
<div class="outline-text-3" id="text-org93eaf92">
</div>
<div id="outline-container-org8472353" class="outline-4">
<h4 id="org8472353"><a href="#org8472353">Teaching the Students the method of Studying</a></h4>
@@ -456,9 +456,9 @@ Read again on Tuesday 19th August 2025
</li>
</ul>
</div>
<div id="outline-container-org64563f6" class="outline-4">
<h4 id="org64563f6"><a href="#org64563f6">English Books</a></h4>
<div class="outline-text-4" id="text-org64563f6">
<div id="outline-container-org3358ec9" class="outline-4">
<h4 id="org3358ec9"><a href="#org3358ec9">English Books</a></h4>
<div class="outline-text-4" id="text-org3358ec9">
</div>
<ul class="org-ul">
<li><a id="org184e3b2"></a><a href="#org184e3b2">Tasheel Nahw</a><br />

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>nextcloud</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>networking-moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>database_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Books MOC</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>book-recs</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>clean-code</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>big-o-complexity</title>
@@ -337,7 +337,7 @@ This would take N time, we need to check every number in the list once, making t
</p>
<div id="orgdefa53f" class="figure">
<div id="org8df560a" class="figure">
<p><img src="assets/Big-O-Notation-3130482830.png" alt="Big-O-Notation-3130482830.png" />
</p>
</div>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>how-to-solve-leetcode</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>leetcode-arrays</title>
@@ -407,9 +407,9 @@ All the numbers of nums are unique.
Follow up: Could you implement a solution using only O(1) extra space complexity and O(n) runtime complexity?
</p>
</div>
<div id="outline-container-org55722fb" class="outline-3">
<h3 id="org55722fb"><a href="#org55722fb">Attempt</a></h3>
<div class="outline-text-3" id="text-org55722fb">
<div id="outline-container-orga4e1281" class="outline-3">
<h3 id="orga4e1281"><a href="#orga4e1281">Attempt</a></h3>
<div class="outline-text-3" id="text-orga4e1281">
<p>
Sort the array, loop through it and check via the incrementor
</p>
@@ -435,9 +435,9 @@ Problem here is that sort operation is O(nlogn) - too slow.
</p>
</div>
</div>
<div id="outline-container-orga18872e" class="outline-3">
<h3 id="orga18872e"><a href="#orga18872e">Solution</a></h3>
<div class="outline-text-3" id="text-orga18872e">
<div id="outline-container-orgf31a336" class="outline-3">
<h3 id="orgf31a336"><a href="#orgf31a336">Solution</a></h3>
<div class="outline-text-3" id="text-orgf31a336">
<p>
One optimised solution:
</p>
@@ -515,9 +515,9 @@ n <code>= nums.length
Follow up: Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
</p>
</div>
<div id="outline-container-org5fd79fa" class="outline-3">
<h3 id="org5fd79fa"><a href="#org5fd79fa">Attempt</a></h3>
<div class="outline-text-3" id="text-org5fd79fa">
<div id="outline-container-org60e21be" class="outline-3">
<h3 id="org60e21be"><a href="#org60e21be">Attempt</a></h3>
<div class="outline-text-3" id="text-org60e21be">
<p>
Create a set, loop through the set (it wont have duplicate values), if the counter is not equal to the value in the set, add it to a new list.
</p>
@@ -594,9 +594,9 @@ Only one valid answer exists.
Follow-up: Can you come up with an algorithm that is less than O(n2) time complexity?
</p>
</div>
<div id="outline-container-org8207787" class="outline-3">
<h3 id="org8207787"><a href="#org8207787">Attempt</a></h3>
<div class="outline-text-3" id="text-org8207787">
<div id="outline-container-orgad55f8f" class="outline-3">
<h3 id="orgad55f8f"><a href="#orgad55f8f">Attempt</a></h3>
<div class="outline-text-3" id="text-orgad55f8f">
<p>
Outer loop and inner loop
</p>
@@ -625,9 +625,9 @@ Bad as its O(N<sup>2</sup>)
</p>
</div>
</div>
<div id="outline-container-orgdfa60ea" class="outline-3">
<h3 id="orgdfa60ea"><a href="#orgdfa60ea">Solution</a></h3>
<div class="outline-text-3" id="text-orgdfa60ea">
<div id="outline-container-org9674e04" class="outline-3">
<h3 id="org9674e04"><a href="#org9674e04">Solution</a></h3>
<div class="outline-text-3" id="text-org9674e04">
<p>
Use a hashmap and loop once
</p>
@@ -657,7 +657,7 @@ After looking through the logic:
</div>
<div id="orgb536acb" class="figure">
<div id="org9927624" class="figure">
<p><img src="assets/swappy-20250805-152411.png" alt="swappy-20250805-152411.png" />
</p>
</div>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>python-set</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>python-dictionary</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>python-sorted-function</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>python-lambda</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>non_technical_moc</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>emacs-stuff-org-publish</title>

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2025-12-28 Sun 20:37 -->
<!-- 2025-12-28 Sun 20:49 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>naqshe-hayat</title>

Some files were not shown because too many files have changed in this diff Show More