I agree with you, but prefer to decouple philosophy from tools. It's just semantics, but in the history of business organization there is a tendency to distill a philosophy down to a few bullet points and believe following those bullet points is all that is needed to be successful. One of the bullet points is usually, "Use XYZ tool." Just putting up a board with cards on it isn't likely going to make your business more successful. It's just a tool. You have to learn how to use it. Sorry if you took my weakness with words as an attack on your efforts to do just that.
This file contains hidden or 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
# https://bitbucket.org/gfkeogh/simpledb/wiki/Home | |
Add-Type -Path C:\Scripts\Modules\SimpleDb\SimpleDb.Esent.dll | |
# Data Model | |
$episodeClass = @" | |
using System; | |
public class Episode | |
{ | |
public string Series { get; set; } | |
public int Id { get; set; } |
This file contains hidden or 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
Import-Module Simplex | |
New-PSDrive mail -psprovider simplex -root "C:\Temp\outlookprov.ps1" | |
cd mail:\Inbox |
This file contains hidden or 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
Verifying that +cdhunt is my blockchain ID. https://onename.com/cdhunt |
This file contains hidden or 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 Register-HistoryInfoCustomType | |
{ | |
Update-TypeData -TypeName Microsoft.PowerShell.Commands.HistoryInfo ` | |
-MemberType ScriptProperty ` | |
-MemberName TotalExecutionTime ` | |
-value { $this.EndExecutionTime - $this.StartExecutionTime} ` | |
-Force | |
} |
This file contains hidden or 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
$WebRequest = Invoke-WebRequest http://www.presidentsusa.net/presvplist.html | |
$tables = @($WebRequest.ParsedHtml.getElementsByTagName("TABLE")) | |
$table = $tables[0] | |
$titles = @() | |
$rows = @($table.Rows) | |
$arrPresidents = @() | |
foreach($row in $rows){ | |
$cells = @($row.Cells) |
This file contains hidden or 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
root { | |
Get-Counter -ListSet * | Select-Object -ExpandProperty CounterSetName | foreach-object { | |
$content = $_; | |
script $content { | |
Get-Counter -ListSet $content | |
}.GetNewClosure(); | |
} | |
} |
This file contains hidden or 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
<# | |
.Synopsis | |
Short description | |
.DESCRIPTION | |
Long description | |
.EXAMPLE | |
Example of how to use this cmdlet | |
.EXAMPLE | |
Another example of how to use this cmdlet | |
#> |
This file contains hidden or 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
<# | |
.Synopsis | |
Short description | |
.DESCRIPTION | |
Long description | |
.EXAMPLE | |
Example of how to use this cmdlet | |
.EXAMPLE | |
Another example of how to use this cmdlet | |
#> |
This file contains hidden or 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
Add-Type -Path C:\WatiN\bin\net40\WatiN.Core.dll | |
if ( [string]::IsNullOrEmpty([psobject].Assembly.GetType("System.Management.Automation.TypeAccelerators")::get["Find"]) ) | |
{ | |
[psobject].Assembly.GetType("System.Management.Automation.TypeAccelerators")::add("Find", "WatiN.Core.Find") | |
} | |
Describing 'Bing Search' { | |
Given 'Search for "Automated Ops"' { |