Using Mercurial/SVN/Fossil/etc...
Git is awful and hate it's guts:
This StackOverflow answer shows how to generate mathematiclly proven regular expression to match a line that doesn't contain a word.
If you want to do the same, you need to run vcsn locally since vcsn sandbox doesn't work anymore.
@echo off | |
setlocal | |
set paket=.paket\paket.exe | |
set deps=paket.dependencies | |
set lock=paket.lock | |
set type=--type clitool | |
rem Uncomment this line to use nuget package type | |
rem set type= |
// ==UserScript== | |
// @name Feedly: Unlock Search | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Unlock search in free Feedly version. Returns top 3 results. | |
// @author beatcracker | |
// @match http*://feedly.com/i/* | |
// @grant GM_addStyle | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js |
<# | |
.Synopsis | |
Visualize pipeline lifecycle and Begin/Process/End execution order for chained cmdlets. | |
.Description | |
Provides grafical view of the Begin/Process/End blocks execution order for nested pipeline. | |
.Parameter Pipes | |
Number of nested pipeleine functions. |
# Get-Inventory -Server -IPAddress 1.1.1.1 -Credential (Get-Credential) | |
# Get-Inventory -Storage -WebServiceEndpoint https://a.b.c -OAuthToken XXXXX | |
function Get-Inventory | |
{ | |
[CmdletBinding()] | |
Param() | |
DynamicParam | |
{ |
Add-Type -Path .\KellermanSoftware.Compare-NET-Objects.dll | |
$CompareLogic = New-Object -TypeName KellermanSoftware.CompareNetObjects.CompareLogic | |
$Config = @{ | |
MaxStructDepth = 999 | |
MaxDifferences = 999 | |
MaxByteArrayDifferences = 999 | |
} | |
$CompareLogic.Config = $Config | |
function Use-CmdletBindingWithAdvParam {[CmdletBinding()] Param([Parameter()]$Foo) @{MyInvocation = $MyInvocation ; PSCmdlet = $PSCmdlet}} |
/*=========================================================================== | |
Copyright (c) Microsoft Corporation. All rights reserved. | |
File: shlobj.h | |
===========================================================================*/ | |
#ifndef _SHLOBJ_H_ | |
#define _SHLOBJ_H_ |
<# | |
.Synopsis | |
Pipe binary data between processes' Standard Output and Standard Input streams. | |
Can read input stream from file and save resulting output stream to file. | |
.Description | |
Pipe binary data between processes' Standard Output and Standard Input streams. | |
Can read input stream from file/pipeline and save resulting output stream to file. | |
Requires PsAsync module: http://psasync.codeplex.com |
rem Wrapper for https://github.com/JDeuce/symlink.bat . | |
rem Creates destination directory where all content | |
rem is symlinked from the source directory. | |
rem Usage: SymlinkDirContent.cmd "x:\source" "x:\destination" | |
rem Originally created for Windows Authentication install | |
rem of the http://bonobogitserver.com to avoid creating two | |
rem identical directories, which differ only by one web.config file. |