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
#r "nuget: Nuke.Common, 0.24.11" | |
using Nuke.Common; | |
Target Foo => _ => _ | |
.Executes(() => { Console.WriteLine("Inside target"); }); | |
BuildManager.Run(this); |
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 install { | |
$build_dir = Join-Path $PSScriptRoot ".build" | |
$json = ConvertFrom-Json (Get-Content "$path/global.json" -Raw) | |
$required_version = $json.sdk.version | |
# If there's a version mismatch with what's defined in global.json then a | |
# call to dotnet --version will generate an error. | |
try { dotnet --version 2>&1>$null } catch { $install_sdk = $true } | |
# Different PS versions may throw an exception vs set LASTEXITCODE | |
if ($global:LASTEXITCODE) { | |
$install_sdk = $true; |
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
# From the FV buil script: | |
target install-dotnet-core { | |
# Version check as $IsWindows, $IsLinux etc are not defined in PS 5, only PS Core. | |
$win = (($PSVersionTable.PSVersion.Major -le 5) -or $IsWindows) | |
$json = ConvertFrom-Json (Get-Content "$path/global.json" -Raw) | |
$required_version = $json.sdk.version | |
# If there's a version mismatch with what's defined in global.json then a | |
# call to dotnet --version will generate an error. AppVeyor vs local seem to have different | |
# behaviours handling exit codes (appveyor will immediately halt execution on windows, but not linux) |
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
#!/usr/bin/php | |
<?php | |
// In php first element of $argv is the path to the current script. | |
$a = $argv; | |
if(count($a) === 2) { | |
// Single argument. Just launch it. | |
shell_exec($a[1]); | |
} |
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 Test-Administrator { | |
if (($PSVersionTable.PSVersion.Major -le 5) -or $IsWindows) { | |
$currentUser = [Security.Principal.WindowsPrincipal]([Security.Principal.WindowsIdentity]::GetCurrent()) | |
return $currentUser.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) | |
} | |
return $false; | |
} | |
function Elevate { |
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 Import-EnvFile { | |
$files = Get-ChildItem *.env | |
foreach($file in $files) { | |
write-host $file | |
$lines = Get-Content $file | |
foreach($line in $lines) { | |
if ($line -and !$line.StartsWith("#")) { | |
# Split by equals | |
$parts = $line.Split("=") | |
if ($parts.Length -eq 2) { |
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 Extensions { | |
public static IRuleBuilderOptions<T, TProperty> Prefix<T, TProperty>(this IRuleBuilderOptions<T, TProperty> rule, string prefix) { | |
return rule.Configure(cfg => { | |
cfg.MessageBuilder = context => { | |
// The MessageBuilderContext has lots of useful things on it, see https://github.com/JeremySkinner/FluentValidation/blob/master/src/FluentValidation/Internal/MessageBuilderContext.cs | |
return prefix + " " + context.GetDefaultMessage(); | |
}; | |
}); | |
} | |
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 gitPrompt { | |
if(gitIsDirectory) { | |
write-host ' [' -nonewline -foregroundcolor Yellow | |
$status = gitStatus | |
$currentBranch = $status['branch'] | |
if ($status["ahead"] -eq $FALSE) { | |
# We are not ahead of origin | |
Write-Host($currentBranch) -nonewline -foregroundcolor Cyan | |
} else { |
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 MyExtensions { | |
public IRuleBuilderOptions<T, TProperty> SetValidator<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder, Func<T, IValidator<TProperty>> validatorThunk) { | |
return ruleBuilder.SetValidator(new LazyValidatorAdaptor<T, TProperty>(validatorThunk)); | |
} | |
private class LazyValidatorAdaptor<T, TProperty> : NoopPropertyValidator { | |
Func<T, IValidator<TProperty>> _validatorThunk; | |
public LazyValidatorAdaptor(Func<T, IValidator<TProperty>> validatorThunk) { | |
_validatorThunk = validatorThunk; |
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
// From http://gilbert.pellegrom.me/replicating-net-password-hashing-in-php/ | |
/* | |
* $password is the users password entered at login | |
* $hashed_password is the password from the database | |
* $password_salt is the salt from the database | |
*/ | |
$bytes = mb_convert_encoding($password, 'UTF-16LE'); | |
$salt = base64_decode($password_salt); | |
$password = base64_encode(sha1($salt . $bytes, true)); |
NewerOlder