1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00

feat(skills): add C/C++

This commit is contained in:
Divlo 2021-10-01 08:51:07 +02:00
parent a4effb52f9
commit a30355582e
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
10 changed files with 2269 additions and 3724 deletions

View File

@ -14,11 +14,10 @@
"divlo.vscode-styled-jsx-languageserver", "divlo.vscode-styled-jsx-languageserver",
"bradlc.vscode-tailwindcss", "bradlc.vscode-tailwindcss",
"mikestead.dotenv", "mikestead.dotenv",
"coenraads.bracket-pair-colorizer",
"davidanson.vscode-markdownlint", "davidanson.vscode-markdownlint",
"ms-azuretools.vscode-docker" "ms-azuretools.vscode-docker"
], ],
"forwardPorts": [3000], "forwardPorts": [3000],
"postAttachCommand": ["npm", "clean-install"], "postAttachCommand": ["npm", "install"],
"remoteUser": "node" "remoteUser": "node"
} }

View File

@ -10,7 +10,7 @@ updates:
schedule: schedule:
interval: 'daily' interval: 'daily'
- package-ecosystem: 'npm' # - package-ecosystem: 'npm'
directory: '/' # directory: '/'
schedule: # schedule:
interval: 'daily' # interval: 'daily'

View File

@ -16,7 +16,7 @@ jobs:
language: ['javascript'] language: ['javascript']
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Initialize CodeQL' - name: 'Initialize CodeQL'
uses: 'github/codeql-action/init@v1' uses: 'github/codeql-action/init@v1'
@ -29,7 +29,7 @@ jobs:
build: build:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v2.4.1' uses: 'actions/setup-node@v2.4.1'
@ -46,7 +46,7 @@ jobs:
lint: lint:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v2.4.1' uses: 'actions/setup-node@v2.4.1'
@ -63,10 +63,15 @@ jobs:
- run: 'npm run lint:markdown' - run: 'npm run lint:markdown'
- run: 'npm run lint:typescript' - run: 'npm run lint:typescript'
- name: 'dotenv-linter'
uses: 'dotenv-linter/action-dotenv-linter@v2'
with:
github_token: ${{ secrets.github_token }}
test-unit: test-unit:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v2.4.1' uses: 'actions/setup-node@v2.4.1'
@ -83,7 +88,7 @@ jobs:
test-lighthouse: test-lighthouse:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v2.4.1' uses: 'actions/setup-node@v2.4.1'
@ -105,7 +110,7 @@ jobs:
test-e2e: test-e2e:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v2.4.1' uses: 'actions/setup-node@v2.4.1'
@ -127,7 +132,7 @@ jobs:
needs: [analyze, build, lint, test-unit, test-lighthouse, test-e2e] needs: [analyze, build, lint, test-unit, test-lighthouse, test-e2e]
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v2.3.4' - uses: 'actions/checkout@v2.4.0'
with: with:
fetch-depth: 0 fetch-depth: 0
persist-credentials: false persist-credentials: false

View File

@ -1,8 +1,8 @@
image: 'gitpod/workspace-full' image: 'gitpod/workspace-full'
tasks: tasks:
- before: 'cp .env.example .env && npm install --global npm@7' - before: 'cp .env.example .env'
init: 'npm clean-install' init: 'npm install'
command: 'npm run dev' command: 'npm run dev'
ports: ports:

View File

@ -7,7 +7,6 @@
"divlo.vscode-styled-jsx-languageserver", "divlo.vscode-styled-jsx-languageserver",
"bradlc.vscode-tailwindcss", "bradlc.vscode-tailwindcss",
"mikestead.dotenv", "mikestead.dotenv",
"coenraads.bracket-pair-colorizer",
"davidanson.vscode-markdownlint", "davidanson.vscode-markdownlint",
"ms-azuretools.vscode-docker" "ms-azuretools.vscode-docker"
] ]

View File

@ -1,15 +1,15 @@
FROM node:16.10.0 AS dependencies FROM node:16.12.0 AS dependencies
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY ./package*.json ./ COPY ./package*.json ./
RUN npm clean-install RUN npm clean-install
FROM node:16.10.0 AS builder FROM node:16.12.0 AS builder
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY ./ ./ COPY ./ ./
COPY --from=dependencies /usr/src/app/node_modules ./node_modules COPY --from=dependencies /usr/src/app/node_modules ./node_modules
RUN npm run build RUN npm run build
FROM node:16.10.0 AS runner FROM node:16.12.0 AS runner
WORKDIR /usr/src/app WORKDIR /usr/src/app
ENV NODE_ENV=production ENV NODE_ENV=production
COPY --from=builder /usr/src/app/next.config.js ./next.config.js COPY --from=builder /usr/src/app/next.config.js ./next.config.js

View File

