- Show the examiners, and make them understand, clearly what you have achieved after about 400 hours of work over two semesters.
- Demonstrate to the examiners that you know very well what you have done.
- Keep the examiners happy.
Slides
| var fs = require("fs") | |
| var ssl_options = { | |
| key: fs.readFileSync('privatekey.pem'), | |
| cert: fs.readFileSync('certificate.pem') | |
| }; | |
| var port = process.env.PORT || 3000; | |
| var express = require('express'); | |
| var ejs = require('ejs'); | |
| var passport = require('passport') |
| package main | |
| import "fmt" | |
| // Very naive answer. | |
| // fibonacci is a function that returns | |
| // a function that returns an int. | |
| func fibonacci() func() int { | |
| n := 0 | |
| a := 0 |
| -- full_adder.vhdl | |
| -- desc: 1bit full adder | |
| entity FULL_ADDER is | |
| port(A, B, CIN: in bit; | |
| SUM, COUT: out bit); | |
| end FULL_ADDER; | |
| architecture STRUCT of FULL_ADDER is | |
| component HALF_ADDER |
| # Enter your code here. Read input from STDIN. Print output to STDOUT | |
| class Node: | |
| def __init__(self,value,point): | |
| self.value = value | |
| self.point = point | |
| self.parent = None | |
| self.H = 0 | |
| self.G = 0 | |
| def move_cost(self,other): | |
| return 0 if self.value == '.' else 1 |
| /* MIXINs */ | |
| @mixin transition( $val : ease 0.5s ) { | |
| -webkit-transition: $val; | |
| -moz-transition:$val; | |
| -o-transition:$val; | |
| -ms-transition:$val; | |
| transition:$val; | |
| } | |
| @mixin text-shadow( $top: 3px, $left: 3px, $blur: 3px , $colour: #333 ) { |
This tutorial uses the "Sample hapi.js REST API" project.
Take a look at: https://github.com/agendor/sample-hapi-rest-api/
##Topics
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
| # A little Meteor CheatSheet about Iron-Router. (updated on a weekly basis) | |
| # Check our Studio: https://gentlenode.com/ | |
| meteor add iron:router | |
| meteor update iron:router | |
| # Iron Router > Configuration |