// jQuery
$(document).ready(function() {
// code
})
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
#!/bin/sh | |
# Output file for HTML5 video | |
# requirements: ffmpeg .6+ | |
# usage: ./html5video.sh infile.mp4 640x360 | |
target_directory='converted' | |
file=`basename $1` | |
filename=${file%.*} | |
filepath=`dirname $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
ffmpeg -i hlah_3.flac -strict experimental -acodec vorbis -aq 100 hlah.ogg |
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
(module | |
(type $FUNCSIG$vj (func (param i64))) | |
(type $FUNCSIG$vii (func (param i32 i32))) | |
(type $FUNCSIG$ijjjii (func (param i64 i64 i64 i32 i32) (result i32))) | |
(type $FUNCSIG$ijjii (func (param i64 i64 i32 i32) (result i32))) | |
(type $FUNCSIG$ijji (func (param i64 i64 i32) (result i32))) | |
(type $FUNCSIG$iii (func (param i32 i32) (result i32))) | |
(import "env" "assert" (func $assert (param i32 i32))) | |
(import "env" "load_i64" (func $load_i64 (param i64 i64 i64 i32 i32) (result i32))) | |
(import "env" "read_message" (func $read_message (param i32 i32) (result i32))) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<h1>Hello World!</h1> |
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
document.body.addEventListener('click', function(e) { | |
var el = e.target; | |
if (el.matches('.traffic.widget .tabs__tab')) { | |
console.log('match'); | |
} | |
}); |
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 _user$project$Native_Thing = function() { | |
function toHtml(model, factList) { | |
function render(e) { | |
console.log('render', e); | |
var domNode = document.createElement('div'); | |
return domNode; | |
} |
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 _bitrage_io$bitrage_io$Native_Page_Chart = function() { | |
var d3 = require('d3'); | |
function toHtml(model, factList) { | |
return _elm_lang$virtual_dom$Native_VirtualDom.custom( | |
factList, | |
model, | |
impl(model) | |
); |
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": [ | |
"postcss-url", | |
"cssnano" | |
], | |
"cssnano": { | |
"autoprefixer": false | |
}, | |
"postcss-url": { | |
"url": "inline" |
NewerOlder