I hereby claim:
- I am lantrix on github.
- I am lantrix (https://keybase.io/lantrix) on keybase.
- I have a public key whose fingerprint is E564 BCC1 F601 5D1F 01CD AC10 C37D D2B0 2B27 2DFD
To claim this, I am signing this object:
| Dimension: (5, 3) | |
| Wall: (4, 1) west | |
| Wall: (4, 2) south | |
| Wall: (5, 2) south | |
| Beeper: (2, 1) 1 | |
| Karel: (1, 1) east | |
| BeeperBag: INFINITE | |
| Speed: 0.75 |
| #!/usr/bin/env ruby | |
| require 'rexml/document' | |
| def file_name(file) | |
| if file.end_with?(".xml") then | |
| file = file.gsub(".xml", ".hrm") | |
| else | |
| file = "#{file}.hrm" | |
| end | |
| return file |
| git svn clone --prefix=svn/ --stdlayout \ | |
| --authors-file=authors.txt \ | |
| --no-minimize-url http://plugins.svn.wordpress.org/tweet/ |
| diff --git a/build/ConfigureBizTalkServer2013EnvHostAndHostInstances.ps1 b/build/ConfigureBizTalkServer2013EnvHostAndHostInstances.ps1 | |
| index a596645..cbb6068 100755 | |
| --- a/build/ConfigureBizTalkServer2013EnvHostAndHostInstances.ps1 | |
| +++ b/build/ConfigureBizTalkServer2013EnvHostAndHostInstances.ps1 | |
| @@ -297,10 +297,14 @@ function ConfiguringBizTalkServerHostAndHostInstances | |
| CreateBizTalkAdapterHandler 'FILE' 'Receive' $receiveHostName $defaultHostName $false $removeOriginalAdapterHandler | |
| CreateBizTalkAdapterHandler 'MQSeries' 'Receive' $receiveHostName $defaultHostName $false $removeOriginalAdapterHandler | |
| CreateBizTalkAdapterHandler 'MSMQ' 'Receive' $receiveHostName $defaultHostName $false $removeOriginalAdapterHandler | |
| + CreateBizTalkAdapterHandler 'SB-Messaging' 'Receive' $receiveHostName $defaultHostName $false $removeOriginalAdapterHandler | |
| + CreateBizTalkAdapterHandler 'SFTP' 'Receive' $receiveHostName $defaultHostName $false $removeOriginalAdapterHandler |
| # WordPress SEO - XML Sitemap Rewrite Fix | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^sitemap_index.xml$ /index.php?sitemap=1 [L] | |
| RewriteRule ^locations.kml$ /index.php?sitemap=wpseo_local_kml [L] | |
| RewriteRule ^geo_sitemap.xml$ /index.php?sitemap=geo [L] | |
| RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L] | |
| RewriteRule ^([a-z]+)?-?sitemap.xsl$ /index.php?xsl=$1 [L] | |
| # END WordPress SEO - XML Sitemap Rewrite Fix |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env powershell | |
| #requires -Modules AWSPowerShell | |
| #requires -Version 2.0 | |
| <# | |
| .SYNOPSIS | |
| Script to output all the AWS IAM polcies | |
| #> | |
| #Path of git:master repo synced onto web console | |
| $sqlSourcePath = "C:\Source Folder" #with trailing backslash | |
| $sqlDestinationDrive = "C" #raw drive letter only | |
| $sqlDestinationPath = "SQL_commands" # without trailing backslash or drive e.g.: path\to\copy\folder | |
| $RobocopySyntax = ' /COPY:DAT /R:0 /W:0 /MIR' | |
| $a = [char]34 | |
| $Source = $sqlSourcePath | |
| $Destination = '\\' + $destinationIP + '\' + $sqlDestinationDrive + '$' + '\' + $sqlDestinationPath + '\' | |
| $Robocopy = 'robocopy ' + $a + $Source + $a + ' ' + $a + $Destination + $a + $RobocopySyntax |
| $User = 'machine\administrator' | |
| $Password = 'abcd1234!' | |
| $host = 10.0.0.10 | |
| $securedPassword = ConvertTo-SecureString $Password -AsPlainText -Force | |
| $Credential = New-Object System.Management.Automation.PSCredential ($User, $securedPassword) | |
| #establish session | |
| $session = New-PSSession -ComputerName $host -Credential $Credential -ErrorAction SilentlyContinue |
| $filter = New-Object Amazon.EC2.Model.Filter | |
| $filter.Name = "tag:Version" | |
| $filter.Value = "31" | |
| $volumes = Get-EC2Volume -Filters $filter | |
| $volumes | % {$_.VolumeId + " " + $_.State} | |
| Add-EC2Volume -VolumeId vol-ec9398e8 -InstanceId i-5256f66e -Device 'xvdg' |