Instructions how to install Ubuntu using debootstrap. Below instructions were verified to work with debootstrapping Ubuntu 24.04.2.
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
| """ | |
| This Python script defines a tool to extract and parse specific hardware information from a system's DMI (Desktop Management Interface) / SMBIOS data using the dmidecode command-line utility (commonly available on Linux systems). | |
| Tested on Rocky Linux 9.5 using dmidecode version 3.6 (dmidecode-3.6-1.el9.x86_64) | |
| Original version 1/6/2025 Justin Wong | |
| """ | |
| import subprocess | |
| import json | |
| from datetime import datetime | |
| import re |
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
| ''' | |
| #requirements.txt | |
| pypiwin32==223 | |
| pywin32==306 | |
| ''' | |
| # Download attachments from unread Outlook emails from a specified date | |
| # original: https://www.linkedin.com/pulse/using-python-download-outlook-excel-attachment-victor-sun/ | |
| import os | |
| import sys | |
| from win32com.client import Dispatch |