Valid template expressions:
- expressions can reference any property on the passed in context, including nested properties and indexed access to array properties.
{{ name }}
{{ obj.name }}
''' | |
Input MD5 : BB4E83D7A77AADD7F62728314EF09461 | |
File Name : C:\Program Files (x86)\Powersaves For AMIIBO\Powersaves For AMIIBO.exe | |
0x108fd0 : schannel_recv -> log buffer on end | |
0x1090d0 : schannel_recv end | |
0x108d10 : schannel_send -> log buffer on start | |
0xce61 : deals with https "Token" | |
0xceab : deals with https "Vuid" |
<!DOCTYPE html> | |
<!-- | |
WebGL Taipei meetup #02 | |
author: daoshengmu, http://dsmu.me | |
date: 06/06/2015 | |
--> | |
<html lang="en"> | |
<head> |
@timestampable | |
class Dog { | |
public name: string = 'Paul'; | |
} | |
function timestampable(func) { | |
return <any>(function() { | |
var genericConstructor = () => {}; | |
genericConstructor.prototype = func.prototype; | |
var instance = new genericConstructor(); |
//install kss and fs-extra: npm install kss fs-extra | |
var kss = require('kss'), | |
options = { | |
markdown: false | |
}; | |
var fs = require('fs-extra'); | |
var file = './docs/kss.json'; |
function unhash(hash) { | |
var parts = []; | |
var letters = 'acdegilmnoprstuw'; | |
while (hash !== 7) { | |
var index = hash % 37; | |
hash = (hash - index) / 37; | |
parts.unshift(letters[index]); | |
} | |
return parts.join(''); | |
} |
// http://michalbe.blogspot.com.br/2013/03/javascript-less-known-parts-bitwise.html | |
// http://jsperf.com/bitwise-vs-math-object | |
// http://united-coders.com/christian-harms/results-for-game-for-forfeits-and-the-winner-is/ | |
// https://mudcu.be/journal/2011/11/bitwise-gems-and-other-optimizations/ | |
// https://dreaminginjavascript.wordpress.com/2009/02/09/bitwise-byte-foolish/ | |
// http://jsperf.com/math-min-max-vs-ternary-vs-if/24 | |
"use strict"; | |
var PI = Math.PI; |
To implement API authentication in KeystoneJS, you need the following:
For key based authentication
For session based authentication
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element
or the /deep/
path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {