This interactive Neo4j graph tutorial covers a common credit card fraud detection scenario.
This file contains hidden or 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
| <body></body> | |
| <script src="http://gamingJS.com/Three.js"></script> | |
| <script src="http://gamingJS.com/ChromeFixes.js"></script> | |
| <script src="http://gamingJS.com/Tween.js"></script> | |
| <script> | |
| var scene = new THREE.Scene(); | |
| var width = window.innerWidth - 20; | |
| var height = window.innerHeight - 20; |
This file contains hidden or 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
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
This file contains hidden or 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 selector = 'img' // Replace this with the selector for the element you want to make transformable | |
| jQuery.getScript('//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js', function() { | |
| jQuery.getScript('//cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js', function() { | |
| (function() { | |
| var $, applyTransform, getTransform, makeTransformable; | |
| $ = jQuery; |
This file contains hidden or 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
| { | |
| "require": { | |
| "slim/slim": "2.*", | |
| "illuminate/database": "*", | |
| "dhorrigan/capsule": "*" | |
| } | |
| } |
This file contains hidden or 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
| //doHttpPost('localhost', 8000, '/TestPost', 'string' , 'TestTestTestTest', false); | |
| //doHttpPost('localhost', 8000, '/TestPost', 'file' , '/Users/chengwei/Downloads/grid1.png', true); | |
| function doHttpPost(_host, _port, _path, name, value, isFile, fileEncoding) { | |
| var http = require('http'), | |
| fs = require('fs'), | |
| path = require('path'), | |
| boundary = Math.random(), | |
| postData, postOptions, postRequest; |