Skip to content

Instantly share code, notes, and snippets.

View qevo's full-sized avatar

Qevo qevo

  • Houston, Texas, USA
View GitHub Profile
@qevo
qevo / oauth2-scope.uml
Created February 20, 2017 04:03
UML for OAuth2 Authorize Scope Request
@startuml
title "OAuth2 Authorize Scope Request"
actor User
entity "Service 1" as MS1
entity "Service 2" as MS2
database SSO
User -> MS1 : Login
@qevo
qevo / luks-quick-guide.md
Created January 24, 2017 16:32
LUKS encryption quick guide

LUKS Encryption Quick Guide

Learn more about Linux Unified Key Setup.

Create Device

# create partition
fdisk /dev/sdX

# initiate partition encryption (optional, but suggested)
@qevo
qevo / Laravel51-InternalRequest.php
Last active March 20, 2016 01:29
Laravel 5.1 Internal Request
<?php
namespace App\Helpers;
use \Illuminate\Http\Request;
/**
* Class InternalRequest
*