This file contains hidden or 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/bash | |
# Setup Node Deps | |
sudo snap install node --channel=11/stable --classic -y | |
# Configure node to use home directory for npm modules | |
wget -O- https://raw.githubusercontent.com/glenpike/npm-g_nosudo/master/npm-g-nosudo.sh | sh | |
# Install Yarn | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - |
This file contains hidden or 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 | |
# Prereqs | |
sudo add-apt-repository universe | |
sudo apt-get install -y apt-transport-https lsb-release software-properties-common dirmngr gnupg-agent ca-certificates curl | |
# Docker | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 | |
sudo add-apt-repository \ |
This file contains hidden or 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
{ | |
"variables": { | |
"client_id": "{{env `TF_VAR_clientid`}}", | |
"client_secret": "{{env `TF_VAR_clientsecret`}}", | |
"tenant_id": "{{env `TF_VAR_tenant_id`}}", | |
"subscription_id": "{{env `TF_VAR_subscription_id`}}" | |
}, | |
"builders": [{ | |
"type": "azure-arm", |
This file contains hidden or 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/bash | |
# | |
# This script is for Pop!_OS 19.04 to download and install XRDP+XORGXRDP via | |
# source. | |
# | |
if [ "$(id -u)" -ne 0 ]; then | |
echo 'This script must be run with root privileges' >&2 | |
exit 1 |
This file contains hidden or 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/bash | |
# | |
# This script is for Linux Mint XFCE to download and install XRDP+XORGXRDP via | |
# source. | |
# | |
if [ "$(id -u)" -ne 0 ]; then | |
echo 'This script must be run with root privileges' >&2 | |
exit 1 |
This file contains hidden or 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 sh | |
# Install Snaps | |
sudo snap install hugo | |
sudo snap install kate | |
sudo snap install node --classic | |
sudo snap install postman | |
sudo snap install powershell --classic | |
sudo snap install storage-explorer | |
sudo snap install gitkraken |
This file contains hidden or 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
$ pip install --user sqlalchemy | |
Collecting sqlalchemy | |
Downloading SQLAlchemy-1.3.17-cp38-cp38-win_amd64.whl (1.2 MB) | |
|████████████████████████████████| 1.2 MB 1.3 MB/s | |
Installing collected packages: sqlalchemy | |
Successfully installed sqlalchemy-1.3.17 |
This file contains hidden or 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
$ pip install --user pyodbc | |
Collecting pyodbc | |
Downloading pyodbc-4.0.30-cp38-cp38-win_amd64.whl (68 kB) | |
|████████████████████████████████| 68 kB 834 kB/s | |
Installing collected packages: pyodbc | |
Successfully installed pyodbc-4.0.30 |
This file contains hidden or 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
$ python | |
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> |
This file contains hidden or 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
mssql+pyodbc://user:password@host:port/databasename?driver=ODBC+Driver+17+for+SQL+Server |