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 net = require ('net'); | |
| var fs = require ('fs'); | |
| var client = net.connect(3000, '127.0.0.1'); | |
| var log = fs.createWriteStream('out.log'); | |
| log.on('error', function(err) { | |
| console.log(err); | |
| }) |
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
| // Check for the various File API support. | |
| if (window.File && window.FileReader && window.FileList && window.Blob) { | |
| // Great success! All the File APIs are supported. | |
| } else { | |
| alert('The File APIs are not fully supported in this browser.'); | |
| } |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>webview ad for testing</title> | |
| </head> | |
| <body> | |
| <div id="info">info</div> | |
| <div id="download">download</div> |
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('longjohn') | |
| var prettyjson = require('prettyjson') | |
| function formatJson(object) { | |
| // adds 4 spaces in front of each line | |
| var json = prettyjson.render(object) | |
| json = json.split('\n').join('\n ') | |
| return ' ' + json | |
| } | |
| function playNiceError(error) { | |
| // remove longjohn properties that break prettyjson |
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 chart = highchart(this.el, opts).highcharts(); | |
| var svg = chart.getSVG(); | |
| request | |
| .post('/image') | |
| .send({ | |
| xml: svg | |
| }) | |
| .set('Accept', 'application/json') | |
| .end(function(err, res) { | |
| if(err) throw err; |
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
| /* | |
| * service for simple validate | |
| */ | |
| var express = require ('express'); | |
| var app = module.exports = express(); | |
| var Canvas = require('canvas'); | |
| var moment = require('moment'); | |
| function vertify_img(req, res) { |
NewerOlder