I hereby claim:
- I am mattpatterson94 on github.
- I am mattpatterson94 (https://keybase.io/mattpatterson94) on keybase.
- I have a public key ASCKXf9Ev6L8JWcPt8eFPhy02i-kzHMzQl78SQv6E2EjiQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
ssh
on the boot directory (you can mount the boot directory in disk utility)sudo raspi-config
to set up basic initial config.sudo apt-get update
<?php | |
function lv2_add_bulma_input_classes( $args, $key, $value = null ) { | |
// Include in functions.php | |
/* This is not meant to be here, but it serves as a reference | |
of what is possible to be changed. | |
$defaults = array( | |
'type' => 'text', | |
'label' => '', |
# NGINX CONFIG W/ SSL TEMPLATE | |
#dev/wordpress #dev/snippets #dev/server | |
``` | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name www.example.com; | |
return 301 https://$host$request_uri; | |
} |
#dev/server #dev/scripts
This is the setup guide for Certbot on Ubuntu 16.04 NGINX
https://certbot.eff.org/#ubuntuxenial-nginx
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:certbot/certbot
<?php | |
function lv2_add_bootstrap_input_classes( $args, $key, $value = null ) { | |
/* This is not meant to be here, but it serves as a reference | |
of what is possible to be changed. | |
$defaults = array( | |
'type' => 'text', | |
'label' => '', | |
'description' => '', |
[email protected]:Example/example.git
[email protected]:Example/child.git
cd child;
git checkout master;
git remote add upstream [email protected]:Example/example.git;
git checkout -b parent;
group :test do | |
gem 'simplecov', require: false | |
gem 'factory_girl_rails' | |
gem 'faker' | |
gem 'pry-rails' | |
gem 'pry-rescue' | |
gem 'database_cleaner' | |
gem 'capybara' | |
gem 'capybara-screenshot' | |
end |