Skip to content

Instantly share code, notes, and snippets.

View kenrogers's full-sized avatar

kenny kenrogers

View GitHub Profile
@kenrogers
kenrogers / designer.html
Last active August 29, 2015 14:14
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<polymer-element name="my-element">
function test() {
this is a test;
}
@kenrogers
kenrogers / default.html
Created May 11, 2017 01:02
The modified default template file of our Foundation 6 starter site
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Econothought</title>
<meta name="description" content="Learn real economics">
<link rel="stylesheet" href="{{root}}assets/css/app.css">
</head>
<div class="row">
<div class="small-12 columns">
<h1>Learn real economics</h1>
<h2>A comprehensive guide to learning everything you need to know about how economics really works.</h2>
<p>Economics affects pretty much every aspect in our lives. Having a sound knowledge of economics is a key factor in being able to intelligently defend your positions on important issues like education, healthcare, banking, business, and politics in general.</p>
<p>Too many people advocate for harmful policies because they aren't educated in real economics principles. But not everyone has the time or desire to go get a degree in ecnomics. This guide will put you on the right track to becoming more economically informed than 99% of the population.</p>
<p>The setup is simple. This site is divided into three sections. I recommend going through all of the resources in the Beginner, Intermediate, and Advanced in order. After you've gone through these, you can check out the <a href="resources.html">resources</a>

Keybase proof

I hereby claim:

  • I am kenrogers on github.
  • I am kenrogers (https://keybase.io/kenrogers) on keybase.
  • I have a public key ASB3LQno8KDMfXNM1DfoDnExZ5y5l6B8gzO940wp7lrIsAo

To claim this, I am signing this object:

@kenrogers
kenrogers / default.vue
Last active July 26, 2018 21:46
default layout file
<template>
<div>
<nuxt/>
</div>
</template>
<style>
</style>
@kenrogers
kenrogers / index.vue
Last active July 28, 2018 17:33
Index file to prototype our app
<template>
<div>
<section class="hero is-primary is-medium is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">The Budget</h1>
<h2 class="subtitle">Budgeting for Simple People</h2>
</div>
</div>
</section>
<template>
<div class="container">
<b-table :data="data" :columns="columns"></b-table>
</div>
</template>
<script>
export default {
data() {
return {
<template>
<div class="home container flex flex-col items-center w-1/2">
<nav class="flex">
<nuxt-link to="/"><b-icon icon="chevron-left" size="is-small"></b-icon> Go to Your Transactions</nuxt-link>
</nav>
<h1>Budget</h1>
</div>
</template>
<template>
<div>
<section class="hero is-primary is-medium is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">The Budget</h1>
<h2 class="subtitle">Budgeting for Simple People</h2>
</div>
</div>
</section>