Skip to content

Commit 82038f3

Browse files
committed
Merge branch 'master' of github.com:markdlp/marksBlog
2 parents d709b87 + 5864d18 commit 82038f3

6 files changed

Lines changed: 37 additions & 26 deletions

File tree

.devcontainer/post-create.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,11 @@ if [ -f "package.json" ]; then
3636
npm install
3737
else
3838
echo "No package.json found. Skipping npm install."
39-
fi
39+
fi
40+
41+
# Run this inside the VS Code terminal to install Edge
42+
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
43+
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
44+
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
45+
sudo rm microsoft.gpg
46+
sudo apt-get update && sudo apt-get install -y microsoft-edge-stable

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "themes/blowfish"]
22
path = themes/blowfish
33
url = https://github.com/nunocoracao/blowfish.git
4-
branch = main
4+
branch = main

.vscode/launch.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"version": "2.0.0",
2+
"version": "0.2.0",
33
"configurations": [
4-
5-
64
{
7-
"type": "vscode-edge-devtools.debug",
5+
"name": "Launch Site (Host Browser)",
6+
"type": "node",
87
"request": "launch",
9-
"name": "Launch Microsoft Edge and open the Edge DevTools",
10-
"url": "http://localhost:1313",
11-
"webRoot": "${workspaceFolder}"
8+
"runtimeExecutable": "echo",
9+
"runtimeArgs": [
10+
"Server Starting..."
11+
],
12+
"preLaunchTask": "start server" // Triggers the task that opens the browser
1213
},
1314
{
14-
"name": "Launch Edge",
15-
"request": "launch",
15+
"name": "Debug Edge (Headless)",
1616
"type": "msedge",
17-
"url": "http://localhost:1313",
18-
"webRoot": "${workspaceFolder}"
19-
},
20-
{
21-
"type": "firefox",
2217
"request": "launch",
23-
"name": "Launch localhost",
2418
"url": "http://localhost:1313",
2519
"webRoot": "${workspaceFolder}",
26-
//"preLaunchTask": "start server",
27-
//"postDebugTask": "stop server"
28-
}
20+
"runtimeArgs": [
21+
"--no-sandbox",
22+
"--disable-dev-shm-usage",
23+
"--remote-debugging-port=9222",
24+
// This line fixes the 'profile missing' crash:
25+
"--user-data-dir=/tmp/vscode-edge-profile-debug"
26+
],
27+
"preLaunchTask": "start server"
28+
},
2929
]
3030
}

.vscode/tasks.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
"reveal": "always",
2121
"panel": "dedicated"
2222
},
23+
// THIS is what launches your Ubuntu Firefox
24+
"serverReadyAction": {
25+
"pattern": "Web Server is available at",
26+
"uriFormat": "%s",
27+
"action": "openExternally"
28+
},
2329
"problemMatcher": [
2430
{
2531
"owner": "hugo",
@@ -41,10 +47,6 @@
4147
}
4248
}
4349
],
44-
"runOptions": {
45-
"runOn": "folderOpen",
46-
"instanceLimit": 1
47-
},
4850
"group": {
4951
"kind": "build",
5052
"isDefault": true

content/posts/1735168562006-atharbour/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ draft: true
55
description: "a description"
66
tags: ["example", "tag"]
77
---
8-
Okay so this post will be about how much I hate the Piraeus Harbour, why is it dysfunctional
8+
9+
Okay so this post will be about how much I hate the Piraeus Harbour, why is it dysfunctional
910
and why it is car infested. Why everyone puts the blame on personal responsibility while in
1011
reality it is obvious that the infrastructure should improve to be more human centric and
11-
fool resilient - foolproof
12+
fool resilient - foolprooooof.

cspell.config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ words:
2222
- metamaterials
2323
- souldn't
2424
- stdlib
25+
- stockouts
2526
- syms
2627
- tamasfe
2728
- textrm

0 commit comments

Comments
 (0)