Skip to content

Commit 63f1b43

Browse files
authored
Merge pull request #5 from rudolfjs/4-subsection-headers
ready to merge with main for v1.1.0
2 parents d7d8c52 + dae5ade commit 63f1b43

File tree

10 files changed

+92
-155
lines changed

10 files changed

+92
-155
lines changed

.changes/unreleased/Changed-20250831-214451.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.changes/v1.1.0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## v1.1.0 - 2025-09-02
2+
### Changed
3+
* Re-run error on workflow corrected
4+
* Headers clearer in `notes/`
5+
* Cleanup on index files

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [Changie](https://github.com/miniscruff/changie).
77

88

9+
## v1.1.0 - 2025-09-02
10+
### Changed
11+
* Re-run error on workflow corrected
12+
* Headers clearer in `notes/`
13+
* Cleanup on index files
14+
915
## v1.0.0 - 2025-08-31
1016
### Added
1117
* Initial structure

content/about/_index.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,3 @@ title: "About"
33
description: "Background, research interests, and expertise"
44
---
55

6-
## Background
7-
8-
I am a researcher in Information Technology with a PhD focusing on digital health and machine learning applications in healthcare. My research aims to bridge the gap between advanced machine learning techniques and practical healthcare solutions.
9-
10-
## Research Interests
11-
12-
- **Digital Health Technologies**: Development and implementation of digital solutions for healthcare delivery and management
13-
- **Machine Learning in Healthcare**: Application of ML algorithms for medical data analysis and prediction
14-
- **Healthcare Information Systems**: Integration and optimization of IT systems in healthcare settings
15-
16-
## Education
17-
18-
- PhD in Information Technology
19-
- [Previous degrees to be added]
20-
21-
## Current Work
22-
23-
I am currently focused on developing machine learning solutions for healthcare applications, with a particular emphasis on:
24-
25-
- Predictive analytics in healthcare
26-
- Medical data processing and analysis
27-
- Healthcare system optimization
28-
29-
## Contact
30-
31-
Feel free to reach out for research collaborations or discussions about digital health and machine learning in healthcare.
32-
33-
[Contact information and social links to be added]

content/blog/_index.md

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,4 @@
11
---
2-
title: "Notes"
2+
title: "Blog"
33
description: "Technical insights, research notes, and discussions on digital health and ML"
44
---
5-
6-
## Technical Notes
7-
8-
Welcome to my technical notes where I share insights, tutorials, and discussions about:
9-
10-
- Machine Learning in Healthcare
11-
- Digital Health Technologies
12-
- Technical Implementations
13-
- Research Notes
14-
- Code Tutorials
15-
16-
### Categories
17-
18-
- **Technical Tutorials**: Step-by-step guides and implementations
19-
- **Research Notes**: Insights from current research
20-
- **ML in Healthcare**: Practical applications and case studies
21-
- **Digital Health**: Industry trends and technologies
22-
- **Code Snippets**: Useful implementations and solutions
23-
24-
### Recent Posts
25-
26-
[Recent blog posts will be listed here automatically]
27-
28-
---
29-
30-
Subscribe to the [RSS feed](/index.xml) to stay updated with new posts.

content/notes/posts/access-podman-another-wsl.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ draft: false
99

1010
When [Podman Desktop](https://podman-desktop.io/) is installed on Windows, it creates a dedicated WSL distribution called `podman-machine-default` to run containers. This guide will allow you to configure a separate WSL distribution (e.g. `AlmaLinux-9`) to connect to and use that existing Podman machine, allowing you to run Podman commands from multiple WSL distributions while sharing the same container runtime.
1111

12-
### Environment
12+
# Environment
1313

1414
- Windows with WSL2 enabled
1515
- Podman Desktop installed with `podman-machine-default` running
1616
- AlmaLinux-9 WSL distribution installed
1717

18-
### Step 1: Identify Podman Machine Mode
18+
## Step 1: Identify Podman Machine Mode
1919

2020
From Windows PowerShell, check if your Podman machine is running in rootful or rootless mode:
2121

@@ -25,23 +25,23 @@ podman system connection list
2525

2626
Look for the connection marked as `Default = true`. If it ends with `-root`, you're using rootful mode.
2727

28-
### Step 2: Start AlmaLinux-9 WSL Session
28+
## Step 2: Start AlmaLinux-9 WSL Session
2929

3030
```powershell
3131
wsl --distribution AlmaLinux-9
3232
```
3333

34-
### Step 3: Install Podman Remote Client
34+
## Step 3: Install Podman Remote Client
3535

3636
Install the podman-remote package from AlmaLinux repositories:
3737

3838
```bash
3939
sudo dnf install -y podman-remote
4040
```
4141

42-
### Step 4: Configure Podman System Connection
42+
## Step 4: Configure Podman System Connection
4343

44-
For rootful mode (most common):
44+
### For rootful mode (most common)
4545

4646
```bash
4747
podman system connection add \
@@ -50,7 +50,7 @@ podman system connection add \
5050
unix:///mnt/wsl/podman-sockets/podman-machine-default/podman-root.sock
5151
```
5252

53-
For rootless mode:
53+
### For rootless mode
5454

5555
```bash
5656
podman system connection add \
@@ -59,7 +59,7 @@ podman system connection add \
5959
unix:///mnt/wsl/podman-sockets/podman-machine-default/podman-user.sock
6060
```
6161

62-
### Step 5: Configure User Group Membership
62+
## Step 5: Configure User Group Membership
6363

6464
For rootful Podman, add your user to the `wheel` group (GID 10):
6565

@@ -77,7 +77,7 @@ Restart your AlmaLinux-9 session:
7777
wsl --distribution AlmaLinux-9
7878
```
7979

80-
### Step 6: Verify Configuration
80+
## Step 6: Verify Configuration
8181

8282
Run these commands to verify the setup:
8383

@@ -98,29 +98,32 @@ podman run quay.io/podman/hello
9898
podman ps -a
9999
```
100100

101-
### Troubleshooting
101+
## Troubleshooting
102+
103+
### Permission Denied on Socket
102104

103-
**Permission Denied on Socket:**
104105
```bash
105106
ls -l /mnt/wsl/podman-sockets/podman-machine-default/podman-root.sock
106107
id -nG
107108
```
108109

109-
**Connection Refused:**
110+
### Connection Refused
111+
110112
```powershell
111113
# From Windows PowerShell
112114
podman machine list
113115
podman machine start podman-machine-default
114116
```
115117

116-
**Socket Not Found:**
118+
### Socket Not Found
119+
117120
```powershell
118121
# From Windows PowerShell - restart WSL
119122
wsl --shutdown
120123
wsl --distribution AlmaLinux-9
121124
```
122125

123-
### Notes
126+
## Notes
124127

125128
1. **Architecture:** AlmaLinux-9 acts as a Podman client only, not running a separate Podman daemon
126129
2. **Shared Runtime:** All containers are managed by the `podman-machine-default` VM, visible from both Windows and AlmaLinux-9

content/projects/_index.md

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,3 @@
22
title: "Projects"
33
description: "Technical projects and implementations in healthcare ML"
44
---
5-
6-
## Research Projects
7-
8-
This section highlights my technical projects in healthcare machine learning and digital health. Each project includes implementation details, methodologies, and where applicable, links to code repositories.
9-
10-
### Current Projects
11-
12-
[Current projects will be listed here with:
13-
- Project descriptions
14-
- Technical details
15-
- Implementation approaches
16-
- Results and findings
17-
- Links to code repositories]
18-
19-
### Completed Projects
20-
21-
[Completed projects will be listed here with:
22-
- Project outcomes
23-
- Technical implementations
24-
- Lessons learned
25-
- Code repositories]
26-
27-
---
28-
29-
## Technical Skills & Tools
30-
31-
### Programming Languages
32-
- Python
33-
- R
34-
- Other relevant languages
35-
36-
### Machine Learning Frameworks
37-
- TensorFlow
38-
- PyTorch
39-
- Scikit-learn
40-
41-
### Healthcare Data Tools
42-
- FHIR
43-
- HL7
44-
- Other healthcare standards
45-
46-
---
47-
48-
## Code Examples
49-
50-
This section will feature code snippets and examples from various projects, demonstrating implementation approaches in healthcare ML.
51-
52-
[Code examples will be added here]

content/publications/_index.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,3 @@ title: "Publications"
33
description: "Research publications in digital health and machine learning"
44
---
55

6-
## Research Publications
7-
8-
This page lists my academic publications in the fields of digital health, machine learning, and healthcare information technology.
9-
10-
### Journal Articles
11-
12-
[Publications will be listed here]
13-
14-
### Conference Papers
15-
16-
[Conference papers will be listed here]
17-
18-
### Preprints
19-
20-
[Preprints will be listed here]
21-
22-
---
23-
24-
## Citation Metrics
25-
26-
[Citation metrics and research impact to be added]
27-
28-
---
29-
30-
## Research Collaboration
31-
32-
Interested in collaboration? Feel free to reach out to discuss potential research opportunities in:
33-
34-
- Machine Learning in Healthcare
35-
- Digital Health Solutions
36-
- Healthcare Data Analytics
37-
- Medical Information Systems
38-
39-
[Contact information for research collaboration to be added]

themes/minimal-research/layouts/_default/baseof.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,68 @@
233233
}
234234
</script>
235235

236+
<!-- Custom styles for content headers -->
237+
<style>
238+
/* Direct styling for headers within content div to ensure proper hierarchy */
239+
.content h1 {
240+
font-size: 2rem;
241+
font-weight: 700;
242+
color: #f3f4f6;
243+
margin-top: 2rem;
244+
margin-bottom: 1.5rem;
245+
line-height: 1.2;
246+
}
247+
248+
.content h2 {
249+
font-size: 1.5rem;
250+
font-weight: 600;
251+
color: #e5e7eb;
252+
margin-top: 1.75rem;
253+
margin-bottom: 1rem;
254+
line-height: 1.3;
255+
}
256+
257+
.content h3 {
258+
font-size: 1.25rem;
259+
font-weight: 600;
260+
color: #e5e7eb;
261+
margin-top: 1.5rem;
262+
margin-bottom: 0.75rem;
263+
line-height: 1.3;
264+
}
265+
266+
.content h4 {
267+
font-size: 1.125rem;
268+
font-weight: 600;
269+
color: #d1d5db;
270+
margin-top: 1.25rem;
271+
margin-bottom: 0.5rem;
272+
}
273+
274+
.content h5 {
275+
font-size: 1rem;
276+
font-weight: 600;
277+
color: #d1d5db;
278+
margin-top: 1rem;
279+
margin-bottom: 0.5rem;
280+
}
281+
282+
.content h6 {
283+
font-size: 0.875rem;
284+
font-weight: 600;
285+
color: #d1d5db;
286+
margin-top: 1rem;
287+
margin-bottom: 0.5rem;
288+
}
289+
290+
/* Ensure first header doesn't have too much top margin */
291+
.content > h1:first-child,
292+
.content > h2:first-child,
293+
.content > h3:first-child {
294+
margin-top: 0;
295+
}
296+
</style>
297+
236298
<!-- KaTeX for math rendering -->
237299
{{ if .Site.Params.math }}
238300
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">

themes/minimal-research/layouts/_default/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h1 class="text-4xl font-bold mb-4 text-white">{{ .Title }}</h1>
4040
{{ end }}
4141
</header>
4242

43-
<div class="content mt-8 space-y-6">
43+
<div class="content prose dark:prose-invert max-w-none mt-8 space-y-6">
4444
{{ .Content }}
4545
</div>
4646

0 commit comments

Comments
 (0)