| title | Configure Firefox for Integrated Windows Authentication |
|---|---|
| author | Jon LaBelle |
| date | April 28, 2020 |
| source | https://jonlabelle.com/snippets/view/markdown/configure-firefox-for-integrated-windows-authentication |
By default, Firefox does not support
| title | Configure Firefox for Integrated Windows Authentication |
|---|---|
| author | Jon LaBelle |
| date | April 28, 2020 |
| source | https://jonlabelle.com/snippets/view/markdown/configure-firefox-for-integrated-windows-authentication |
By default, Firefox does not support
| title | macOS Screenshot Keyboard Shortcuts |
|---|---|
| subtitle | macOS keyboard shortcuts for screen capturing the entire screen, a window, or just a selected portion of the screen. |
| author | Apple |
| date | January 28, 2020 |
| source | https://jonlabelle.com/snippets/view/markdown/macos-screenshot-keyboard-shortcuts |
| original | https://support.apple.com/en-us/HT201361 |
| notoc | false |
| title | Bash Special Parameters Reference |
|---|---|
| author | GNU Free Documentation: 3.4.2 Special Parameters |
| date | February 9, 2020 |
| source | https://www.gnu.org/software/bash/manual/html_node/Special-Parameters.html#Special-Parameters |
| notoc | true |
The shell treats several parameters specially. These parameters may only be referenced; assignment to them is not allowed.
| title | Build, Publish and Deploy ASP.NET Web Applications from the Command Line |
|---|---|
| subtitle | How to use the MSBuild (or dotnet) command to build, publish, deploy ASP.NET web applications from the command line. |
| author | Microsoft |
| date | December 12, 2019 |
| source | https://jonlabelle.com/snippets/view/markdown/build-publish-and-deploy-aspnet-web-applications-from-the-command-line |
I hereby claim:
To claim this, I am signing this object:
| title | PowerShellGet Commands |
|---|---|
| subtitle | PowerShell command examples to discover, install, update and publish PowerShell artifacts, and from the online PowerShell Gallery |
| author | Jon LaBelle |
| date | June 1, 2019 |
| source | https://jonlabelle.com/snippets/view/markdown/powershellget-commands |
| notoc | false |
*PowerShellGet is a module with commands for discovering, installing, updating
| title | Docker Compose Cheatsheet |
|---|---|
| subtitle | Quick reference for Docker Compose commands and config files |
| author | Jon LaBelle |
| date | April 7, 2019 |
| source | https://jonlabelle.com/snippets/view/markdown/docker-compose-cheatsheet |
Internet Information Services (IIS) 7 and later use an XML-based configuration
system for storing IIS settings which replaces the metabase that was used in IIS
6.0 and earlier. This new configuration system was introduced with ASP.NET and
is based on a hierarchical system of management system that uses *.config
files. The configuration files for IIS 7 and later are located in the
%windir%\System32\inetsrv\config folder.
| #!/usr/bin/env bash | |
| set -e | |
| # | |
| # Executes a command and (exponentially) retries if it fails. | |
| # | |
| # Usage: | |
| # | |
| # exec_with_retry <command> |