e|---------------------------------------|---------------------------------------|--------------------------------------|
B|---------------------------------------|---------------------------------------|--------------------------------------|
G|---------------------------------------|---------------------------------------|--------------------------------------|
D|---5-h-7---7---5---7---7---5---7---7---|---5---7---7---5---7---7---5---7---7---|---5---7---7---7---7------------------|
A|---0-----------0---0---0---0---0---0---|---0---0---0---0---0---0---0---0---0---|---0---0---0---0---0------------------|
E|---------------------------------------|---------------------------------------|--------------------------------------|
e|---------------------------------------|
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
This build is leveraging the synergy with active and passive skill in the skill tree. Nothing really from the paragon board, but as you build out your paragon board you will be able to shift points you have allocated to passive skills to increase your core skills points allocated. | |
The main sequence for the big entrance attack is listed below to give a rough idea of how I maximize the synergy between the different skills in the skill tree. | |
1. Start Shadow Clone. Ultimate skill. | |
2. Enter concealment. Subterfuge skill. | |
3. Laydown 8 poison traps. Subterfuge sill (poison traps). | |
4. Apply shadow imbument. Imbuement skills. | |
5. Attack with core skill, which is either rapid fire or barrage. Basic skill is puncture with three blades to increase chances of making enemies vulnerable when fighting mobs. |
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
// This generates a matrix my multiplying matrix a and b and it generates | |
// another matrix that you use in your code with variables. This is a helpful | |
// way to auto generate matrices for stuff like rotation on X, Y, and Z. | |
// | |
// generateRotationMatrix([], [ | |
// 1, 0, 0, 0, | |
// 0, "cx", "sx", 0, | |
// 0, "-sx", "cx", 0, | |
// 0, 0, 0, 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
function findInArray(items, value, predicate) { | |
predicate = predicate || contains; | |
var min = 0; | |
var max = items.length - 1; | |
var mid = Math.floor(items.length / 2); | |
var foundIndex = false; | |
while (foundIndex === false) { | |
if (predicate(items, value, min, mid)) { |
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
const deferred = new Promise(function(resolve) { | |
if (document.readyState === 'complete' || document.readyState === 'interactive') { | |
resolve(); | |
} | |
else { | |
document.addEventListener('DOMContentLoaded', (/*evt*/) => resolve()); | |
} | |
}); | |
export default (fn) => deferred.then(fn); |
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": "test", | |
"version": "0.0.0", | |
"main": "index.js", | |
"scripts": { | |
"start": "run-p dev:* serve", | |
"build": "run-p build:*", | |
"serve": "3dub ./dist --watch --log false", | |
"build:js": "pakit src/index.js --dest dist/index.js", | |
"build:html": "cpx 'src/**/*.html' dist", |
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
function livereload(options) { | |
var lr = require("tiny-lr"); | |
var server = lr(); | |
var port = options || 35729; | |
server.listen(port, function(err) { | |
console.log("livereload server started"); | |
}); | |
function bundleVisitor(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
const express = require('express'); | |
const graphqlHTTP = require('express-graphql'); | |
const { buildSchema } = require('graphql'); | |
const Bitbundler = require('bit-bundler'); | |
// Construct a schema, using GraphQL schema language | |
var schema = buildSchema(` | |
input Module { | |
name: String! | |
version: String |
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
[22:00:13] Using gulpfile ~//gulpfile.js | |
[22:00:13] Starting 'selenium'... | |
[22:00:15] Finished 'selenium' after 1.55 s | |
[22:00:15] Starting 'google'... | |
[1;33m=======================================================================================[0m | |
Selenium 2.0 / webdriver protocol bindings implementation with helper commands in nodejs. | |
For a complete list of commands, visit [1;32mhttp://webdriver.io/api.html[0m. | |
[1;33m=======================================================================================[0m |
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
[21:56:56] Using gulpfile ~//gulpfile.js | |
[21:56:56] Starting 'selenium'... | |
[21:56:58] Finished 'selenium' after 1.37 s | |
[21:56:58] Starting 'google'... | |
[1;33m=======================================================================================[0m | |
Selenium 2.0 / webdriver protocol bindings implementation with helper commands in nodejs. | |
For a complete list of commands, visit [1;32mhttp://webdriver.io/api.html[0m. | |
[1;33m=======================================================================================[0m |
NewerOlder