This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Enum GainTerm { | |
Short | |
Long | |
} | |
Enum GainLoss { | |
Gain | |
Loss | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Out-Numbers { | |
<# | |
.SYNOPSIS | |
Converts PowerShell Objects in CSV and opens in Numbers on macOS | |
.DESCRIPTION | |
Converts PowerShell Objects in CSV and opens in Numbers on macOS | |
TODO, maybe allow passing through a filename, an only using temp if not. | |
then allow certian parameters for export-csv like type, or no clobber or append.. | |
.PARAMETER InputObject | |
Object to output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActiveMerchant #:nodoc: | |
module Billing #:nodoc: | |
class FirstdataE4Gateway < Gateway | |
# TransArmor support requires v11 or lower | |
self.test_url = 'https://api.demo.globalgatewaye4.firstdata.com/transaction/v11' | |
self.live_url = 'https://api.globalgatewaye4.firstdata.com/transaction/v11' | |
TRANSACTIONS = { | |
sale: '00', | |
authorization: '01', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActiveMerchant #:nodoc: | |
module Billing #:nodoc: | |
class FirstdataE4V27Gateway < Gateway | |
self.test_url = 'https://api.demo.globalgatewaye4.firstdata.com/transaction/v27' | |
self.live_url = 'https://api.globalgatewaye4.firstdata.com/transaction/v27' | |
TRANSACTIONS = { | |
sale: '00', | |
authorization: '01', | |
verify: '05', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$rabbitserver = 'localhost:15672' | |
$cred = Get-Credential | |
iwr -ContentType 'application/json' -Method Get -Credential $cred "http://${rabbitserver}/api/queues" | % { | |
ConvertFrom-Json $_.Content } | % { $_ } | ? { $_.messages -gt 0} | % { | |
iwr -method DELETE -Credential $cred -uri $("http://${rabbitserver}/api/queues/{0}/{1}" -f [System.Web.HttpUtility]::UrlEncode($_.vhost), $_.name) | |
} | |
iwr -Cr $cred "http://${rabbitserver}/api/queues" | % { ConvertFrom-Json $_.Content } | % { $_ } | % {iwr -me DELETE -Cr $cred $("http://${rabbitserver}/api/queues/{0}/{1}" -f [System.Web.HttpUtility]::UrlEncode($_.vhost), $_.name)} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class Using | |
{ | |
public static T Expression<T, T1>(Func<T1> createResourceLamda, Func<T1,T> work) | |
{ | |
//what using statement generates in IL is equiv to this pattern | |
//http://msdn.microsoft.com/en-us/library/yh598w02.aspx | |
T1 usingResource = createResourceLamda(); | |
try | |
{ | |
return work(usingResource); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${variable:troll .....'',;;::cccllllllllllllcccc:::;;,,,''...'',,'.. | |
..';cldkO00KXNNNNXXXKK000OOkkkkkxxxxxddoooddddddxxxxkkkkOO0XXKx:. | |
.':ok0KXXXNXK0kxolc:;;,,,,,,,,,,,;;,,,''''''',,''.. .'lOXKd' | |
.,lx00Oxl:,'............''''''................... ...,;;'. .oKXd. | |
.ckKKkc'...'',:::;,'.........'',;;::::;,'..........'',;;;,'.. .';;'. 'kNKc. | |
.:kXXk:. .. .................. .............,:c:'...;:'. .dNNx. | |
:0NKd, .....''',,,,''.. ',...........',,,'',,::,...,,. .dNNx. | |
.xXd. .:;'.. ..,' .;,. ...,,'';;'. ... .oNNo | |
.0K. .;. ;' '; .'...'. .oXX: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ipmo PowerShellJS -Force | |
$null = New-JSSession -Name test | |
Invoke-TypeScript -name test -script "1+1" | |
Invoke-TypeScript -name test -script "var adder = x => x * x" -NoResults | |
Invoke-JS -name test -Script "adder(5)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class TryCatch | |
{ | |
public static T Expression<T>(Func<T> lamda, Action<Exception> onException) | |
{ | |
try | |
{ | |
return lamda(); | |
} | |
catch(Exception e) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class Retry | |
{ | |
public static IEnumerable<T1> Expression<T1>( | |
int retries, | |
Func<IEnumerable<T1>> action) | |
{ | |
if (retries < 1) throw new Exception("must have 1 or more retries"); | |
var iterations = 1; | |
while (iterations <= retries) |
NewerOlder