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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+/", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+/", | |
"command": "workbench.action.focusActiveEditorGroup", |
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
2017-CU1-ubuntu | |
2017-CU10 | |
2017-CU10-ubuntu | |
2017-CU11 | |
2017-CU11-ubuntu | |
2017-CU12 | |
2017-CU12-ubuntu | |
2017-CU13 | |
2017-CU13-ubuntu | |
2017-CU14 |
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
###################################################################################################################### | |
# | |
# Creating a pacemaker cluser and availability group on VMWare Virtual Machines - Andrew Pruski | |
# @dbafromthecold | |
# [email protected] | |
# | |
###################################################################################################################### | |
# Installing SQL Server | |
###################################################################################################################### |
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 install the mssql-cli on Ubuntu 22.04 running python 3.10 | |
# | |
# This is pretty hacky so please only do this on dev/test servers | |
# | |
# The first few steps here will also get the mssql-cli working on Ubuntu 20.04 (running python 3.8) | |
# | |
####################################################################################################### |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<title>Test Presentation</title> | |
<link rel="stylesheet" href="dist/reset.css"> | |
<link rel="stylesheet" href="dist/reveal.css"> |
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
"vim generic settings | |
set number | |
set nocompatible | |
set backspace=indent,eol,start | |
set nowrap | |
set nobackup | |
set noswapfile | |
set noundofile | |
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
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" | |
"os/exec" | |
"path/filepath" | |
"strconv" | |
"syscall" |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: sqledge-deployment | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: sqledge | |
template: |
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
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: sqlsystem-pvc | |
spec: | |
volumeName: sqlsystem-pv | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: |
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
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: sqlsystem-pv | |
spec: | |
capacity: | |
storage: 1024Mi | |
accessModes: | |
- ReadWriteOnce | |
nfs: |
NewerOlder