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
import {f} from "foo" | |
export var x = f() |
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
type Check struct { | |
StyleId string `json:"styleId" binding:"required"` | |
ProductCode string `json:"productCode" binding:"required"` | |
Overlay bool `json:"overlay"` | |
Font string `json:"font"` | |
OwnerText []string `json:"ownerText" binding:"required"` | |
BankText []string `json:"bankText" binding:"required"` | |
NumberingRouting string `json:"numberingRouting" binding:"required"` | |
NumberingAccount string `json:"numberingAccount" binding:"required"` |
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
{ | |
"name": "simple_hapi", | |
"version": "1.0.0", | |
"description": "Use Hapi as a general purpose localhost web server", | |
"main": "server.js", | |
"author": "Ted Patrick <[email protected]> (http://tedpatrick.com/)", | |
"license": "BSD", | |
"dependencies": { | |
"hapi": "9.3.1" | |
} |
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
var gulp = require( 'gulp' ); | |
var ts = require( 'gulp-tsc' ); | |
var connect = require( 'gulp-connect' ); | |
var shell = require( 'gulp-shell' ); | |
var uglify = require( 'gulp-uglify' ); | |
var concat = require( 'gulp-concat' ); | |
var del = require( 'del' ); | |
gulp.task( 'clean' , function( cb ){ | |
del([ './dist' ], cb ); |
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
Vue.filter( 'timecode' , function( value ){ | |
var seconds = Math.floor( value % 60 ).toString(); | |
var minutes = Math.floor( value / 60 ).toString(); | |
if( seconds.length === 1 ){ | |
seconds = '0' + seconds; | |
} | |
return minutes + ':' + seconds; | |
}); |
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
<g transform="translate(6858 23241) scale(.817)"> | |
<image width="980" height="458" preserveAspectRatio="none" transform="matrix(334.417 0 0 334.417 6823.5 18138.387)" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="../images/3.png"/> | |
</g> |
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
avconv -i 003.wav -c libfaac -b 128k 003.aac | |
avconv -i 003.wav -c libfaac -b 128k 003.m4a | |
avconv -i 003.wav -b 128k 003.mp3 | |
oggenc 003.wav | |
opusenc 003.wav 003.opus |
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
brew install ffmpeg --with-faac --with-fdk-aac --with-libvorbis --with-opus --with-libquvi |
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
config?: { | |
handler: any; | |
bind: any; | |
app: any; | |
plugins: { | |
[name: string]: any; | |
}; | |
pre: Array<() => void>; | |
validate: { | |
headers: any; |
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
var text = new txt.Text( { | |
text:'The fox jumped over the log.', | |
font:'raleway', | |
align:txt.Align.TOP_RIGHT, | |
tracking:-4, | |
character:{ | |
click:function( event ){ | |
console.log( 'click'); | |
} | |
}, |