- Ubuntu 14.04, 16.04, or 16.10
- Open up terminal
- Install core deps:
sudo apt-get install clang libicu-dev git
<# | |
.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 |
# got to handle both escaped and literal | |
df.replace(to_replace=[r"\\t|\\n|\\r", "\t|\n|\r"], value=["",""], regex=True, inplace=<INPLACE>) |
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 |
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 |
/* 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 |
" vim:foldmethod=marker:foldlevel=0 | |
" vim-plug {{{ | |
call plug#begin() | |
" color scheme | |
Plug 'chriskempson/base16-vim' | |
" syntax highlighting | |
Plug 'peterhoeg/vim-qml' |
Create
Import Insecure Keypair for SSH
mkdir /home/vagrant/.ssh
wget --no-check-certificate \
# Author: Miodrag Milic <[email protected]> | |
# Last Change: 12-Feb-2016. | |
param( | |
# Path to Excel file | |
[string] $Path | |
) | |
if (!(Test-Path $Path)) { throw Path not found: $Path } | |
ps excel -ea 0| kill |
# 并发查询所有上游DNS服务器 | |
all-servers | |
# 本地DNS缓存最小有效期 | |
min-cache-ttl=3600 | |
# 本地DNS缓存数目 | |
cache-size=65535 | |
# 上游DNS服务器, 可设置多个 | |
server=8.8.4.4 | |
#server=8.8.8.8 | |
server=114.114.114.114 |