I hereby claim:
- I am hervala on github.
- I am krbnsk (https://keybase.io/krbnsk) on keybase.
- I have a public key ASCjB5M2lpsp7NiWeuD6WwDYnoXkEHmEcJdo4BFZpgOCYwo
To claim this, I am signing this object:
# Password for the SA user (required) | |
MSSQL_SA_PASSWORD='Pass!W0rd' | |
# Product ID of the version of SQL server you're installing | |
# Must be evaluation, developer, express, web, standard, enterprise, or your 25 digit product key | |
# Defaults to developer | |
MSSQL_PID='developer' | |
# Install SQL Server Agent (recommended) | |
SQL_INSTALL_AGENT='y' |
# Description: Boxstarter Script | |
# Author: Jess Frazelle <jess@linux.com> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="utf-8"?> | |
<rules xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<rule> | |
<key>SA0000</key> | |
<name>Workaround incomplete diagnostics in Visual Studio 2015 Update 1</name> | |
<internalKey>SA0000</internalKey> | |
<description><![CDATA[<p>Visual Studio 2015 Update 1 contains a bug which can cause diagnostics to occasionally not display in the Errors window. When this occurs, it is impossible to use the code fixes to address style violations reported during a build. This analyzer works around the bug (dotnet/roslyn#7446). | |
When this analyzer is enabled, all diagnostics will eventually be reported in the Error window, but the performance of the analyzers is reduced. The rule is disabled for maximum performance, but can be enabled if users notice errors appearing during a build but not while editing, and they wish to use the code fixes to correct them. |
#!/bin/bash | |
# unset to make sure no old values mess up the get-session-token query | |
unset AWS_ACCESS_KEY_ID | |
unset AWS_SECRET_ACCESS_KEY | |
unset AWS_SESSION_TOKEN | |
# Run this script with source because this script sets environment variables | |
# Make sure the users aws credentials are set for aws cli |
code --install-extension alefragnani.project-manager | |
code --install-extension bbenoist.vagrant | |
code --install-extension bpruitt-goddard.mermaid-markdown-syntax-highlighting | |
code --install-extension bungcip.better-toml | |
code --install-extension cake-build.cake-vscode | |
code --install-extension donjayamanne.githistory | |
code --install-extension DotJoshJohnson.xml | |
code --install-extension eamodio.gitlens | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension formulahendry.docker-explorer |
using System; | |
using System.Linq; | |
using System.Security.Cryptography; | |
namespace PasswordGenerator | |
{ | |
public static class Password | |
{ | |
private static RNGCryptoServiceProvider rngCsp = new(); | |
private static string lowercaseCharacters = "abcdefghijklmnopqrstuvwxyz"; |