@ -32,17 +32,17 @@
"Open-Source enthusiast" "Open-Source enthusiast"
], ],
"skills": { "skills": {
"programmingLanguages": ["JavaScript", "TypeScript", "Python"], "programmingLanguages": ["JavaScript", "TypeScript", "Python", "C/C++"],
"frontEnd": ["HTML", "CSS", "Tailwind CSS", "React.js (+ Next.js)"], "frontEnd": ["HTML", "CSS", "Tailwind CSS", "React.js (+ Next.js)"],
"backEnd": ["Node.js", "Fastify", "Prisma", "PostgreSQL", "MySQL"], "backEnd": ["Node.js", "Fastify", "Prisma", "PostgreSQL", "MySQL"],
"tools": ["Ubuntu", "Visual Studio Code", "Git", "Docker"] "tools": ["GNU/Linux", "Ubuntu", "Visual Studio Code", "Git", "Docker"]
} }
} }
``` ```
<hr /> <hr />
## 📈 Stats ## 📈 Statistics
<p align=center> <p align=center>
<img height=175 align="center" src="https://github-readme-stats.vercel.app/api?username=Divlo&show_icons=true&theme=dark" /> <img height=175 align="center" src="https://github-readme-stats.vercel.app/api?username=Divlo&show_icons=true&theme=dark" />

View File

@ -12,6 +12,7 @@ export const Skills: React.FC = () => {
<SkillComponent skill='JavaScript' /> <SkillComponent skill='JavaScript' />
<SkillComponent skill='TypeScript' /> <SkillComponent skill='TypeScript' />
<SkillComponent skill='Python' /> <SkillComponent skill='Python' />
<SkillComponent skill='C/C++' />
</SkillsSection> </SkillsSection>
<SkillsSection title='Front-end'> <SkillsSection title='Front-end'>

5897
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -34,56 +34,56 @@
"@fortawesome/fontawesome-svg-core": "1.2.36", "@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4", "@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4", "@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.15", "@fortawesome/react-fontawesome": "0.1.16",
"classnames": "2.3.1", "classnames": "2.3.1",
"html-react-parser": "1.3.0", "html-react-parser": "1.4.0",
"next": "11.1.2", "next": "11.1.2",
"next-pwa": "5.3.1", "next-pwa": "5.4.0",
"next-themes": "0.0.15", "next-themes": "0.0.15",
"next-translate": "1.1.0", "next-translate": "1.1.1",
"react": "17.0.2", "react": "17.0.2",
"react-dom": "17.0.2", "react-dom": "17.0.2",
"read-pkg": "7.0.0", "read-pkg": "7.0.0",
"sharp": "0.29.1", "sharp": "0.29.2",
"universal-cookie": "4.0.4" "universal-cookie": "4.0.4"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "13.2.0", "@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0", "@commitlint/config-conventional": "13.2.0",
"@lhci/cli": "0.8.2", "@lhci/cli": "0.8.2",
"@saithodev/semantic-release-backmerge": "1.5.3", "@saithodev/semantic-release-backmerge": "2.0.0",
"@semantic-release/git": "10.0.0", "@semantic-release/git": "10.0.0",
"@testing-library/jest-dom": "5.14.1", "@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.1", "@testing-library/react": "12.1.2",
"@types/jest": "27.0.2", "@types/jest": "27.0.2",
"@types/node": "16.10.2", "@types/node": "16.11.6",
"@types/react": "17.0.26", "@types/react": "17.0.33",
"@typescript-eslint/eslint-plugin": "4.32.0", "@typescript-eslint/eslint-plugin": "4.33.0",
"autoprefixer": "10.3.6", "autoprefixer": "10.3.7",
"babel-jest": "27.2.4", "babel-jest": "27.3.1",
"cypress": "8.5.0", "cypress": "8.7.0",
"dockerfilelint": "1.8.0", "dockerfilelint": "1.8.0",
"editorconfig-checker": "4.0.2", "editorconfig-checker": "4.0.2",
"eslint": "7.32.0", "eslint": "7.32.0",
"eslint-config-next": "11.1.2", "eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0", "eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1", "eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.24.2", "eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0", "eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0", "eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0", "eslint-plugin-promise": "5.1.1",
"eslint-plugin-unicorn": "36.0.0", "eslint-plugin-unicorn": "37.0.1",
"husky": "7.0.2", "husky": "7.0.4",
"jest": "27.2.4", "jest": "27.3.1",
"lint-staged": "11.1.2", "lint-staged": "11.2.4",
"markdownlint-cli": "0.28.1", "markdownlint-cli": "0.29.0",
"next-secure-headers": "2.2.0", "next-secure-headers": "2.2.0",
"postcss": "8.3.8", "postcss": "8.3.11",
"prettier": "2.4.1", "prettier": "2.4.1",
"semantic-release": "18.0.0", "semantic-release": "18.0.0",
"start-server-and-test": "1.14.0", "start-server-and-test": "1.14.0",
"tailwindcss": "2.2.16", "tailwindcss": "2.2.17",
"typescript": "4.4.3", "typescript": "4.4.4",
"vercel": "23.1.2" "vercel": "23.1.2"
} }
} }