After create the project with id :
-
CREATE DATA TOPIC gcloud beta pubsub topics create iot-data
-
create subscription gcloud beta pubsub subscriptions create --topic iot-data iot-subscription
-
CREATE REGISTRY
<html> | |
<head> | |
</head> | |
<body> | |
<input type="text" id="search-input" placeholder="Inserire la località"> | |
<div id="city"> | |
città | |
</div> | |
<div id="country"> | |
stato |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" crossorigin="" /> |
#include <stdio.h> | |
#include <math.h> | |
/* | |
INTERPRETZIONE DI UN UNSIGNED INT INSERITO COME NUMERO ESADECIMALE COME | |
NUMERO FLOATING POINT IEEE754 (Esercizio) | |
ROADMAP: | |
[] stampo i bit che compongono la variabile (show_bits_r) |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Page Title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" type="text/css" media="screen" href="main.css" /> | |
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> |
JMP start | |
elementi: DB 5 | |
vettore: DB 2 | |
DB 5 | |
DB 10 | |
DB 10 | |
DB 20 | |
start: |
JMP start | |
v1len: DB 3 | |
v1: DB 2 | |
DB 5 | |
DB 10 | |
v2len: DB 3 | |
v2: DB 2 |
After create the project with id :
CREATE DATA TOPIC gcloud beta pubsub topics create iot-data
create subscription gcloud beta pubsub subscriptions create --topic iot-data iot-subscription
CREATE REGISTRY
Scegliere una applicazione smartphone a tua scelta e effettuare una analisi di tipo "reverse", andando a definire
openssl genrsa -des3 -out server.key 1024 | |
openssl req -new -key server.key -out server.csr | |
cp server.key server.key.orig | |
openssl rsa -in server.key.orig -out server.key | |
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt |
require('dotenv').config() | |
const express = require('express') | |
const helmet = require('helmet') | |
const morgan = require('morgan') | |
const bcrypt = require('bcrypt') | |
const jwt = require('jsonwebtoken') | |
const app = express() | |
const port = 3000 |