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
ansible | |
apache2-utils | |
autoconf | |
automake | |
ca-certificates-mozilla | |
caca-utils | |
cloc | |
conemu | |
cscope | |
ctags |
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
# Reinstall SpaceVim along with useful bunch of tools that work well together with SpaceVim. | |
# This is for Ubuntu 20.04 | |
sudo apt install -y ctags miscfiles python3-dev python3-pip rsync shellcheck software-properties-common wbritish wbritish-huge ruby ruby-dev nodejs gcc g++ make universal-ctags python3-pygments ripgrep | |
sudo select-default-wordlist | |
sudo apt-get update | |
sudo apt-get install -y --reinstall neovim | |
sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 5 | |
sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 5 |
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
openssl req -x509 -sha512 -nodes -extensions v3_ca -newkey rsa:4096 -keyout ca-cert-and-key.pem -days 7320 -out ca-cert-and-key.pem |
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
#!/usr/bin/make -f | |
export DH_VERBOSE = 1 | |
export DH_GOPKG := github.com/HouzuoGuo/laitos | |
%: | |
dh $@ --buildsystem=golang --with=golang | |
override_dh_auto_install: | |
dh_auto_install -- --no-source |
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
Source: laitos | |
Section: devel | |
Priority: optional | |
Maintainer: Houzuo (Howard) Guo <[email protected]> | |
Build-Depends: debhelper (>= 9), dh-golang, golang-go | |
Standards-Version: 3.9.8 | |
Homepage: https://github.com/HouzuoGuo/laitos | |
XS-Go-Import-Path: github.com/HouzuoGuo/laitos | |
Package: laitos |
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
{ | |
"Description": "Bring up an EC2 that runs apache HTTP server", | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Parameters": { | |
"InstanceType": { | |
"Description": "EC2 instance type", | |
"Type": "String", | |
"Default": "t2.nano" | |
}, | |
"InstanceAMI": { |
NewerOlder