This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"devDependencies": { | |
"@typescript-eslint/eslint-plugin": "^8.15.0", | |
"@typescript-eslint/parser": "^8.15.0", | |
"eslint": "^8.57.1", | |
"eslint-config-prettier": "^9.1.0", | |
"eslint-plugin-jsx-a11y": "^6.10.2", | |
"eslint-plugin-prettier": "^5.2.1", | |
"eslint-plugin-react": "^7.37.2", | |
"eslint-plugin-react-hooks": "^5.0.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
semi: true, | |
singleQuote: true, | |
trailingComma: "all", | |
bracketSameLine: true, | |
bracketSpacing: true, | |
arrowParens: "always", | |
printWidth: 100, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @type {import('eslint').Linter.Config} */ | |
module.exports = { | |
root: true, | |
parser: '@typescript-eslint/parser', | |
extends: [ | |
'eslint:recommended', | |
'plugin:@typescript-eslint/eslint-recommended', | |
'plugin:@typescript-eslint/recommended', | |
'plugin:prettier/recommended', | |
'plugin:react/recommended', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get used RAM percentage | |
ram_used=$(free | awk '/Mem:/ {printf "%.2f", $3/$2 * 100}') | |
# Get average CPU usage percentage | |
cpu_used=$(top -bn2 -d 0.5 | grep "Cpu(s)" | tail -n 1 | awk '{print $2 + $4}') | |
# Get used disk space percentage across all disks | |
disk_used=$(df -h --total | awk '/total/ {print $5}' | sed 's/%//') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Get used RAM percentage | |
ram_used=$(free | awk '/Mem:/ {printf "%.2f", $3/$2 * 100}') | |
# Get average CPU usage percentage | |
cpu_used=$(top -bn2 -d 0.5 | grep "Cpu(s)" | tail -n 1 | awk '{print $2 + $4}') | |
# Get used disk space percentage across all disks | |
disk_used=$(df -h --total | awk '/total/ {print $5}' | sed 's/%//') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
geth: | |
image: ethereum/client-go:latest | |
container_name: geth | |
restart: unless-stopped | |
ports: | |
- "30303:30303/tcp" | |
- "30303:30303/udp" | |
- "8545:8545" | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
description: Endpoints used by the Mobile App. | |
version: 3.0.0 | |
title: Mobile API | |
servers: | |
- url: https://mobile.api.prd.itsme.services/v3 | |
description: Production | |
- url: https://mobile.api.e2e.itsme.services/v3 | |
description: E2E |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "gewoon-genieten-met-play7", | |
"items": [ | |
{ | |
"id": "tag:telenet.be:paramedics", | |
"title": "Paramedics", | |
"synopsis": "", | |
"seasons": [], | |
"images": { | |
"cover": "https://i.imgur.com/QxbZJrl.jpg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "moet-je-zien", | |
"items": [ | |
{ | |
"id": "tag:telenet.be:demo:de-mol", | |
"title": "De Mol", | |
"synopsis": "", | |
"seasons": [], | |
"images": { | |
"cover": "https://i.imgur.com/GTFHSYN.jpg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "nu-op-play5", | |
"items": [ | |
{ | |
"id": "tag:telenet.be:demo:the-rookie-feds", | |
"title": "The Rookie: Feds", | |
"synopsis": "", | |
"seasons": [], | |
"images": { | |
"cover": "https://i.imgur.com/ymUul4f.jpg", |
NewerOlder