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
| @import url(https://fonts.googleapis.com/css?family=Roboto:300); | |
| .login-page { | |
| width: 360px; | |
| padding: 8% 0 0; | |
| margin: auto; | |
| } | |
| .form { | |
| position: relative; | |
| z-index: 1; |
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
| package threadTest; | |
| public class basicThread { | |
| public static void main(String args[]){ | |
| Thread t = new Thread(new Runnable() { | |
| int i = 0; | |
| @Override | |
| public void run() { | |
| // TODO Auto-generated method stub | |
| while(true){ |
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 fs = require('fs'); | |
| var path = require('path'); | |
| var hostname = 'localhost'; | |
| var port = 3000; | |
| var server = http.createServer(function (req, res) { | |
| console.log('Request for ' + req.url + ' by method ' + req.method); | |
| if (req.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
| var express = require('express'); | |
| var morgan = require('morgan'); | |
| var hostname = 'localhost'; | |
| var port = 3000; | |
| var app = express(); | |
| app.use(morgan('dev')); |
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'); | |
| var morgan = require('morgan'); | |
| var bodyParser = require('body-parser'); | |
| var hostname = 'localhost'; | |
| var port = 3000; | |
| var app = express(); | |
| app.use(morgan('dev')); |
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'); | |
| var morgan = require('morgan'); | |
| var bodyParser = require('body-parser'); | |
| var hostname = 'localhost'; | |
| var port = 3000; | |
| var app = express(); | |
| app.use(morgan('dev')); |
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'); | |
| var bodyParser = require('body-parser'); | |
| var dishRouter = express.Router(); | |
| dishRouter.use(bodyParser.json()); | |
| dishRouter.route('/') | |
| .all(function (req, res, next) { | |
| res.writeHead(200, {'Content-Type': 'text/plain'}); |
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 assert = require('assert'); | |
| exports.insertDocument = function(db, document, collection, callback) { | |
| // Get the documents collection | |
| var coll = db.collection(collection); | |
| // Insert some documents | |
| coll.insert(document, function(err, result) { | |
| assert.equal(err, null); | |
| console.log("Inserted " + result.result.n + " documents into the document collection " | |
| + collection); |
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'); | |
| var bodyParser = require('body-parser'); | |
| var mongoose = require('mongoose'); | |
| var Dishes = require('../models/dishes'); | |
| var dishRouter = express.Router(); | |
| dishRouter.use(bodyParser.json()); | |
| dishRouter.route('/') |
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'); | |
| var morgan = require('morgan'); | |
| var hostname = 'localhost'; | |
| var port = 3000; | |
| var app = express(); | |
| app.use(morgan('dev')); |
OlderNewer