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 prompt | |
{ | |
#! now: last error for the color | |
$color = if ($?) { 10 } else { 12 } | |
# debug | |
if ($ExecutionContext.SessionState.PSVariable.GetValue('PSDebugContext')) { | |
return | |
} |
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
// sequence of steps | |
type Step = | |
| Next | |
| Ask1 of string ref | |
| Ask2 of string ref | |
let steps = seq { | |
printfn "step 0" |
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
| |
open System | |
open ParserLibrary | |
open ParserLibrary.TextInput | |
[<EntryPoint>] | |
let entry args = | |
let r = run (opt spaces .>>. pint .>>. (manyChars (satisfy (fun _ -> true) "any"))) " -123 Z X" | |
printfn "%A" r | |
r |> printResult |
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
# credential file path | |
$CredentialPath = "$PSScriptRoot\credential.clixml" | |
# get and export credential | |
$credential = Get-Credential | |
$credential | Export-Clixml -LiteralPath $CredentialPath | |
# import credential | |
$credential = Import-Clixml -LiteralPath $CredentialPath | |
$credential |
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
# Moved to https://github.com/nightroman/FarGit |
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
# Invoke-Build tasks for markdown files (using MarkdownDeep) | |
# <https://gist.github.com/1303971> | |
<# | |
Synopsis: Convert markdown files to HTML files (using MarkdownDeep). | |
Requires: | |
* MarkdownDeep.dll and its environment variable $env:MarkdownDeep | |
* NuGet install MarkdownDeep.NET | |
* https://github.com/toptensoftware/MarkdownDeep |
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
# Invoke-Build tasks for markdown files (using Markdown.pl) | |
# <https://gist.github.com/1225405> | |
<# | |
Task: Convert markdown files to HTML files (using Markdown.pl). | |
Requires: | |
* Perl script Markdown.pl <http://daringfireball.net/projects/markdown/> | |
* Either perl executable in the path or the predefined alias 'perl', e.g.: | |
Set-Alias perl "C:\Program Files\Git\bin\perl.exe" |
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
# Invoke-Build tasks for markdown files (using MarkdownSharp) | |
# <https://gist.github.com/1223828> | |
<# | |
Task: Convert markdown files to HTML files (using MarkdownSharp). | |
Requires: | |
* MarkdownSharp.dll and its environment variable $env:MarkdownSharp | |
* NuGet install MarkdownDeep.NET | |
* https://github.com/toptensoftware/MarkdownDeep |
NewerOlder