Skip to content

Instantly share code, notes, and snippets.

@thomaswaern
thomaswaern / remove_from_history
Created June 28, 2015 18:48
Removes path from all earlier commits
git filter-branch --force --index-filter \
'git rm -r --cached --ignore-unmatch [path to remove]' \
--prune-empty --tag-name-filter cat -- --all
@thomaswaern
thomaswaern / _sassy_flexbox.scss
Last active August 29, 2015 14:22
Sassy Flexbox Mixins
@mixin flexbox() {
display:flex;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@mixin flex($values) {
@thomaswaern
thomaswaern / designer.html
Last active August 29, 2015 14:06
designer
<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-header-panel/core-header-panel.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {