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
require "rubygems" | |
require "mp3info" | |
require "csv" | |
chapterarray = [] | |
#Dir.glob("/Users/klumsy/Downloads/bible/01_Genesis/*.mp3") do |f| | |
Dir.glob("/Users/klumsy/Downloads/bible/**/*.mp3") do |f| | |
Mp3Info.open(f) do |mp3info| | |
title = mp3info.tag.title | |
puts title |
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 IEnumerable<T1> Batch<T,T1>( | |
this IEnumerable<T> list, | |
int batchSize, | |
Func<IEnumerable<T>, IEnumerable<T1>> action, | |
bool processInParallel = false) | |
{ | |
int i = 0; | |
var grpqry = from item in list | |
group item by (int)i++ / batchSize | |
into part |
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 IEnumerable<T1> Batch2<T, T1>( | |
this IEnumerable<T> list, | |
int batchSize, | |
int maxParallelism, | |
Func<IEnumerable<T>, IEnumerable<T1>> action) | |
{ | |
int i = 0; | |
return ( | |
from item in list | |
group item by (int)i++ / batchSize |
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) |
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
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
${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
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
$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
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', |
OlderNewer