I hereby claim:
- I am jeffersonmartin on github.
- I am jeffersonmartin (https://keybase.io/jeffersonmartin) on keybase.
- I have a public key ASAL8eu_9Zqt4o7vKN9ZUY1Q2P3a9Rpkz3NWy1tg9_Gq7go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"allow_git_home_dir": true, | |
"auto_complete": false, | |
"bold_folder_labels": true, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/One Dark Material - Theme/schemes/OneDark.tmTheme", | |
"copy_with_empty_selection": false, | |
"drag_text": false, |
If you're trying to load a private repository with Composer/Laravel, we'll need to generate a GitHub Personal Access Token (similar to OAuth token) to access the repository during a composer install
without entering credentials.
If you have used other Github packages from
{my-org}
before, you may be able to skip this step.
Click Generate new token.
server { | |
listen 80; | |
server_name learn.mydomain.com; | |
return 301 https://learn.mydomain.com$request_uri; | |
} | |
server { | |
listen 443 ssl; | |
server_name learn.mydomain.com; |
When using Envoy for the first time to deploy to production servers, there are quite a few steps to get it running correctly. These are the cliff notes that I use for getting Envoy running.
This file includes the descriptive tasks for deployment. Copy this file from an existing repository and make appropriate tweaks.
#!/bin/bash | |
# | |
# Laravel MVC Project Symlink Script | |
# @author Jefferson Martin <github.com/jeffersonmartin> | |
# | |
# When developing applications, you spend 95% of your time working with models, | |
# views, and controllers. However, these respective directories are buried deep | |
# in the Laravel application directory structure. Although we could create a | |
# different directory structure, it requires a lot of changes to Service Providers |
#!/bin/bash | |
# | |
# Automate mysql secure installation for debian-baed systems | |
# | |
# - You can set a password for root accounts. | |
# - You can remove root accounts that are accessible from outside the local host. | |
# - You can remove anonymous-user accounts. | |
# - You can remove the test database (which by default can be accessed by all users, even anonymous users), | |
# and privileges that permit anyone to access databases with names that start with test_. |
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
These instructions were written for Ubuntu 12.04 LTS, herein referred to as guac-server
.
Once your Ubuntu 12.04 LTS VM has been installed and the network has been configured, you will need to install the tomcat server and the latest guacamole release. As of this writing, we are using the binary (.war) of Guacamole 0.8.3.
# apt-get update
# apt-get install tomcat6