Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pooot
pooot / uppy-vue-example
Created January 2, 2018 15:54
Very basic vuejs usage of uppy
<template>
<div :id="uppyId">
<div class="ThumbnailContainer" v-if="collection === 'thumbnail'">
<button id="open-thumbnail-modal" class="button">Select file</button>
</div>
<div class="DashboardContainer" v-else></div>
</div>
</template>
@pooot
pooot / vue-slick
Last active February 14, 2018 15:31
// show.blade.php
<news-gallery :gallery="{{ $post->getMedia('gallery')"></news-gallery>
// Vue component
<template>
<div class="slick-slider">
<div class="img"
v-for="image in images"
:style="'background-image:url(' + image.url + ')'"></div>
@pooot
pooot / .env
Created February 22, 2018 15:58 — forked from thebrubaker/.env
Laravel Passport: SPA Frontend Authentication
# Added to the bottom of my file
PROXY_OAUTH_CLIENT_ID=2
PROXY_OAUTH_CLIENT_SECRET=SECRET-GENERATED-KEY-HERE
PROXY_OAUTH_GRANT_TYPE=password
@pooot
pooot / oauth.js
Created February 22, 2018 17:29 — forked from srph/oauth.js
axios: interceptor which includes your oauth token in every request as an Authorization header
import axios from 'axios';
// You can use any cookie library or whatever
// library to access your client storage.
import cookie from 'cookie-machine';
axios.interceptors.request.use(function(config) {
const token = cookie.get(__TOKEN_KEY__);
if ( token != null ) {
config.headers.Authorization = `Bearer ${token}`;
<template>
<form @submit.prevent="onSubmit">
<b-field label="Email"
:message="formErrors.first('email')"
:type="formErrors.has('email') ? 'is-warning' : ''">
<b-input type="email"
name="email"
@input="clearErrors"
v-model="formData.email"
v-validate="{required: true, email: true}">
@pooot
pooot / Card.vue
Created March 11, 2018 12:20
Undefined property
computed: {
...mapState({
isLoggedIn: 'auth/isLoggedIn',
activities: 'auth/activities'
}),
booked() {
return this.isLoggedIn ? this.activities.includes(this.activity.id) : false
},
}
@pooot
pooot / facebook-contact-info-summary.rb
Created March 23, 2018 15:36 — forked from dylanmckay/facebook-contact-info-summary.rb
A Ruby script for collecting phone record statistics from a Facebook user data dump
#! /usr/bin/env ruby
# This script can be used to parse and dump the information from
# the 'html/contact_info.htm' file in a Facebook user data ZIP download.
#
# It prints all cell phone call + SMS message + MMS records, plus a summary of each.
#
# It also dumps all of the records into CSV files inside a 'CSV' folder, that is created
# in whatever the working directory of the program is when executed.
#