From 38e69e169630266831f13e595979e7ef1c702dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 6 Feb 2023 17:16:27 +0100 Subject: [PATCH 01/12] Refine Wolle's profile --- docs/people/wolfgang-huss.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/people/wolfgang-huss.md b/docs/people/wolfgang-huss.md index 09ae31d..ef13417 100644 --- a/docs/people/wolfgang-huss.md +++ b/docs/people/wolfgang-huss.md @@ -4,14 +4,11 @@ ![Bild – Wolfgang Huß](~@images/portrait/Wolfgang_Huss.jpeg) +Dabei bin ich durch mehrere Phasen interessanter technologischer Veränderungen gegangen und habe die neuen Technologien hauptsächlich autodidaktisch und in Pairing-Sitzungen erlernt. --> Since I was 14 years old, that is since the beginning of 1983, I have been involved in programming. -I have gone through several phases of interesting technological changes. -I learned these mainly self-taught and in pairing sessions. +In the process, I have gone through several phases of interesting technological change, learning the new technologies mainly self-taught and in pairing sessions. - + Programming is like telling an interactive story, which often has visual components as well. I particularly enjoy the artistic structural aesthetics when implementing complex projects in fascinating programming languages. @@ -68,9 +65,9 @@ I developed and contributed to different projects: - Frontend development - Backend development - Server setup -- Owner of iOS [FaceYourFace](https://apps.apple.com/de/app/faceyourface/id1137963659) App +- Owner of [FaceYourFace](https://apps.apple.com/de/app/faceyourface/id1137963659) App for iOS - Developer -- Owner of Windows `Pjannto RIP` App +- Owner of `Pjannto RIP` App for Windows - Developer ## Approaches & Tools From ecd67cb96397cc796c6f2a47864ce07bf99df302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 6 Feb 2023 17:19:28 +0100 Subject: [PATCH 02/12] Add missing line break --- docs/people/wolfgang-huss.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/people/wolfgang-huss.md b/docs/people/wolfgang-huss.md index ef13417..4baf02e 100644 --- a/docs/people/wolfgang-huss.md +++ b/docs/people/wolfgang-huss.md @@ -8,7 +8,8 @@ Dabei bin ich durch mehrere Phasen interessanter technologischer Veränderungen Since I was 14 years old, that is since the beginning of 1983, I have been involved in programming. In the process, I have gone through several phases of interesting technological change, learning the new technologies mainly self-taught and in pairing sessions. - + Programming is like telling an interactive story, which often has visual components as well. I particularly enjoy the artistic structural aesthetics when implementing complex projects in fascinating programming languages. From 33a8d3fe55850b08c233ba8d58f3c8e7d32a3bd4 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 21 Feb 2023 03:07:18 +0100 Subject: [PATCH 03/12] fix deploy --- .github/workflows/vuepress-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index fdeb561..2879067 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -18,6 +18,6 @@ jobs: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} TARGET_REPO: IT4Change/IT4C.dev TARGET_BRANCH: gh-pages - BUILD_SCRIPT: npm install && npm run build:workflow + BUILD_SCRIPT: npm install && npm run build BUILD_DIR: docs/.vuepress/dist CNAME: https://www.it4c.dev \ No newline at end of file From 00a1756f05c68ad0002f1f5c33ddd4e710a142c5 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 23:32:54 +0100 Subject: [PATCH 04/12] ensure we run on node 19 --- .github/workflows/test-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 20d6442..ea93015 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: npm-install run: npm install From 23ce59e72e9e90d3962173a6dc83254cbb4582d3 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 23:35:57 +0100 Subject: [PATCH 05/12] setup node 19 on the other two workflows aswell --- .github/workflows/test-lint.yml | 5 +++++ .github/workflows/vuepress-deploy.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index d670d6f..24e97fe 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: npm-install run: npm install diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index 2879067..e20cc8d 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -12,6 +12,11 @@ jobs: - name: Checkout uses: actions/checkout@master + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: vuepress-deploy uses: jenkey2011/vuepress-deploy@v1.8.1 env: From 68d4d0123326d06e0dbab3ca7b75076ac7a76551 Mon Sep 17 00:00:00 2001 From: ogerly Date: Sat, 6 May 2023 12:04:27 +0200 Subject: [PATCH 06/12] add nvmrc file --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..9d87b3b --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v19 \ No newline at end of file From f98d46f2c25d46c40f5d64a15c915520f641d3dc Mon Sep 17 00:00:00 2001 From: thkoch2001 <94641+thkoch2001@users.noreply.github.com> Date: Sun, 10 Sep 2023 15:03:18 +0300 Subject: [PATCH 07/12] [typo] s/archive/achieve/ in contact.md --- docs/contact.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contact.md b/docs/contact.md index f1dbe1e..2b0e5fc 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -18,4 +18,4 @@ You can also join our [Telegram Channel](https://t.me/+A3XAurSG9ws3NjE6) to get If you are looking for a developer team and you consider hiring (some of) us, please make sure to also provide a detailed project description, outlining goals, time frame, social impact and wether the project will be open- or closed source. -We will work with you to archive your goals in a sustainable manner. We will make sure knowledge is spread within the team and we will integrate with your existing IT department to ensure scalability. \ No newline at end of file +We will work with you to achieve your goals in a sustainable manner. We will make sure knowledge is spread within the team and we will integrate with your existing IT department to ensure scalability. From 0af89e67093c4c38273f3214e3523bdc9215da72 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 12 Sep 2023 13:21:41 +0200 Subject: [PATCH 08/12] run workflows when pullrequest is targeting this repo --- .github/workflows/test-build.yml | 2 +- .github/workflows/test-lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index ea93015..544c8cf 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -1,6 +1,6 @@ name: build test CI -on: push +on: [ push, pull_request_target ] jobs: build-test: diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 24e97fe..969166c 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -1,6 +1,6 @@ name: lint test CI -on: push +on: [ push, pull_request_target ] jobs: build-test: From 51a281ba742cb1428bf09ac4b6828cf974cf7be5 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 12 Sep 2023 13:33:37 +0200 Subject: [PATCH 09/12] fix deploy workflow --- .github/workflows/vuepress-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index e20cc8d..cfe23b3 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -13,9 +13,9 @@ jobs: uses: actions/checkout@master - name: Setup Node 19 - uses: actions/setup-node@v3 - with: - node-version: '19' + uses: actions/setup-node@v3 + with: + node-version: '19' - name: vuepress-deploy uses: jenkey2011/vuepress-deploy@v1.8.1 From 7406a96128431e8f13132bb48fbbb1625113dcca Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 12 Sep 2023 13:35:43 +0200 Subject: [PATCH 10/12] remove duplicate checks --- .github/workflows/test-build.yml | 2 +- .github/workflows/test-lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 544c8cf..662b7e9 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -1,6 +1,6 @@ name: build test CI -on: [ push, pull_request_target ] +on: pull_request_target jobs: build-test: diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 969166c..e1d6812 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -1,6 +1,6 @@ name: lint test CI -on: [ push, pull_request_target ] +on: pull_request_target jobs: build-test: From d9cb0cb4c3ea56762f638a252b90ed9ab99421ca Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 12 Sep 2023 13:51:12 +0200 Subject: [PATCH 11/12] use vuepress deploy master --- .github/workflows/vuepress-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index cfe23b3..681b98d 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -18,7 +18,7 @@ jobs: node-version: '19' - name: vuepress-deploy - uses: jenkey2011/vuepress-deploy@v1.8.1 + uses: jenkey2011/vuepress-deploy@master env: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} TARGET_REPO: IT4Change/IT4C.dev From eadfb0b9814c58e8a0fbb424ce0c20cd92fa9410 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 12 Sep 2023 18:20:07 +0200 Subject: [PATCH 12/12] implement node16 compatible mode for building --- .github/workflows/vuepress-deploy.yml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index cfe23b3..d65f9b0 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -23,6 +23,6 @@ jobs: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} TARGET_REPO: IT4Change/IT4C.dev TARGET_BRANCH: gh-pages - BUILD_SCRIPT: npm install && npm run build + BUILD_SCRIPT: npm install && npm run build-node16 BUILD_DIR: docs/.vuepress/dist CNAME: https://www.it4c.dev \ No newline at end of file diff --git a/package.json b/package.json index f3edd6f..4414e78 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "main": "index.js", "scripts": { "build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs", + "build-node16": "vuepress build docs", "dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs", "test": "textlint \"*.md\" \"docs/**/*.md\"" },