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
$.each(State.stores, function(e,i) { State.stores[e] = 1000000000; }) | |
OR | |
var high = 100000 | |
var checkAll = setInterval(function() { | |
var bn = [ | |
'attack', | |
'attack_bolas', | |
'attack_bone-spear', |
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/bash | |
case $# in | |
0) | |
echo "Usage: $0 {start|stop}" | |
exit 1 | |
;; | |
1) | |
case $1 in | |
start) |
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
console.clear(); | |
var img = new Image(); | |
img.src = 'img/img.png'; | |
img.onload = function () { | |
var canvas = document.createElement('canvas'), context = canvas.getContext('2d'); | |
canvas.width = img.width; | |
canvas.height = img.height; | |
context.drawImage(img, 0, 0, img.width, img.height); | |
console.log(canvas.toDataURL('image/png')); |
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
<!DOCTYPE html> | |
<head> | |
<meta charset=UTF-8> | |
<title>Dialog demo</title> | |
<style> | |
.dialog { | |
border: none; | |
border-radius: 3px; | |
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); | |
} |
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
<!DOCTYPE html> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<link rel="stylesheet" href="css/style.css"> | |
<style> | |
html { height: 100%; } | |
body { | |
font-family: sans-serif; | |
font-weight: 300; |
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
// ==UserScript== | |
// @name Download YouTube Videos as MP4 | |
// @description Adds a button that lets you download YouTube videos. | |
// @homepageURL https://github.com/gantt/downloadyoutube | |
// @author Gantt | |
// @version 1.8.8 | |
// @date 2016-09-02 | |
// @namespace http://googlesystem.blogspot.com | |
// @include http://www.youtube.com/* | |
// @include https://www.youtube.com/* |
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
<form class="form"> | |
<input type="text" placeholder="enter text" name="name" value=""> | |
<input type="checkbox" name="check"> | |
<select name="select"><option value="select1">one</option><option value="select2">two</option></select> | |
<input name="radio" type="radio" value="radio1"> | |
<input name="radio" type="radio" value="radio2"> | |
</form> | |
<button class="start">Observe</button> | |
<button class="stop">Stop observing</button> |
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
[mergetool] | |
prompt = false | |
keepBackup = false | |
keepTemporaries = false | |
[merge] | |
tool = winmerge | |
[mergetool "winmerge"] | |
name = WinMerge |
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
if (!Function.prototype.bind) { | |
Function.prototype.bind = function (context) { | |
if (typeof this !== 'function') throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable'); | |
var args = Array.prototype.slice.call(arguments, 1), | |
fToBind = this, | |
fn = function () {}, | |
fBound = function () { | |
return fToBind.apply(this instanceof fn && context ? this : context, | |
args.concat(Array.prototype.slice.call(arguments))); | |
}; |
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 s = 1, e = s + 4; | |
var data = d3.range(s, e); | |
var col = d3.scale.category10(); | |
var scal = d3.scale.linear() | |
.domain([data[0], data[data.length-1]]) | |
.range([0, 1]); | |
var g = d3.select('svg'); | |
var groups = g.selectAll('g').data(data).enter().append('g'); |
NewerOlder