From 772d79abbb5763ab4fb01756f8da9b1c2f626ad8 Mon Sep 17 00:00:00 2001 From: Jens True Date: Wed, 10 Apr 2024 09:42:13 +0000 Subject: [PATCH] Updated training --- Makefile | 2 +- config/_default/{config.yaml => hugo.yaml} | 15 +---- config/_default/module.yaml | 9 +++ content/home/training.md | 64 ++++++++++++++++++++++ go.mod | 11 ++-- go.sum | 10 ++++ 6 files changed, 92 insertions(+), 19 deletions(-) rename config/_default/{config.yaml => hugo.yaml} (64%) create mode 100644 config/_default/module.yaml create mode 100644 content/home/training.md diff --git a/Makefile b/Makefile index bdf3a59..97e99fe 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ update: hugo mod get -u ./... serve_ide: - hugo serve -b "https://1313.ide.jcktrue.dk/" + hugo serve -b "https://1313.ide.jcktrue.dk/" --appendPort=false images: FOR %F IN (*.jpg) DO cwebp -af -pass 10 -mt -m 6 -preset picture %F -o %~nF.webp \ No newline at end of file diff --git a/config/_default/config.yaml b/config/_default/hugo.yaml similarity index 64% rename from config/_default/config.yaml rename to config/_default/hugo.yaml index 76044d3..3813c0f 100644 --- a/config/_default/config.yaml +++ b/config/_default/hugo.yaml @@ -11,22 +11,13 @@ hasCJKLanguage: false defaultContentLanguageInSubdir: false removePathAccents: true -############################ -## MODULES -############################ -module: - imports: - - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms - - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify - - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-reveal - - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 ############################ ## ADVANCED ############################ enableGitInfo: true summaryLength: 30 -paginate: 10000 +paginate: 10000 enableEmoji: true enableRobotsTXT: true footnotereturnlinkcontents: "^" @@ -34,8 +25,8 @@ ignoreFiles: ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_ disableAliases: true outputs: - home: [HTML, RSS, JSON, WebAppManifest] - section: [HTML, RSS] + home: [HTML, WebAppManifest] + section: [HTML] markup: defaultMarkdownHandler: goldmark diff --git a/config/_default/module.yaml b/config/_default/module.yaml new file mode 100644 index 0000000..75a96ef --- /dev/null +++ b/config/_default/module.yaml @@ -0,0 +1,9 @@ +############################ +## HUGO MODULES +## Install or uninstall themes and plugins here. +## Docs: https://gohugo.io/hugo-modules/ +############################ + +imports: + - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-reveal + - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 \ No newline at end of file diff --git a/content/home/training.md b/content/home/training.md new file mode 100644 index 0000000..71f552b --- /dev/null +++ b/content/home/training.md @@ -0,0 +1,64 @@ +--- +widget: "accomplishments" +headless: true +weight: 45 + +title: "Courses" + +date_format: "2006-01-02" + +item: +- organization: "KEY2COMPLIANCE AB" + title: "Device Control Training" + date_start: "2019-09-16" + date_end: "2019-09-17" + description: > + Course content: + - Introduction + - Medical devices - EU + - Combination products + - Quality system strategy + - Design Controls + - Planning + - User needs -> Design input + - Risk management + - Design Output + - Design Review + - Design Verification + - Design Validation + - Design Transfer + - Design Changes + - Design Documentation ”DHF” + +- organization: "KEY2COMPLIANCE AB" + title: "Software development - regulatory requirements" + date_start: "2019-09-21" + date_end: "2019-09-23" + description: > + Course content: + - EU Medical Device Regulation + - FDA regulations + - Good practice: SW lifecycle processes + - 60601 with focus on chapter 14, contribution of SW to essential performance + - 62304 - Software development lifecycle + - Development For class C software + - Short intro to risk management - ISO 14971 + - Software safety class + - Software risk in relation to 62304 + - Concept cybersecurity + - Cybersecurity risk management process + - Agile SW development + - GDPR/HIPAA + - Tool validation + +- organization: "medicaldeviceHQ" + title: "Risk Management for Medical Devices and ISO 14971:2019" + date_start: "2024-02-23" + description: > + Learning goals: + - To understand the overall process of risk management and how to create safe medical devices. + - To strengthen the ability of participants to independently perform risk analysis, risk evaluation and risk control. + - To establish and increase knowledge on risk management tools and their differences, such as FMEA and P-FMEA. + + +--- \ No newline at end of file diff --git a/go.mod b/go.mod index 729566b..57da40f 100644 --- a/go.mod +++ b/go.mod @@ -3,10 +3,9 @@ module code.jcktrue.dk/jct/jcktrue.dk go 1.15 require ( - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.3.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.1.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-reveal v1.1.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-seo v0.2.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.9.0 + github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7 // indirect + github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1 // indirect + github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.1 // indirect + github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-reveal v1.1.2 // indirect + github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.2 // indirect ) diff --git a/go.sum b/go.sum index b7d032b..1d74322 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,13 @@ +github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7 h1:QPek2BL723n+uM4DjyV97qNIoPsmt/vnKAQyaGJbgvQ= +github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7/go.mod h1:xZiTEEurbEwj/NhZohozvlyLCGVCT2wARHDAJeqKG/c= +github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1 h1:6GsVeNtYhzl14LLJRFRV1AonKGq8ZAduep/uiK5oEF4= +github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1/go.mod h1:So8+V2U+TNxlXmcpZfdDX0muLh3PdJ7z92h30sv3bZg= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.1 h1:qlDCZWq7OhuwLr7/rDPXe8iGxam2t1kgLabZ9EP0VqM= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.1/go.mod h1:C7jfxMLv1bEUqbM9XDSmEpfOpS8w06OgqNDEcbuRgL4= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-reveal v1.1.2 h1:AyH1pungA2xQDHOrXiIssKOVMY1/qoJUgwrGiK7TzJM= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-reveal v1.1.2/go.mod h1:F7quX1aEkV2pToTpmDBXOSTkytAnCKkqv/JFLclqa2g= +github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.2 h1:ccb5jQLKqiFFht24e6+yW9eie1yIm81/K1xhs7ZHZlM= +github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.2/go.mod h1:NsESu6cEms1DgH84icCyylElg2Zu8A0f7Fma5JR0LZE= github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.1.0/go.mod h1:kJwI9H8dicHQCnP8G9EvUDI+oNg/yXcGsjGjwjXuM8I= github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.2.0/go.mod h1:kJwI9H8dicHQCnP8G9EvUDI+oNg/yXcGsjGjwjXuM8I= github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-core v0.2.1-0.20231101183355-53a94b591ea8/go.mod h1:kJwI9H8dicHQCnP8G9EvUDI+oNg/yXcGsjGjwjXuM8I=