Skip to content

Instantly share code, notes, and snippets.

View thefln's full-sized avatar

Francois Lanthier Nadeau thefln

View GitHub Profile
@thefln
thefln / product1-details.md
Last active November 27, 2017 20:14
product1-details.md

CAPTAIN AMERICA — SHIELD
captain_America_Shield.png
99.99

Life size, exact copy of Captain America’s infamous shield. Made of real steel. This item will make you the most patriotic cosplayer in town.

@thefln
thefln / product2-details.md
Created November 27, 2017 20:16
product2-details.md

WONDER WOMAN - HEADBAND
WW-Headband.jpg
49.99

We have stuff for the ladies too! The Wonder Woman headband from the 2017 version. Shiny, comfy, and BAD-ASS.

@thefln
thefln / product3-details.md
Created November 27, 2017 20:16
product3-details.md

DEADPOOL - FULL KIT
deadpool-full-kit.jpg
249.99

100% leather, all items included. For real cosplayers, this kit will surely make you the king of Comic-con or any other nerd-fest out there.

@thefln
thefln / vue-nuxt-starter.sh
Created November 27, 2017 20:19
vue-nuxt-starter.sh
vue init nuxt/starter <project-name>
cd <project-name>
npm install
@thefln
thefln / start-dev-server.sh
Created November 27, 2017 20:20
start-dev-server.sh
npm run dev
@thefln
thefln / nuxt-config.js
Created November 27, 2017 20:23
nuxt-config.js
env: {
cockpit: {
apiUrl: 'https://<cockpit-url>/index.php/rest/api',
apiToken: '<api-token>',
baseUrl: 'https://<cockpit-url>'
}
}
@thefln
thefln / nuxt-layout.vue
Created November 27, 2017 20:31
nuxt-layout.vue
<template>
<div>
<div class="container">
<nav class="navbar">
<div class="navbar-menu">
<div class="navbar-start">
<a href="/" class="navbar-item">Products</a>
</div>
<div class="navbar-end">
<a href="#" class="navbar-item snipcart-checkout snipcart-summary">
@thefln
thefln / products.vue
Created November 27, 2017 20:34
products.vue
<template>
<div class="columns is-mobile is-multiline is-centered">
<div class="column is-one-third-desktop" v-for="p in products">
<small-product :product="p" />
</div>
</div>
</template>
@thefln
thefln / add-bulma.js
Created November 27, 2017 20:36
add-bulma.js
{ rel: 'stylesheet', href:'https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.1/css/bulma.min.css'}
@thefln
thefln / add-snipcart-styles.js
Created November 27, 2017 20:37
add-snipcart-styles.js
{ rel: 'stylesheet', href:'https://cdn.snipcart.com/themes/2.0/base/snipcart.min.css'}