Skip to content

Instantly share code, notes, and snippets.

View willmitchell's full-sized avatar

Will Mitchell willmitchell

  • Developer
  • Virginia, USA
View GitHub Profile
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<polymer-element name="my-element">
@willmitchell
willmitchell / designer.html
Last active August 29, 2015 14:02
designer
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="my-element">
<template>
<style>
#section {
left: 760px;
top: 310px;
position: absolute;
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.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="../speech-mic/speech-mic.html">
<polymer-element name="my-element">
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
@willmitchell
willmitchell / Application.java
Created September 20, 2014 21:14
What the JHipster Application looks like.
@ComponentScan
@EnableAutoConfiguration(exclude = {MetricFilterAutoConfiguration.class, MetricRepositoryAutoConfiguration.class})
public class Application {
private final Logger log = LoggerFactory.getLogger(Application.class);
@Inject
private Environment env;
/**
@willmitchell
willmitchell / bower.json
Created November 10, 2014 20:34
arbitrary jhipster bower config
{
"name": "pr",
"version": "0.0.0",
"dependencies": {
"atmosphere": "2.2.4",
"jquery-atmosphere": "2.2.4",
"bootstrap-sass": "twbs/bootstrap-sass#~3.1.1",
"modernizr": "2.7.1",
"jquery": "2.1.1",
"angular": "1.2.26",
@willmitchell
willmitchell / gen_view_scaf.groovy
Created November 13, 2014 22:27
This is a simple code generator for Meteor. It generates HTML, LESS, and CSS template files when given a name.
#!/usr/bin/env groovy
// Written by Will Mitchell.
// In the public domain. Use as you wish, at your own risk.
// This is a simple code generator for Meteor. It generates HTML, LESS, and CSS template files when given a name.
String singular
String plural
switch (args.size()) {
case 1:
@willmitchell
willmitchell / designer.html
Created December 23, 2014 22:21
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<polymer-element name="my-element">
@willmitchell
willmitchell / TestJooq.groovy
Created March 8, 2015 20:59
Demonstration of JOOQ CRUD and query ops.
import org.jooq.Configuration
import org.jooq.DSLContext
import org.jooq.Row1;
import org.jooq.SQLDialect
import org.jooq.TransactionalRunnable;
import org.jooq.impl.DSL
import org.jooq.impl.DefaultConfiguration
import org.jooq.impl.DefaultDSLContext
import org.testng.annotations.AfterTest
import org.testng.annotations.BeforeTest;