With Microsoft's purchase, I'll be looking at replacements. Maybe a "random scripts" repo hosted elsewhere.
I'll link to it here once set up. Cheers Gists, we had a good run.
With Microsoft's purchase, I'll be looking at replacements. Maybe a "random scripts" repo hosted elsewhere.
I'll link to it here once set up. Cheers Gists, we had a good run.
A very rough copy+pasta job for privacy policy updates received by coworkers and I. I thought it'd be fun to run Wordle or something against it to find the most common words and phrases used.
We have updated our Privacy Policy and the KrisFlyer Terms & Conditions to be in line with the new European Union (EU) General Data Protection Regulation (GDPR) from 25 May 2018.
We know we’re not the first, second or third email you’ve received from a company about its updated privacy policy because of changes from the EU concerning data protection regulation. But, we’ve gotta do it. Read below to learn about what we’ve done.
#!/bin/sh | |
###### | |
## Script to launch Windows NT 3.51 on QEMU without overflow errors | |
_INSTALLER_ISO="install.iso" | |
_INSTALL_DISK1="disk1.img" | |
_TARGET_BLOCK="/dev/adaX" | |
qemu-system-i386 \ |
sudo pw usermod -n $_username -u $_new_id |
vim-lite-8.0.1000 | |
Name : vim-lite | |
Version : 8.0.1000 | |
Installed on : Tue Aug 29 21:29:33 2017 AEST | |
Origin : editors/vim-lite | |
Architecture : FreeBSD:11:amd64 | |
Prefix : /usr/local | |
Categories : editors | |
Licenses : VIM | |
Maintainer : [email protected] |
dropbox stop | |
dbus-launch dropbox start |
{ | |
"client":{ | |
"rating":"0", | |
"loggedin":"0", | |
"isprating":"3.7", | |
"ispdlavg":"0", | |
"ip":"222.228.90.224", | |
"isp":"ARTERIA Networks Corporation", | |
"lon":"139.7514", | |
"ispulavg":"0", |
# ssh-agent sets variables | |
eval $(ssh-agent) |
convert -colors 256 -depth 8 +dither "$1" "png8:$1-dithered.png" |
#!/bin/sh | |
## I used to always pipe (dcfl)dd to gzip over ssh | |
## Why not just use ssh's compression that uses gzip anyway? | |
_SOURCE="/dev/xvdb" | |
_DEST="/dev/xvdb" | |
_HOST="hostname" | |
ssh -C "$_HOST" dcfldd if="$_SOURCE" | dcfldd of="$_DEST" |