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
CloseFile | |
CreateFile | |
CreateFileMapping | |
DeviceIoControl | |
FileSystemControl | |
FlushBuffersFile | |
Load Image | |
LockFile | |
NotifyChangeDirectory | |
Process Create |
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
// source: https://github.com/bgrins/devtools-snippets/blob/master/snippets/console-save/console-save.js | |
(function(console){ | |
console.save = function(data, filename){ | |
if(!data) { | |
console.error('Console.save: No data') | |
return; | |
} |
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
CancelRemoveDevice | |
CancelStopDevice | |
CloseFile | |
CreateFile | |
CreateFileMapping | |
CreateMailSlot | |
CreatePipe | |
Debug Output Profiling | |
DeviceChange | |
DeviceIoControl |
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
input: a stack | |
output: sum of all y0, y1, including data ({}) | |
for (let i = 0; i < stacks[0].length; i++){ | |
let point = []; | |
point[0] = stacks.reduce( | |
(accumulator, currentValue) => accumulator + currentValue[i][0],0); | |
point[1] = stacks.reduce( | |
(accumulator, currentValue) => accumulator + currentValue[i][1],0); | |
point.data = stacks[0][i].data; |
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
500 DAYS OF SUMMER -- breakdown of the movie timeline | |
by David Potsiadlo (@davidpots) | |
------------------------------------------------------------------------ | |
============================================================================================================ | |
THE ORDER SEEN IN THE MOVIE | |
============================================================================================================ | |
488 0:00:51 on a bench, she has the ring | |
1 0:01:10 tom his his board meeting. jan 8th. when he first sees summer in his office. |
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
// helper functions | |
// cnf formula exactly one of the variables in the chosen list to be true | |
function ext_one(list) { | |
let temp = "" | |
temp=temp+atl_one(list) | |
temp=temp+atm_one(list) | |
return temp | |
} |
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 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
license: mit |
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> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
.stacked-chart-container { | |
position: relative; | |
} |
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
license: gpl-3.0 |
OlderNewer