-
Create
-
Import Insecure Keypair for SSH
mkdir /home/vagrant/.ssh
wget --no-check-certificate \
Create
Import Insecure Keypair for SSH
mkdir /home/vagrant/.ssh
wget --no-check-certificate \
| " vim:foldmethod=marker:foldlevel=0 | |
| " vim-plug {{{ | |
| call plug#begin() | |
| " color scheme | |
| Plug 'chriskempson/base16-vim' | |
| " syntax highlighting | |
| Plug 'peterhoeg/vim-qml' |
| /* this is the box (and the version) that we want to download from: https://app.vagrantup.com/debian/boxes/jessie64 */ | |
| wget https://app.vagrantup.com/debian/boxes/jessie64/versions/8.9.0/providers/virtualbox.box -O debian-jessie64-8.9.0.box | |
| /* add the box to vagrant */ | |
| vagrant box add debian/jessie64 debian-jessie64-8.9.0.box | |
| /* update box version */ | |
| cd ~/.vagrant.d/boxes/debian-VAGRANTSLASH-jessie64/ | |
| mv 0 8.9.0 |
| file_to_disk = './tmp/large_disk.vdi' | |
| Vagrant::Config.run do |config| | |
| config.vm.box = 'base' | |
| config.vm.customize ['createhd', '--filename', file_to_disk, '--size', 500 * 1024] | |
| config.vm.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', file_to_disk] | |
| end |
| mkdir ~/.weechat/ssl-cert | |
| cd ~/.weechat/ssl-cert | |
| openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -out relay.pem | |
| In weechat: | |
| /set relay.network.ssl_cert_key "/home/username/.weechat/ssl-cert/relay.pem" | |
| /relay add ssl.weechat 9001 |
| # got to handle both escaped and literal | |
| df.replace(to_replace=[r"\\t|\\n|\\r", "\t|\n|\r"], value=["",""], regex=True, inplace=<INPLACE>) |
| <# | |
| .SYNOPSIS | |
| Script to Initialize my custom powershell setup. | |
| .DESCRIPTION | |
| Script uses scoop | |
| .NOTES | |
| **NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
| Author: Mike Pruett | |
| Date: October 18th, 2018 |