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
/* | |
Copied my first sketch from the blink sketch and modified it 11Jan2015- Fernando | |
Blink | |
Turns on an LED on for one second, then off for one second, repeatedly. | |
Most Arduinos have an on-board LED you can control. On the Uno and | |
Leonardo, it is attached to digital pin 13. If you're unsure what | |
pin the on-board LED is connected to on your Arduino model, check | |
the documentation at http://arduino.cc |
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" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge, chrome=1" /> | |
<title>You Title Goes Here</title> | |
<style> | |
body{ | |
background-image: url('./pics/carousel/image_3.jpg'); |
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> | |
<!-- open up this same page in two instances of the brower that way you can see the message pop up in the other instances of the browser--> | |
<!-- make sure to add the jquery.js file to the same location as this file --> | |
<!-- Author: Fernando Zamora 9 October 2014 --> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Home</title> |
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
/* | |
* This Gruntfile.js works with the following versions of the packages | |
* | |
* "grunt": "^0.4.5", | |
* "grunt-backup": "^0.1.1", | |
* "grunt-contrib-copy": "^0.5.0" | |
* | |
* This task copies all files including subdirectories and their files from | |
* C:/temp1/src/ into C:/temp1/dest/ | |
* |
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
/* | |
* grunt-backup | |
* https://github.com/igorzoriy/grunt-backup | |
* | |
* Copyright (c) 2013 Igor Zoriy | |
* Licensed under the MIT license. | |
*/ | |
//copy does not work | |
'use strict'; |
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 ng-app="myApp"> | |
<head> | |
<title>Simple Example of Angular.js</title> | |
</head> | |
<body> | |
<h1>Events</h1> | |
<div ng-controller="eventController"> |
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 mongoose = require('mongoose'); | |
var Schema = mongoose.Schema; | |
function start(){ | |
console.log("Request handler 'start' was called."); | |
} | |
function upload(){ | |
console.log("Request handler 'upload' was called."); | |
} |
NewerOlder