title | author | date | source | notoc |
---|---|---|---|---|
LDAP Search Filter Cheatsheet |
Jon LaBelle |
January 4, 2021 |
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
/// <summary> | |
/// Normalize line endings. | |
/// </summary> | |
/// <param name="lines">Lines to normalize.</param> | |
/// <param name="targetLineEnding">If targetLineEnding is null, Environment.NewLine is used.</param> | |
/// <exception cref="ArgumentOutOfRangeException">Unknown target line ending character(s).</exception> | |
/// <returns>Lines normalized.</returns> | |
/// <remarks> | |
/// https://jonlabelle.com/snippets/view/csharp/normalize-line-endings | |
/// </remarks> |
title | author | date | source | snippet | gist |
---|---|---|---|---|---|
MSBuild Version Properties Cheatsheet |
natemcmaster |
September 18, 2019 |
Based on Stack Overflow
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
<!-- ========================================================================== | |
How to specify multiple target frameworks in SDK-style projects | |
- File: MyProject.csproj | |
- Source: https://docs.microsoft.com/en-us/dotnet/standard/frameworks#how-to-specify-a-target-framework | |
When you specify multiple target frameworks, you may conditionally reference | |
assemblies for each target framework. In your code, you can conditionally | |
compile against those assemblies by using preprocessor symbols with |
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
#!/bin/sh | |
# ======================================================== | |
# 100 uploads per day, 5GB file size limit for FREE plan. | |
# ======================================================== | |
URL="https://file.io" | |
DEFAULT_EXPIRE="14d" # Default to 14 days | |
if [ $# -eq 0 ]; then |
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/env bash | |
function url2markdown() | |
{ | |
if [ -z "$1" ]; then | |
echo "Usage: url2markdown <url|path> [outfile.md]" | |
echo "" | |
echo " Converts the specified URL (or path) to Markdown using Pandoc." | |
echo "" | |
echo " If [outfile.md] (arg 2) is not specified..." |
title | author | date | source |
---|---|---|---|
Configure Firefox for Integrated Windows Authentication |
Jon LaBelle |
April 28, 2020 |
By default, Firefox does not support
title | subtitle | author | date | source | original | notoc |
---|---|---|---|---|---|---|
macOS Screenshot Keyboard Shortcuts |
macOS keyboard shortcuts for screen capturing the entire screen, a window, or just a selected portion of the screen. |
Apple |
January 28, 2020 |
false |
title | author | date | source | notoc |
---|---|---|---|---|
Bash Special Parameters Reference |
GNU Free Documentation: 3.4.2 Special Parameters |
February 9, 2020 |
true |
The shell treats several parameters specially. These parameters may only be referenced; assignment to them is not allowed.
title | subtitle | author | date | source |
---|---|---|---|---|
Build, Publish and Deploy ASP.NET Web Applications from the Command Line |
How to use the MSBuild (or dotnet) command to build, publish, deploy ASP.NET web applications from the command line. |
Microsoft |
December 12, 2019 |