Condiciones estructurales: La logica se va a encargar de los aspectos estructurales.
- Aplican la idea de validez e invalidez mas no verdad y falsedad.
Sujeto + Predicado
Condiciones estructurales: La logica se va a encargar de los aspectos estructurales.
Sujeto + Predicado
| var five = require('johnny-five'); | |
| five.Board().on('ready', function () { | |
| var servo = new five.Servo(9); | |
| this.repl.inject({ | |
| servo: servo | |
| }); | |
| }); |
| myMusic = {}; | |
| myMusic.Song = Backbone.Model.extend({}); | |
| myMusic.SongView = Backbone.View.extend({ | |
| tagName: "li", | |
| className: "item", | |
| template: Handlebars.compile($("#song-template").html()), | |
| initialize: function () { | |
| this.render(); |
| ... | |
| name: 'BeagleBone Black', | |
| bonescript: '0.2.4', | |
| version: '0A5C', | |
| serialNumber: '2813BBBK4391' } |
| var five = require('johnny-five'); | |
| var Firebase = require('firebase'); | |
| var board = new five.Board(); | |
| var db = new Firebase('https://coderise.firebaseio.com'); | |
| var leds = db.child('leds'); | |
| leds.child('verde').set(0); | |
| leds.child('rojo').set(0); |
| -- Standard awesome library | |
| local gears = require("gears") | |
| local awful = require("awful") | |
| awful.rules = require("awful.rules") | |
| require("awful.autofocus") | |
| -- Widget and layout library | |
| local wibox = require("wibox") | |
| local vicious = require("vicious") | |
| -- Theme handling library | |
| local beautiful = require("beautiful") |
| #!/bin/bash | |
| # bbb.sh -- Share Internet with the BeagleBone Black | |
| # using my Linux HOST as a router | |
| bbbAddr="192.168.7.2" | |
| hostAddr="192.168.7.1" | |
| # Configure IP forwarding on HOST | |
| echo "Setting up Routing" | |
| sudo iptables -A POSTROUTING -t nat -j MASQUERADE |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>HAN-Bot Realtime</title> | |
| <script src="/primus/primus.js"></script> | |
| </head> | |
| <body> | |
| <img id="camera" /> | |
| <script> |