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 express = require('express') | |
| , multer = require('multer') | |
| , app = express() | |
| , http = require('http') | |
| , server = http.createServer(app) | |
| , io = require('socket.io').listen(server); | |
| var done=false; | |
| server.listen(8095); |
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
| Error: Request aborted | |
| at IncomingMessage.onReqAborted (/home/naeluh/Web/node_modules/express/node_modules/connect/node_modules/multiparty/index.js:131:17) | |
| at IncomingMessage.EventEmitter.emit (events.js:92:17) | |
| at abortIncoming (http.js:1911:11) | |
| at Socket.serverSocketCloseListener (http.js:1923:5) | |
| at Socket.EventEmitter.emit (events.js:117:20) | |
| at TCP.close (net.js:465:12) |
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 express = require('express') | |
| , multer = require('multer') | |
| , app = express() | |
| , http = require('http') | |
| , server = http.createServer(app) | |
| , io = require('socket.io').listen(server); | |
| var done=false; | |
| server.listen(8095); |
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> | |
| <head> | |
| <link rel="stylesheet" type="text/css" href="css/convo.css"> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <div id="info"> |
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
| <?php | |
| require 'Twitter.php' | |
| $twtr = new Twitter; | |
| $twtr->tweet('Hello World!'); | |
| ?> |
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 'vendor/TwitterAPIExchange.php'; | |
| $settings = array( | |
| 'oauth_access_token' => "", | |
| 'oauth_access_token_secret' => "", | |
| 'consumer_key' => "", | |
| 'consumer_secret' => "" | |
| ); | |
| $url = "https://api.twitter.com/1.1/statuses/update.json"; |
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
| object(stdClass)#80 (22) { | |
| ["created_at"]=> | |
| string(30) "Tue Dec 09 22:25:55 +0000 2014" | |
| ["id"]=> | |
| int(542445060734722049) | |
| ["id_str"]=> | |
| string(18) "542445060734722049" | |
| ["text"]=> | |
| string(7) "testing" | |
| ["source"]=> |
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
| <?php | |
| /* | |
| * login_with_twitter.php | |
| * | |
| * @(#) $Id: login_with_twitter.php,v 1.8 2014/11/14 10:37:51 mlemos Exp $ | |
| * | |
| */ | |
| /* | |
| * Get the http.php file from http://www.phpclasses.org/httpclient |
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
| <?php | |
| /* | |
| * login_with_facebook.php | |
| * | |
| * @(#) $Id: login_with_facebook.php,v 1.3 2013/07/31 11:48:04 mlemos Exp $ | |
| * | |
| */ | |
| /* | |
| * Get the http.php file from http://www.phpclasses.org/httpclient |
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 match = false; | |
| $("#general_info_two").on("click", function () { | |
| $("#list").html(""); | |
| $("#list").fadeOut(1E3); | |
| $("#nameCity").fadeOut(1E3); | |
| $("#selectBox option[value='option1']").remove(); | |
| $("#psa").remove(); | |
| if ($("#zip").val().length < 5) { | |
| $('#notFound').html('<div id="psa" style="color:#DD5900;">Please Enter a 5 digit zipcode.</div>').show(); | |
| } |