$ sudo dmidecode | grep -A3 '^System Information'System Information
| /* | |
| Copyright (C) 2022–2024 Lee Yingtong Li (RunasSudo) | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU Affero General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| { | |
| "configurations": { | |
| "run": { | |
| "adapter": "vscode-node", | |
| "configuration": { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Jest Current File", | |
| "program": "${workspaceFolder}/node_modules/.bin/jest", | |
| "args": [ |
| # syntax=docker/dockerfile:experimental | |
| FROM python:3.7-slim AS base | |
| # ENV LANG=C.UTF-8 # Sets utf-8 encoding for Python et al | |
| # ENV PYTHONDONTWRITEBYTECODE=1 # Turns off writing .pyc files; superfluous on an ephemeral container. | |
| # ENV PYTHONUNBUFFERED=1 # Seems to speed things up | |
| ENV PYTHONUNBUFFERED=1 \ | |
| PYTHONDONTWRITEBYTECODE=1 \ |