I hereby claim:
- I am stevesbrain on github.
- I am soupyowl (https://keybase.io/soupyowl) on keybase.
- I have a public key ASCnu9WabRK9iThScMkvOfsGxq8ZBS4jPY5sM8DByKHfZgo
To claim this, I am signing this object:
Param ( | |
[string]$Printservers = "SERVERNAME.domain" | |
) | |
# Create new Excel workbook | |
cls | |
$Excel = New-Object -ComObject Excel.Application | |
$Excel.Visible = $True | |
$Excel = $Excel.Workbooks.Add() | |
$Sheet = $Excel.Worksheets.Item(1) |
I hereby claim:
To claim this, I am signing this object:
<?php | |
// ... | |
protected $middleware = [ | |
// ... | |
\FI\Http\Middleware\ValidProxies::class, | |
]; | |
// ... |
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
#Demonstrate setting of array with keys + values | |
data= {} | |
(data['how'], data['amount'], data['description'], data['paid_to']) = ("From Net Financed Proceeds", 55.0, "Paper fees", "John") | |
#Demonstrate printing values based on looking up keys - i.e., array['key'] = display value associated with key | |
print("How: " + data['how']) | |
print("Amount: " + str(data['amount'])) | |
print("Description: " + data['description']) | |
print("Paid to: " + data['paid_to']) |