A Pen by Ujlaky Tibor on CodePen.
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
.encoding = "windows-1250" | |
config.version = "8" | |
virtualHW.version = "10" | |
numvcpus = "2" | |
scsi0.present = "TRUE" | |
scsi0.virtualDev = "lsilogic" | |
sata0.present = "TRUE" | |
memsize = "5044" | |
sata0:0.present = "TRUE" | |
sata0:0.fileName = "OS X 10.9.vmdk" |
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
;(function() { | |
'use strict'; | |
if (!Object.prototype.watch) { | |
Object.defineProperty(Object.prototype, 'watch', { | |
enumerable: false, | |
configurable: true, | |
writable: false, | |
value: function (prop, handler) { | |
var oldval = this[prop]; |
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
<div id="content" class="wrapper"> | |
<div id="page-1" class="slider-page slider-page-1"> | |
</div> | |
<div id="page-2" class="slider-page slider-page-2"> | |
</div> | |
<div id="page-3" class="slider-page slider-page-3"> | |
</div> | |
</div> |
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 Promise = require('bluebird'); | |
var testRecursive = function(count) { | |
return new Promise(function(resolve, reject) { | |
if ( count > 0 ) { | |
console.log('asd'); | |
return testRecursive(count-1).then(function(c) { | |
resolve(c); | |
}); | |
} else { |
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 Promise = require('bluebird'); | |
var testRecursive = function(count) { | |
return new Promise(function(resolve, reject) { | |
if ( count > 0 ) { | |
return testRecursive(count-1) | |
.then(function(numbers) { | |
numbers.push(count); | |
resolve(numbers); | |
}); |
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
Host * | |
ControlPersist 4h | |
ControlMaster auto | |
ControlPath /tmp/ssh_mux_%h_%p_%r |
https://github.com/tyok/ack.vim
git://github.com/tacahiroy/ctrlp-funky.git
https://github.com/kien/ctrlp.vim.git
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
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | |
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | |
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
# POSSIBILITY OF SUCH DAMAGE. | |
# | |
import fontforge | |
import os | |
import re |
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
#!/bin/sh | |
# Convert an OTF font into TTF an EOT formats. | |
otfFont="$1.otf" | |
ttfFont="$1.ttf" | |
fontforge -c ' | |
import fontforge | |
font = fontforge.open("'$ttfFont'") | |
font.generate("'$otfFont'") |