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
# Copyright 2017 The TensorFlow Authors. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
#!/bin/bash | |
# /etc/init.d/minecraft | |
# version 0.4.0 2015-04-20 (YYYY-MM-DD) | |
# | |
### BEGIN INIT INFO | |
# Provides: minecraft | |
# Required-Start: $local_fs $remote_fs screen-cleanup | |
# Required-Stop: $local_fs $remote_fs | |
# Should-Start: $network | |
# Should-Stop: $network |
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
#!/bin/bash | |
#http://www.matteomattei.com/backup-your-server-on-mega-co-nz-using-megatools/ | |
#https://juncotic.com/megafuse-realizando-backups-mega-linux/ | |
#Crontab entry | |
#0 4 * * 0,2,4,6 /root/.scripts/megaBackupScript.sh 2>&1|tee -a /root/.scripts/megaBackupScript.log | |
SERVER="" | |
BACKUPS_LIMIT=7 |
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
#include <NewPing.h> | |
#include <Servo.h> | |
#include <SoftwareSerial.h> | |
#include <SPI.h> | |
#include <MFRC522.h> | |
#define SS_PIN 53 | |
#define RST_PIN 5 | |
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
#include <LiquidCrystal.h> | |
LiquidCrystal lcd(2,3,4,5,6,7,10); | |
double distancia; | |
long tiempo; | |
double prevDist = 0; | |
void setup(){ | |
Serial.begin(9600); |
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
USE [MIS_GRUPO_02] | |
GO | |
DROP TABLE BT_PASAJES | |
DROP TABLE BT_DESPACHOS | |
DROP TABLE LK_ESTACION | |
DROP TABLE LK_LINEA | |
DROP TABLE LK_TREN | |
DROP TABLE LK_RANGO | |
DROP TABLE LK_PERSONA |
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
USE [MIS_GRUPO_02] | |
GO | |
/***** CREAR TABLAS *****/ | |
-- Tabla LK Línea | |
CREATE TABLE LK_LINEA( | |
SK_LINEA bigint PRIMARY KEY IDENTITY(1,1) NOT NULL, | |
DESC_LINEA nvarchar(255) NOT NULL | |
) |