Skip to content

Instantly share code, notes, and snippets.

@jacqinthebox
jacqinthebox / NewComputer.ps1
Created January 9, 2018 17:29
Mighty Powershell #powershell
Function New-Computer {
param(
[Parameter(Mandatory = $true)]
[ValidateSet('small','medium','large','x-large')]
[string]$installtype,
[Parameter(Mandatory = $true)]
[bool]$virtualmachine
)
Login-PowerBI
$workspaces = Get-PowerBIWorkspace
$sourceServer = server01.database.windows.net
$sourceDatabase = database01.database.windows.net
$destinationServer = server02.database.windows.net
$destinationDatabase = database02.database.windows.net
This file has been truncated, but you can view the full file.
/*FONTS*/
@font-face {
font-family: 'Avenir Next Cyr';
src: url('data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAG/cAA8AAAABWdwAAG96AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGlobtBocowQGYACHZhEICoO0cILJVAuLOAABNgIkA5ZsBCAFyHIHr3NbgB1xQty2qxKV2wHG/e3ekAXs2Dg6b7O69o7Euy1ht7K5HTz5rC7w2f//n5ZsjGFw5AFqmrNt618oriMcUTJDezCqtJ4nq8qMZFcp3tlyTKn1WrolrV0IyQJeXGPr+00wddf8WL+ElxDRsjB/S6a6nzvzI1MqPGkmj2vSWhvSdWgWuC0DUQWYhn30/VD+HDgRIYWKipZFEHauL7ocUhyRkAX8XmpTrj3PWHtIO/zBPGIt+QcndJbrBi/kIcB2/YCYUJjGjMziOvIhz///fv8619r3vfyEVQm+jq5uZIFB14iyIyUIbTWhanVHFZ4f7fr/nJPsrDTwzWRBPJCt8dGJFVQ0v3OrrpWHwG0d4NgDFyI4UZEhICDIFnANwIVrojvXypUrc6z6ym9Nra3Z/Nr/u75tVv/Vf/6/uj7fk+yF+6TxLrc5fYoSSyJZMnyI17Pfmzh75iQTAqu12wBzC1QtQhkq0yX8/8N+9NvrvvliiMWhNShZSyBVciZVOIuqGYflh51fnVzR9RRn8nVfK186RMESbApQANI6adxi2ZpJhUEjakylQVknKxxZUg+Ee/Mlrn5/iuyczcuDwSWFQ61g2fv36bT/ndt7KLXXX2yEi6yMlRmG4ZB0Lti+we4ttbl3DC4pbTHYX9L2etqjkTrBy6PLUO1/AH77V7baozFJTpATJGTJBTHRxl8XYTLYy7LYIt4RMgw2Z/3WZ13DVL/12Zz560+hzLqoJPhVa/yAfLvNZgP/E9c0GlGAtvDOvzKWbTPY4drwZGb3e2mIpc1fQ
@jacqinthebox
jacqinthebox / post-install.md
Last active January 29, 2022 10:47
Post Install Ubuntu

Post Install Ubuntu 19.04 and deriviates

Update System

sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install -y curl git gitk vim-nox p7zip-full \
    build-essential linux-headers-$(uname -r) \
    dkms gdebi zsh gnome-tweak-tool gparted \
    software-properties-common \
@jacqinthebox
jacqinthebox / install-arch-copy-paste.md
Last active December 30, 2020 12:08
Install Arch

Install Arch

Make bootable USB
Disable secure boot
Start laptop

lspci -k | grep Wireless

Keybase proof

I hereby claim:

  • I am jacqinthebox on github.
  • I am jacqueline (https://keybase.io/jacqueline) on keybase.
  • I have a public key ASCrzy-ecD6lS1J41YKzA-GEF44uZ3OyEVLAP54m0ONOtwo

To claim this, I am signing this object:

@jacqinthebox
jacqinthebox / shortcuts.md
Last active December 22, 2019 17:43
[Keyboard Shortcuts]Keyboard Shortcuts #markdown #vim #vscode
@jacqinthebox
jacqinthebox / versions.json
Created July 25, 2019 12:17
versions.json
{
"pcawidgettemplate": "1.3.2",
"pcasearchch": "1.3.1",
"pcaattendantweb": "1.3.97",
"pcaprovisionservice": "1.3.8",
"pcamailservice": "1.3.7",
"pcastatisticsservice": "1.3.5",
"pcadockerwamprouter": "1.3.3",
"pcabroadsoftservice": "1.3.35",
"pcaomnidirservice": "1.3.9",
@jacqinthebox
jacqinthebox / cloudSettings
Last active July 20, 2019 13:08
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-07-03T09:41:03.038Z","extensionVersion":"v3.3.1"}
@jacqinthebox
jacqinthebox / install-docker.sh
Created July 20, 2019 12:18
Install Docker on Ubuntu 18.04
# Update the apt package list.
sudo apt-get update -y
# Install Docker's package dependencies.
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common