This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.rot90 { | |
-webkit-transform: translateY(-100%) rotate(90deg); | |
-moz-transform: translateY(-100%) rotate(90deg); | |
-ms-transform: translateY(-100%) rotate(90deg); | |
transform: translateY(-100%) rotate(90deg); | |
-webkit-transform-origin: left bottom; | |
-moz-transform-origin: left bottom; | |
-ms-transform-origin: left bottom; | |
transform-origin: left bottom; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var path = require('path'); | |
var sweet = require('sweet.js'); | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
sweetjs: { | |
options: { | |
modules: ['es6-macros'], | |
sourceMap: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant@packer-virtualbox:/vagrant$ sudo git clone https://github.com/flynn/flynn-dev.git | |
Cloning into 'flynn-dev'... | |
remote: Counting objects: 200, done. | |
remote: Compressing objects: 100% (97/97), done. | |
remote: Total 200 (delta 113), reused 188 (delta 102) | |
Receiving objects: 100% (200/200), 29.54 KiB, done. | |
Resolving deltas: 100% (113/113), done. | |
vagrant@packer-virtualbox:/vagrant$ ls | |
flynn-dev | |
vagrant@packer-virtualbox:/vagrant$ cd flynn-dev/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>my.friend.is.a.seal</groupId> | |
<artifactId>my-own-storm</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>my-own-storm</name> |
NewerOlder