BrickLink upload XML https://www.bricklink.com/v2/wanted/upload.page?utm_content=subnav
All parts from above book indexed in list. Remarks describe "build-name (qty)" allowing distillation of specific builds.
-
Age Range
var url = "https://chart.googleapis.com/chart?chs=250x250&cht=qr&chl=abc%20123%20456&choe=UTF-8"; | |
var attachment = MailMessageHelper.GetUrlAsAttachment(url, "qrcode.png"); | |
message += string.Format("<img src='{0}' />", attachment != null ? "cid:" + attachment.ContentId : url); | |
using (SmtpClient client = new SmtpClient("xxx.xxx.x.xx")) | |
{ | |
MailAddress to = new MailAddress("[email protected]"); | |
MailAddress from = new MailAddress("[email protected]"); | |
MailMessage email = new MailMessage(from, to); |
@ECHO OFF | |
TITLE MongoDB as a Service | |
REM Change to your installation dir. | |
SET MONGODIR=%ProgramFiles%\MongoDB\Server\2.7\bin | |
REM Change to where you'd like the databases and logs. | |
SET LOGDIR=%MONGODIR%\data\log | |
SET DBDIR=%MONGODIR%\data\db | |
SET LOGFILE=%LOGDIR%\mongod.log |
IIS / URL Rewrite Module 2.1 | |
Info: https://www.iis.net/downloads/microsoft/url-rewrite | |
Installer (x86) | |
Filename: rewrite_x86_en-US.msi | |
Resulting URI: http://download.microsoft.com/download/6/8/F/68F82751-0644-49CD-934C-B52DF91765D1/rewrite_x86_en-US.msi | |
Unattended: msiexec /i rewrite_x86_en-US.msi /quiet /norestart | |
Installer (x64) | |
Filename: rewrite_amd64_en-US.msi | |
Resulting URI: http://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi | |
Unattended: msiexec /i rewrite_amd64_en-US.msi /quiet /norestart |
BrickLink upload XML https://www.bricklink.com/v2/wanted/upload.page?utm_content=subnav
All parts from above book indexed in list. Remarks describe "build-name (qty)" allowing distillation of specific builds.
. "${PSScriptRoot}\Test-Property.ps1" | |
Describe "Test-Property" { | |
Context "Basic Usage" { | |
BeforeAll { | |
$obj = @{ Foo = "Bar" } | |
} | |
It "Should accept named parameters" { | |
Test-Property -InputObject $obj -PropertyName "Foo" | Should -Be $true | |
} |
$Make = "Tesla" | |
$Model = "X" | |
$Year = 2017 | |
$Format = "`$Year `$Make `$Model" | |
Function Format-UnsafeString { | |
Param( | |
[Parameter(Position = 0, Mandatory)] | |
[string]$Format | |
, |
{ | |
"Sitecore 8.2 rev. 161221.zip": { | |
"description": "Sitecore Experience Platform 8.2 Update-2", | |
"url": "https://dev.sitecore.net/~/media/02D2B5F95D1D4B1F894C2E3CA1194E45.ashx" | |
}, | |
"Sitecore 8.2 rev. 171121 (WDP XP0 package).zip": { | |
"description": "Sitecore Experience Platform 8.2 Update-6", | |
"url": "https://dev.sitecore.net/~/media/AFA4C05BA4414C239FA9945E52ABF7DC.ashx" | |
}, | |
"Sitecore 8.2 rev. 180406 (WDP XP1 packages).zip": { |
[CmdletBinding()] | |
Param( | |
[Parameter()] | |
[string]$SubscriptionId = $null | |
, | |
[Parameter()] | |
[string]$CertificatePassword = "secret" | |
, | |
[Parameter()] | |
[ValidateScript({ Test-Path $_ -IsValid })] |
[CmdletBinding()] | |
Param( | |
[Parameter()] | |
[guid]$SubscriptionId = "16a1fd8b-1684-4b0f-9c72-383d91e35cd7" | |
, | |
[Parameter()] | |
[ValidateSet("Canada Central","Canada East","Central US","East US","East US 2","North Central US","South Central US","West Central US","West US","West US 2")] | |
[string]$Region = "Central US" | |
, | |
[Parameter()] |
Function GetDatabases { | |
[CmdletBinding()] | |
Param( | |
[Parameter(Position = 0, Mandatory, ValueFromPipeline)] | |
[ValidateScript({ Test-Path $_ -PathType "Container" })] | |
[string]$WebRoot | |
) | |
Process { | |
$Databases = @() |