Based on https://www.pendrivelinux.com/boot-multiple-iso-from-usb-via-grub2-using-linux/#more-5352
Install Homebrew
Install grub
brew install i386-elf-grub
Based on https://www.pendrivelinux.com/boot-multiple-iso-from-usb-via-grub2-using-linux/#more-5352
Install Homebrew
Install grub
brew install i386-elf-grub
Connect to remote desktop services via a bastion host using an SSH tunnel. Helpful when you have SSH access to a (eg, Linux) server with network access to the remote desktop hosts.
This works with Mac OS X, because it comes with SSH and Microsoft makes a pretty good RD client for Mac. The same overall approach should work with other SSH clients and other RD clients.
Note: This approach is not recommended for anyone. Instead, one should use a Remote Desktop Gateway (on Windows Server) or a real VPN.
(function(w){w = w || window; var i = w.setInterval(function(){},100000); while(i>=0) { w.clearInterval(i--); }})(/*window*/); |
location.search=location.search.replace(/^\?/,"&").replace(/\&(utm_[^=]*)(=[^&]*)?/g,"").replace(/^\&/,"?") |
#Requires -Version 2 | |
# https://stackoverflow.com/a/2068019 | |
Add-Type -AssemblyName System.Drawing | |
$filename = "$psscriptroot\foo.png" | |
$bmp = new-object System.Drawing.Bitmap 250, 61 | |
$font = new-object System.Drawing.Font Consolas, 24 | |
$brushBg = [System.Drawing.Brushes]::Yellow |
apacheconfigtool --lowercasenames --configpath $PWD --useapacheinclude conf/httpd.conf | jq -S '..|[.servername?,.serveralias?]|.[]|strings' |
def camel2snake: | |
gsub("(?<x>[A-Z][a-z]+)"; "_"+.x|ascii_downcase)|ltrimstr("_"); |
$alias = 'jdoe' | |
$recipient = Get-Recipient $alias | |
$dn = $recipient.DistinguishedName | |
$filter = "Members -like ""$dn""" | |
Get-DistributionGroup -Filter $filter | |
<# Results: | |
Name DisplayName GroupType PrimarySmtpAddress | |
---- ----------- --------- ------------------ | |
Staff Staff Universal, SecurityEnabled staff@example.com |
$ names=(missing older newer);echo '```';for op in -ot -nt;do echo;echo "# a $op b";echo;for a in "${names[@]}";do echo -n \|;for b in "${names[@]}";do echo -n " \`$a $op $b\` = ";test "$a" "$op" "$b";echo -n "$? |";done;echo;done;done
| missing -ot missing
= 1 | missing -ot older
= 0 | missing -ot newer
= 0 |
| older -ot missing
= 1 | older -ot older
= 1 | older -ot newer
= 0 |
| newer -ot missing
= 1 | newer -ot older
= 1 | newer -ot newer
= 1 |
#!/bin/bash | |
set -e | |
set -u | |
top='http://ftp.nhc.noaa.gov/atcf/' | |
folders=( | |
# adv | |
# aid_public | |
# btk | |
# com |