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 http = require('http'); | |
var concurrentServerRequests = 0; | |
var totalServerRequests = 0; | |
var PORT_BASE = 1337; | |
function createServer(host, port) { | |
http.createServer(function (req, res) { | |
++concurrentServerRequests; | |
++totalServerRequests; |
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
function runTestCase2() { | |
createServer('127.0.0.1', 1337); | |
http.globalAgent.maxSockets = 10; | |
for(var i=0; i<100; ++i) { | |
http.request({ | |
host: '127.0.0.1', | |
port: 1337, | |
method: 'GET' |
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
function runTestCase3() { | |
createServer('127.0.0.1', PORT_BASE); | |
createServer('127.0.0.1', PORT_BASE + 1); | |
http.globalAgent.maxSockets = 10; | |
for(var i=0;i<100; ++i) { | |
http.request({ | |
host: '127.0.0.1', | |
port: PORT_BASE, |
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
<html> | |
<head> | |
<title> | |
File Upload Example | |
</title> | |
</head> | |
<body> | |
<form> | |
<input type="file" name="userPhoto" /> |
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
<html> | |
<head> | |
<title>Upload Example</title> | |
</head> | |
<body> | |
<form id="uploadForm" | |
enctype="multipart/form-data" | |
action="/api/photos" | |
method="post"> |
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
$(document).ready(function() { | |
status('Choose a file :)'); | |
// Check to see when a user has selected a file | |
var timerId; | |
timerId = setInterval(function() { | |
if($('#userPhotoInput').val() !== '') { | |
clearInterval(timerId); |
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
app.post('/api/photos', function(req, res) { | |
var serverPath = '/images/' + req.files.userPhoto.name; | |
require('fs').rename( | |
req.files.userPhoto.path, | |
'/Users/mark/code/examples/file-upload/upload-example-app/public' + serverPath, | |
function(error) { | |
if(error) { | |
res.send({ |
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
s$(this).ajaxSubmit({ | |
error: function(xhr) { | |
status('Error: ' + xhr.status); | |
}, | |
success: function(response) { | |
if(response.error) { | |
status('Opps, something bad happened'); |
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
NSString *path = [[NSBundle mainBundle] pathForResource:@"Assets.scnassets/vangoghroom/vg" ofType:@"obj"]; | |
NSURL *url = [NSURL fileURLWithPath:path]; | |
MDLAsset *asset = [[MDLAsset alloc] initWithURL:url]; | |
MDLObject *obj = [asset objectAtIndex:0]; | |
SCNNode *n = [SCNNode nodeWithMDLObject:obj]; | |
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
// | |
// CapturedImageSampler.swift | |
// ARKitTest | |
// | |
// Created by Joshua Sullivan on 9/22/17. | |
// Copyright © 2017 Joshua Sullivan. All rights reserved. | |
// | |
import UIKit | |
import ARKit |