Skip to content

Instantly share code, notes, and snippets.

View big-shadow's full-sized avatar
💀
O.G. Status

Ray Winkelman big-shadow

💀
O.G. Status
View GitHub Profile
Firearms > Handguns > Over & Unders, 1
Firearms > Handguns > Revolvers, 1
Firearms > Handguns > Semi-Automatics, 1
Firearms > Handguns > Single Shots, 1
Firearms > Rifles > Bolt Actions, 1
Firearms > Rifles > Falling Blocks, 1
Firearms > Rifles > Lever Actions, 1
Firearms > Rifles > Martinis, 1
Firearms > Rifles > Moderatos, 1
Firearms > Rifles > Over & Unders, 1
@big-shadow
big-shadow / App.vue
Last active October 14, 2018 02:16
I Need Help Migrating To the Latest Vuetity
<template>
<v-app dark toolbar>
<template v-if="!$route.meta.public">
<v-navigation-drawer fixed clipped v-model="drawer" app>
<template v-for="item in menu">
<h3 class="ml-3 mt-3">{{item.title}}</h3>
<v-divider></v-divider>
<v-list>
<v-list-tile v-for="(link, i) in item.links" :key="i" @click="$router.push(link.href)">
<v-list-tile-action>
@big-shadow
big-shadow / axios-catch-error.js
Created November 2, 2017 15:01 — forked from fgilio/axios-catch-error.js
Catch request errors with Axios
axios.put(this.apiBaseEndpoint + '/' + id, input)
.then((response) => {
// Success
})
.catch((error) => {
// Error
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
// console.log(error.response.data);
@big-shadow
big-shadow / Get-VSSolutionReferences.ps1
Created February 16, 2016 20:16 — forked from jstangroome/Get-VSSolutionReferences.ps1
Get-VSSolutionReferences.ps1
#requires -version 2.0
[CmdletBinding()]
param (
[parameter(Mandatory=$true)]
[ValidateScript({ Test-Path -Path $_ -PathType Leaf })]
[string]
$Path
)
$ErrorActionPreference = 'Stop'