View gist:d3895bd4baf3c5db1ab3c6063e924f7c
This file contains 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
I am attesting that this GitHub handle idflood is linked to the Tezos account tz1hKZ3scdxqd2UC6nFDyyyNQW659YyeYrQQ for tzprofiles | |
sig:edsigtsdu3QAf6FXfmnyhttszABpaQBHWXaFEYZf4DumCfVsW8zreXeTNck1nfwhPxP5W3RaB9hihtAebsv8UE6JAD63vd58MT6 |
View gulpfile-git-version.js
This file contains 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
'use strict'; | |
var gulp = require('gulp'); | |
var spawn = require('child_process').spawn; | |
var GIT_VERSION = "na"; | |
gulp.task('version', function(cb){ | |
//git --git-dir=.git log --pretty='%ct %h' -1 | |
//git --git-dir=.git log --pretty='%h' -1 |
View SassMeister-input-HTML.html
This file contains 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
<div class="container"> | |
<div class="col1"></div> | |
</div> |
View SassMeister-input.scss
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin hover() { | |
@if ($current_block != false) { | |
#{$current_block}:hover & { | |
@content; | |
} | |
} |
View EdgeWrapper.js
This file contains 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
(function(global) { | |
function EdgeWrapper (compId) { | |
this.compId = compId; | |
this.composition = AdobeEdge.getComposition(compId); | |
this.stage = this.composition.getStage(); | |
}; | |
EdgeWrapper.prototype.play = function() { | |
this.stage.play(); | |
return this; |
View ffmpeg.osx.install
This file contains 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
#install homebrew | |
brew install --use-gcc ffmpeg --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libxvid | |
sudo mv /opt/local/bin/ffmpeg /opt/local/bin/ffmpeg_old | |
sudo ln -s /usr/local/Cellar/ffmpeg/0.6/bin/ffmpeg /opt/local/bin/ffmpeg |