# using this on osx derivate
sudo /usr/local/bin/ntfs-3g /dev/disk2s1 /Volumes/NTFS -olocal -oallow_other
# at the cost of speed!
sudo pv -tpreb .iso | sudo dd of=/dev/disk2 bs=4M
| <!DOCTYPE html> | |
| <html lang="en" class="no-js"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Unique page title - My Site</title> | |
| <script type="module"> | |
| document.documentElement.classList.remove('no-js'); |
| #!/bin/bash | |
| # Current file directory path | |
| DIR="$(cd "$(dirname "$0")" && pwd)" | |
| cd $DIR | |
| generate_keys () { | |
| key_dir=keys | |
| archive=client-$ID.zip | |
| base_config=base-client.conf |
| # source : https://pypi.org/pypi?%3Aaction=list_classifiers | |
| Development Status :: 1 - Planning | |
| Development Status :: 2 - Pre-Alpha | |
| Development Status :: 3 - Alpha | |
| Development Status :: 4 - Beta | |
| Development Status :: 5 - Production/Stable | |
| Development Status :: 6 - Mature | |
| Development Status :: 7 - Inactive | |
| Environment :: Console |
| # liblua5.1-dev luajit libluajit-5.1 | |
| sudo apt-get install liblua5.1-0-dev \ | |
| libluajit-5.1-dev \ | |
| libluajit-5.1-2 \ | |
| libluajit-5.1-common | |
| sudo apt-get install python-dev ruby-dev libperl-dev libncurses5-dev libatk1.0-dev libx11-dev libxpm-dev libxt-dev | |
| #Optional: so vim can be uninstalled again via `dpkg -r vim` | |
| sudo apt-get install checkinstall |
| #!/bin/bash | |
| sudo apt-get update && \ | |
| sudo apt-get upgrade && \ | |
| sudo apt-get dist-upgrade && \ | |
| dpkg -C && \ | |
| apt-mark showhold && \ | |
| sudo rpi-update && \ | |
| sudo sed -i 's/stretch/buster/g' /etc/apt/sources.list && \ | |
| sudo sed -i 's/stretch/buster/g' /etc/apt/sources.list.d/raspi.list && \ |
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Text; | |
| using System.Windows.Forms; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; |