OPENVPN

IL server OPENVPN si trova su DEBIAN10 nel pc di Cesare 10.8.0.1. Per creare un nuovo utente si va nella cartella home di tullio dove si trova il file
./debian10-vpn.sh
sudo ./debian10-vpn.sh digitare la password z

It looks like OpenVPN is already installed.

What do you want to do?
1) Add a new user
2) Revoke existing user
3) Remove OpenVPN
4) Exit
Select an option [1-4]: 1
Selezionare 1
client name: cammacaco

Do you want to protect the configuration file with a password?
(e.g. encrypt the private key with a password)
1) Add a passwordless client
2) Use a password for the client
Select an option [1-2]: 1
Selezionare 1

Note: using Easy-RSA configuration from: /etc/openvpn/easy-rsa/vars
Using SSL: openssl OpenSSL 1.1.1n 15 Mar 2022
Generating an EC private key

writing new private key to ‘/etc/openvpn/easy-rsa/pki/easy-rsa-2885.Wmo6a7/tmp.bDZGih’

Using configuration from /etc/openvpn/easy-rsa/pki/easy-rsa-2885.Wmo6a7/tmp.rUeqD7
Check that the request matches the signature
Signature ok
The Subject’s Distinguished Name is as follows
commonName :ASN.1 12:’cammacaco’
Certificate is to be certified until Nov 21 21:30:05 2024 GMT (825 days)

Write out database with 1 new entries
Data Base Updated

Client cammacaco added.

The configuration file has been written to /home/tullio/cammacaco.ovpn.
Download the .ovpn file and import it in your OpenVPN client.
Verrà creato un file per un nuovo utente, cammacaco.ovpn nella cartella root. Siccome questa cartella non è accessibile copiare il file .ovpn nella cartella home di tullio dove si troveranno tutti gli altri utenti creati precedentemente. Con FTP si può accedere a questa cartella e prelevare il file.

Se il nuovo utente è un raspberry rinominare il file .ovpn in .conf.

Installazione di un client OPENVPN su RASPBERRY BUSTER

OpenVPN client su Raspberry Pi

In un precedente articolo ho descritto passo passo come installare un server OpenVPN su Raspberry Pi. In questo articolo invece andrò a spiegare come installare il client OpenVPN e come lanciare una connessione VPN.

Per prima cosa andiamo ad installare openVPN con il seguente comando:

sudo apt-get install openvpn

ora andiamo a posizionare il file “.conf” generato dal server OpenVPN all’interno del seguente percorso:

/etc/openvpn/

Ora per prima cosa avviamo il servizio OpenVPN:

sudo /etc/init.d/openvpn start

Se il servizio OpenVPN non dovesse partire buttate un occhio al file di log con il seguente comando:

tail /var/log/daemon.log

Per lanciare la nostra connessione VPN eseguiamo il seguente comando:

sudo openvpn /etc/openvpn/cammacaco.conf

dove nel mio caso il file di configurazione è denominato cammacaco.conf
Per avviare OPENVPN al boot entrare nella cartella /etc/default/ ed editare il file openvpn qui sotto

# This is the configuration file for /etc/init.d/openvpn

#
# Start only these VPNs automatically via init script.
# Allowed values are "all", "none" or space separated list of
# names of the VPNs. If empty, "all" is assumed.
# The VPN name refers to the VPN configutation file name.
# i.e. "home" would be /etc/openvpn/home.conf
#
# If you're running systemd, changing this variable will
# require running "systemctl daemon-reload" followed by
# a restart of the openvpn service (if you removed entries
# you may have to stop those manually)
#
#AUTOSTART="all"
#AUTOSTART="none"
AUTOSTART="cammacaco"
#
# WARNING: If you're running systemd the rest of the
# options in this file are ignored.
#
# Refresh interval (in seconds) of default status files
 

Togliere il commento e inserire cammacaco a AUTOSTART=”cammacaco”

A questo punto lanciare il comando
sudo systemctl enable openvpn per avviare OPENVPN al boot

sudo systemctl enable openvpn@server.service
systemctl start openvpn@cammacaco.service
@reboot systemctl start openvpn@server.service to root's crontab

SONOFF: Web server per accensione ON-OFF

link di riferimento.

Il progetto consiste nella realizzazione di un sistema di comunicazione domotica che non utilizza i server proprietari delle applicazioni associate ai vari dispositivi. Per esempio i SONOFF possono essere pilotati da app su telefono o altro. Per esempio TASMOTA EWLINK ecc. Rinunciando a queste VPN normalmente diventa impossibile connettersi dall’esterno per impartire comandi domotici a causa degli indirizzi non statici assegnati dai provider.
La soluzione proposta è quella di usare un servizio gratuito, THINGSPEAK, che fa da ponte tra i dispositivi domotici all’interno di una rete e i PC o le APP installate nei cellulari. Lo schema di principio è illustrato nella figura 1.

Schema a blocchi software

Il flusso dei dati raggiunge il destinatario in due passi. Prima si riempiono i campi di Thingspeak attraverso le applicazioni web installate sui PC o CELL e NODE MCU. Successivamente SONOFF1 e SONOFF2 attraverso funzioni di sola lettura acquisiscono le varie impostazioni.

APPLICAZIONI WEB

Accensione e spegnimento riscaldamento

<h1 style="text-align: center;">ACCENSIONE SPEGNIMENTO RISCALDAMENTO</h1>
<p style="text-align: center;"><a href="https://api.thingspeak.com/update.json?
api_key=codice scrittura&amp;field1=123"><button>ON</button></a>&nbsp;<a href="https://api.thingspeak.com/update.json?
api_key=codice scrittura&amp;field1=0"><button>OFF</button></a>
</p>
<p style="text-align: center;"><a href="setpoint.htm">SETPOINT</a>&nbsp;<a href="isteresi.htm">ISTERESI</a>
</p>





<iframe width="450" height="260" style="border: 1px solid #cccccc;" src="https://thingspeak.com/channels/673091/charts/6?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&type=line&update=15"></iframe>

<iframe width="145" height="260" style="border: 1px solid #cccccc;" src="https://thingspeak.com/channels/673091/widgets/37371"></iframe>

<iframe width="145" height="260" style="border: 1px solid #cccccc;" src="https://thingspeak.com/channels/673091/widgets/37370"></iframe>

Predisposizione Isteresi

<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Test Page</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
function postIt(){
var valueToPost = $('#field8').val();
var formData = {api_key:"codice scrittura",field7:valueToPost};


$.ajax({url : "https://api.thingspeak.com/update",
type: "POST",
data : formData,
success: function(data, textStatus, jqXHR){ if (data==="0") {alert("Channel not updated");} else {alert("New entry " + data + " added to channel");}},
error: function (jqXHR, textStatus, errorThrown) { alert("Error posting data");}
});
};

</script>
</head>
<body>
<h1>SALA DA PRANZO ARMENO
<form action="" method="get">
<p>
<label> SETPOINT TEMP.: </label>
<input id ="field8" type="text" value=""><br><br>
<input value="Update ThingSpeak" type="button" onClick=postIt()>
<form action="" method="get">
<p>
<p style="text-align: center;"><a href="isteresi.htm">ISTERESI </a>&nbsp;&nbsp;<a href="armeno_mix.htm">START</a>

</body>
</html>




 

 

Setpoint temperatura

<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Test Page</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
function postIt(){
var valueToPost = $('#field7').val();
var formData = {api_key:"codice scrittura",field7:valueToPost};


$.ajax({url : "https://api.thingspeak.com/update",
type: "POST",
data : formData,
success: function(data, textStatus, jqXHR){ if (data==="0") {alert("Channel not updated");} else {alert("New entry " + data + " added to channel");}},
error: function (jqXHR, textStatus, errorThrown) { alert("Error posting data");}
});
};

</script>
</head>
<body>
<h1>SALA DA PRANZO ARMENO
<form action="" method="get">
<p>
<label>SETPOINT TEMPERATURA: </label>
<input id ="field7" type="text" value=""><br><br>
<input value="Update ThingSpeak" type="button" onClick=postIt()>
<form action="" method="get">
<p>
<label>SETPOINT HT: </label>
<input id ="field6" type="text" value=""><br><br>
<input value="Update ThingSpeak" type="button" onClick=postIt()>
</p>
</form>
</h1>
</body>
</html>




 

 

HARWARE NODEMCU

NODEMCU

NODEMCU è il dispositivo usato per leggere la temperatura della sala attraverso il pirometro Adafruit_MLX90614 collegato in modalità I2C. In realtà nel riscaldamento a pavimento si preferisce misurare la temperatura delle piastrelle per controllarne il valore piuttosto che mettere un termostato ambiente ad una certa altezza sulla parete. Qui si utilizzerà la elaborazione delle due temperature per ricavare il miglior comfort. Infatti il sensore utilizzato misura sia la temperatura dell’oggetto puntato, la piastrella, sia quella ambiente. La misura della temperatura della piastrella varia a seconda della distanza, quindi è necessario inserire un parametro correttivo che tenga conto del fatto che il setpoint fissato da remoto deve essere confrontabile con la misura. Per esempio se il setpoint fosse di 20 °C il sistema si porterà a controllare una temperatura, letta dal sensore ad una certa distanza dal pavimento , di 20 °C. Tuttavia la temperatura della piastrella potrebbe trovarsi a 25 °C . In questo caso sarà necessario attivare un parametro correttivo per ottenere l’effettivo controllo della temperatura sulla piastrella a 20 °C.
Il dispositivo di misura verrà posizionato sotto il tavolo e punterà il sensore in una posizione ottimale per il rilievo della temperatura di una piastrella. Ciò renderà necessaria una alimentazione a batteria. Considerando che l’intervallo di lettura potrebbe aggirarsi intorno ai 5 minuti diventa utile programmare NODEMCU in modalità deep sleep permettendo così di aumentare l’autonomia della batteria. Per attivare la modalità deep sleep occorre inserire alla fine del loop questo comando

ESP.deepSleep(30e6);
dove 30e6 rappresenta la durata della pausa in microsecondi in notazione esponenziale; in questo caso 30 secondi
Collegamento per attivare il deep sleep

Nella figura sopra si evidenzia il collegamento tra il pin RST e DO che ha anche la funzione WAKE. È importante notare che in fase di programmazione del dispositivo, il ponte va tolto. Potrebbe essere conveniente inserire un pulsante NC che va tenuto premuto per tutto il tempo della programmazione e poi rilasciato.

DETTAGLIO DEI PIN DI NODEMCU

Programmi per SONOFF

La programmazione dei due SONOFF e di NODEMCU viene fatta con l’IDE di ARDUINO. Ricordarsi di cambiare il target in uso quando si programma.

Sonoff 1

Il sonoff1 è programmato per accendere l’impianto da remoto. Il suo compito prevede di collegarsi a THINGSPEAK per vedere se il FIELD 1 è settato. In tal caso fa eccitare il relè a contatto pulito (i sonoff 1 e 2 sono stati modificati) che chiude il circuito dei termostati che controllano le temperature nei vari ambienti. In questa applicazione solo la temperatura della sala viene misurata e controllata dai sonoff e nodemcu, gli altri locali sono controllati direttamente da termostati digitali posti sulle pareti dei vari locali a condizione che il Field 1 sia stato attivato da remoto.

/*
  Comando remoto per attivare sonoff1 che si trova vicino alla porta di ingresso.
  Attiva il circuito dei termostati della sezione riscaldamento a pavimento.Si chiama tagliato perchè 
  è ricavato dal programma del sonoff2 che si trova vicino ai collettori che ha il compito di attivare le elettrovalvole
  dopo aver letto la temperatura sala del FIELD 5 e confrontata con il setpoint
  di FIELD 7 e sell'isteresi di FIELD 4
  
  
  WriteSingleField
  
  Description: Writes a value to a channel on ThingSpeak every 20 seconds.
  
  Hardware: ESP8266 based boards
  
  !!! IMPORTANT - Modify the secrets.h file for this project with your network connection and ThingSpeak channel details. !!!
  
  Note:
  - Requires ESP8266WiFi library and ESP8622 board add-on. See https://github.com/esp8266/Arduino for details.
  - Select the target hardware from the Tools->Board menu
  - This example is written for a network using WPA encryption. For WEP or WPA, change the WiFi.begin() call accordingly.
  
  ThingSpeak ( https://www.thingspeak.com ) is an analytic IoT platform service that allows you to aggregate, visualize, and 
  analyze live data streams in the cloud. Visit https://www.thingspeak.com to sign up for a free account and create a channel.  
  
  Documentation for the ThingSpeak Communication Library for Arduino is in the README.md folder where the library was installed.
  See https://www.mathworks.com/help/thingspeak/index.html for the full ThingSpeak documentation.
  
  For licensing information, see the accompanying license file.
  
  Copyright 2018, The MathWorks, Inc.
*/

#include "ThingSpeak.h"
//#include "secrets_vodaf.h"
#include "secrets_Wireless.h"
#include <ESP8266WiFi.h>

char ssid[] = SECRET_SSID;   // your network SSID (name) 
char pass[] = SECRET_PASS;   // your network password
int keyIndex = 0;            // your network key Index number (needed only for WEP)
WiFiClient  client;


int gpio13Led = 13;
int gpio12Relay = 12;
int ritardo = 1;


unsigned long myChannelNumber = SECRET_CH_ID;
const char * myWriteAPIKey = SECRET_WRITE_APIKEY;

int number = 0;

void setup() {
  pinMode(gpio13Led, OUTPUT);
  digitalWrite(gpio13Led, HIGH);
  
  pinMode(gpio12Relay, OUTPUT);
  digitalWrite(gpio12Relay, HIGH);
  
  Serial.begin(115200);  // Initialize serial

  WiFi.mode(WIFI_STA); 
  ThingSpeak.begin(client);  // Initialize ThingSpeak
}

void loop() {

  // Connect or reconnect to WiFi
  if(WiFi.status() != WL_CONNECTED){
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(SECRET_SSID);
    while(WiFi.status() != WL_CONNECTED){
      WiFi.begin(ssid, pass);  // Connect to WPA/WPA2 network. Change this line if using open or WEP network
      Serial.print(".");
      delay(5000);     
    } 
    Serial.println("\nConnected.");
  }



    int data =  ThingSpeak.readIntField( 673091, 1, "9X25N6R2YQ5YVE8D" );
  if(data > 0){
    
    digitalWrite(gpio13Led, LOW);
    digitalWrite(gpio12Relay, HIGH);
  }
  else{

    digitalWrite(gpio13Led, HIGH);
    digitalWrite(gpio12Relay, LOW);
  }

for(int contatore = 0; contatore < ritardo;  contatore++) {
 
delay(20000); // attendi un multiplo(ritardo) di 20 secondi
Serial.println("ciao");
}
Serial.println("fine");
}

Sonoff 2

Il sonoff 2 si collega ogni 5 minuti a THINGSPEAK per leggere il valore di setpoint Field 7, dell’isteresi Field 4 e della temperatura corrente della sala Field 5. Con il suo relè comanda la testina della sala. Spegne se la temperatura corrente è superiore alla soglia superiore impostata, mantiene spento per tutto il periodo in cui la temperatura si trova all’interno delle due soglie, superiore e inferiore. Accende se la temperatura scende sotto la soglia inferiore.

/*
 * Programma del sonoff2 che si trova vicino ai collettori della sala. Comanda le tesine termostatiche
 * dopo aver letto il valore della temperatura della sala leggendi il FIELD 5, il setpoint del FIELD 7 e l'isteresi
 * di FIELD 4. Si accende il led ee si eccita il relè. I livelli attivi sono basso per il led e alto per il relè
 * 
 * 
 * think_sala_fw_ctrl_leggipavimento_remoto_if
 
  WriteSingleField
  
  Description: Writes a value to a channel on ThingSpeak every 20 seconds.
  
  Hardware: ESP8266 based boards
  
  !!! IMPORTANT - Modify the secrets.h file for this project with your network connection and ThingSpeak channel details. !!!
  
  Note:
  - Requires ESP8266WiFi library and ESP8622 board add-on. See https://github.com/esp8266/Arduino for details.
  - Select the target hardware from the Tools->Board menu
  - This example is written for a network using WPA encryption. For WEP or WPA, change the WiFi.begin() call accordingly.
  
  ThingSpeak ( https://www.thingspeak.com ) is an analytic IoT platform service that allows you to aggregate, visualize, and 
  analyze live data streams in the cloud. Visit https://www.thingspeak.com to sign up for a free account and create a channel.  
  
  Documentation for the ThingSpeak Communication Library for Arduino is in the README.md folder where the library was installed.
  See https://www.mathworks.com/help/thingspeak/index.html for the full ThingSpeak documentation.
  
  For licensing information, see the accompanying license file.
  
  Copyright 2018, The MathWorks, Inc.
*/

#include "ThingSpeak.h"
#include "secrets_fw.h"
#include <ESP8266WiFi.h>
//#include "DHT.h"
char ssid[] = SECRET_SSID;   // your network SSID (name) 
char pass[] = SECRET_PASS;   // your network password
int keyIndex = 0;            // your network key Index number (needed only for WEP)
WiFiClient  client;
//uint8_t DHTPin = 2;
//#define DHTTYPE DHT22
// Initialize DHT sensor.
//DHT dht(DHTPin, DHTTYPE); 
 
//float Temperature;
//float Humidity;
float Setpoint=0 ;
float Hist=0;
float LivH;
float LivL;
int gpio13Led = 13;
int gpio12Relay = 12;
int stato = 0;


unsigned long myChannelNumber = SECRET_CH_ID;
const char * myWriteAPIKey = SECRET_WRITE_APIKEY;
const char * myReadAPIKey = SECRET_READ_APIKEY;
int number = 0;

void setup() {
  pinMode(gpio13Led, OUTPUT);
  digitalWrite(gpio13Led, HIGH);
  
  pinMode(gpio12Relay, OUTPUT);
  digitalWrite(gpio12Relay, HIGH);
  
  Serial.begin(115200);  // Initialize serial
  //pinMode(DHTPin, INPUT);
//  dht.begin();
  WiFi.mode(WIFI_STA); 
  ThingSpeak.begin(client);  // Initialize ThingSpeak
}

void loop() {

  // Connect or reconnect to WiFi
  if(WiFi.status() != WL_CONNECTED){
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(SECRET_SSID);
    while(WiFi.status() != WL_CONNECTED){
      WiFi.begin(ssid, pass);  // Connect to WPA/WPA2 network. Change this line if using open or WEP network
      Serial.print(".");
      delay(5000);     
    } 
    Serial.println("\nConnected.");
  }
  float setpoint =  ThingSpeak.readFloatField( 673091, 7, myReadAPIKey );
  delay(3000);
  float Hist =  ThingSpeak.readFloatField( 673091, 4, myReadAPIKey );
  LivH= setpoint+(Hist/2);
  LivL= setpoint-(Hist/2);
  Serial.println ( " Livello minimo: " + String( LivL,2)) ;
  Serial.println ( " Livello max: " + String( LivH,2)) ;
  Serial.println ( " Livello setpoint: " + String( setpoint,2)) ;
  
  

   float data =  ThingSpeak.readFloatField( 673091, 6, myReadAPIKey ); //leggi se impianto  attivo

    
    
  if((data > LivL) && (data< LivH)){
    stato=0;
 }
  if(data >  LivH){
    stato=1;
 }
  if(data< LivL){
    stato=2;    
 }
    Serial.println(stato)  ;
switch (stato) {
  case 0:
    digitalWrite(gpio13Led, HIGH);
    digitalWrite(gpio12Relay, LOW);// spegni
    break;
  case 1:
    digitalWrite(gpio13Led, HIGH);
    digitalWrite(gpio12Relay, LOW);// spegni
    break;
    case 2:
    digitalWrite(gpio13Led, LOW);
    digitalWrite(gpio12Relay, HIGH);// accendi
    break;
  default:
    // statements
    break;
}
     
    Serial.println( " Data read from ThingSpeak: " + String( data,2) );
//    digitalWrite(gpio13Led, HIGH);
//    digitalWrite(gpio12Relay, LOW);
 // }
//  else{
//    Serial.println("Problem updating channel. HTTP error code " + String(data));
//    digitalWrite(gpio13Led, LOW);
//    digitalWrite(gpio12Relay, HIGH);
 // }

  // change the value
//  number++;
//  if(number > 99){
//    number = 0;
 // }
  
  delay(20000); // Wait 20 seconds to update the channel again
}

NODEMCU

Utilizzare queste librerie da inserire nell’ide di arduino
https://github.com/adafruit/Adafruit_BusIO
https://github.com/adafruit/Adafruit-MLX90614-Library

Legge il valore della temperatura della sala con il pirometro Adafruit_MLX90614 e la trasmette a THINGSPEAK nel Field 5

 
// mlxtest_armeno_thingspeak Settembre 2022
 
 
#include <Adafruit_MLX90614.h>
#include "ThingSpeak.h"
#include "secrets.h"

unsigned long myChannelNumber = SECRET_CH_ID;
const char * myWriteAPIKey = SECRET_WRITE_APIKEY;
float temperatura_sala;

#include <ESP8266WiFi.h>

char ssid[] = SECRET_SSID;   // your network SSID (name)
char pass[] = SECRET_PASS;   // your network password
int keyIndex = 0;            // your network key index number (needed only for WEP)
WiFiClient  client;

Adafruit_MLX90614 mlx = Adafruit_MLX90614();

void setup() {
  Serial.begin(9600);
  Serial.setTimeout(2000);
  delay(100);
  while (!Serial);

  Serial.println("Adafruit MLX90614 test");

  if (!mlx.begin()) {
    Serial.println("Error connecting to MLX sensor. Check wiring.");
    while (1);
  };

  Serial.print("Emissivity = "); Serial.println(mlx.readEmissivity());
  Serial.println("================================================");

   WiFi.mode(WIFI_STA);

  ThingSpeak.begin(client);
  //ESP.deepSleep(150e6);
}

void loop() {
  Serial.print("Piastrella = "); Serial.print(mlx.readObjectTempC());
  temperatura_sala = (mlx.readObjectTempC());
  Serial.println(temperatura_sala);
   if (WiFi.status() != WL_CONNECTED) {
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(SECRET_SSID);
    while (WiFi.status() != WL_CONNECTED) {
      WiFi.begin(ssid, pass); // Connect to WPA/WPA2 network. Change this line if using open or WEP network
      Serial.print(".");
      delay(10000);
    }
    Serial.println("\nConnected.");
  }

  // Write value to Field 1 of a ThingSpeak Channel
  int httpCode = ThingSpeak.writeField(myChannelNumber, 5, temperatura_sala, myWriteAPIKey);

  if (httpCode == 200) {
    Serial.println("Channel write successful.");
  }
  else {
    Serial.println("Problem writing to channel. HTTP error code " + String(httpCode));
  }


  ESP.deepSleep(150e6);
}

 

Schema connessioni NODEMCU

FSTAB : HD USB PER MOUNT AUTOMATICO

https://turbolab.it/linux-27/guida-ubuntu-come-montare-automaticamente-disco-usb-ssd-esterno-chiavetta-ntfs-ext4-exfat-ogni-avvio-pc-server-linea-comando-ubuntu-server-mount-boot-3110

Entrare come root
sudo -s
verificare lo stato delle periferiche per vedere se sono montate anche quelle USB che si ha intenzione montare automaticamente.
df -h
Prima di procedere conviene creare delle cartelle in /media. Per esempio se ho 3 HD USB da aggiungere farò
cd /media
mkdir salvatemi
mkdir salvatemi1
mkdir salvatemi2
Successivamente
fdisk -l
mi dirà come viene visto ogni HD che ho collegato. Per esempio
/dev/sdb1, /dev/sdc1 ecc. In realtà queste sono le partizioni dei dischi sdb,sdc ecc. che sono quelle da montare. Ora bisogna ricavare il codice UUID di ciascun disco per una corretta individuazione da parte di FSTAB.
sudo blkid

Come si vede sdb1 sdc1 sdd1 sde1 sono i 4 HD collegati. Solo gli ultimi due hanno una LABEL. Sarebbe conveniente assegnare a tutti una etichetta. se l’HD è formattato NTFS si usa
sudo ntfslabel /dev/sdd1 salvatemi
In questo modo la LABEL coincide con la cartella salvatemi in /media/salvatemi. Nei diversi tipi di formattazione si può usare

exfatlabel /dev/sda3 EX_PART per formattazione exfat.



È necessario smontare l’unità prima e probabilmente come root (verificare)
Notare che il comando funziona se il driver non è montato. Dopo aver fatto la nuova LABEL si fa
sudo mount -a
Se il disco esterno fosse formattato exfat usare il seguente comando per montarlo. Prima installare:
sudo apt-get install exfat-fuse
sudo apt-get install exfat-utils


sudo mount.exfat-fuse /dev/sdg1 /media/salvatemi5 -o nonempty

Per montare in automatico al riavvio si può aggiornare il file /etc/fstab con una riga come quella sotto, dove UUID è il numero univoco dell’HD che si ottiene con il comando visto sopra blkid. Segue il percorso della cartella dove si vuole montare l’HD. La cartella deve essere creata prima. infine aggiundere auto nodev 6 2 il cui significato si trova qui
UUID=”7673E63F78961150″ /media/salvatemi6 auto nodev 6 2

Situazione

sudo blkid
/dev/sdh1       233G   12G    221G   6% /media/pi/salvatemi
/dev/sdg1       150G  140G    9,5G  94% /media/pi/salvatemi1
/dev/sde1       466G  363G    104G  78% /media/pi/salvatemi2
/dev/sdf1       466G   64G    403G  14% /media/pi/salvatemi3
/dev/sdd1       1,9T  1,3T    563G  70% /media/pi/salvatemi4
/dev/sdc1       466G  280G    186G  61% /media/pi/salvatemi5
/dev/sdb1       932G  154G    779G  17% /media/pi/salvatemi6
sudo joe /etc/fstab
UUID="E2CD-2992" /media/pi/salvatemi auto nodev 6 2
UUID="F0CC44A5CC446844" /media/pi/salvatemi1 auto nodev 6 2
UUID="AC6E922D6E91EFF6" /media/pi/salvatemi2 auto nodev 6 2
UUID="C81E6E5C1E6E4392" /media/pi/salvatemi3 auto nodev 6 2
UUID="661669BB16698D3D" /media/pi/salvatemi4 auto nodev 6 2
UUID="F6E09109E090D16B" /media/pi/salvatemi5 auto nodev 6 2
UUID="7673E63F78961150" /media/pi/salvatemi6 auto nodev 6 2


Approfondire su questo link di turbolab

BOOKMARKS

Barra dei Preferiti

—a

Get started in Arduino | WEMOS ElectronicsGitHub – pivpn/pivpn: The Simplest VPN installer, designed for Raspberry PiConfigurare una VPN per collegarsi da remoto alla rete dell’ufficio – Gianluca GhettiniWindows L2TP users cannot connect, Windows shows error 809. L2TP client continuously sends deletes of Phase 2 keys after Phase 2 completion.How To Fix VPN Error 868 | TheVPNShop.comCollegamenti condivisi – TredsHybrid Cloudstatistica

1

Home Feed | ResearchGateSCARICARE DA FB Scaricare video da Facebook con Facebook video downloaderThe Nostalgia MachineVerifica lo zoom del numero di cellularecanale Bibbia Milano Upload Video sul canale – YouTube StudioDidattica – Istituto Comprensivo Meloni Domusnovas

CAMUSO

Videolezioni Gratuite ed altre risorse didatticheJAVASCRIPT ARTICOLO INFORMATIVO UTILE Imparare il Javascript nel 2020 conviene? – Creative Code(179) Cos’è Node.js e come funziona – YouTubeGestire parametri GET in Server Node.js – Modulo URLNodeSchoolGIT AlbertoOlla (Alberto Olla) · GitHubDownload | Node.jsELENCO FUNZIONI Index | Node.js v12.16.3 Documentationnodeschool/discussions: need help with nodeschool? or just wanna ask a question? open an issue on this repo!CORSO JAVASCRIPT – VARIABILI – Le VARIABILI in JAVASCRIPT – Lez.5 Corso Base JavaScript on line Gratis per PrincipiantiArmonia / Giri / TensioniVirtual keyboard in Chinese ™ (中国键盘)WordPress Quiz plugin Free Demo – Quiz MakerCINESEFAIDATE – Impara il cinese facendo siti3BMETEO.com ▷ Meteo e Previsioni del tempo in ItaliaAttiva l’account – ZoomTributi e visure – SistemapiemonteGoogle TraduttoreIRF1104PBF Infineon, Power MOSFET, N Channel, 40 V | FarnellPiKrellCam@raspberrypiPlugable Digital Viewer – PlugableWeller Soldering Tip, .031 in., Screwdriver, 700 Deg., PTSTATISTICA IN INGLESE–(5) Descriptive Statistics: The median – YouTubeMessengerRendimentoSPID–PosteID Un’unica login per tuttiScaricare video da YouTube gratis – YouTube Downloader online senza programmi!CAPPE–FABER – TCH04 SS18A Cappa Sottopensile 80 cm Colore Acciaio Inox – ePRICECAPPA–78ex80ePRICE – CarrelloWhatsAppFascicolo del Cittadino – Comune di MilanoAdafruit_ADS1X15/comparator.ino at master · adafruit/Adafruit_ADS1X15 · GitHubNavy DocumentsNavy Documents

ALI

Buy speaker 16 ohm and get free shipping on AliExpress2pcs 8R 2W Altoparlante Impermeabile 57 MILLIMETRI di Diametro Trasparente Cono di Carta Luminoso Cap 32MM Altezza Magnetico Esterno 17 MILLIMETRI-in Componenti acustici da Materiali e componenti elettronici su AliExpressMy AliExpress : Manage Orders

AMAZON

Centro resiHome

ANKI

Immerse with Migaku – YouTubeIl computer con gli occhi a mandorla | Stefano Droghetti Home PageTalking Chinese to Pinyin/Zhuyin ConverterPinyin on top of Hanzi – AnkiWebBUON TRADUTTORE–DeepL Translate: Il miglior traduttore online al mondoESADECIMALE–How to Convert 4e0d from hexadecimal to decimal方正楷体拼音字库.TTC – Google DriveHow to Install Fonts in Linux?- Help Center-Fontke.com For MobileAnki won’t load images from text file : Allow HTML in fields option – YouTubeANKI: come creare velocemente mazzi con molte carte – YouTubeTUTOR LINGUISTICO–Aggiungi audio e immagini ai mazzi di Anki – YouTube

ANOBII

Iw2mcp – aNobii

ARCHLINUX

Installare ArchLinux – prometheusprojectConnect to WiFi Using Terminal in Arch Linux and Other Distros16 Best Lightweight Linux Distributions for Older Computers in 2020 [With System Requirements]Qual è il miglior distro Linux per laptop?A.L.: I pacchetti – debit/HowToIdentifyADevice/PCI – Debian WikiATIProprietary – Debian WikiHow To Upgrade Debian 8 Jessie to Debian 9 StretchDesktop – SparkyLinuxAmazon.it | Rotelle per sedieDebianJessie – Debian Wikiesportazione driver scheda graficaHP e-PC 42 Specs – CNETIndex of /puppylinux/arm/puppy-raspup-8.2.1/Installion: How To Uninstall openvpn On Ubuntu 16.04 LTSDebian 10 Set Up OpenVPN Server In 5 Minutes – nixCraftHow to Install and Configure Samba on Debian 10How To Install OpenVPN Server on Debian 10/9 – TecAdminCome creare una rete VPN in Windows con OpenVPN[WINDOWS] – OpenVPN Server su Windows in bridge mode – YouTubeopenvpn creazione dei certificati per i approfondire client e configurazione – www.davidea.itHow To Set Up an OpenVPN Server on Debian 10 | DigitalOceanDebian 10 Buster : SSH Server : SSH File TUSO DI SCP–ransfer(Debian) : Server WorldSSH: la storia della porta numero 22 | HTML.itSALVA SUBITO–How to start OpenVPN at boot on Raspbian Jessie – Raspberry Pi Stack ExchangeSALVARE SUBITO–OpenVPN client on Raspberry PiFORWARD IP–OpenVPN – Debian WikiGUARDA SUBITO–How to Install and Configure VNC on Debian 10 | DigitalOceanVERIFICA DOPPIONE–IPTABLES–Raspberry Pi VPN Router · GitHubSSH DEB10–How To Install and Enable SSH Server on Debian 10ALTERNATIVO 5 MINUTI–Come creare un server VPN OpenVPN in 5 minuti [TurboLab.it]MASTERIZZARE ISO RIGA DI COMANDO–Appunti Linux: dd, potente comando GNU/Linux per masterizzare ISO e copiare CD/DVD – il Brutto Bug !

ARDUINO

(187) 7. How to create S function in Matlab simulink for Arduino – YouTube(187) How-To: Shrinkify Your Arduino Projects – YouTube(188) How to integrate Arduino Libraries with Matlab Simulink? – YouTube3 Axis Arduino Accelerometer / Inclinometer (Tilt / Roll / Yaw)Arduino – ATTiny85 Serial Communication – Massimo BiagioliArduino – HackingArduino – LibraryTutorialArduino – PinMapping2560arduino aprs shield – Cerca con GoogleArduino Basics: MT8870 DTMF – Dual Tone Multi Frequency DecoderArduino Rtty Decoder 2 Free MP3 DownloadArduino TNC – George Smart’s Wikiarduino | результаты на Aliexpress.comatmel studio ide arduino – Cerca con GoogleCome scrivere una libreria per Arduino | Elettronica Open SourceDTMF 2 tones, no Libraryè possibile convertire una stringa in array ?esercizi utili Arduino_per_principianti_parte_4_Arduino_UNO_DUE – Arduino_per_principianti_parte_4_Arduino_UNO_DUE_0.pdfesp 8266 Guida – LED lampeggiante su ESP8266 tramite IDE Arduino | Reboot.msfile:///C:/Users/Steffan/AppData/Local/Temp/~hh81F.htm – arduino-compatible-compiler-for-labview-user-manual.pdfFrequenza PWM su Arduino Duty Cycle Mauro Alfieri Elettronica RoboticaLabVIEW Arduino Thailand видео – ВидеоТубе – Фильмы, Сериалы, мультфильмы | Kinotube.Infolibrary arduino library compatible compiler – Cerca con Googlemptt ARDUINO MPPT SOLAR CHARGE CONTROLLER (Version-3.0) – 14pitusso Personal Messages IndexSelf-made telephone dialer with Arduino – BlogTiziana Marsella – Programmare Arduino.pdfВсе видео ролики на канале LabVIEW Arduino Thailand – kinotube.info – Фильмы, Сериалы, Мультфильмы, ВидеоArduino Compatible Compiler For LabVIEW | Geverywheremptt ARDUINO MPPT SOLAR CHARGE CONTROLLER (Version-3.0) – 14Arduino+Owncloud temperature monitorSegnalibri – ownCloudSegnalibri – ownCloudMonitoring the Real World with your Raspberry Pi – Part III: connecting an Arduino – Tobias Abarbanell’s BlogAggiungere librerie nell’IDE Arduino | Michele MaffucciATtiny85 + I2C + LCD – MST-tutorialerrore download schede json java – Address family not supported by protocol family – SocketException on a specific computer – Stack Overflow

WEMOSD1

Nuova cartella

Nuova cartella

Modulo Wemos D1 Miniheap runs out of memory · Issue #2919 · esp8266/Arduino · GitHubEQUAZIONI DI SISTEMA INCLINATO E ACC: DE-ilRaccoglitore » Blog Archive » An application of systems theory (Arduino, DE-ACCM3D and Java Swing and AWT)LEGGE DATI DA DE-ACCM3 Future 3 Axis Accelerometer Project..Help!LEGGE A0 Wemos A0 does not read voltageACCELERIMETRO ANALOGICO WEMOS DE-ACC3D Arduino – ADXL3xxCONNESSIONE E VALORI PER POSIZIONE Microsoft Word – DE-ACCM3D.docCALCOLO ANGOLI Tilt Angle Detector Using 3-Axis Accelerometer – PDFCOMPLICATO MATRICI ACC. Microsoft Word – final-report3.htmProgrammareArduinoPID Arduino Playground – PIDLibraryistruzione forRiempire un Array di valoriPROGRAMMARE APPUNTI LEZIONI ARDUINOEstensimetro BF350

LINUX

Installare Arduino IDE (1.8.x) su Ubuntu » Xeeon’s WebsiteInstalling ESP8266 in Arduino IDE (Windows, Mac OS X, Linux) | Random Nerd TutorialsAntima

—-a

Profilo a l STANDERS in alluminio 2.6 m x 1.1 cm prezzi e offerte online | Leroy MerlinFai da te, arredo casa e giardino: prodotti e idee | Leroy MerlinReggimensola,Portata 100 kg/coppia, a ribalta, acciaio – in Häfele Italia Shophttps://drive.google.com/file/d/1dNbfeEV7qetunxvmVR4N2AezeRPBCMg4/view?usp=drive_openLM723/LM723C Voltage Regulator datasheet (Rev. C)pir-passive-infrared-proximity-motion-sensor.pdfRELE RELAIS RELAY REED 12 volt DC 1 contatto 0,5A FEME CMA 100 12 OLD STOCK | eBayModulo convertitore ADC 16-bit 4 Canali ADS1115 – www.adrirobot.itpuleggia alluminio cinghia dentellata piana 180 mm – Ricerca GoogleArduino – StringToIntExampleArduino – DonateGet started in Arduino | WEMOS Electronics

SCHEDESHIELD E ACCESSORI

SHIELD ARDUINO RACCOLTA–Raccolta shield commerciali per Arduino – www.adrirobot.itSHIELD–Recensioni Arduino Shield – UMIGBambini esploratori dello Spazio con il National Geographic

ASTRONOMIA

Angoli_misura_conversioni_1_4.pdf

ASTRONOMIA

KSTAR The KDE Education Project – KStarsAstroberry Server

CALENDAR

Come importare un CSV su Google Calendar | Manuel Ricci

CAMTASIA

Thank You for Purchasing Camtasia (Windows)

CANZONI

(67) Cocoon 07. To The Pool – YouTube

CARMEL

Y202-EN2-02.book

CASA

auto

https://secure.sistemapiemonte.it/stapoc/base/registrazione/cpRegistrazione.doMatrox Graphics – Support – Download ListIsolamento Acustico per Giardino Esterno

CENTRALINE METEO

MANUALE DAVIS–istruzioni-italiano-davis-vantage-pro-2.pdfMETEO BIBBIENA INSTALLAZIONE CUMULUS BENE–Cumulus MX su Raspberry PI, il più moderno software di gestione meteo – Meteo BibbienaFONDAMENTALE PER IL SETUP.PHP–Meteotemplate WIKIReteMeteoApuaniaFORUM AUTORE METEOTEMPLATEPage Title – Meteotemplate ForumSoftware – Cumulus WikiSITO FINLANDESE–cumulusmx extre web files – Cerca con GoogleCUMULUSMX_INI–Cumulus.ini – Cumulus WikiDreamHost Web Panel > Websites : Manage DomainBEL SITO PER IMPARARE–Grafico interattivoLEGGERE DATI DIRETTAMENTE DA USB PYTHON–debian – How can I connect to a USB serial device? – Raspberry Pi Stack ExchangeCRON-JOB–cron-job.org ConsoleACQUISTO CENTRALINA METEO–Strumenti in scalaCANCELLARE I DATI DI PIOGGIA–Delete bad rain data?ALTERNATIVA WVIEW–Installare Wview su Raspberry Pi 2 – Meteo BibbienaINSTALLA VERSIONE ULTIMA ORIGINALE CUMULUSMX–Raspberry Pi Image – Cumulus WikiALTRO TEMPLATE AURORA MK2–Weather34 Aurora MKII Setup Guide

CHITARRA

GENERALE Accordi 100% Corretti -Francesco De GregoriLezione sugli Accordi di Chitarra | Assoli di ChitarraAccordi per chitarra – Il modo semplice per imparare a suonare – Accordi ChitarraAccordi RE | Accordi Chitarra

CHROME

Browser web Google Chrome(410) Come creare i collegamenti sul desktop Ubuntu 14.04 – YouTube

CINESE

CONV. TO PPINYN Caratteri cinesi per Pinyin con tono accenti segna Converter – Hi!Penpal!Link utili CINESEDA GUARDARE PER VIDEO DIDATTICI (519) NCTU OCW – YouTubePRAAT E CINESE SpeakGoodChineseBUON VIDEO DI 1H FRASI FATTE (554) Learn Chinese in 1 Hour – ALL You Need to Speak Chinese – YouTubeCINESESE E PRAAT SpeakGoodChineseCOLLEGATO A PRAAT CINESE MDBG Chinese DictionaryIMPORTANTE PRONUNCIA TABELLA Mandarin Chinese Pinyin Chart with Audio – Yabla ChineseSPEAK GOOD RIVEDERE PER ELENCO LNGUESpeakGoodChinese – Google DriveDIZIONARIO CINESE DA VEDERE MDBG Chinese DictionaryDaily Chinese Handwriting Practice – Arch ChineseIl CastelloLanguages and LinguisticsDeepL TraduttoreWord dictionary – 鱼和熊掌不可兼得 – MDBG Chinese Dictionary(22) Introduce Names (姓 and 叫) – Chinese Grammar Simplified 102 – YouTube

RICHARD

Opposite Chinese [1] | Learn Opposite Chinese Words and Terms | 中文反义字 – YouTubeHow to download the (Simplified) Chinese fonts with Pinyin: 如何下载含有拼音的简体中文字形 – YouTubeARCH–Chinese English Dictionary – Learn Chinese – 英汉字典 – 汉英字典 – 汉字- Arch ChineseCome installare i font Windows (e non solo) su Linux Mint 20.1 – YouTube

HSK

VERIFICARE CONTENUTO–Test HSK | Università Cattolica del Sacro Cuore

CLOUD

OWNCLOUD

How To Move the Data Directory for ownCloud on Ubuntu 16.04 | DigitalOceanMaking ownCloud Faster Through Caching | ownCloud.orgOwncloud Nine: How to reset the admin password – Switched On Tech Designowncloud site:raspberrypi.org a DuckDuckGoInstall ownCloud 10 on Raspberry pi 3 with Raspbian Stretch InstalledWOW Space

COMPONENTI

COMPONENTI ROBOTSTORE–Ultimi pezziEPICICLOIDALE–Analisi_teorica_e_sperimentale_del_rendimento_di_riduttori_epicicloidali.pdf023.005.0012 – MOTOR SHIELD 4 CANALI CON L293D

DISPOSITIVI

Temperature sensor comparison – DHT22 vs DS18B20 | Arduino tutorialESP8266 WiFi DS18B20 temperature sensor (Arduino IDE)Matrox Graphics – Support – Driver DownloadMatrox Graphics – Support – Driver DownloadAmazon.it: ICQUANZXBX120-3AA ; Foil Electric Resistance Strain Gauge Sensor – Al-Hekma ElectronicsLezione.dviCIRCUIT2TRACCIAMENTO DIGIKEY–Controlla ordine – La mia Digi-Key

DRONI

ArduPilot Firmware DownloadBuild a Linux Based Raspberry Pi Drone | Udemy

DVDHACK1

Come rippare dischi Blu-Ray con MakeMKV e freno a mano – it.phhsnews.comPihole + OpenVPN + MotionEYE, anybody got any advice before I start? Most popular/reliable free DDNS service? : raspberry_pi

ESP

ESP8266 – NURDspacehome PCF8574 – ESP8266

ESP

WiFi (ESP8266) Home Control/Monitoring และถ่ายภาพส่งเข้ามือถือด้วย Telegram Apps พัฒนาด้วยภาษา LabVIEWRoma 15-11-2006 – Tesi-Rocco-Musolino.pdfblog forum Everything ESP8266Virtual COM Port DriversINIZIO COMPLETO Welcome to ESP8266 Arduino Core’s documentation! — ESP8266 Arduino Core documentationHW DETTAGLIATO–BLYNK– Modulo ESP8266 – ESP-01TASMOTA nliaudat – Flashing Sonoff S26PROGRAMMARE CON ARDUINO Programmare Sonoff basic con Firmware Tasmota usando Arduino UNO – Byte4geeKeasyIoTMulti Zone Wireless Thermostat | Hackaday.ioOpenTherm Adapter – Hobby ProjectsESP8266 internet connected 4 relay switchESP8266: Test board review – Squix – TechBlogGuida – Programmare ESP8266 usando Arduino IDE | Reboot.mswarning: espcomm_sync failed error: espcomm_open failed // ESP-01 // Wiring up the right way shuts my ESP off · Issue #770 · esp8266/ArduinoD2XX Direct DriversGuida – Flash firmware su ESP8266 | Reboot.ms(281) Review of a simple esp8266 test board – YouTubeHome Automation–IOT Demo with ESP8266 WiFi IOT Test Board | alselectroESP8266 – jpralves.netProgram/Flash the ESP8266MOD ESP-12 Module Using the Witty Board and Arduino IDE: 6 StepsControl Sonoff From Raspberry Pi: 4 StepsSCH.SCH.1.1Reprogram Sonoff Smart Switch Web Server | Random Nerd TutorialsFlash Sonoff. Guida alla riprogrammazione del firmware – Viziato.itRiprogrammare un interruttore ITEAD Sonoff Basic usando firmware Tasmota – inDomus.itMQTT – Indice – inDomus.it#generalil PODCAST sulla domotica personale | SpreakerDHT22 (am2302) : Sensore di umidità e temperatura – ciaobit.comSensore di temperatura e umidità – DHT11 – DescrizioneReplacing the ITEAD Sonoff firmware | captain-slow.dk

RADIO

PWS – Wireless Data Acquisition – TSXpertsBuild an ESP8266 Web Server – Code and Schematics | Random Nerd Tutorialsnassir-malik/IOT-DIY-Sonoff-Temperature-Switch-With-AlexaRuiSantosdotme (Rui Santos)SONOFF Tutorial: A Wi-Fi Room Temperature Controller for $10 – Ubidots BlogSTRINGA PER IMPOSTAZIONI ESP Environment Setup | Losant IoT Dev Kits | Getting Started | Losant DocumentationTermometro Wi-Fi con indicazione umidità, temperatura percepita e controllo relè mediante ESP8266 | SettorezeroGPIO Locations · arendst/Sonoff-Tasmota WikiESP8266 DHT11 Arduino Webserver Source Code Tutorial | My Electronics LabFixed IP with ESP8266WiFi · Issue #1959 · esp8266/ArduinoReleases · arendst/Sonoff-Tasmotawww.vincenzocaputo.com | Riprogrammare Sonoff Smart Switch Basic con Firmware TasmotaSonoff update firmware. Riprogrammiamo Sonoff – Viziato.itActivity : markmuilwijk#58 ESP8266 Sensor runs 17 days on a coin cell/transmits data to sparkfun.com and ubidots.com – PlayItHub Largest Videos HubAndreas Spiess Videos – PlayItHub Largest Videos HubConfigure Sonoff Tasmota and Domoticz to display TH Sensor Data – PlayItHub Largest Videos HubCsongor Varga Videos – PlayItHub Largest Videos HubGPS Interfacing with NodeMCU ESP12: Getting Location DataAppunti ESP8266 – Come risolvere problemi di stabilità | Jumping Jack Flash weblogInternet of Home Things » Continuous ESP8266 OperationInternet of Home Things » 4 ways to eliminate ESP8266 resetsMaking the ESP8266 Low-Powered With Deep Sleepkhjoen/DHT-sensor-library: Arduino library for DHT11DHT22, etc Temp & Humidity SensorsSCH.SCH.1.1Internet of Home Things » Porting Spark Core Weather Sensor IoT to ESP8266-12https://www.bayes.it/pdf/R_Mineo_2003.pdfWelcome to ESP8266 Arduino Core’s documentation! — ESP8266 Arduino Core 2.5.2 documentationGitHub – esp8266/Arduino: ESP8266 core for Arduinods18b20_libreria DallasTemperatureSens. Temperatura DS18S20 OneWireESP8266 & Temperature Sensors DS18b20 with HTTP Server – Hackster.ioFlash Sonoff. Guida alla riprogrammazione del firmware – Viziato.itCome riprogrammare il SonoffCome impostare la modalità “flash” nei dispositivi Sonoff | inDomus.it

NODEMCU

NodeMCU Amica Installation – ESP8266 Based Development Board – Robo India || Tutorials || Learn Arduino || Robotics4A-ESP8266__AT Instruction Set__EN_v0.30.pagesIl modulo ESP8266 e il NodeMCU DevKit – Parte 1 – Introduzione e preparazione ambiente di sviluppo con Arduino IDE | SettorezeroIl modulo ESP8266 – Controlliamo 4 relè tramite la rete wi-fi di casa | Settorezero(458) Getting started with NodeMCU (ESP8266 tutorial #1) – YouTube(458) NODEMCU – Getting started with Arduino core 1. GPIO & Network Access – YouTubeUSB to UART Bridge VCP Drivers – Silicon LabsIntro to NodeMCU and Arduino IDE | Microcontroller TutorialsMotionNTP (Network Time Protocol)ESP8266 NodeMCU NTP (Network Time Protocol) Clock | Circuits4you.comDevelopment Board | Espressif Systems

EVERHELPER

EverHelper

FASTWEB

FASTGATE e IPV6 – Forum di MyFASTPageIPV6 + IP Pubblico con Fastweb VULA – Forum di MyFASTPageConfigura Internet su smartphone o tabletunlock Huawei Mobile Wi-Fi R216 LTE – Vodafone Community

GIT

git beginner tutorial – YouTubeMarkdown Cheatsheet · adam-p/markdown-here Wiki · GitHubmio GitUpload images to GitHub from the browser – Stack OverflowRemote panel alternatives? : LabVIEWHOW TO – come utilizzare una webcam USB con Raspberry Pi

GOOGLE AS

Siti – Google AdSenseReport – Google AdSenseGoogle AdSense: Verifica il tuo conto bancario – profmarzi@gmail.com – GmailCREA API PER ABILITARE GALLERY–Credenziali – API e servizi – My Project 65165 – Google Cloud PlatformHow To Get YouTube API Key? • Plugins360Upload content with the Package uploader – YouTube HelpGOOGLE API CONSOLE–API e servizi – API e servizi – My Project 65165 – Google Cloud PlatformMACACO – Google DrivePROMEMORIA CREA PROGETTO–Creating a Google app [Nápověda]Automatic YouTube Gallery – Plugin WordPress | WordPress.org Italia2021-11-17 – DropboxCondividere una cartella con Dropbox: l’errore da non fare

GPS

How to Use UART in LabVIEW : 5 Steps – Instructables

GRAFICA

GIMP

How to install or compile GIMP filters/plugins/extensions on Linux – nixCraftFlatpak Configuration Annoyance – Linux Mint ForumsFlatPak – Debian WikiMenù WordPress non cliccabile!

Nuova cartella

HACK

Free Huawei New Algo Online CalculatorSolved: Admin Password WorkCentre 3325 – Customer Support Forum

ILIAD

ROUTER iliad – Benvenuto in iliad

Importati

Barra dei segnalibri

AppleYahoo!Google MapsYouTubeWikipedia

I più conosciuti

Rai.it – Home PageGoogleWikipediaApple Developer

artisteer

Ultime notizieUltime notizie» Un segnalino su google Maps spostabile con aggiormento AJAX delle coordinate satellitari178 Results for [sorgenti]7100-FT543K.pdf (Oggetto application/pdf)A.P.R.S.Agenti FisiciAPPA-AGF TN – Catasto sorgenti campi elettromagneticiARPAL – CEM – ModellisticaARPAV – AGENTI FISICI&#58; RADIAZIONI NON IONIZZANTIARPAV – AGENTI FISICI&#58; RADIAZIONI NON IONIZZANTIARPAV – prelevare materialeautoalimentazioneAVS4YOU® I migliori software sul mercato. Abbonati subito e scarica gratis!Collegio Geometri della Provincia di Potenza | Sito UfficialeCome iniziareCome iniziareDanilo’s Blog » GuidaDavis Vantage Pro on LinuxDebian –libcurl Package Download Selection — libcurl4-openssl-dev_7.18.2-8_armel.debDebian System V InitDj Byte’s HomeDriverAgent.com Risultati Scansione DriverAgent – MSIEurope DirectFastmailFierefilezilla-configurazione.pdf (Oggetto application/pdf)forumphpbb_libradFoto – Windows LiveFree File Hosting Made Simple – MediaFireFreeS/WAN Project&#58; IntroductionGetting StartedGLOBAL MAPPERGoogle Maps API TutorialGoogle Maps_cerchiGruppo bancario Credito ValtellineseGuide e TutorialHotMail gratuitahttp://www.facebook.com/photo.php?pid=202157&id=1079112826http://www.widsets.com/widgets.htmliem15_vassanelli.pdf (Oggetto application/pdf)illuminanteInstall and setup OpenVPN on Debian 4.0 Etch — Lone-Wolf ScriptsInstalling Debian&#58;hoiniziatoquiLa Grande Guerra delle mappe tra Google e le telecom mobili – Repubblica.it » RicercaLinux Links – The Linux Portal&#58; Software/Toys/WeatherListino Generale 06/01/2009Lublog » Wirelessmaxi antenna a Scopello – Windows LiveMeteoNUOVA PAGINA CON MAPPA ANTENNE – Ufficio Unico Antenne del Comune di Taranto | Google GruppiOww – One-wire weatherPersonalizza collegamentiPersonalizzazione collegamentiPersonalizzazione collegamentiPresentazione_Dir_Gen.pdf (Oggetto application/pdf)qth.map – Find QTH locator or map squareRF-RadioTv.pdf (Oggetto application/pdf)TinyURL.com – shorten that long URL into a Tiny URLTutorials for SnagitUltraSoft3D – Downloads liberiUltraSoft3D – GeoLocator, mappe, indirizzi, percorsi, POI/PDI GPS, profili altimetriciVideoWelcome pageWelcome to OpenVPNWindowsWindowsMediawview – Linux-FreeBSD-Unix-MacOSX Weather Station Softwarewviewweather.com &#58;&#58; View topic – Debian not communicating with USBwww.aagelectronica.comYouTube – Energia dal sole con LABVIEWGetting StartedLyX | DownloadLatest HeadlinesHomeAdobe Dreamweaver * Working with div tagsCome iniziare

emoncms

Segnalibri non catalogati

FIMMG – SEZIONE REGIONALE LOMBARDIAFIMMGVENETOPubMed HomeSnamiScarica estensioni per i segnalibri

abbonamenti

anna

api

arduino

biometeolab

bruttomesso

cadif

cam

camtasia

cinese

laernamo – YouTube

linux

apache2

mysql

samba

» Un server in casa da 100 euro » come se fosse antani60+ Libri gratuiti su Linux « NicopiapacheAPT HOWTOAPT HOWTO – Lavorare con i pacchetti sorgenteCardsharing Gbox Cccam Server Card Sharing Dreambox Howto Tutorialcomandi Linux – Riga di comandocompero nslu2crosscompilazioneDebian — Port di Debian su altre architettureDebian — Port su ARMDebian on NSLU2Guida all’installazione di Debian GNU-LinuxGuida UbuntuHacking an NSLU2Hacking into the Linksys NSLU2_powerHelp…NSLU2 met CCcam + uNslung 6.8 of Openslug 3.10 – Sat4allHomepage of Peter Korsgaard Installing debian Sarge on a Linksys NSLU2howto Linux Add User To Grouphttp–www.meteobrallo.com-pmwiki.phpn=Main.InstallazioneWviewhttp–www.meteobrallo.com-pmwiki.phpn=Main.WebcamIndex of -debian-cd-3.1_r2-i386-iso-dvdInstallazione passo-passo di Debian 5 (lenny) con Screenshots « mikeOverIP~$Installing Debian on NSLU2Installing Debian__Italian NSLU2 forum • Leggi argomento – Guida Installazione Amule e Amuleweb in UnslungItalian NSLU2 forum • Visualizza forum – ApplicazioniLinksys NSLU2 « Andy’s BlogLinksys RMALinux USBLogging the right wayLogin required to edit – netstudentManuali.it – Linux guide,manuali,articoliMini Server Modificato – PLC Forum – Forums automazioneModificare le partizioni con pdisk – Archivio Tevac – Archivio TevacNewCS med NSLU2 – Dreamboxx WikiNSLU2-Linux – HowTo – ForcePowerAlwaysOn browseNSLU2-Linux – HowTo – HomePage browseNSLU2-Linux – Main – HomePage browseNSLU2-Linux – Peripherals – WirelessNetworkAdapter browsePLC Forum -NSLU2-Puliamo il nostro Ubuntu dai file inutili « ClsHackRemotely Manage Machines Using VNC — Debian AdminRipristino Firmware Linksys NSLU2 » . towerlight2002(dot)org .scarica NTRconnect Remote Access for Linux – Accesso remoto sicuro al tuo PCSetting up a Cross Development Environment on Debian GNU-LinuxSlackit.org – Slackware Linux Essentials – Gestione dei Pacchetti SlackwareSlugOS Downloadssourceforge.net zd1211 » homeThe MINIX 3 Operating SystemThe Viti family portal – Sito famiglia Viti – viti.tv – DownloadsUnix e derivati forum in generalewview 5.3.2 Debian Lenny Install Script – wview | Google Gruppiwview – Linux-FreeBSD-Unix-MacOSX Weather Station Softwarewview meteo linux – Cerca con Googlewview Site Directorycome si fa a cambiare i permessi alle cartelleInternational Journal of Biometeorology

ubuntu

comandi linux di test sistemarsyslog è necessario – it.comp.os.linux.iniziare Google Gruppisyslog_problemauso greplucapierfederici.it » Usare Mamp pt.2 (Tutorial)mysql – Archivio del forum HTML.it forum

vpn

recuperodati

Netkiller Linux Advanced _.pdf (Oggetto application/pdf)Montare partizioni NTFS su Debian | bixbi.it

doc

OPENLABS Benvenuti!comandi rete debianComandi a terminalenoip2 rendere eseguibile

macromedia

Media

microchip

microsoft

miei_siti

moodle

– Programmi de Kyuran – Software mobile per Windows Mobile Pocket PC e Smartphone[#MDL-5444] Import PowerPoint – Moodle TrackerBitNami MoodleBOL affiliazioneBrowse Project – Moodle TrackerCA – Ancona – 2009/2010&#58; II Tecnica Ziegler e NicholsCA – Ancona – 2009/2010&#58; SCORM/AICCcambiare stringheChinese READING or INPUT === THE cleaniest and Simple Ways!!! [Archive] – iPmart® forumCorso Demo delle funzionalità di MoodleCorso Moodle Features DemoCorso Moodlemoot2008Corso PHP.pdf (Oggetto application/pdf)Course backup – MoodleDocsCOVERTEC identifiez-vousDemo e Storico dei Corsi FADDokeos 1.8.5 Installation GuideDownloads – PocketPC – Divx Codec For Pocket Pcelenco forumFile extension M4Vforum unuversaleforumindirizzi pocketGame Downloads, Game Patches – FileFront.comHow to Configure NameVirtualHost in XAMPP’s Apache Server Ardamishttp–www.bestsecuritytips.com-wfdownloads+viewcat.cid+86.htmiscrizione_docenti.pdf (Oggetto application/pdf)Istituto Professionale di Stato Iris Versariistruzioniitaliano Aiuto Glossario moodle 1.6italiano Eliminazione link e logo di Moodle fine pagina di un temaLezioni On-lineMLE – Mobile Learning EngineMLE – Mobile Learning EngineMobisofia Live mobile as a life philosophy!Moodle – A Free, Open Source Course Management System for Online LearningMoodle Demonstration Amministrazione Aspetto Temi Selezione temaMoodle e il web 2.0 provaMoodle quattordicesima parte&#58; gestire i partecipanti a un corsoMoodle video How to upload and install ThemZa`s free Moodle templatesMoodle.org&#58; Modules and pluginsmoodlemoot2008 Tutti i corsiMysql 4.1.16 E MoodleNet4Voice NetworkPhilosophy – MoodleDocsPocket PC Techs – Accessories for Qtek 1010 3.5mm Stereo Headphone Adapter with Built-In Mic & Answer ButtonPocket PC Techs – Accessories for Qtek 1010 Qtek 1010 Power AccessoriesPocketPC Pocket PC Software and Freeware including games, themes. Lots of free warePocketPCFreeware Pocket e-Sword 3.0.1prontoRe&#58;Server Click &amp;amp; go! – I forum di lezionionline – Lezionionline – e-Learning dinamico per e-Prof dinamici! Tutorial Joomla e MoodleRicevuta ordine di Google Checkout DreamHost Web HostingSoftware – Pocket PC Usare pda come penna usbTV.Unimore – Il pianeta acqua nel continente agricolturaUsing Moodle JsMath-JsTex instead of mimetexUtenti_Moodle.pdf (Oggetto application/pdf)utility pocket pc 1010 – Cerca con GoogleVocescuola » Blog Archive » Come importare o ripristinare un corso in MoodleWeb Hosting by DreamHost Web Hosting Web Sites, Domain Registration, WordPress, Ruby on Rails, all on Debian Linux!Corso&#58; Demo delle funzionalità di Moodlesito demo moodle1TeX notation filter – MoodleDocse-learning a “La Sapienza” con MOODLEe-learning a “La Sapienza” con MOODLE&#58; Login al sitoEditing a quiz – MoodleDocsutilecorsocon slideItaliano&#58; Upload Files in Moodle_PPTMLE-Moodle&#58;YouTube – How to&#58; Create a Moodle Quiz – Simplified!YouTube – Make your Moodle course page look like a webpageYouTube – A quick way to enrol your students into Moodle groupsInserire Codice Embed in Moodle | Forum | A.e.R.For.A.33 Slide in ItalianoUsing Moodle&#58; auto login to moodle from http url

Mozilla Firefox

mysql

lucapierfederici.it » Usare Mamp pt.2 (Tutorial)mysql – Archivio del forum HTML.it forumphpBB • Languagessqlite3 A command-line access program for SQLite databases

nslu2

crosscompilare

download

lighttpd

meteo

meteohub

picpid

rete

sheeva

torrent

PrezziAN831 – Matching Small Loop Antennas to rfPIC(TM) Devices – Application Notes – DetailsAqui, Todo en Microcontroladores Pic – PBP, Micro Code Studio con ICProg – Pic Basic Pro y ProtónBasic Linux CommandsBasicforPICMicrocontrollers.pdf (Oggetto application/pdf)Compilare con Debian (e Ubuntu) « pollycoke &#58;)Corso di programmazione in MYSQLDavis Vantage Pro on Linux — From curtronics.com by Curt BlankDebian — PacchettiDebian — Package Search Results — lighttpdDebian Net-Install How-ToDebian on a Slug&#58; Or how a Slug made friends with a GNU and a Penguin LG #138Debian on NSLU2&#58;dnsdebian verifica samba attivo – Cerca con GoogleDynDNS.com – Support — Knowledge Base — Using ddclient With DynDNS ServicesDynDNS_nlsu2Error installing Lighttpd debianHELPfisertek_c_linguaggioforumFEforumimportanteGeneral Purpose Parallel Port Access Driver InstallationGestione dei pacchetti – GURIGlobalScale Technologies – Electronic Manufacturing ServiceHardware Compero Upgrade Forumhome_nslu2http–www.laurtec.com-Italiano-Tutorial-C18%20step%20by%20step-C18%20step%20by%20step.pdfhttp–www.lextronic.fr-P1351-starter-kit-xbeestk1.htmlhttp–www.meteobrallo.com-pmwiki.phpn=Main.AlcuniCennihttp–www.sistemistiindipendenti.org-pdf-ntpd.pdfieforum Problemi con PICBasic PRO e USBimportante per le reti debianimportante per partire debian su nslu2Installare e compilare rtorrent su debian lenny i386 pc e arm Nslu2 ..«¿© CrôCcòBi$çöTtò ®¿»..Installare e configurare Samba « Guida UbuntuInstallare LAMP su debian ubuntu ovvero come installare apache php mysqlinstallare_amule_su_synology_rev3.pdf (Oggetto application/pdf)IpkgFind&#58; Your familiar search engineItalian NSLU2 and PlugComputer forum • Leggi argomento – Cancellare UNSLUNGItalian NSLU2 forum jtagItalian NSLU2 forum • Leggi argomento – Testare le porte…Italian NSLU2 forum • Leggi argomento – Unslung appena installato e ora?Italian NSLU2 forum • screenItalian NSLU2 forum • Visualizza forum – UnslungItalian NSLU2 forum •Sempre utile la serialelezione 1Linksys NSLU2 -importanateLinux Geeky GadgetsLinux robot plays frenetic clarinet – News – Linux for DevicesLinux, il meglio del web » Programmazione – Guida a DebianLogo’s Blogwebcamlsof -i duepunti80Man page of DPKGmanuale nslu2Marvell Plug Computing Pc microscopici e ecologici – Hardware Mobile ForumMarvell SheevaPlug – Tiny Linux Power Plug PC Geeky Gadgetsmarvell SheevaPlug Development KitMauro Laurenti – C18 step by stepMicrochip Technology User ForumsMicrochip Technology User Forums1MicroCode StudioMPLAB ICD 2 USB Device Driver InstallationMPLAB ICE 4000 USB Device Driver InstallationMPLAB PM3 USB Device Driver InstallationNative build of wview 5.x on NSLU2-SlugOS 5.3 – wview Google GruppiNSLU2 Beta 2 -> Etch 4.0 upgrade?NSLU2 Debian « Guida UbuntuNSLU2 e Debian, prove sul campo | News varie | NewsNSLU2 Guides&#58; mysql phpmyadminNslu2 vpnnslu2_sambaNSLU2-Linux – Debian – TroubleShooting browseNSLU2-Linux – Debian / TroubleShooting browseNSLU2-Linux – Debian /x remotoNSLU2-Linux – DebianSlug /scompattareNSLU2-Linux – HowTo – ForcePowerAlwaysOn browseNSLU2-Linux – HowTo – ForcePowerAlwaysOn browseNSLU2-Linux – Info – WhatPeopleAreReallyUsingTheirSlugsFor browseNSLU2-Linux – Site / Search browseNSLU2-Linux &#58;elenco fileOpenK8055Outils de Développement Outils de DéveloppementpicPIC partendo da zero Programmatore PICPicbasic Pro v2.50 – SonsivriPLC Forum – Progetti On-line Main – Home PagePLC Forum – Progetti On-line | Main / Upgrade Del FirmwarePLC Forum &#58;ipkg buonoiPLC Forum -NSLU2-Pogoplug – Buy NowPrime impressioni su Nslu2 &#58; ..«¿© CrôCcòBi$çöTtò ®¿»..programmatore errori picboy 2003 – Cerca con Googleradlib – unix/linux/*BSD Rapid Application DevelopmentriduceusodiscoememoriaSito web Debian in altre linguesorgenti mysql nslu2 debian – Cerca con GoogleSqliteDBOpen -usr-local-etc-wview-wview-conf.sdb failed could not find driver – wview Google GruppiStart and stop samba on DebianThe Debian GNU/Linux FAQ – Gli strumenti di gestione dei pacchetti DebianTXLC-XXX-LR-S RF remote control transmitter modulesUnix e derivatiUntitledUpgrading Debian&#58;update e upgradeUSBusermngmtUtilizzare il vecchio telefonino come telecontrollo GSM L’Elettronica Open SourceVelleman Projects • View topic – K8055 Source for the PICView log files in Ubuntu Linuxvpnvprorunstate retrying archive record… – wview Google Gruppiwview 5.3.2 Debian Lenny Install Script – wview Google GruppiVoceSuIP.com • Leggi argomento – Nuova Sezione NSLU2

office

orcad

pda

photoshop

Creiamo un sito con Dreamweaver e PhotoshopYouTube – Photoshop/Dreamweaver CS4 Tutorial&#58; Slicing images for navigation barlungo Il canale di UPGRADELabamtlib – Cerca con Googlephotoshop tutorials Super Tutorial 2 pt3 building a webpage with Photoshop and DreamweaverRealizzazione del layout | Guida Grafica web con Photoshop CS | Grafica.HTML.it

PHOTOSHOP

Adobe Photoshop Cs5 [ITA/MULTI] – DownloadsA | dafont.comFont Download – Thousands of Fonts!

php

phpbb

phpBB • LanguagesAgopunturaBio-Explorer, Quantum Electro Dynamics(QED) in medicinahttp–www.galeazzi.info-files-agopuntura-CORSO_AGOPUNTURA.pdfhttp–www.meri-med.it-doc-MeccanicaBiofisica.docProtocollo della Salute Naturale – per tutte le malattiephpBB.it La risorsa Italiana • Leggi argomento – [phpBB2] Creazione gruppi e assegnazione permessiAdvanced Search – Joomla! Extensions DirectoryDocMan per Joomla un promemoria…Pagine In Rete – DOCMAN-Aggiunta campo di testoMehdi’s Miscellaneous Stuffdocman 1.4.0. e joomla 1.5.14(risolto)

pic

Preferiti portatile

progettiel

C.S.LX734 lampeggiatore con 2 diodi led – Elettronica Hobby Componenti elettronici

compinenti kit

Mapa del sitio – Foros de ElectrónicaWelcome to the OpenEEG project

scaldascuola

Demo introduttiva IE7Internet Explorer – HomeMarketplaceMicrosoft At Home

radio

Italian radio stations streaming live on the internet – Listen onlineC’est Magnifique – Cole Porter | www.deezer.comHere’s That Rainy Day – Benny Goodman | www.deezer.comAllegro Un Poco Sostenuto – Hamburg Symphony Orchestra | www.deezer.comClare de Lune (guitar) – Various Artists | www.deezer.comProgetto Radio Gateway – Stazione di radioamatore IK1XHTArduino radiosonda

reti

Accedere remotamente al proprio PC (in sicurezza) – Desktop Remoto di Windows XPAuthPro Login, password protection and membership management automation for your websiteCJB.NETCollegamenti Cyber MethexisCos’è ICTv ICTvdesktop remoto [Archivio] – Hardware Upgrade ForumDynDNS — Account — Create AccountDynDNS.com – My Account — Host Services — SettingsEntrare nel PC su rete Fastweb dall’esterno!gestione remota alice ip dinamico – Cerca con GoogleHow-to gestione remota del proprio computer – Hardware Upgrade ForumPSP – Wipeout hack – browser made easy w-moops Games Tech-RecipesRegistrazione domini registra il tuo dominio in Europa con RegisterremotiRudimenti di TCP-IP v4Schede di Rete ethernet usb confronta modelli e prezzi schede di rete ethernet usb. – ShoppyDooTutorial VNC+dyndnsUltraVNC SC (SingleClick)vnc no tastiera no monitor – SlackwareItalia.orgvnc per slackware[reti] Installare Un Dns Locale Da Usare Col Browser Di Wipeout Pure – Sony» Creazione di più server con xampp – Pagina 2» Finanziaria 2007 a chi spettano le detrazioni al 55%» Un segnalino su google Maps spostabile con aggiormento AJAX delle coordinate satellitari#comment-10112593.145.193.54 – Live Searcha2 — Pacchetti Debian APTAmazon.com Password AssistanceAn NSLU2 (Slug) Reminparlareapt-get.org Unofficial APT repositoriesBayDownloads.com – Downloading Adobe Photoshop CS3 Crack tested…Benvenuti su MSNcantinadeilibri.homelinux.netCompilare con Debian (e Ubuntu) « pollycoke )Debian NSLU2 – no image or html gen – wview | Google GruppiDebian plutoTutorial -cerca fileDebian-News.net – Debian NewsDOMINIO BASE 1 annodownload from Guru3D.comDynDNS.com – My Account — Host ServicesDynDNS.com – My Account — My ServicesEnergy Saving Lamps – Photometry AppletFare Elettronica – Fare Elettronica ChannelFirebug &#58;&#58; Componenti aggiuntivi per FirefoxFirebug cronologia delle versioni &#58;&#58; Componenti aggiuntivi per FirefoxForum meteo MeteoNetwork – Meteo.it – Cerca i risultatiFoxmarksgdlib downloadGestione di una connessione RS232Google Maps API Concepts – Google Maps API – Google CodeGoogle Sites7Google Sites – Siti web e wiki gratuitiGoogle Sitesgrande guida debiannce.it.pdfHome page di Microsoft WindowsHotel Roma – Best Western Best Western Globus Hotel – Tariffe e prenotazionihttp–www.arpa.piemonte.it-upload-dl-Pubblicazioni-Controllo_ambientale_degli_agenti_fisici_dal_monitoraggio_alle_azioni_di_risanamento_e_bonifica-Contributi-2_12_Poli.pdfhttp–www.eurodns.com-mk=goitalianrugeneric08http–www.rimax.net-Drivers-MANUAL%20IP%20CAM%207100%20ITALIAN%20.pdfhttp–www.torrevado.info-apicoltura-apicoltura1.pdfhttp–www.wviewweather.com-vpro-docs-VTECHREF.txtIndex of -debian-cd-3.1_r2-i386-iso-dvdIndex of /debian/pool/main/r/resolvconfIndex of -vpro-docsInstalling Samba Linux-Windows networking – NewbieDOCItalian NSLU2 forum • Leggi argomento – LAMP ServerKataweb.it – Blog – DalTramontoAllAlba (Giornale Reale di Sundance Kyd) » Blog Archive » Warner BentivegnaLa guida InternE&T IBM 2.Le basi tecniche – ILa parola magica Compilare in Ubuntu serverLa parola magica Compilare in Ubuntu serverLinksys NSLU2+picLogo’s BlogdaremotoLogo’s BlogtorrentMeteopassione – dove la meteopassione si sente!Microsoft ItaliaModificare la DocumetRoot di Apache – Baglieri.itmy.foxmarks.commy.xmarks.comNetMedia SitePlayer SP1 – Cerca con GoogleNews P2P e Web – Software Zone ForumNslu2 Debian —samba pulsanteBlogs, Immagini, e altro in WordPressNSLU2 e Debian, prove sul campo News varie NewsNSLU2-Linux – Debian – TroubleShooting browseP3X-989PC GAMEPAD CONVERTER PS2 TO PC-USBPen Stick Usb 2.0 Tv Hybrid Decoder Digitale Terrestre – Tv Tuner Analogico – Acquisizione Video – Teletext – TelecomandopicPIC16C84, AVR & 68HC11 MICROCONTROLLER DEVELOPMENT TOOLSPICSTART PlusQual è il mio IP Qual è il mio indirizzo IPRegistrazione dominioRidurre i servizi Debian – samba utileRisultato della ricerca immagini di Google per http–212.189.172.195-corso-labsitel2-schpro-pid.gifSamba e i suoi servizibuono per debianSatellite Finder – Dish Pointing Calculator with Google Maps DishPointer.comScarica estensioni per i segnalibriSchematic & PCB softwareSign Up for the Google Maps API – Google Maps API – Google CodeSitePlayer Home PageSSH – TimpanoWikistation-drivers le site de drivers, bios, firmwares, ect…Tennis Montecchio Maggiore PagineGialle.itterminale « L’informatico inespertoTEST CONNESSIONE test velocita connessione internet adslThomas GrilloTMA1205S Datasheet pdf – DC-DC Converter – Traco Electronic AGtraduttoretuttovolume Salva tutti i video che hai guardato su internet prelevandoli dalla cache del browser.Urologia VeronaVideo La VarroaWelcome pagewview Google GruppiYouTube – Ludovico Einaudi – I Giorninozioni_elementari_sulle_reti.p4.pdf (Oggetto application/pdf)nozioni_elementari_sulle_reti.p2.pdf (Oggetto application/pdf)LNX_RETE_2011-02-28.pdf (Oggetto application/pdf)IP Address Geolocation to Identify Website Visitor’s Geographical LocationHotel Roma – Best Western Best Western Globus Hotel – Tariffe e prenotazioni

riviste

Société Française d’Hydrologie et de Climatologie MédicalesMOTORI A COMBUSTIONE ESTERNA [Archivio] – EnergeticAmbiente.itstirlingAmbiente Risorse SaluteEdizioni Scienza e Governo – Ambiente Risorse SaluteMotore StirlingOnda sonora – WikipediaProgetto M.E.G. – Home –Punto C Free EnergyTACTermoacustica e tecnologie termoacusticheA Simple Lamina Flow Enginehumcooler IndexEnergoClub Onlus, per la riconversione del sistema energeticowww.Promiseland.it • Leggi argomento – Termoacustica

cavita

Tutorial Indesign&#58; Come Imparare Ad Impaginare Con Indesign – La Guida Completa Ai Migliori Articoli In ItalianoGambas-it.org » Il resto del PinguinoProfilo utente | ELETTRONICA OPEN SOURCE

sat

serrano

sheeva

Italian NSLU2 and PlugComputer forum • IndiceNew Plugger How To – PlugWikiimportantepartenzaSheevaPlug – Guide@Debianizzati.OrgUbuntuhublog SheevaPlug as a Torrent Seed Boxclassi sdftp.osuosl.org immagine lenny 5.04Index of -~joeyh-d-i-armel-images-daily-kirkwood-netboot-marvell-sheevaplugleggere attent.Installing Debian To Flash – PlugWiki

ftp

[Gelöst] USB-Disk, Debian Installation und LVM — &quot;waiting for root file system&quot; – SheevaPlug SheevaPlugDebianEeePC-HowTo-Install – Debian WikiIndex of /~joeyh/d-i/armel/images/daily/kirkwoodUBOOT/sheeva/ Directory Listinginstall.it.pdf (Oggetto application/pdf)Install wview on a WD MyBook World Edition – wview Google GruppiMarvell Plug Computer 3,0 aggiornato con Wi-Fi, Bluetooth e Storage interno »My Digital LifeSheeva Plug Wiki [sheevaplug&#58;general]PlugPBX ProjectDead Sheeva&#58; ‘Bad Magic Number’ or ‘fsck something something superblock’Headless X ServerPlugApps Forum • View topic – Biggest dork (or, what are you doing with your Plug)?Sheeva Plug – MeteoNetwork WikiPrint Page – U-Boot environment variables for Sheevaplug factory versionDebian, Errore &#58; NO_PUBKEY AED4B06F473041FAeos installation_manual.pdf (Oggetto application/pdf)http://computingplugs.com/files/pkglist.txt

sincronizza

Welcome to the Frontpage

salvadisco

trik

How to… – The home of Spybot-S&D!HP Registration Italy-Register ProductMarco Vergagni’s Blog » Condividere segnalibri su internetMSN.comScheda relè ethernet web server RJ45 PLC Progetti HW SW progettazione e realizzazione hardware e software schede elettroniche pTicinonews – Radio3iii – Teleticino – Telegiornale – TG del 26.09.08tightvnc

Siti Web Microsoft

skype

solare

MEMBRANA RADIANTE – CADIF MEC3000 – THERMODIF ICscambio sul posto di energia fotovoltaica secondo il nuovo conto energiahttp–www.ecorete.com-Sito Ufficiale del Credito Cooperativo — Iniziative BCCConto Energia finanziamenti pannelli solari per vendere energiacontributi fotovoltaico piemonteNWG SPA – Impianti FotovoltaiciPiemonte Fotovoltaico – Come funzionaPiemonte Fotovoltaico – Home pageSOLAREXPO & GREENBUILDING Delivering a sustainable futureTermocoppie per misura temperatura sottosuolo – Geotermiahttp://www.gse.it/Pagine/PortaleApplicativodelGSE.aspxbollettino-ingegneri.pdf (Oggetto application/pdf)quarto conto energia_firmato.pdf (Oggetto application/pdf)Rotary Encoders / Magnetic Encoders / Products / Home – austriamicrosystems AG

sparsi

sparsi1

stirling

storage

tesine

tonido

utility

salvadisco

trik

How to… – The home of Spybot-S&D!HP Registration Italy-Register ProductMarco Vergagni’s Blog » Condividere segnalibri su internetMSN.comScheda relè ethernet web server RJ45 PLC Progetti HW SW progettazione e realizzazione hardware e software schede elettroniche pTicinonews – Radio3iii – Teleticino – Telegiornale – TG del 26.09.08tightvncDownload Angry IP Scanner from SourceForge.net

c_stampati

streaming

NetDrive » www.ammassi.itAngry IP scanner – plugins

viaggi

vlc

wikypedia

wview

elimina pidfix to htmlgend zombies – wview Google Gruppiforumscript da news groupsheeva____Tutorial – wview on the Sheeva – wview Google Gruppivpconfig_forumwview Google Gruppiwview – Linux-FreeBSD-Unix-MacOSX Weather Station Softwarewviewweatherforumwview User Manual cross utileopenplugHOWTOwview on the SheevaPlug – Part 1 of 3 – YouTube

xmarks

youtube

zener

dload setup-home-edition.exehttp–www.dodotronic.com-files-Wavematrix.pdfSu-Jok-HOME Download – setup-home-edition.exeYouTube – Introduction To Voice DialogueYouTube – Kirlian Photography ExplanationYouTube – Ryodoraku diagnostic method of 24 points

730

acustica

alcuino

android

apple_ipad

armeno

Comune di ARMENO (NO)Armeno (NO) – Italia&#58; Informazioni

artisteer

Artisteer Product License Information

blender

blip

Calcolatrice con Labview parte primaCalcolatrice con Labview (parte prima)

c

celle_photo_organiche

centraline

malattie

maria

meridiane

mervin

Moto laminare e moto turbolentoFisiologia del cuorestoria dello sfigmomanometro, histoire du sphygmomanomètre, history of sphygmomanometer,Korotkoff Blood Pressure Sights and Sounds on VimeoI suoni nella misurazione della pressione sanguignaNikolai Korotkov – Wikipedia, the free encyclopediaRegime laminare – WikipediaRegime turbolento – WikipediaFile&#58;Korotkow deutsch.png – Wikipedia, the free encyclopedia

michele

microchip_ordini

nas

Nuova cartella

nuova elettronica

pannellorotante

pierpaolo

ElectroYou&#58; elettronica, elettrotecnica, impianti elettrici, automazione, pic, plc

pier

premiere

pt100

AN-1559.pdf (Oggetto application/pdf)

pwm

Arduino sketch for high frequency precision sine wave tone sound synthesis | Adrian Freed&#58; arduino, oscillator and open sound control expertise

quadricotteri

R

The R Project for Statistical Computing

radiosonda

rivista

rospo

scuolaserale

seriali

sottocoppo

LASTRE IN POLICARBONATO ALVEOLARE AKRALUX ONDA | AKRAPLAST SISTEMILASTRA ONDULATA PLEXIGLAS XT HEATSTOP® LASTRE ONDULATE | RÖHM ITALIAPANNELLO DI COPERTURA IN LAMINATO PLASTICO TRASLUCIDO POLITEC STD | POLITEC POLIMERI TECNICI S.A.

stepper motor

stgraph

STGraph – Home pageFonera SIMPL disponibile « Dema blog

tennis

termocoppie

thermae and spa medicine

thermae_rivista

European Journal of Integrative Medicine – Home

tophost

Ubuntu and Free Software links

ultrasuoni

usato

VM

vnc

vpn

WindowsXP VPN ClientVisivaGroup – Installare e Configurare una VPN con OpenVPN

webcam

weibo

wireless

wordpress

Black Dragon Curls Around China’s Heart, 1cadfamilyChi sono – Mauro Alfiericreate part PSpice_CaptureGuideOrCAD.pdf (Oggetto application/pdf)forma strana di schedajcemediaboxLATEX Facile – Guida all’UsolauraplecoQuando si può andare in pensioneutile anche termico irragiamentosolare.pdf (Oggetto application/pdf)VeryPDF PDF Password Remover – PDF Recovery to remove PDF Owner Password and decrypt PDFWindowsXP VPN Server

biblioteche

Download Book Collector, the home library software from Collectorz.comElenco aree e biblioteche – Librinlinea – biblioteche piemontesi onlineCome guadagnare vendendo libri usati su Amazoncopertina libri | eBayCome scaricare i libri da Google BooksStoria delle letterature di tutto il mondo – WikipediaLibri Usati&#58; Compro Vendo Libri – il mercatino del libro usato&#58; compra e vendi testi usati9771129085155 – AbeBooksle letterature del mondo Books, Book Price Comparison at 130 bookstoresAdvanced Book SearchDownload Isbn Database Software&#58; Library ISBN Barcoder, BookCAT – Book Database, ISBN Search And Lookup Multiple Books Software, …i promessi sposi – Google Search_______Speciale&#58;RicercaISBN/3856665412 – TerritorioScuola Enhanced Wiki ItalianoOPENISBN Project&#58;Download Book DataGetting Started – Google Books API Family — Google DevelopersUsing the API – Google Books API Family — Google DevelopersVomito Ergo Rum&#58; BookCat&#58; database ebook via p2ptutte le lingue hsk

omeka

xml

manuali

Convertire dati in numeri | Tutorial MS ExcelGuida alla Bibbia – Google Books

suono analisi

Joomla Installation Resources – Joomla! DocumentationC to C embedded – Is there a way or tutorial for converting Arduino code to C code? – Stack Overflow

pianocitymilano

colori

&#58;&#58;&#58;&#58;&#58; IL COLORE &#58;&#58;&#58;&#58;&#58; Fisica &#58;&#58;&#58;&#58;&#58;&#58;&#58;&#58;&#58;&#58; IL COLORE &#58;&#58;&#58;&#58;&#58; Fisica &#58;&#58;&#58;&#58;&#58;

componenti

PIC16C84, AVR & 68HC11 MICROCONTROLLER DEVELOPMENT TOOLSTMA1205S Datasheet pdf – DC-DC Converter – Traco Electronic AGSensor signal conditioner circuit using multi-functional signal conditioning circuit based on PRTD AD693 – Free Electronic projects & 8085 projects

concorsi

concorsortempmoderni

concrete

corsionline

Nota musicale – WikipediaIncontri ravvicinati del terzo tipo – Wikipedia(Close Encounters)The Mothership Arrives! Part 1 of 3 – YouTubeFree Computers Video Lecture courses

db

dcf77

debian

amule installaInstallare il gestore pacchetti ipkg su DS 107+ andypanixipkg findItalian NSLU2 forum • Leggi argomento – Guida Installazione Amule e Amuleweb in UnslungItalian NSLU2 forum • Leggi argomento – repository e-o pacchetti precompilatiLa guida Debian – Gestione dei pacchetti in DebianPagina di stampa – [HELP] Linksys NSLU2Port Forwarding for the Dlink DI-524Debian — Cancellazione dalla mailing listDreambox.it – Guide Nslu2 E Dreamboxwviewweather.com IndexIndex of -feeds-unslung-crossTrying to run NewCS on a NSLU2 running OpenWRT 8.09 with 2.6.26 kernelDREAM-OF-PIRATES.to CCcam Faq zu NSLU2 und CCcamOther sharing receiversmanuali_Index of -doc-manuals

slugos

Debian — Liste di messaggiAptitude – Guide@Debianizzati.OrgTutorials-Sed – Debian Wikicross compilazione arm nslu2 – Cerca con GoogledebianfaqMau Blog pulire schermoMyth On NSLU2 – MythTVScratchboxScratchbox – installdocScratchbox – tutorialSetting up a Cross Development Environment on Debian GNU-LinuxDebian — Notizie — Rilasciata Debian GNU-Linux 5.0-home-g7 » LennyNSLU2-crosscompilazione

wireless

WiFi – Debian WikiDebian 5 (lenny) con ScreenshotsDebian-armel 503Installare LAMP su debian ubuntu ovvero come installare apache php mysqlDebian-NSLU2 Downloads__questoqui

ftp_server

debian_zipInstallare LAMP su lampCommonErrorMessages-ArgumentListTooLong – Debian WikiUsare Aptitude al posto di APT « pollycoke )Uso avanzato di Debian GNU-LinuxRipulire la debian,e’ possibile Debianitalia.org (Beta platform)DebianEeePC-HowTo-Install – Debian Wiki

delmissier

dlink

dottorato

476_84ADI – Associazione Dottorandi e Dottori di Ricerca ItalianiAetnaNet – ASPETTATIVA RETRIBUITA PER DOTTORATO DI RICERCADelibera 03-2004 n.3dipendente pubblicoDottorato di Ricerca e insegnamento nella ScuolaFAQFAQ Procedure di pagamentohttp–www.unimi.it-cataloghi-divsi-regolamento_dott.pdflallaLegge 13 agosto 1984, n. 476 – Norma in materia di borse di studio e dottorato di ricerca nelle Università.

dreamhost

driver

dropbox

ebay

elettrotecnica

Som.pdf (Oggetto application/pdf)Elettrotecnica.pdfEDUTECNICA risorse gratuite di Elettrotecnica ed elettronicaA0502.pdfparametri ibridi Amplificatori a BJT – 08-Amplificatori_a_BJT.pdfGeneratori_dipendenti.pdfspice pspice generalita e dimostrazioni th no milinverter unibo grandionline esercizi dinamicaalexios ELeTTRo1_TeoRiamazzanti pilotatiunicagliari Elettrotecnicanettuno palumbo YouTubefasori palumbo- YouTubezanichelli PSpice – PSpice.pdfcrema nodale el1_a_06_2p.pdfCollege Linear Algebra – Free eBooks downloadtrasf_parte_1Forma trigonometrica ed esponenziale dei numeri complessi &#58;&#58; OpenProf.comPremoli-200esercizi.pdftemirisolti.pdfUntitled – libromiano.pdfSito Personale di Sandro Petrizzelli – Materiale didattico per Ingegneria Elettronicagenio.pdfElettrotecnica – Biporta.pdf, giratorini ,trasformatorimatrice t con trasformatore,esercizi,Portalelectro – appunti di elettrotecnica per ingegneria – Doppio bipolo – Esercizio 1Microsoft Word – RETI_IN_REGIME_STAZIONARIO4.doc – RETI_IN_REGIME_STAZIONARIO4.pdfSched-06.PDF – Sched-06.pdfMicrosoft PowerPoint – EL1-Regime Stazionario.ppt – Elettrotecnica1_EO-EL.pdf() – determinante_rango.pdfMicrosoft Word – doppi-bipoli-ver1_1-2009.doc – doppi-bipoli-ver1_1-2009.pdfPolinformatici | PoliMi | Appunti universitariMicrosoft Word – SoluzioniTemiEsamiAA0910.doc – SoluzioniTemiEsamiAA0910.pdfElettrotecnica&#58; Esercizi svolti – Aldo Canova, Maurizio Repetto, Giambattista Gruosso – Google LibriElettrotecnica | easyPOLIben fatto,premoli,dispense.dvi – CircuitiLineari1.pdfMicrosoft PowerPoint – DoppiBipoli.ppt – Doppibipoli.pdfCorso di Elettrotecnica – Lezione 17buono per libro,Matrice di trasmissione (matrice catena) for 02-doppi-bipolitrsformatore, transistore, accoppiati,Lezioni di Elettrotecnica – capitolo6.pdfbipoli, matrice t,Capitolo 4.pdf – Capitolo4.pdfgiratore, fatto bene, induttore con giratore,Elettrotecnica 1&#58; Reti elettriche e magnetiche, introduzione alla … – Cesare Mario Arturi – Google Libriamplificatori operaionali, fatto bene, trasformatoregraglia_e – graglia_e.pdfesercizi matrice t,testo.pdfparametri r, g, tMicrosoft PowerPoint – 05-nporte-resistivi.ppt – 05-nporte-resistivi.pdfottimo, tutti esercizi poli,LEZIO_13 – LEZIO_13.pdfterremotussimulatore, Circuit Simulator AppletXCircuitmatlab Support – Supported and Compatible Compilers – Release 2014b – MathWorks Italiamatlab Lab2.ppt – Lab2.pdfmondovi matlab LABORATORIO DI CALCOLO CON MATLAB – calcolo.pdfMultiSimmultisim Ing. Salvo Beninato — Utitilà Multisimmatlab manuale_MATLAB.pdfMathlab – Mathlab.pdfpier4r – appunti Teoria dei Sistemi45 pagine parametri R ecc… Microsoft PowerPoint – 02-doppi-bipoli.ppt – 02-doppi-bipoli.pdfquestionario Modulo di valutazioni dei laboratori di Elettrotecnica (Risposte) – Google Sheets

elettrovalvola

elicotteri

enel

eos

fastweb

fda

Directory FTP -outgoing-Alberto.Leva- in ftp.elet.polimi.itfda Materiale didatticohttp–www.dsi.unifi.it-users-chisci-fda-Esercitazioni-appuntifda.pdfPagina del Docentefemtec_indice argomenti domandefemtec_italiano_Translations for Joomla – Joomla! Extensions Directoryfemtec_linguaHome – Joomla! Extensions Directoryfemtec_pdf_visualizzaPhoca PDF – Joomla! Extensions Directoryfemtec_risposta ufficiale pdf non va_ker Joomla! 1.6.x Bug Tracker Modifica Tracker articolojoomla_italiano_imparaEsempio di aspetto di una sezione blog (sezione FAQ)femtec_pdf_soluzione_adottataandorra_femteconlineHands-on PID autotuning&#58; A guide to better utilisation — IFAC – International Federation of Automatic ControlROCCO lez3.pdf (Oggetto application/pdf)simulink fda Fdabolzern cartasemilog.pdf – cartasemilog.pdf

FDE

http://www.electroyou.it/search.php?cx=016198727954276891950%3A8ycmu5kocyg&cof=FORID%3A10&ie=UTF-8&q=potenza+&sa=Cerca#913matlab 11_Potenza_in_regime_sinusoidale.pdf (Oggetto application/pdf)Microsoft Word – Esercitazione AC_2009 – Esercitazione3_AC.pdfDipartimento di Elettronica ed informazione – Intranet

FE

femtec

femtec_materiali

femtec_indice argomenti domandefemtec_italiano_Translations for Joomla – Joomla! Extensions Directoryfemtec_linguaHome – Joomla! Extensions Directoryfemtec_pdf_visualizzaPhoca PDF – Joomla! Extensions Directoryfemtec_risposta ufficiale pdf non va_ker Joomla! 1.6.x Bug Tracker Modifica Tracker articolojoomla_italiano_imparaEsempio di aspetto di una sezione blog (sezione FAQ)femtec_pdf_soluzione_adottataandorra_femteconlineBecoming a member » Membership » British International Spa AssociationDaniele Salamina’s Blog – Web Marketing, Tecnologia, Internet e BlogASA – Studio AlbaneseCronologia – PayPalDati dei passeggeri – eDreamsebay.com.my D-Link DSM-G600 Wireless Network Storage Enclosure (item 370099933733 end time Oct 27, 2008 091700 MYT)http–www.euroedizioni.it-Norme-norma.aspid=6I candidatiLa Repubblica.it » Homepagemy.foxmarks.comNews – Chiedilo a Lalla – Orizzonte Scuola.it – Chiedilo a Lalla – Consulenza Onlinepermessipresto – Dizionario Inglese-Italiano WordReference.comprofmarzi Profile, profmarzi Details – FileFront.comsondaggio – Dizionario Inglese-Italiano WordReference.comTV in diretta webTV gratis online StreamingVia Walter Tobagi 13, 20068 Peschiera Borromeo Milano, Lombardia, Italia – Google MapsViaggi APPARTAMENTO, MONOLOCALE, AGRITURISMO, QINGDAO, CINAWindows Live HotmailUniMI – Centro di Ricerche in Bioclimatologia Medica, Biotecnologie e Medicine Naturali – Bioclimatologia

filtri

30 Tools di Simulazione Freeware – ElectroYou

flsh

fonera

fotovoltaico

Modulo fotovoltaico – Wikipedia4 noks IntellyGreen PVmonitorare produzioe enel impianto fotovoltaico – Cerca con GoogleINCENTIVI QUINTO CONTO ENERGIA IMPIANTI A CONCENTRAZIONE 2012-2013-2014&#58; TARIFFA ONNICOMPRENSIVA E PREMIO ENERGIA AUTOCONSUMATA IN SITO, REQUISITI FATTORE DI CONCENTRAZIONE 10 SOLI – CONSULENTE-ENERGIA.COM5° conto Energethics&#58; Conto Energia – progettazione e installazione di impianti fotovoltaici -pannelli fotovoltaici- finanziamenti fotovoltaico – incentivi fotovoltaico

foxmark

frasi_tradotte

fritzing

ftpserver

google

htc android

How to install Android 2.3 Gingerbread on HTC HD2? (Video)

iis

indesign

ingranaggi

inseguitorisolari

www.FiserTek.it • Leggi argomento – Inseguitore solare, problema dimensionamento motori

inverter

io

ipad

YouTube – Xcode iPad SDK Tutorial – UIPopoverViewControllerTutorial Programmazione iPhone – Come generare un numero (realmente) casuale e mostrarlo a videoXcode with the iPhone SDKApple – Education – Mac, iPod, iPad e iPhone per l’apprendimentoI 32 migliori siti dove trovare eBooks gratis, in italiano, by Generazione-Internet.com

ipcam

Broadcast from an IP cameraWebcam Alternative (virtual web-cam)&#58; How to do webcamming without having a web cam? – Audio/video stream recording forumsConnecting to an Arbitrary MJPEG IP Camera with IMAQdx Using Third Party Virtual Camera Emulator – National Instruments

ipv6

SOLUZIONE IP PUBBLICO FASTWEB « JOHNBRAKES BLOGWhat is my IPv6 Address?The KAME projectCome avere un indirizzo ip pubblico gratis con fastweb ed ubuntu « V4LD4NErrore caricamento paginaJOHNBRAKES BLOGThe Second Internetgogo_dc_0008_gogoCLIENT_with_home_access.pdf (Oggetto application/pdf)v6 in Italy – gogoNETGuida all’Installazione dell’IPV6 GratisBruno Ciscato’s Page – gogoNETCome avere un ip pubblico con qualsiasi ISP (Fastweb, Telecom, Tiscali ecc ecc) « Vincenzo Ampolo^2 WeblogOttenere un IP pubblico con connessioni nattate | My Linux LabHurricane Electric IPv6My Page – gogoNETping6 su profmarzi.Tracing Tools – IP Tracing and IP Ping toolWhat is my IPv6 Address?Come ottenere gratis un IPv6 pubblico da utilizzare con Fastweb | Il Blog di Morgan(ino)SheevaPlug&#58;Ubuntu Router/FirewallIPv6 PingganomivededafuoriPlaying around with IPv6 on Linux and Freenet6 LG #184netstat Server Web Apache2 (httpd2)test da fuori IPv6 Pingvps Ip pubblico + VPS a meno di 5€ al mese | techNoDin.orghowto_apache_php.pdf (Oggetto application/pdf)con morganinino funziona l’ipv6 freenet6Come abilitare l’IPv6 in Windows XP – Geekissimoanyweb tutorials – Linux 6to4 gatewayCombine Tunnelstunnel Come creare una rete IPv6 con Tunnel Broker | oneADSLIPV6 Go6 Mini-HOWTOlanziani Tunnel IPv6 Step by Step | Lanziani BlogforumciscatoDiscussion Forum – gogoNETportforwarding portfw [Archivio] – Azzurra IRC Network Forumsixxs IPV6 Can Solve Port Forwarding and Double NAT issue Of SMARTBRO Canopy a Wireless Broadband ISP in the Philippines. – gogoNETrisposte ampoloGoogle Translatescan delle porteSubnetOnline.com – Online Port Scanner IPv6password per aiccu – Google Searchmanuale-tunnel-freenet6.pdf (Oggetto application/pdf)valdan+apache[NEWS]come avere un indirizzo ip pubblico gratis con fastwebtunnel????Free Dynamic DNS, Static DNS for Dynamic IP[8.050][BUG][FIXED] IPv6 SixXs Tunnel Broker client not running – restarted – Astaro User Bulletin BoardCITC_IPv6_Training.pdf (Oggetto application/pdf)IPv6 Tunneling over dynamic IPv4 (through NAT) – suggestions (Page 1) / Networking, Server, and Protection / Arch Linux Forumsimportante sixxs—–http://www.hyams.ch/index_htm_files/IPv6%20at%20home-pt4.htmSetting up an IPv6 Debian Lenny (or Squeeze) Gateway the Easy, Simple, Correct Way » Linux User Notesimportante Apache IPv6 Configuration&#58; Dual Stacked IPv4 & IPv6 Virtual Hoststunnel Setup of point-to-point tunnelleggere significato dei nomi http://www.ietf.org/rfc/rfc3056.txtstudiare ipv6Libri stampati, articoli, riviste online (misto)Pluto/HOWTOV4LD4N | Per nubbi da un nubbioFASTWEB – World IPv6 Day Tester

itis

joomla

k8055

kirlian

Home Page60+ Libri gratuiti su Linux « NicopiapacheAPT HOWTO – Lavorare con i pacchetti sorgenteAPT HOWTOCardsharing Gbox Cccam Server Card Sharing Dreambox Howto Tutorialcomandi Linux – Riga di comandocompero nslu2Debian on NSLU2Guida all’installazione di Debian GNU-LinuxGuida UbuntuHacking an NSLU2Hacking into the Linksys NSLU2_powerHelp…NSLU2 met CCcam + uNslung 6.8 of Openslug 3.10 – Sat4allHomepage of Peter Korsgaard Installing debian Sarge on a Linksys NSLU2http–www.meteobrallo.com-pmwiki.phpn=Main.InstallazioneWviewhttp–www.meteobrallo.com-pmwiki.phpn=Main.WebcamIndex of -debian-cd-3.1_r2-i386-iso-dvdInstallazione passo-passo di Debian 5 (lenny) con Screenshots « mikeOverIP~$Installing Debian on NSLU2Installing Debian__Italian NSLU2 forum • Leggi argomento – Guida Installazione Amule e Amuleweb in UnslungItalian NSLU2 forum • Visualizza forum – ApplicazioniLinksys NSLU2 « Andy’s BlogLinksys RMALinux USBManuali.it – Linux guide,manuali,articoliMini Server Modificato – PLC Forum – Forums automazione

mysql

NewCS med NSLU2 – Dreamboxx WikiNSLU2-Linux – HowTo – ForcePowerAlwaysOn browseNSLU2-Linux – HowTo – HomePage browseNSLU2-Linux – Main – HomePage browseNSLU2-Linux – Peripherals – WirelessNetworkAdapter browsePLC Forum -NSLU2-Remotely Manage Machines Using VNC — Debian AdminRipristino Firmware Linksys NSLU2 » . towerlight2002(dot)org .scarica NTRconnect Remote Access for Linux – Accesso remoto sicuro al tuo PCSlackit.org – Slackware Linux Essentials – Gestione dei Pacchetti SlackwareSlugOS Downloadssourceforge.net zd1211 » homeThe MINIX 3 Operating SystemThe Viti family portal – Sito famiglia Viti – viti.tv – DownloadsUnix e derivati forum in generalewview – Linux-FreeBSD-Unix-MacOSX Weather Station Softwarewview 5.3.2 Debian Lenny Install Script – wview | Google Gruppiwview meteo linux – Cerca con Googlewview Site Directory» Un server in casa da 100 euro » come se fosse antani

krpano

Adding PhotoOverlays – KML – Google CodeCrea gratis un Virtual Tour in 5 minuti! Crea da soloCreate a Virtual Tour – Afficher le sujet • Panophoto.orghttps–store.nodalninja.com-Hugin Tutorialslf348, Graphics Come creare foto panoramiche usando Hugin, Enblend e The Gimppanoguide Make your own stitchless panos using PTgui and krpano (Tips & Tricks Forum)

labview

lampadari

latex

http–www.ctan.org-tex-archive-info-symbols-comprehensive-symbols-a4.pdfLaTeX-Online-CompilersimonaMILANO,ITALY Weather[Risolto] Latex&#58; cosa installare?Plugin LaTeX per Gedit » Simple-Linuxschlasim’s ubuntu blogUfficio/Latex – Wiki di ubuntu-itGuIT – Gruppo utilizzatori Italiani di TeX e LaTeXUbuntu 9.10 “Karmic Koala” released – TeXblog – Typography with TeX and LaTeXThe MiKTeX Package Manager 2.7 on Ubuntu Linux 8.04 LTS (Hardy Heron) – TeXblog – Typography with TeX and LaTeXMiKTeX 2.9 Setupwin Chinese TeX Using the CJK LaTeX Package, Unicode TrueType fonts and PDFTeX under Windowswin start TeX Live – TeX Users Groupesempi tex cinese Chinese TeX Using the CJK LaTeX Package, Unicode TrueType fonts and PDFTeX under Windowsvedere per linux CJK SupportIME Tutorialfc-cache -fvGBSN BSMI TeX Live and CJK – ArchWikicyberbit cyberbit Index of /pub/communicator/extras/fonts/windowsTeX & Metafont & MetaPost distributiesCyberbit 2.0 Readmeda stampare prima o poi GuidaGuIT.pdf (Oggetto application/pdf)LEGGERE Appunti di informatica liberastampare prima o poi it_Tutorial.pdf (Oggetto application/pdf)

led

Lampadine per punti luce, Bianco caldo, 2.5, DC 12, € 0 – € 8, Lampadine LED, Cerca MiniintheboxLED di potenza per Greenduino&#58; istruzioni di montaggio della lampada | Action MutantK2-Datasheet.pdf (Oggetto application/pdf)LUXEON R | Philips Lumileds Lighting Company

legrand orologio

liftftp

Appunti Linux indice analiticoBackup su server FTP zaffa.orgnet2ftp – a web based FTP clientBitNami MoodleBrowse Project – Moodle Trackercambiare stringheCorso Demo delle funzionalità di MoodleCorso Moodle Features DemoCorso Moodlemoot2008Course backup – MoodleDocsDemo e Storico dei Corsi FADDokeos 1.8.5 Installation Guideelenco forumforum unuversaleGame Downloads, Game Patches – FileFront.comitaliano Aiuto Glossario moodle 1.6italiano Eliminazione link e logo di Moodle fine pagina di un temaLezioni On-lineMoodle – A Free, Open Source Course Management System for Online LearningMoodle Demonstration Amministrazione Aspetto Temi Selezione temaMoodle e il web 2.0 provamoodlemoot2008 Tutti i corsiMysql 4.1.16 E MoodlePhilosophy – MoodleDocsprontoRicevuta ordine di Google Checkout DreamHost Web HostingTV.Unimore – Il pianeta acqua nel continente agricolturaUsing Moodle JsMath-JsTex instead of mimetexVocescuola – Come importare o ripristinare un corso in MoodleWeb Hosting by DreamHost Web Hosting Web Sites, Domain Registration, WordPress, Ruby on Rails, all on Debian Linux![#MDL-5444] Import PowerPoint – Moodle TrackerTonidoPlug – Tiny, Low Power, Low Cost, Linux Home Server | Access your files, music and media from anywhereCanali Rai (e non) su VLC

linkasoftwarebase

eudora

accelerometro_kalman

kalman

Microsoft Word – tesicompleta.doc – Applicazioni del filtro di Kalman su accelerometri.pdfuntitled – filtro_kalman_tdc_x2.pdfNuova pagina 1kalman_app.pdfarduino Gioblu robotics | Filtro di Kalman con Arduino | Kalman, Float, Const, Giroscopio, LetturaCRI07-Il Filtro di Kalman.pptx – CRI07-Il Filtro di Kalman.pdf() – fi.pdf

misure_strumenti

Nuova cartella

ME_fascicolo1.dvi – appunti.pdfHome&#58; Google AdSense

lezionionline.net

sothink

robinetterie

tv

180euro

googlemap

Horizon Calculator by IW3HHP

inps

politecnico

J3.2&#58;Installing Joomla – Joomla! Documentation– 3.2.3 Joomla! è un software open source per la realizzazione di siti Internet. Un gestore di contenuti – CMS – Joomla 3.2.3 ita Stable | Joomla.it Sito di supporto Italianotutte le versioni Joomla!® 1.5 | JoomlaCommunity.eueditor Joomla! 1.5.xMore Than 4000 Free Joomla CMS Templates– versioni in italiano | Joomla.it Sito di supporto Italiano

matrici

trading

musica piano city

astronomia

Tutorial #1&#58; Launching a Demo Instance (Joomla 3.2)rabbit lego Discover the Kalman filter with LabVIEW and the LEGO NXT

ASCII

Building an Installer (Windows) – LabVIEW 2012 Help – National Instruments

trigonometria

trigonometriaTrovare il pid (process id) di un processo in esecuzione – Linux – Guide – www.NonSoloGuide.altervista.orgEcco i 3 Modi per Inviare Email da Linea di Comando | Ubuntu Linux

Altri segnalibri

sviluppo di fourier – Cerca con Googleriprodurre mp3 direttamente firefox da ftp – Ask.com Search

frassinelli

ODROID | HardkernelControl Panel – BeePmatlab metodi equazioni http://www.google.it/url?sa=t&rct=j&q=&esrc=s&source=web&cd=25&ved=0CDkQFjAEOBQ&url=http%3A%2F%2Fwww.ba.infn.it%2F~loparco%2Fgeofisica%2Fequazioninonlineari.ppt&ei=hOhhVeaVPIPWywOvhoGIDg&usg=AFQjCNF5pU9iIWgWcWY_qkRR56gl_p7FVA&sig2=Lista dei comandi (terminal) Raspberry Pi piu utili

turano

reddit.com&#58; risultati ricercaAce StreamArenaVision.in | Vivimos el deporteDealeXtreme – Cool Gadgets at the Right Price – DX Free Shipping WorldwideDidattica ZICH – Invito a collaborare – profmarzi@gmail.com – GmailMy Webcamstudio_camminata_accelerometri_gps.pdfOpen-source IoT kit runs OpenWRT, mimics Arduino Yun ·  LinuxGizmos.comwiki&#58;upgradeimage []Didattica ZICH – Invito a collaborare – profmarzi@gmail.com – GmailMicrosoft Word – Indice.doc – Reti_elettriche.pdfConvertitori_PV.pdfHelpDavis Sensore Radiazione Solare – DW-6450 &#58; Meteo Shop – SalvaraniRêxpirando&#58; Arduino Volt-Ammeter – Part 1 – Breadboard01 CELLA FOTOVOLTAICA [Sola lettura] – 2009-11-CELLA-FOTOVOLTAICA.pdfBuilding A Raspberry Pi VPN Part One&#58; How And Why To Build A Server – ReadWrite1.2 Energy Conversion – Part I – YouTubeARDUINO MPPT SOLAR CHARGE CONTROLLER (Version-3.0)stampare raspberry Imaginsystems – Raspberry Pi – Come aggiungere una stampante al Raspberry Pidavis raspberry WOSPi.pdfweewx davis vantage pro Index of /downloadsweewx davis vantage meteo Installation on Debian systemsmagneto terapia tesla mppt Elettronica Medicale Innovativapiedinature transistor Transistor BD220 – BD221 – BD222 – BD223 – specificationNI LabVIEW&#58; Basic image handling techniques – YouTubeImaqTuto labview.mp4 – YouTubeDetección de objetos usando LabVIEW – YouTubeDetección de Patrones – LabVIEW Vision [Parte 3] – YouTubeCommunity&#58; Ecualizador de Audio NI myRIO FPGA – National Instrumentspixel Procesamiento digital de imagenes en LabVIEW – Threshold – YouTubeReal Time Particle Tracking Using Labview – YouTube100 Best LabVIEW Tutorial Videos | Meta-Guide.comELTII-17.pdf[v8.5.2] Latest Camtasia Studio Universal Keygen & Cracking Tutorial | Free all we needCircuits and Electronics – National Instruments USLeixen VV-898 VHF/UHF – MiklorCables & Drivers – Prolific & FTDICables & Drivers – Prolific & FTDIVV-898 Progr Cable – Miklor898 Arduino Your Home & Environment&#58; Installing & Programming the VV-898 2m / 70cm Ham RadioVV-898 Programming – Leixenprogrammazione manuale Leixen VV-898 Programming – Miklor vv808 vv808Sprogrammazione 898 K9CAB Amateur Radio HackingIK1AMCIntroducing EchoLink – Guidaita4.pdfIT9FDP Biagio La Fauci&#58; GpioStream Video from the Raspberry Pi Camera to Web Browsers, Even on iOS and Android – miguelgrinberg.comerrore moduli Raspberry Pi • View topic – SOLVED-Raspbian Jessie&#58; failed to start Load Kernel Modules?Raspberry Pi • View topic – Stuck at loginCreating Time-lapse Photography With a Raspberry PiGuida Linux&#58; la shell BASHESP8266 Wifi Temperature Logger – 2ESP8266 WiFI temperature and humidity sensorGetting Started – Creazione di un sensore con Arduino YUN | developer.smartdatanet.itSistema PiemonteVista di insieme dei protocolli IoT disponibili | developer.smartdatanet.itSmart Data Platform – Web Streaming exampleYUCCA&#58; data from ArduinocURL – Tutoriallinux stampante scanner sane Progetto #3 – Server di stampa & scanner con Raspberry PIInstallazione e configurazione Apache su Raspberry Pi – Tux ManiacsHow to Install the No-IP DUC on Raspberry Pi | Support | No-IP

Imported From Firefox

Bookmarks Toolbar

Getting Started

Mozilla Firefox

Help and TutorialsCustomize FirefoxGet InvolvedAbout Us

INFINEON

Nuova cartella

XMC 2Go · Infineon/XMC-for-Arduino Wiki · GitHubInfineon for Makers | Microcontroller Boards – Infineon TechnologiesXMC_2Go-V1.schXMC1100 Data SheetXMC1100 Reference Manual

INSEGUITORE

Attuatore lineare DC 24V, attuatore lineare elettrico a linea retta resistente 750N a corsa 150mm, attuatore lineare a corsa elettrica industriale: Amazon.it: Commercio, Industria e ScienzaLinear Actuator-Linear Actuator Manufacturers, Suppliers and Exporters on Alibaba.comDC MotorYongnuo Push Pull Impermeabile 24v Attuatore Lineare Per I Veicoli Elettrici Porta Tetto – Buy 24v Linear Actuator,24v Linear Actuator For Electric,Push Pull Linear Actuator Product on Alibaba.comverifica trojan e virus sito wp – Cerca con GoogleTEORIA EPICICLOIDALE–Microsoft Word – Bozza Appunti Rid Epicl e non convenz no eta.docFANDOM +LINK SCRIPTING–Thyme | Algodoo Wiki | FandomDOC–Algodoo Scripting Guide – Documenti GoogleLEZIONI DI IVANA–Installazione e interfaccia in italianoPROGRAMMARE IN THYME–GadApedia/Thyme algodoo english – ZUM-WikiGUIDA SCRIPTING–Algodoo Scripting Guide – Documenti GoogleIDEONLINE LEANDRO–Thyme IDECOLLEZIONE INTERESSANTE PER LETTERE E AUTOMATISMIAlgodoo Scene Collection – YouTubeLENTI–ALGODOO ZOOM LENS AT WIDE ANGLE SETTING – YouTubeTRIGONOMETRIA–ALGODOO SIN COS TRIGONOMETRIC FUNCTION GRAPHIC – YouTubeGUIDA COMPLETA –Algodoo Scripting Guide – Documenti GoogleMOTOR SSHIELD APPLICAZIONE ROSSI–Relazione.pdfRossi.pdfFILMATI SU ATTUATORI LINEARI–simphy actuator linear youtube – Cerca con GoogleMOTORSHIELD E PROGRAMMA_ZIP–Arduino Motor Shield R3DATASHEET–H-Bridge Kit 2Go User ManualDATASHEET–Board_Users_Manual_XMC_2Go_Kit_with_XMC1100_R1.0.pdfDRIVER DA 6 AMP—Infineon-IFX9201SG_PB-PB-v01_00-EN.pdfFORUM INFINEON–XMC Forum [Archive] – Page 3 – Infineon ForumsCORRISPONDENZA PIEDINATURA ARDUINO–Tx and Rx pin for UART in XMC 2GO · Issue #23 · Infineon/XMC-for-Arduino · GitHubHALF BRIDGE 17 AMPER–BTN7030-1EPA – Infineon TechnologiesCOMPERARE QUI DIGIKEY–HBRIDGEKIT2GOTOBO1 Infineon Technologies | Schede di sviluppo, kit, programmatori | DigiKeyGoogle Code Archive – Long-term storage for Google Code Project Hosting.XMC1100 Boot Kit Getting Started and Examples – Arduino to XMCgenerate tif vision assistant – Cerca con GoogleVIDEO UTILI–(10) NI Vision: Binary Circle Detector – YouTubeVIDEO UTILI–(12) Kalman Filter Vehicle Detection in Labview – YouTube(13) Learn Computer Vision and Image Processing in LabVIEW – YouTubeFONDAMENTALE DISEGNA PLOT POSIZIONE PUNTO–(13) LabVIEW USB Cam + Image Processing + MATLAB (MathScript) Tutorial – YouTubeRILEVA COLORE–(14) Labview vision – YouTubeCreate Vision Template from an Image in LabVIEW – NI Community(14) NI Vision: Match Perimeter Contour – YouTube

IPTV

La migliore guida su IPTV che potrete trovare in giro – HowTechIsMadegeek o NERD ?: tutorial: come guardare il digitale terrestre (dvb t1 / t2) con raspberry pi (+ tv µhat) via web, kodi o plexDVB-T2 su Raspberry Pi 3B+ via µHAT e LibreELEC in 60 secondi! – YouTube

IRRIGAZIONE

FLUSSIMETRO PER DOSAGGIO–La doccia e il Raspi

JOOMLA

Update PHP to 7.1 / 7.2 creates “Fatal Error 0 Using $this when not in object context” · Issue #21258 · joomla/joomla-cmsMouse Over Zoom(172) JCE MediaBOX tutorial – YouTubeCreare un sottomenu – Joomla! Forum – community, help and support

Nuova cartella

tema wp expound – Cerca con GoogleLezione 3 – I menù – Joomla.it Sito di supporto Italiano

KALMAN

Learning the (Linear) Kalman Filter » File Exchange Pick of the Week – MATLAB & SimulinkLearning the Extended (Non-Linear) Kalman Filter » File Exchange Pick of the Week – MATLAB & SimulinkLearning the (Linear) Kalman Filter » File Exchange Pick of the Week – MATLAB & Simulinkkalman_intro.pdfThe Kalman Filtermaybeck_ch1_10.fmCoursePack.book2014_07_Morlacchi.pdf

LINGUAGGI

C++

[C++] – posizionare le cifre di un intero in un array [Archivio] – Hardware Upgrade Forum

LABVIEW

NI myDAQ – Tutorialscertification CLAD LabVIEW – YouTubeNI myRIO: “GPS demo” LabVIEW project – Vimsetadding column names to data file – NI Discussion ForumsCinese Semplificato e Tradizionale OCR (Online e Gratisv — Convertiorivedere vision assistant labview – YouTubeAcademic Hardware Products (ELVIS, myDAQ, myRIO) – NI Discussion ForumsHow to change time on myRIO ? – NI Discussion ForumsLab 1B LabVIEW Filter Signal – Lab-1B-LabVIEW-Filter-Signal.pdfNI myRIO: Webcam – set attribute – YouTubeNI myRIO: “GPS demo” LabVIEW project – VimsetCommunity: Retriggerable snap acquisition – IMAQdx – National Instrumentsrivedere vision assistant labview – YouTubents NI Vision: MVA Project Files and Folders – YouTubeNI Vision: (image) get: Vision Acquisition – YouTubento labview Community: Convert String to Timestamp – National InstrumentsUnit 0 – Introduction to LabVIEW with MyDAQ: Lesson 2 – Discussion Forums – National InstrumentsNI myDAQ Getting Started and Support – National InstrumentsLab 1B LabVIEW Filter Signal – Lab-1B-LabVIEW-Filter-Signal.pdfDTMF Tone Decoder – Discussion Forums – National InstrumentsNI myDAQ – TutorialsLabVIEW Arduino Thailand видео – ВидеоТубе – Фильмы, Сериалы, мультфильмы | Kinotube.InfoRequisiti di sistema e supporto OS NI Multisim – National InstrumentsInterfacciamento Labview Arduino – Seconda Parte | DAQ code laboratoryRequest a 6-Month Evaluation of LabVIEW Student Edition – National InstrumentsNI Device Drivers 2016.08 – Windows 10, Windows 8.1, Windows 7, Windows Server 2012 R2, Windows Server 2008 R2 – National Instruments(36) Introduction to LabVIEW with myDAQ: Digital Inputs – YouTubeUsing the DAQ Assistant to Automatically Generate LabVIEW Code – National Instruments(36) Real-time Signal Processing and Analysis on Measurement Data – YouTubeMicrosoft Word – Analog outputHands-On Introduction to LabVIEW for Scientists and Engineers – John Essick – Google LibriAndreadd.it – Appunti, esercizi e temi d’esameIndex of /Public/Corso_acusticaIndex of /Public/Acoustics-Course/AVI-2012/CompressedIl campionamento digitale – seconda parteLIBRO.pdfError -200802 Buffer Size Zero from DAQmx in LabVIEW – National InstrumentsHardware-Timed Single Point Sample Mode – NI-DAQ™mx Help – National InstrumentsGetting Started with NI-DAQmx: Main Page – National Instruments

LABVIEW&

Arduino and LabVIEW: 5 StepsMouse X & Y Values – How to get them? – LabVIEW General – LAVADISPOSIZIONE COMPONENTI NUCLEO-F401RE – zestaw startowy z mikrokontrolerem z rodziny STM32 (STM32F401) – Sklep KamamiELEMENTAL I/O LabVIEW Embedded for ARM Porting Guide – Chapter 3: Implementing Elemental I/O Part 2/2 – National InstrumentsRS232 labview VI RS232 communication with LabView – NI Community

VIDEO

chart e graph(652) VI High 63 – What’s the Difference Between LabVIEW Waveform Charts and Waveform Graphs? – YouTube(652) Dynamic Data Types in Labview.mp4 – YouTube(70) LabVIEW Tutorial 1 – Intro to Data Flow Programming (Enable Integration) – YouTubeRisolto: FFT from XY array – NI CommunityELENCO DI TUTORIAL EECS20N Labscrash windows labview serial read from arduino causes reboot – NI Communityformule per lo smorzamento Microsoft Word – L01_05.docxpausa durante while How to Pause a While Loop in LabVIEW? – NI CommunityGRAFICO XY (8) LabVIEW 3 1 XY Graph – YouTuberegressione lineare labview interesse genericoVIEO MACCHINA A STATI(31) State Machine Example in Labview 1 of 2.mp4 – YouTubeNI Device Drivers Download – National InstrumentsDistributing Applications with the LabVIEW Application Builder – National Instruments(77) LabVIEW Tutorial 40 – Creating Applications (Enable Integration) – YouTubeError -1073807253 at VISA Serial Read in LabVIEW – National Instruments

LINUX

Learning Basic Linux Commands – Raspberry Pi Cheat Sheet | Random Nerd Tutorials

DEBIAN

Debian — Software Packages in “stretch”#61 Perl TK | Pillole Perl/CGI

Nuova cartella

HTML

creare bottone colorato html – Cerca con GoogleHTML: gestire spazi bianchi e tabulazioni | Mr. WebmasterI bottoni (sumbit, reset, button, image) | Guida HTML | XHTML HTML.itI do not want return page after api/update … | ThingSpeak APIHelp with updating a channel feed from a local webpage | ThingSpeak APICome monitorare le temperature con Arduino – ESPERIMENTANDA

WP

Using WPML + CM Tooltip Pro+ to translate Glossary into EN & ES – WPMLCorso WordPress Passo-Passo Gratuito [Video + Approfondimenti]Sticky Menu (or Anything!) on Scroll – Plugin WordPress | WordPress.org ItaliaHow to “Easily” Add Anchor Links in WordPress (Step by Step)Come mettere un video YouTube su WordPressitlshort.pdf

LATEX

Forum del Gruppo Utilizzatori Italiani di TeX – Leggi il Topic – circuiti elettroniciXCircuit Reference ManualXCircuit Schematic Capture Tutorial PageCircuiti elettrici e LaTeXEsempio Circuitikz | DAQ code laboratoryCircuiTikZ 0.8.3 – manual(223) Creating Circuit Diagrams for LaTeX Documents Using Circuitikz – YouTubeCTAN: Package circuitikzTeX Live – TeX Users GroupCircuiTikZ 0.8.3 – manualinstalling – How do I install an individual package on a Linux system? – TeX – LaTeX Stack Exchangeerrors – tlmgr cannot setup TLPDB – TeX – LaTeX Stack Exchangectan-annChecking the version of a packageCommits · circuitikz/circuitikz · GitHubCircuiTikZ git:7cd8515 – manualLaTeX2e unofficial reference manual (October 2015)GuIT – Gruppo utilizzatori Italiani di TeX e LaTeXThe TeX Live Guide—2018TeXStudio on RP3B : raspberry_pitikz pgf – Circuitikz doesn’t recognize units – TeX – LaTeX Stack ExchangeNewest ‘circuitikz’ Questions – Page 3 – TeX – LaTeX Stack Exchangetikz pgf – Circuitikz – R (resistor does not compile – TeX – LaTeX Stack Exchangetikz pgf – How can i rotate circuitkz figure vertical? – TeX – LaTeX Stack ExchangeCircuitikz: Change distance of voltage arrow label, locally use straight voltage arrows – TeX – LaTeX Stack Exchangetikz pgf – How to make animation to show how the electric current flow works? – TeX – LaTeX Stack Exchangemacros – newcommand, $ $ and circuitikz – TeX – LaTeX Stack Exchangeupdating – How do I update my TeX distribution? – TeX – LaTeX Stack ExchangeUsing TikZ circuits library and CircuiTikZ in the same document – TeX – LaTeX Stack ExchangeCircuiTikZ American and Europen Voltage Source Styles – TeX – LaTeX Stack Exchangecircuitikz – How to change number of arcs in an inductor schematics? – TeX – LaTeX Stack Exchange[Risolto] – SIunits – problemi di compatibilità – Forum GuITNew component in circuitikz – TeX – LaTeX Stack Exchangetexlive – GUI version of the TeX Live manager for TL2015 does not work – TeX – LaTeX Stack Exchangesiunitx – Why is this \SI{number ^ power}{unit} not allowed? – TeX – LaTeX Stack ExchangeGitHub – josephwright/siunitx: A comprehensive (SI) units package for LaTeXIndice di /pub/tex-archive/macros/latex/required/tools/TeX Live on Raspberry Pi – Welcome to UK-TUGInstalling TeX Live over the Internet – TeX Users GroupMembership – Welcome to UK-TUGIndex of /texmf-dist/doc/texlive/texlive-it[REPRISE]texlive e installazione texstudio con metapacchetto – Forum GuITtlmgr – TeX Live – TeX Users Grouptlmgr – the native TeX Live ManagerCircuitikz – drawing error with complex circuit – TeX – LaTeX Stack ExchangeLaTeX · FTSRG/cheat-sheets Wiki · GitHubpdftex – Compilation problem with siunitx (returning error regarding ifnum) – TeX – LaTeX Stack ExchangeGitHub – mredaelli/circuitikz: CircuiTikZ TeX/LaTeX package for drawing circuitssiunitx – How do I get expl3 from CTAN? – TeX – LaTeX Stack Exchangeinstalling – How to remove everything related to TeX Live for fresh install on Ubuntu? – TeX – LaTeX Stack Exchangetikz pgf – How to create complex op-amp diagrams with Circuitikz – TeX – LaTeX Stack Exchangetikz pgf – How can i rotate circuitkz figure vertical? – TeX – LaTeX Stack ExchangeHow to configure Emacs and AUCTeX to perform Forward and Inverse Search – TeX – LaTeX Stack ExchangeKeyboard Macros – GNU Emacs ManualThe newcommand.py utilityintrotex.pdfDebian — Package Download Selection — texlive_2016.20170123-5_all.debGoogle Drive – Avviso di scansione antivirusPuppy Linux Discussion Forum :: View topic – TexLive 2011Google Drive – Avviso di scansione antivirusPuppy Linux Discussion Forum :: View topic – TeX, LaTeXInstallare Puppy Slacko 5.3.1 su disco fisso – PCpercaso.comIndex of /puppylinux/pet_packages-slacko/Puppy_Linux_Forum_Pets : ally : Free Download, Borrow, and Streaming : Internet ArchiveDebian — Package Download Selection — texlive-full_2018.20190227-2_all.debConfigurazione TeXstudio – Forum GuITTeXstudio: impostazioni base | Ivan ValbusaConductive Ink Pen | Draw Circuits with Ink | Circuit ScribeLaTeX per l’impazientetexlive-it.pdf2 InstallationTikZ examples technical area: Electrical engineeringXcircuit: Why is still used? – Page 1

DAVIDENEGRETTI

LaTeX – Wikibooks, open books for an open worldpackages – How to install “vanilla” TeXLive on Debian or Ubuntu? – TeX – LaTeX Stack ExchangeLaTeX/Macros – Wikibooks, open books for an open worldminimaltikz.pdfCircuitikz – Overleaf, Online LaTeX EditorCircuitikz: Label space control – TeX – LaTeX Stack ExchangeLaTeX Graphics using TikZ: A Tutorial for Beginners (Part 4)—Circuit Diagrams Using Circuitikz – Overleaf, Online LaTeX EditorLaTeX Graphics using TikZ: A Tutorial for Beginners (Part 1)—Basic Drawing – Overleaf, Online LaTeX EditorTikZ examples tag: Circuitikztikz pgf – Labeling a circuit element with its symbol and value on both sides – TeX – LaTeX Stack Exchange

Nuova cartella

CircuiTikz – Easy electrical networks | TikZ exampleNewest ‘circuitikz’ Questions – Page 25 – TeX – LaTeX Stack Exchangecircuitikz – label of the resistors using circuitkz – TeX – LaTeX Stack Exchange

R

PUNTO DI PARTENZA Statistica con R_manuali con esempiR_Boggiani_2004.pdf_manuale introduttivoGuida linguaggio R | Database | HTML.itHow to Install the Latest Version of R Statistics on Your Raspberry Pi | R-bloggersmanuale.0.3.pdfI fondamentali di RRStudio on RaspberryPi 3 | R-bloggersPrimi passi con R | Guida R | Database HTML.itThe Comprehensive R Archive NetworkStatistica con RScrivere script per R | Guida R | Database HTML.itRepl.it – Select a LanguageAll R documentationData Processing con R | Guida R | Database HTML.itR TutorialR OperatorsThe Comprehensive R Archive NetworkFile di comandi (script) | Ricerca Sociale con RI comandi | Ricerca Sociale con RDownload R-3.6.1 for Windows. The R-project for statistical computing.Older Versions of RStudio – RStudio Supportr – In read.table(): incomplete final line found by readTableHeader – Stack OverflowIntroduzione a RdispensaTdAI.mwdLaboratorio di Statistica con RIntroduzione alla Statistica Computazionale con RR Language – Serie di Fourier | r TutorialKalman filter example visualised with R | mages’ blogIlink R – postafast@gmail.com – GmailStatistical Inference: Amazon.it: George Casella, Roger L. Berger: Amazon.itapplied multivariate statistical analysis – Cerca con GoogleCategorical Data Analysis: Amazon.it: Alan Agresti: Libri in altre lingueIntroduzione a RRango di matrici per l’esame di Matematica dell’Universitàvalore z tabulato statistica – Cerca con GoogleSTATISTICA_SOCIALE__Lezioni_21_e_22_novembre_2011.pdfR Language – Generatore di numeri casuali | r TutorialR Language – Iniziare con R Language | r TutorialInstall R in Linux MINT 18 – Jitao David Zhang’s blogStatistica: come standardizzare una distribuzione normale | Viva la ScuolaInstalla da sorgenti Building R from source – RStudio SupportLez1 9 normalizzare standardizzare(1) – Docsitystatistica5.pdfDownload RStudio – RStudioThe Comprehensive R Archive NetworkStatistica con R: Test z a un solo campioneThe Comprehensive R Archive NetworkBIOMEDICA R_DellOmodarme_2009.pdfSERIE STORICHE tsR.pdf923 pagine pdf FORMULE ELEMENTARI Formulario di Statistica con R

ESEMPI

Covarianza statistica: definizione e calcoloCOVARIANZA E CORRELAZIONE significato di covarianza e correlazione – Leggi argomento • Matematicamente.itCORRELAZIONE ANIONI CATIONI Microsoft Word – capu18.docGENERALITà RAPP:DATI Analisi statistica di dati multivariati – ppt scaricareRENDERE NORMALE UNA DUSTRIBUZIONE RANGHI SPERIMENTALE AGRONOMICA DEF.COVARIANZA Metodologia Sperimentale Agronomica / Metodi Statistici per la Ricerca Ambientale Marco Acutis a.a CdS. – ppt scaricareTABELLE STANDARD DISTRIBUZIONE NORMALE MEDIA MEDIANA Microsoft PowerPoint – Levine Capitolo 06.pptASSICIARE FUNZIONI APPROSSIMANTI (Microsoft Word – Rappresentazione analitica delle distribuzioni con R 0.4.d\205)ESERCIZI BIOSTATISTICA PAGANO Microsoft Word – biotech_2009_es_2.doc

TERMALISMO

Microsoft Word – PASTENA – Prevenzione e promozione della salute attraverso la realtÀ delle Terme di Suio (LT)PRESTAZIONI TERMALI TRADIZIONALI GEOTEMA_39.indbMOTIVAZIONI DEL TURISTA TERMALE Microsoft Word – TESI doc completo.docx

ANOVA

Analisi della varianza (ANOVA) con R | Ricerca Sociale con RAnalisi della varianza a un fattore: ANOVA | Lorenzo GovoniL’analisi della Varianza: Test ANOVA | Math is in the air

STATISTICA

polidocs/Statistica at master · vampolo/polidocs · GitHubESERCIZI SVOLTI polidocs/Statistica/Temi esame at master · vampolo/polidocs · GitHubROSS ES. RISOLTI 2580_risposte_ROSS_STAT.pdfES. SVOLTI Probabilità e Statistica per le Scienze e l’Ingegneria, 3/ed, P. Erto – Copyright © 2008, The McGraw-Hill Companies sr 1.1. SOLUZIONIesercizi_svolti.pdfSOLUZIONI ESERCIZI ESAME BUONO Corso di Statistica ILIBRO PDF PROBABILITA E STATISTICAMOLTE MATERIE IMPORTANTE PER STATISTICA E LING. R Appunti UniMi – Informatica per la comunicazione digitale | suppaman.itMICCIOLO SITO HomeMETODO MONTECARLO 20151007.pdf9977-17691-3-PB.pdftesi sulla foneticaPARLATA CINESE LPC formanti e fonemi Romano_Manuale_di_Fonetica_IV_parte_pdf.doc

CORSI

esercitazione1.pdfDownload and Install RStudio | RProgramming.netHelp Installing R 3.3.1 from Raspbian Stretch – Raspberry Pi Forums

IDE per tutti i linguaggi

alfredocentinaro.it – Sviluppare con IDE e linguaggi di ogni tipo online

FINANZA

Compila numeri casualiEXCEL e intelligenza artificiale per il trading: Programmazione VBA e … – Fabrizio Cesarini, Donata Petrelli – Google LibriSTANDARDIZE function – Office SupportFunzione NORMALIZZA – Supporto di OfficeLezioni 21 e 22 novembre 2011 — Laurea Triennale in Scienze e tecnologie della comunicazioneCos’è la deviazione standard e come calcolarla in ExcelNormalizzare pressione e temperatura – Leggi argomento • Matematicamente.itDistribuzione normale standardizzata

LIBREOFFICE

NoteDiRilascio/6.3 – The Document Foundation Wiki

CSS- w3schools

CSS Layout – The position Property

PYTHON

How To Use Gnuplot To Graph Data On The Raspberry Pi – Raspberry Pi Spy(427) Installare moduli in Python con PIP. Librerie, Packages, Numpy – tutorial ita – YouTubeInstalling PyCharm on Raspberry Pi 4 | element14 | Raspberry Pi

LINUX

DEBIAN

Nuova cartella

post-install.pdf5.1. Avvio dell’installatore su PC 32 bitIndex of /debian-cd/current-live/i386/iso-hybrid

MINT

download google chrome gratis (ubuntu)SCARICARE APPLICAZIONI–Linux Mint – CommunityANKI VIDEO–Embed video (NOT YOUTUBE) inside an Anki card : AnkiInstall Anki – unofficial on Linux Mint using the Snap Store | Snapcraft

COMANDI

how do I uninstall programs? – Raspberry Pi Forums[Guida] Avviare un programma in automatico all’accensione del Raspberry Pi | NonSoloGaming – Informatica, Gaming e Smart Life6 modi per mappare la tua mente con Linux | LinuxariaJAVA Come installare Java su Raspberry PiMAPPE MENTALI 5 Excellent Free Mind Mapping Software – LinuxLinks25 simple examples of Linux find command – BinaryTidesEsecuzione di programmi: la variabile PATH – Guide@Debianizzati.OrgNuova schedait/SourcesList – Debian WikiHow to get this package in TexLive 2016 of Debian? – TeX – LaTeX Stack ExchangeVisualizzare e cambiare $PATH modalità temporanea e permanente | maurizio siagriGuida a TeX Live—2018Erika Student: aggiungere un percorso al PATH in Linux, da terminaleComandi Linux principali: tutorial rapido riga di comando | HTML.itcompilare i programmi con puppylinuxlinux – How to install WiFi and graphics driver in Debian 9? – Unix & Linux Stack ExchangeDebian — Package Download Selection — firmware-ipw2x00_20161130-5_all.debvozMe – Di testo a voce – Text to speechDistribuzioni Linux per PC vecchi: ecco le migliori! – ChimeraRevoRaspberry Connect – Editor PackagesForum Parentesi graffa nel terminale come si fa?? | Archivio del forum HTML.itScompattare file tar.gz e tar-bz da linea di comando – BTecno

GIMP

Release BIMP 2.6 · alessandrofrancesconi/gimp-plugin-bimp · GitHubBIMP. Batch Image Manipulation Plugin for GIMP. | Alessandro FrancesconiGitHub – alessandrofrancesconi/gimp-plugin-bimp at v2.6GIMP/Installing Plugins – Wikibooks, open books for an open worldGIMP resize animated GIF – YouTubeIMAGEMAGIC TRASFORMA UNA SERIE DI JPG IN UNA GIF ANIMATA-bash – GIF animation with ImageMagick and many images – Stack Overflow

SNAP

Install Linux apps using the Snap Store | Snapcraft

MOTION

MotionEyeOS Setup FTP Uploads Raspberry Pi 3 – YouTubeFAQ · ccrisan/motioneyeos Wiki · GitHub

MECCANICA

Modulo Di Ricarica Per Amplificatore Hx711 Da 10kg, Modulo Sensore Di Peso Bilancia Portatile Da Cucina Digitale Ad Pesatura Per Raspberry Arduino Pi: Amazon.it: Commercio, Industria e Scienza(490) #161 Measuring weight using an ESP32, a strain gauge, and a HX711 – YouTubeLoad Cell Amplifier HX711 Breakout Hookup Guide – learn.sparkfun.comFrequenze proprie della barra – Fisica, onde MusicaSISTEMI DI MISURA CON SCHEDA DI ACQUISIZIONE DATI: CARATTERIZZAZIONE E ANALISI DELL’INCERTEZZA16_ghiani.pdfHome | POLITesi – Politecnico di Milanolaboratorio di calcolo I – 17)applicazioni: metodo Monte Carlo(255) Il metodo Montecarlo – YouTube(256) metodo montecarlo labview – YouTube

MEMORIADIF

C:/Documents and Settings/Vale/Desktop/vale/latex/thesis.dvi

MEMS

accelerometro attiny85 – Cerca con Googleadxl345 esp8266 GitHub – adafruit/Adafruit_ADXL345: Unified driver for the ADXL345 Accelerometeradxl345 adafruit Programming and Calibration | ADXL345 Digital Accelerometer | Adafruit Learning Systemadxl345 Assembly and Wiring | ADXL345 Digital Accelerometer | Adafruit Learning Systemindice google adxl345 adafruit – Google Search

METEO

FINGER PRINT CON RASPBERRY–How to use a Raspberry Pi Fingerprint Sensor for AuthenticationREALIZZATO FINGER PRINT–Raspberry Pi Fingerprint Scanner Using a USB to Serial TTL Converter   | Raspberry Pi | Maker ProSTAZIONE METEO SU RASPBERRY–Installazione CumulusMX su Raspberry

METTEREAPOSTO

Come iniziarememo

radio

ARM_Radio.pdfDownload latest Puppy Linux releaseRecover files from Windows drives using Puppy Linux | www.winhelp.usPresentazione Linux Day 2009 – Puppy430-tutorial-Italiano.pdfHow NOT to install Puppy Linux (to hard disk)Linux Hamradio Application and Utilities Homepage: All softwareTop 10 Best Lightweight Linux Distro 2017 – YouTubeGeratore di SUBTONO sub audio generator per PONTI radio e Satelliti i6ibepuppy_Linux_live.pdfRTL-SDRXR2211.pdf

Mozilla Firefox

Personalizza FirefoxInformazioniAiuto e guideCollabora con noiYour CreativeMinds Shopping Cart – CreativeMindsNI myRIO: Webcam – set attribute – YouTubeWhy Do I See the Message Downloading Panel 0.00% of 0 bytes when using the Web Publishing Tool? – National InstrumentsPlease Confirm Your RegistrationTooltip Glossary (CMTG) – CreativeMinds Products Documentationa2e3d-7-6.pdfTD1pdf.PUB – TD1.pdfMINIMODEMprintserver Universal_Mobile_Print_Server.pdffrassinelliTrasferire dati da LabVIEW a Excel – National Instrumentshttp://www.om6akl.nagano.cz/clanky/A4L_SoftwareSerialWrapper.htmlTopic: tooltip nelle frasi cinesi | WordPress.orgRealizzazione-di-un-sistema-di-misura-inerziale4.pdf– TL-MR3020_V1_User_Guide_1910010551.pdfAppunti On Line – Home PageMT8870D Data Sheet – mt8870,dtmf decoder.pdfHello World: 2012 emmanuel ok fskN5DUX Ham Radio PDFsDownload di software e driver HP per stampanti, laptop, desktop HP e molto altro ancora | Assistenza clienti HP®cam acer usb Reuse old laptop webcamRe: help with connecting to NIST NTP server on port 123 – NI Discussion ForumsRicerca su possibili influenze dei fenomeni climatici ed ambientali quali fattori determinanti l’assottigliamento delle popolazioni apistiche mondiali | Archivio Istituzionale della RicercaWhat’s New and Improved in Office 2016 for Office 365 – Office Supporthttp://ae6pm.com/Appnotes.htm

kodi

Download – OSMCpiezo Dimensionamento e controllo di un amplificatore ad ultrasuoni per dispositivi piezoelettrici – GiuseppeGottardo.pdflama di Focault – Cerca con GoogleIncontriamo_la_Parola_VOLANTINO.jpg (immagine JPEG, 1748 × 2480 pixel) – Riscalata (27%)home PCF8574 – ESP8266Spherical coordinate system – Wikipedia, the free encyclopediaCommunity: Area di community: NI myRIO – National InstrumentsDaily Chinese Handwriting Practice – Arch ChineseHas anyone here done FSK telementry? – RC Groupsadxl345 adafruit Programming and Calibration | ADXL345 Digital Accelerometer | Adafruit Learning SystemESP8266 – NURDspaceEditing wp-config.php « WordPress CodexLAMBRETTA PATO 151CC TUBO OLIO FRENI ANTERIORE RICAMBIO NUOVO ORIGINALE | eBayBasic Image Acquisition with NI ToolsCM Tooltip Glossary | WordPress.org[C] Scindere il numero nelle sue singole cifre | Tom’s Hardware Italiaconvert euler angles to cartesian – Cerca con GoogleVU+ image rudream – VU+ Solo ImagesLa particella 的 (de) nella grammatica cineseCCTV-14少儿频道官网pavimenti in pietra – Benvenuti su fmpietre!Unit 0 – Introduction to LabVIEW with MyDAQ: Lesson 1 – Discussion Forums – National InstrumentsHow to sort your WordPress glossary Using term Categories学汉字_学知识_亲宝儿歌_亲宝网Compilazione Iscrizionefrom rotation matrix to rpy – Cerca con Googlean1410rev2v4046.pdfThread How to change time on myRIO ? | NI Discussion Forums | BoardReaderDipartimento di Meccanica: Dipartimento di Meccanica(183) Booking Calendar for Joomla! Availability calendar for Joomla – YouTubeByonics – TinyTrak3 GPS Position EncoderBilgin’s Blog | Kalman Filter For DummiesAtmel Software Download – profmarzi@gmail.com – GmailDownloads – WPMLcorso javaI complementi direzionali nella lingua cinese(116) Scopri il Tuo Futuro – Meditazione – Terzo Occhio – YouTubeaprs Generate AX. 25 Modem signals with a PIC.EVALUATION AGREEMENT FOR REMOTE SUPPORT BETA PROGRAM – National Instrumentsinseguitore licausi PARTE SPERIMENTALEConditional Placeholders – Events Manager for WordPressVendita Batterie AGM 12 Volt – Home – Batterie al PiomboWorking with Rotating and Moving Parts in NI Vision Assistant 8.6 – National InstrumentsCommunity: Set TimeStamp for LabVIEW RT Device using NTP – National InstrumentsNI myDAQ Getting Started and Support – National InstrumentsCam-Sats – Card Sharing & Satellite ForumNI myRIO: File system – YouTubeLabVIEW C Generator Support – National InstrumentsElectronic Tone Generator System | Full Project with Source CodeSatellite Support Forum .: Home of OpenViX Team:.LabVIEW Tutorial 37 – Project and File Structure (Enable Integration) – YouTubeAccount – WPMLRequisiti di sistema e supporto OS NI Multisim – National Instrumentselectronics tutorials for newcomers learn basic electronics for freeCommunity: Write Individual Rows of Data to Excel Spreadsheet – National InstrumentsMirandola_V2_05-1_PLL.pdfMicrosoft Word – HC-06 datasheet 201104201104 revised.doc – hc06.pdfNewnes Electronics Circuits Pocket Book (Linear IC): Newnes Electronics … – R M MARSTON – Google Libriazimuth-elevation-polarization.pdf(187) siemens simulink – YouTube – YouTubeLa scienza della musica binaurale: il suono che fa viaggiare la coscienza – AccademiaInfinita.iteBay: Dettagli dell’ordineKalman filter (OpenCV) and MeanShift (Labview) tracking – Discussion Forums – National InstrumentsSimple Accelerometer Data Conversion to Degrees | Simon Fearbys BlogBatteria ermetica al piombo 12V 18Ah EnergyTeam – Elcoteam.comccd cam telesopio Gianluca Li Causi’s OAR HomepageAVS4YOU – I migliori programmi multimediali: video converter, video editor, audio converter, audio editor, image converter, ecc.NI Product Activation – National Instrumentsfrassinelli > circuits > FM Tranmitters l49298 – Next.grnto labview Community: Convert String to Timestamp – National InstrumentsCommunity: Retriggerable snap acquisition – IMAQdx – National InstrumentsDownload of Example Projects for DAVE™ Apps – Infineon TechnologiesGetting Started with CompactRIO – Remotely Monitoring I/O – National InstrumentsCloud Dashboard for LabVIEW – YouTubeuntitled – How_to_update_Security_IC_for.pdfNI LabVIEW RIO Evaluation Kit – National Instrumentsoscilloscopio monspace: The cheapest dual trace scope in the galaxyWidgets and Gizmos – Wizmoz: Simple Accelerometer Data Conversion to DegreesCM Tooltip (CMTG)- WPML translation – CreativeMinds Products Documentationnts NI Vision: MVA Project Files and Folders – YouTubeadxl345 esp8266 GitHub – adafruit/Adafruit_ADXL345: Unified driver for the ADXL345 Accelerometerntp NIST Internet Time ServiceIndex of /dreambox-e2-addonsConfiguring Remote Front Panels on a Real-Time Target – National InstrumentsKK5JY CW ModemThread How to create valid template for match pattern? | NI Discussion Forums | BoardReaderesp8266 First Impression on the ESP8266 Serial-to-WiFi Module « RAYSHOBBY.NETSoftware DownloadTechTeach: A quick guide to National Instruments USB-6009 and USB-6008 multifunction I/O devicesHome elettronica in pannulloPIC16F628 datasheet(2/160 Pages) MICROCHIP | FLASH-Based 8-Bit CMOS MicrocontrollersDownloads – National InstrumentsUnit 0 – Introduction to LabVIEW with MyDAQ: Lesson 2 – Discussion Forums – National Instrumentsdecreto_interministeriale_16_febbraio_2016_aggiornamento_conto_termico – decreto_interministeriale_16_febbraio_2016_aggiornamento_conto_termico.pdfNI Vision: (image) get: Vision Acquisition – YouTubeTono ingresso… Cos’è?ahttps://accounts.google.com/b/0/DisplayUnlockCaptchaDue Emme Antenne – Ordine completato con successonoaa ESRL Global Monitoring Division – Global Radiation GroupHow to Use Events Manager WordPress Plugin – YouTubegit beginner tutorial – YouTubeUsing Event Calendars – Events Manager for WordPressadxl345 Assembly and Wiring | ADXL345 Digital Accelerometer | Adafruit Learning Systemfaq micro inverter abb micro inverter abbFAQs – MICRO – ABB MICRO (Micro inverters)Classi ed oggetti: un esempio pratico in Java | Mr.WebmasterMicrosoft PowerPoint – ATLCEC5b.ppt – ATLCEC51.pdfmyrio data dashboard – Cerca con Googlewhy euler angles – Cerca con GoogleWebcast Wednesday # 12 | Sneak Peek into CLAD Examination – YouTube<rp>: The Ruby Fallback Parenthesis element – HTML: HyperText Markup Language | MDNWorld-of-files.netShortcodes – Events Manager for WordPressRisultati di ricerca – postafast@gmail.com – GmailCertified LabVIEW Developer (CLD) Exam Demonstration – YouTubeNI Vision: Step 6: Configure “Vision Assistant” Express VI – YouTube

DEBIAN

Debian.orgHelpLatest News

Importati da Firefox

Barra dei segnalibri

FIMMG – SEZIONE REGIONALE LOMBARDIAFIMMGVENETOPubMed HomeSnamiScarica estensioni per i segnalibri

abbonamenti

anna

api

arduino

biometeolab

bruttomesso

cadif

cam

camtasia

cinese

linux

macromedia

Media

microchip

microsoft

miei_siti

moodle

Mozilla Firefox

mysql

nslu2

office

orcad

pda

photoshop

PHOTOSHOP

php

phpbb

pic

progettiel

radio

reti

riviste

sat

Segnalibri non catalogati

serrano

sheeva

sincronizza

Siti Web Microsoft

skype

solare

sparsi

sparsi1

stirling

storage

tesine

utility

viaggi

wikypedia

wview

xmarks

youtube

zener

730

acustica

alcuino

android

apple_ipad

armeno

artisteer

blender

blip

c

celle_photo_organiche

centraline

malattie

maria

meridiane

mervin

michele

nas

Nuova cartella

nuova elettronica

pannellorotante

pierpaolo

premiere

pt100

pwm

quadricotteri

R

radiosonda

rivista

rospo

scuolaserale

seriali

sottocoppo

stepper motor

stgraph

tennis

termocoppie

thermae and spa medicine

thermae_rivista

tophost

Ubuntu and Free Software links

ultrasuoni

usato

VM

vnc

vpn

webcam

weibo

wireless

wordpress

Black Dragon Curls Around China’s Heart, 1cadfamilyChi sono – Mauro Alfiericreate part PSpice_CaptureGuideOrCAD.pdf (Oggetto application/pdf)forma strana di schedajcemediaboxLATEX Facile – Guida all’UsolauraplecoQuando si può andare in pensioneutile anche termico irragiamentosolare.pdf (Oggetto application/pdf)VeryPDF PDF Password Remover – PDF Recovery to remove PDF Owner Password and decrypt PDFWindowsXP VPN Server

biblioteche

xml

manuali

Guida alla Bibbia – Google Books

suono analisi

Joomla Installation Resources – Joomla! DocumentationC to C embedded – Is there a way or tutorial for converting Arduino code to C code? – Stack Overflow

pianocitymilano

colori

componenti

concorsi

concorsortempmoderni

concrete

corsionline

db

dcf77

debian

delmissier

dlink

dottorato

dreamhost

driver

dropbox

ebay

elettrotecnica

elettrovalvola

elicotteri

enel

fastweb

fda

FDE

FE

femtec

femtec_materiali

filtri

flsh

fotovoltaico

foxmark

frasi_tradotte

fritzing

ftpserver

google

htc android

iis

indesign

ingranaggi

inseguitorisolari

inverter

io

ipad

ipcam

ipv6

itis

joomla

k8055

kirlian

krpano

labview

lampadari

latex

led

legrand orologio

liftftp

linkasoftwarebase

eudora

accelerometro_kalman

kalman

misure_strumenti

Home: Google AdSense

lezionionline.net

sothink

robinetterie

tv

180euro

googlemap

inps

politecnico

J3.2:Installing Joomla – Joomla! Documentation– 3.2.3 Joomla! è un software open source per la realizzazione di siti Internet. Un gestore di contenuti – CMS – Joomla 3.2.3 ita Stable | Joomla.it Sito di supporto Italianotutte le versioni Joomla!® 1.5 | JoomlaCommunity.eueditor Joomla! 1.5.xMore Than 4000 Free Joomla CMS Templates– versioni in italiano | Joomla.it Sito di supporto Italiano

matrici

trading

musica piano city

astronomia

Tutorial #1: Launching a Demo Instance (Joomla 3.2)rabbit lego Discover the Kalman filter with LabVIEW and the LEGO NXT

ASCII

Building an Installer (Windows) – LabVIEW 2012 Help – National Instruments

trigonometria

Trovare il pid (process id) di un processo in esecuzione – Linux – Guide – www.NonSoloGuide.altervista.orgEcco i 3 Modi per Inviare Email da Linea di Comando | Ubuntu Linux

raspberry

dropbox_libro

Altri segnalibri

MISURATRICE

I made a thing: Getting images from an optical mouse’s sensor · Jorge GarcíaADNS-5020 Sensor Datasheet pdf – Mouse Sensor. Equivalent, CatalogAdns-5020 | Hackadaymousecam/ADNS 50205.pdf at master · jorgegarciadev/mousecam · GitHubATA2188 datasheetatl a2188 rs – Cerca con GoogleLinear CCD module | Hackaday.io3V-5V TSL1401CL 128X1 Linear CCD Sensor Array With Hold Ultra Wide-Angle Lens Camera Tracking Module – Big Offer #1FE16 | CicigCharge-Coupled Device – an overview | ScienceDirect TopicsUsing RAW on the Raspberry Pi cameras – Raspberry Pi DocumentationRaspberry Pi Zero HDMI / WiFi Soldering Microscope : 12 Steps (with Pictures) – InstructablesRaspberry Pi 3 USB microscope timelapse tutorial – YouTubec y b e r b o n f a . i tHow to Make Raspberry Pi Webcam Server and Stream Live Video || Motion + Webcam + Raspberry Pi : 8 Steps (with Pictures) – InstructablesPiCamera & Python – programmiamo la webcam su Raspberry Pi – Meccanismo Complesso5. Advanced Recipes — Picamera 1.10 documentationProducing a RPIRGBArray · Issue #187 · waveform80/picamera · GitHubWorking with a Webcam and Pi Camera | Packt HubNumPy quickstart — NumPy v1.21.dev0 ManualConvertire JPG in RGB (Online e Gratis) — ConvertioConvertitore da JPG a DWG: convertire jpg in dwg online gratisMEMORIZZA PIXEL CAM USB PYTHON–Blob Detection – Physical Computing with Raspberry PiELABORAZIONE IMMAGINI CON RASPBERRY–How to Do Basic Image Processing With Raspberry Pi  | Raspberry Pi | Maker ProHow to install OpenCV on Raspberry Pi? – Raspberry Pi ForumsIMPRONTE DIGITALI OPENCV–Metodo semplice e veloce per confrontare le immagini per somiglianzaPROCESSARE VELOCEMENTE OPENCV–python 3.x – Processing an image with Open CV every n seconds – Stack OverflowREALTIME–Real Time Image Processing Using Python & OpenCVALGORITMO PER LINEE– SFTA E LSA–Fingerprint Recognition Algorithms for Partial and Full Fingerprints | IEEE Conference Publication | IEEE XploreFONDAMENTALE PER FORMULE NORMALIZZAZIONE–Microsoft Word – 09. ICBB 01CARRELLATA FORMULE TEORICHE–An efficient algorithm for fingerprint preprocessing and feature extraction – ScienceDirectTENSORFLOW–Rilevamento degli oggetti con TensorFlow sul Raspberry Pi | Elettronica Open SourceCORSO DI POPENCV–Leggere, visualizzare e salvare le immagini con OpenCV e Python – YouTubeLe funzioni di disegno in OpenCV Python – YouTubeTENSORFLOW–Classificazione di base: classifica le immagini degli indumentiUSB Camera display in GUI – Raspberry Pi Forums

MULTISIM

NI Multisim User Manual – National Instruments

Nuova cartella

Nuova cartella

PCB

PCBs cheap! – DirtyPCBs.comDownloadPlans and Pricing – EasyEDA(12) Obtaining an Altium Designer License [ Arduino PCB Design Course ] – YouTube

PERSONAL

SALA DA PRANZO – ThingSpeak IoTCompila e stampa online il tuo bollettino! | Bollettino OnlineIl portale dell’Automobilista – Verifica Ultima Revisionemazen Aounallah – YouTube

PID

PID library arduino – Mauro Alfieri Elettronica Domotica Robotica AlgoritmiWiFi PID Temperature Controller from MakerStorage on Tindie

PID

PID library arduino – Mauro Alfieri Elettronica Domotica Robotica AlgoritmiWiFi PID Temperature Controller from MakerStorage on TindieTutto sui regolatori PID (e sulla PID_v1 library)br3ttb/Arduino-PID-LibraryImproving the Beginner’s PID – Introduction « Project Blog

POLITECNICO

Servizi informatici di AteneoAlbo Ufficiale di AteneoDipartimento di Energia: CollaborazioniDipartimento di Meccanica: Dipartimento di MeccanicaDipartimento di Meccanica: Valutazione comparativaRicerca Per DocenteManifesti degli StudiManifesti degli StudiVisualizzazione Occupazioni per PrenotazioneRicerca di Prenotazioni

calcolatrice

(10-x) /4 +(0-x)/6 + 5 = 0 – Wolfram|AlphaAnalisi delle Retiesercitazioni MMT – simonamiasegretaria@gmail.com – GmailWelcome – BeePIntranet DEIBTeX LiveAulaServizio AUnicaLogin – Politecnico di MilanoServizio AUnicaLogin – Politecnico di Milano

Nuova cartella

virtualdesktop

Citrix Receiver

FDA

BOLZERN Controllo dei ProcessiROCCO FDT Controlli Automatici

MISURE SVELTO

Didattica – Prof. Cesare Svelto200 e pass pagine di teoria meccanica sulle vibrazioni MDM_1516_Parte_II.pdfDecadimento dei picchi smorzamento Microsoft Word – articolo_iarg2007.docPortale servizi

CLASD

Plexishop.it – One Step CheckoutAl-Hekma Electronics – Shopping CartCloud Sensore Bx120-3Aa Strain Gauge Gauge Di Pressione Apparecchi Elettronici Resistenza Del Ceppo Sensore: Amazon.it: ElettronicaYogatada Modulo sensore per Test di rilevamento flessione degli estensimetri: Amazon.it: ElettronicaArticoloOrologio sul transistor. Schema, descrizione. Orologio a pendolo fatto da sé I numeri sul diagramma sono contrassegnati

QWAVE

ใบสั่งซื้อเลขที่ QWS0001024 สำหรับคุณ Tullio – QwaveShop

QWAVE

Index of /repositorytutorial qwavesys – Cerca con Google

R

(520) Kristine Yu – YouTubeR: Fast Discrete Fourier Transform (FFT)Spectral.pdf

Nuova cartella

R Language – Importazione di file Excel | r Tutorial(807) Introduction to R and RStudio – YouTube(812) Introduction toCORRELAZIONE– R and RStudio part 2 – YouTube PARTE2Salvare una sessione di lavoro in R | Programmare conR tutorial for beginners part 1 | How to install R/R Studio | R Version 4.0.0 – Bing videoPARTE1(818) Domenico Di Carlo – YouTube CICLO FOR E IFSOVRAPPORRE EGRAFICI -sovrapporre – plot su r – Code ExamplesSOVRAPPORRE GRAFIXO guide – r release – Code ExamplesCICLO FOR Il ciclo for | Ricerca Sociale con RCORSORIPETIZIONE DI VETTORI– SLIDE POLI–VALENTI UNIMI Acrobat Distiller, Job 11MATRICI APPEND Matrix In R – Adding Rows And Columns To A Matrix In RBUON SITO Arrotondamento (round) | Ricerca Sociale con RFORMULARIO DI STATISTICA–FONDAMENTALE Formulario di Statistica con RFONDAMETALE REGRESSIONEMicrosoft Word – analisi regressione con R.docCARLO ALTRO, CORSO SCHEMATICOR – Pagina personale di Carlo VecchioESEMPIO CON DATI SU SLIDE WORD Regressione lineare con R (8)WHILE Il ciclo iterativo while | InsulaRFUNZIONI CON PUNTINI Scrivere le proprie funzioni | Ricerca Sociale con RESEMPI DI FUNZIONI R – Functions – Tutorialspointeliminare elementi di un vettore in R ELIMINA ELEMENTI DI UN VETTORE – Leggi argomento • Matematicamente.itMINIMO E MASSIMO–R max and min Function | 6 Examples (NA Value, Vector, Column, Row)GRAFICI MULTIPLI–R Draw Multiple Function Curves to Same Plot & Scale | Base R & ggplot2GRAFICI–Grafici con R | Guida R | Database HTML.itGRAFICI CON GRIGLIA ABLINE–Griglia in un grafico RREGRESSIONE–Regressione lineare con R (9)CREAZIONE DATAFRAME–R – I dataframe – Pagina personale di Carlo VecchioNORMALIZZARE SCALARE–L’importanza del ridimensionamento dei dati nei problemi di machine learning | Lorenzo GovoniNORMALIZZAZIONE–Normalization (image processing) – WikipediaESEMPI VARI–Operatori logici e strutture di controllo – DataWiringVARIABILI CASUALI RIV–R e il mondo aleatorioTEST P_VALUE–P-value: come si calcola con un software statistico? ~ Paola PozzoloESTRAZIONE DATI DA VETTORE–Estrarre dei sottoinsiemi dai nostri oggetti – basi di R – DataWiringINTERVALLO DI CONFIDENZA–Come calcolare l’intervallo di confidenza di una media | Viva la ScuolaCORRELAZIONE LINEARE–Coefficiente di correlazione lineare r di Pearson ~ Paola PozzoloTredsHybrid Cloud :: LoginAGNESE–Eliminare i dati (dataframe) | Ricerca Sociale con RR–Index of EcologyRisolto: Envelope of an waveform is in XY graph and need it in waveform graph – NI Community(6) Plotting XY Graphs and Linear Regression in LabVIEW – YouTubeUsing the Nonlinear Curve Fit VI – LabVIEW 2010 Help – National InstrumentsInteraction betweenDATI IN TEMPO REALE– MetaTrader 4 and Matlab via DDE – MQL4 ArticlesDDE REALTIME–newlogo.epsArchived: Dynamic Data Exchange (DDE) Functions Palette in LabVIEW – National InstrumentsDDE server receiving data – NI CommunityPCCHETTI AGGIUNTIVI LABVIW–Bronkhorst flow-dde labview example trend: Bronkhorst FlowPlot, Bronkhorst FlowView, Bronkhorst FlowFixDETTAGLI DDE–About Dynamic Data Exchange – Win32 apps | Microsoft DocsAPPLICAZIONI LV–Computer Programming Language Forum – labviewDDE PER EXCEL–labview, dde server examples pleaseRIASSUNTO VIDEO–(3) Ripasso di STATISTICA (misure di tendenza, di dispersione, correlazione ecc.) – YouTube2011-03-18_esempi_labview_ed_esercizi_proposti.pdf(5) Variance and Std Deviation | Why divide by n-1? – YouTube(6) STATISTDISPERSIONE–ICA 3 INDICI DI DISPERSIONE – YouTubeGAUSSIANA EXCEL–(8) MasterExcel.it – Funzioni Excel di Statistica (parte 1): Massimo Minimo Conteggio e Somma dei valori – YouTubeEXCEL–(8) MasterExcel.it – Tutorial Excel Funzioni Conta Se Somma Se Media Se – YouTubeR FREQUENZE RELATIVE–Frequenza assoluta, relativa e cumulata – Prometheus BlogR FREQUENZE RELATIVE–9788839527189A_unico_noquinto.pdfA proposito di ExamplePrograms – NI CommunityConvert Excel Time to LabVIEW Time – NI Communitytemplate– LABVIEW–Creating VIs from Templates – LabVIEW 2010 Help – National InstrumentsArea Clienti – Lucky Streaming Television

RADIO

How to make a wifi radio with TP-Link 3020 router, step-by-step tutorial – YouTubeCatalogo KEN: Ricambi originali KenwoodDashboard | BrandMeisterWebsdr – costruzione di una stazione ricevente su Raspberry PI3ICECAST E DARKICE–(16) How to Build an Internet Radio Station With Raspberry Pi, Darkice, and Icecast – YouTubeWEB RADIO–LXP32_18-25_radioonline.indd@REBOOT DARKICE–blog.centifanto.net: Raspberry Pi + Darkice + Icecast + FreePBX MOH streamingftp pikrellcam – Cerca con Google

RADIO

Microsoft Word – iw2bsf – MODIFICHE UTILI BAOFENG UV.docPonti Ripetitori Nazionali –

RASPBERRY

EMONCMS

installazione su raspberry Installing emoncms on a raspberry piRaspberry Pi climate data logger using adafruit and a DHT22 – HTML5livearduino add raspberry board – Google Searchpiduino Can I use the Arduino IDE to compile an Arduino sketch to run on the Pi? – Raspberry Pi Stack Exchangepiduino Raspberry Pi: Arduino IDE writing binaries to remote Pi filesystem – YouTubeRaspberry Pi • View topic – Running Arduino sketches on the PiRaspberry Pi: Arduino IDE writing binaries to remote Pi filesystem – YouTubeRaspberry Pi: Using Arduino IDE to compile and run sketches on the Pi – YouTubeInstall ownCloud 10 on Raspberry pi 3 with Raspbian Stretch Installedowncloud site:raspberrypi.org a DuckDuckGo(183) Learn C Programming on Raspberry Pi – 04 – Libraries – YouTube(183) Raspberry Pi Multicast TV server – YouTubeBCM 4 at Raspberry Pi GPIO PinoutHow to switch to USB Audio on Raspberry Pi (Model B/Raspbian Wheezy September 2014) – Plugableindice google adxl345 adafruit – Google Searchinstallazione su raspberry Installing emoncms on a raspberry piip statico rasperry dhcpcd.conf Raspberry Pi • View topic – wifi staticoLabviewraspberry videoModMyPi LTD | HC-SR04 Ultrasonic Range Sensor on the Raspberry PiRaspberry Pi GPIO Pinoutraspberry tutor esempi RPi Tutorials – eLinux.orgSpaceclick Blog | tecnologia, informatica, elettronica, astronomia, news.. – Usare un RaspberryPi come server DNS locale per tradurre indirizzi locali in IP locali tramite DnsMasqUn jukebox casalingo con Raspberry Pi e mpd (parte 1) | vemp.org[solved] trying to get usb audio to work – Raspberry Pi ForumsIdentifying Your Model of Raspberry Pi | element14 | Get Started With PiIndex of /pub/raspberrypi/raspbian/imagesLesson 13 PCF8591Raspberry Pi SD image – Raspbian (Linux OS)Raspberry Pi | Wiring | Download & Install | Wiring Piraspberry tutor esempi RPi Tutorials – eLinux.orgRaspberry Pi: Arduino IDE writing binaries to remote Pi filesystem – YouTubeRaspberry Pi GPIO PinoutRaspberry Pi • View topic – Running Arduino sketches on the Pi

rasberry

Activity : dacook13Stationary Accelerometer Tilt Sensor – AllSimple Accelerometer In labVIEW – AllLINX with the RPiSoC: I2C – YouTubePlotting 2d and 3d g-force vectors in labVIEW – AllFiltering Accelerometer Noise In labVIEW – AllModMyPi LTD | Tutorial – How to give your Raspberry Pi a Static IP AddressBoot da disco esterno su Raspberry Pi 3 | HTML.it57 Raspberry Pi commands that everyone should know – Raspberry tipsProteggi il Raspberry Pi dagli hacker – RaspberryItalyBOOT STARTX Can’t login to GUI but SSH is ok. Help. – Raspberry Pi ForumsCLONARE REPOSITORY Clonare un repository da GitHub – Meccanismo ComplessoESPEAK How To Compile eSpeak Text-To-Speech Engine From Source On pcDuino3 | LinkSprite Learning CenterHO USATO QUESTO PER RASPBERRY Overview | Speech Synthesis on the Raspberry Pi | Adafruit Learning Systemma anche per rete statico RICORDARSO PER LA TEMPERATURA Bluetooth Audio with Rasbian Stretch on the Raspberry Pi 3ONEDRIVE How-To: Raspberry Pi Onedrive Sync – Jarrod’s TechIMPORTANTE PER BLUETOOT RASPBERRY How To Connect Bluetooth Headset Or Speaker To Raspberry Pi 3DISABILITA WIFI (566) How to Disable Onboard WiFi for Raspberry Pi 3 – YouTubeCON QUESTO HO RISOLTO IL BLUETOOTH Another How to turn your Pi in a Bluetooth Speaker Tutorial – Raspberry Pi ForumsGIT PRAT DOMANDA Issues · praat/praatESPANDERE MEMORIA VIRTUALE How to change Raspberry Pi’s Swapfile Size on Raspbian · BitPi.coINSTALLARE CHROMIUM Running Zoom video conferencing client on the Pi – Raspberry Pi ForumsTUTORIAL AUDACITY EFFETTI (55) Tutorials4You13 – YouTubeAUDACITY TUTORIAL(55) Audacity – tutorial ITA – salvare su File Audio in formato WAV – YouTubeRaspberry Pi 3 B+ HDD hard disk esterno | Raspberry boot da USBraspberry cartella dev/root piena 100%/ – Cerca con Googleupload ftp owncloud – Cerca con GoogleHow to Add a Printer to Your Raspberry Pi (or Other Linux Computer)How do you run tar.gz packages in Raspian? – Raspberry Pi Forums

SENSORLOGGER

Issues · alexstocker/sensorloggerSpin Down and Manage Hard Drive Power on Raspberry Pi •(3) 🥧Raspberry Pi 3B3B+ USB SATA/SSD (2019) 🥧 – YouTubeBasic circuits for the Raspberry Pi | Knight of PiA.N.S.U. – A.N.S.U.Suite software elettrico per Raspbian – MST-tutorial

VNC

YouTubeHelp recreate trashed /etc/init.d/hostname.sh fileUn semplice analizzatore della rete su Raspberry Pi (per noob) – ilTucci.com

rete

Setting WiFi up via the command line – Raspberry Pi Documentationethernet – Raspberry Pi 3 – eth0 wrongfully named ‘enx…’ – Raspberry Pi Stack Exchange

raspistill

Lightweight python motion detection – Raspberry Pi ForumsAccess Images via webserver · pageauc/pi-timolo Wiki · GitHubHome · pageauc/pi-timolo Wiki · GitHubRaspberry Pi As Low-cost HD Surveillance Camera: 13 Steps (with Pictures)Videosorveglianza con Raspberry Pi e motioneye – RaspberryItalyraspistill – Raspberry Pi DocumentationPiKrellCam | Variax Firmationforse camera infrarossitrasformare in https per sito in raspberryRaspberry Pi – Raspbian-Update “Jessie” to “Stretch”CONTROLLO VERSIONE How To per Raspberry – Controllare la versione di Raspbian (update & upgrade) – Meccanismo Complessoche raspberry ho? Identify hardware version from within Raspbian – Raspberry Pi ForumsCome impostare un HDD esterno per OwnCloud su Raspberry –balenaEtcher – HomeRaspberry Pi 3 B+ HDD hard disk esterno | Raspberry boot da USBAvviare Raspberry Pi tramite disco esterno (SSD o altro) | inDomus.itCome installare e configurare Raspbian in modalità “headless” | inDomus.itraspberry pi – Format an external drive with ext4 – Super UserI comandi Linux che gli utenti Raspberry Pi devono conoscere | Tom’s HardwareTOM CON LINUX Come avviare il Raspberry Pi 4 da SSD o chiavetta USB | Tom’s HardwareCome avviare il Raspberry Pi 4 da SSD o chiavetta USB | Tom’s HardwareEseguire uno script o programma al boot del raspberry pi – Gruppo Radio Firenze Attività Radioamatoriali Sperimentali(222) Raspberry Pi 3 USB SSD Boot – YouTubeFONDAMENTALE (222) ExplainingComputers – YouTube(224)CHIAVETTA USB 64GIGA Raspberry PI3 B+ Using A 64GB Sandisk Micro SD Extreme Memory Card How To Format And Install Noobs – YouTubeRiprodurre Audio su uno Speaker Bluetooth con Raspberry Pi 3 | Elettronica Open Source

FLATPAK

Popular Apps—Linux Apps on FlathubUtilities—Linux Apps on FlathubRaspberry Pi – More than just magic mirrors and kodi!Help Installing R 3.3.1 from Raspbian Stretch – Raspberry Pi ForumsPiKrellCam: motion vector detect + OSD web interface – Raspberry Pi ForumsRASPBERRY OCCUPAZIONE SPAZIO IN CARELLE–Conoscere lo spazio su disco occupato da file o directory in Linux | WebAreaAGGIUNGERE USER–How To Add and Delete Users on Debian 10 Buster – devconnectedTEST HAMA USB–Testing Audio | USB Audio Cards with a Raspberry Pi | Adafruit Learning SystemTeach, Learn, and Make with Raspberry PiSERVE PER TESTARE CON QUALE HW REGISTRA E RIPRODUCE–Stream Raspberry Pi microphone through Wifi

GAZZETTINO

PROVO QUESTO–Quick guide to live audio stream with IceCast2 and Darkice – The Chips & Bits workshop!darkice >> Streaming software @ RadioStreaming e-learning-module —darkice [icecast & afins]CONFERMARE?–RASPAP HOME–raspap-webgui | Simple wireless AP setup & management for Debian-based devicesPOTENZIARE WIFI–MyNetBrick – Disabilitare il modulo Wi-Fi su RaspBerry pi 3HOTSPOT SENZA ETH0–SETTING DEFAULT LA WLAN1–Default settings – RaspAP DocumentationManual installation – RaspAP DocumentationDA PROVARE–How to Build an Internet Radio Station With Raspberry Pi, Darkice, and Icecast | Raspberry Pi | Maker ProTEST AUDIO–Raspbian Buster – ALSA – dmix interface for onboard audio hangs – workaround is use device sysdefault – Raspberry Pi Forumshttps://lvgl.io/tools/imageconverterWLAN1 PER RASPAP–This is how you turn your Raspberry Pi into a Wi-Fi point – TechzleDA VERIFICARE–Hotspot wifi con Raspberry PI 3 · stefanoteodorani.itDA PROVARE–How to use your Raspberry Pi as a wireless access point – The PiDA PROVARE–Create a Wi-Fi hotspot in less than 10 minutes with Pi Raspberry! – Howto Raspberry PiPROVARE–Configurare la Raspberry pi 3 come access point – Domenico SorianoDA VERIFICARE CONF. MANUALE–Configurazione del Raspberry Pi 3 come Access Point utilizzando RaspAP – RaffaeleChiatto.comBOH?–RaspAP · GitHubFUNZIONA SE SI PARTE DA NUOVO CON ETH0 E WLAN0– up a Raspberry Pi as a routed wireless access point – Raspberry Pi DocumentationTune SLEEP HD–Your Hard Disk with hdparm » Linux MagazineVEDERE VERSIONE PROGRAMMA–APT HOWTO – Ottenere informazioni sui pacchettiKERNEL VEDI–How to check which version of Pi Kernel I have Installed? – Raspberry Pi ForumsDA VERIFICARE- LA PRIMA VOLTA NON FUNZIONAVA–DRIVER AC1300,VERIFICA DOPO–GitHub – fastoe/RTL8812BU_for_Raspbian: RTL8812BU Driver for RaspbianLEGGERE LA PARTE FINALE PER AGGIORNARE IL KERNEL-NON USARE PERO QUESTO DRIVER–GitHub – morrownr/88x2bu: Linux Driver for USB WiFi Adapters that use the RTL8812BU and RTL8822BU ChipsetsRTL-CONFERMO VA BENE SOLO QUESTO-PROVATO E FUNZIONANTE PER AC1300 ARCHER T3U—PROVARE QUESTO—-GitHub – MyDynasty/RTL88x2BU-Linux-Driver: raspberry, rtl8812bu, 5.4.51-v7l+

MACACO

INVIARE FOTO O VIDEO PER FTP PIKRELLCAM–ftp videoCANCELLARE FOTO IN AUTOMATICO–PiKrellCam: motion vector detect + OSD web interface – Page 33 – Raspberry Pi ForumsSE NON TROVI UN COMANDO CERCA COSÌ—some help with “command not found” errors – Raspberry Pi ForumsUsing a standard USB webcam – Raspberry Pi DocumentationWIFI USB DRIVER RPi USB Wi-Fi Adapters – eLinux.orgWIFI DRIVER NON PER RASPBERRY rtl819x – Debian Wikirtl819x – Debian WikiWIFI DA STUDIARE–Raspberry Pi – WiFi dongle en instellingenVEDERE SE WIFI COMPIOLARE–WiFi – Debian WikiTANTE COSE DI DOMOTICS–Raspberry Pi – Centro di conoscenza DomoticX

STREAMING

HD Video & Audio RealTime Streaming from RaspberryPi to the browser with UV4L – YouTubeUV4L, two-way WebRTC Data Channels demo – YouTubeDemos – (advanced) ProjectsInstallation for ARM (Raspberry Pi) – (advanced) ProjectsPARTIRE DA QUI–(advanced) Projects – Linux Projects, AI, ML & Deep Learning, Real-time audio video streaming, RoboticsA Robot for real-time object detection with accelerated TensorFlow models, tracking and WebRTC streaming – (advanced) ProjectsINSEGUITORE–UV4L: a Raspberry Pi-based robot for real-time video tracking & streaming with TensorFlow and WebRTC – YouTubeArducam USB UVC CameraArducam PTZ Pan Tilt Zoom Camera Controller for Raspberry Pi 4/3B+/3 – Sensor/Camera Board NOT Included – ArducamELABORAZIONE IMMAGINI HOME–QA StackQA STACK NORMALIZZARE–Confronto di immagini – algoritmo velocePiKrellCam@picam HelpAGGIUNGERE MODALITA GRAFICA A LIGHT–GUIDE: Raspbian Lite with RPD/LXDE/XFCE/MATE/i3/Openbox/X11 GUI – Raspberry Pi ForumsINSTALLARE CHROMIUM RASPBERRY–How to get Google Chromium for the Raspberry Pi

ZEROTIER

Join a Network – ZeroTier Knowledge Base – ZeroTierAPPLICAZIONI UTILI–Progetti per il Raspberry Pi: applicazioni e idee nel 2021 – IONOSLEGGERE DA SERIALE USB?PYTHON–pyserial · PyPICRONTAB–Come eseguire cron job ogni 5, 10 o 15 minuti su LinuxVEDERE VELOCITà E TEMPERATURA–xDevs.com | Overclocking for Raspberry Pi 3 Model B

RIVISTE

NUOVA ELETTRONICA

nuova elettronica —+ 1000BiT +— Links1000BiT – Old computer magazinesVecchie rivisteElettronica 2000 n° 006 : MK Periodici s.n.c. : Free Download, Borrow, and Streaming : Internet Archivevecchi progetti di cercametalli nelle riviste italiane – Elettronica dei metal detector

ROBUR

D-MNL048_H_19MCMSDC013_Prontuario_K18_Simply_Hybri_IT.pdfZonizzazione Acustica Comunale (ZAC) – Comune di Armeno

SOFTWARE

LABVIEW

NI Product Activation – National InstrumentsDownload of Example Projects for DAVE™ Apps – Infineon TechnologiesNI myRIO: File system – YouTubeWhat’s New and Improved in Office 2016 for Office 365 – Office SupportCloud Dashboard for LabVIEW – YouTubeLabVIEW C Generator Support – National InstrumentsNI LabVIEW RIO Evaluation Kit – National InstrumentsDownloads – National InstrumentsGetting Started with CompactRIO – Remotely Monitoring I/O – National InstrumentsAcademic Hardware Products (ELVIS, myDAQ, myRIO) – NI Discussion ForumsCommunity: Area di community: NI myRIO – National InstrumentsVISION ASSISTANT TEMPLATE–Risolto: About error -1074396077 (IMAQ Vision: Incompatible image type) – NI CommunitySORGENTI IMMAGINE :USB GIGA–Image Acquisition in NI Vision Assistant : 4 Steps – InstructablesLABVIEW NXG–(36) LabVIEW – YouTubeBonus fiscale Banco BPM e Cherry 106: credenziali di accesso alla Piattaforma SuperB – postafast@gmail.com – GmailWelcome to Freecode – Freecode(95) what’s the difference between 再 and 又 – YouTube

PYTHON

OpenCV Course – Full Tutorial with Python – YouTube

SOLARE

How to get current time using esp8266garbin_luciano_Tesi_definitiva_15-07-08_ore_17,00Misura irraggiamento solare: solarimetri e piranometri

SOLIDEDGE

RISORSE EDUCATIVE Academic PartnersPORTALE SOLID EDGE CAD File Sharing | SiemensLIBRERIA RISORSE PLM, gestione del ciclo di vita dei prodotti: Siemens Digital Industries SoftwareCANALE YouTubeDOWNLOAD STUDENTI Siemens Digital Industries Software Online StoreREQISITI DI SISTEMA System Requirements | Solid Edge | Product Development SoftwareSolid Edge | Novasystem

SPEEDTEST

Test di velocità Internet | Fast.com

Nuova cartella

SSONNO

Using Rotary Encoders with Arduino – YouTubeMisura di una resistenza: il ponte di Wheatstone – ElectroYou0900766b8148da98.pdfPROGRAMMARE INFINEON CON IDE–GitHub – Infineon/XMC-for-Arduino: Integration of Infineon’s XMC microcontrollers into the Arduino IDE.XMC1100 H‐Bridge 2Go · Infineon/XMC-for-Arduino Wiki · GitHubAN43 – Bridge CircuitsSingle-supply strain gauge bridge amplifier circuitCome configurare correttamente cella di carico con Arduino e ADC Hx711 – Italiano / Generale – Arduino ForumEasyEDA(Standard) – A Simple and Powerful Electronic Circuit Design ToolERRORE SCHEMA–msp430 – HX711 chip not working – Electrical Engineering Stack ExchangeHow to Interface With 5kg Balance Module or Load Cell : 7 Steps – InstructablesAmplifying a 100 mv signal from a pressure transducer to 0-5V or 0-10V – Using Arduino / General Electronics – Arduino ForumIMPORTANTE PER TEORIA PONTE–Realisation of a safety-cage with integrated force sensing for interactive aerial robotsDETTAGLI HX711 SIMILARI–microcontroller – Is it possible to use the HX711 as an amplifier without using its ADC capabilities? – Electrical Engineering Stack ExchangeADS1015 / ADS1115 | Raspberry Pi Analog to Digital Converters | Adafruit Learning SystemADS111x Ultra-Small, Low-Power, I2C-Compatible, 860-SPS, 16-Bit ADCs With Internal Reference, Oscillator, and Programmable Comparator datasheet (Rev. D)Utilizzare ADC ADS1115 con Raspberry | Giuseppe CaccavaleGitHub – adafruit/Adafruit_ADS1X15: Driver for TI’s ADS1015: 12-bit Differential or Single-Ended ADC with PGA and ComparatorUsing NI-VISA to Communicate with Your USB Device – NI-VISA 15.0 Help – National InstrumentsAssembly and Wiring | Adafruit 4-Channel ADC Breakouts | Adafruit Learning SystemPololu – A4988 Stepper Motor Driver CarrierIn-Depth: Control Stepper Motor with A4988 Driver Module & ArduinoRisolto: How to read Serial Data from Arduino using labview VISA? – NI CommunityRegex for Alphanumeric Strings – RegexLandSpecial Characters for Match Regular Expression and Search and Replace String – LabVIEW 2018 Help – National InstrumentsConvert from a String to a Numeric Data Type in LabVIEW – National InstrumentsLezione A3Microsoft PowerPoint – Analisi-frequenza-corrette.pptx [Sola lettura]

ST

Risolto: connect a stm32f401 board – NI CommunityDRIVER STM SERIALE LABVIEW STSW-LINK009 – ST-LINK, ST-LINK/V2, ST-LINK/V2-1 USB driver signed for Windows7, Windows8, Windows10 – STMicroelectronicsTEORIA ACCELEROMETRI PowerPoint – UniBS-06-Vibrazioni.pptxCIGADA Accelerometri e sismometri – Dipartimento di MeccanicaAn Introduction to MEMS Vibration Monitoring | Analog DevicesLABVIEW DAQ ASSISTANT YOUTUBE (580) Measurements I – Using Accelerometers in LabView – YouTubeSTSW-LINK009 – ST-LINK, ST-LINK/V2, ST-LINK/V2-1 USB driver signed for Windows7, Windows8, Windows10 – STMicroelectronicsSTM32 step-by-step – STMicroelectronics

STAMPANTI

HP

(434) HP Laserjet 1010 1018 1020 how to printer fuser replace. Canon lbp how to printer fuser replace. – YouTube(435) Solution of paper jam in printer & replacing teflon tube in HINDI – YouTube

STM

lucadentella.it – STM32 e ArduinoSTRINGA IMPOSTAZIONI PER NUCLEO Quick Start to STM Nucleo on Arduino IDE: 4 StepsAlla scoperta delle schede di sviluppo STM32 Nucleo | SettorezeroLUNGO PDF INTRODUTTICO Description of STM32F4 HAL and LL driversADATTARE IDE ARDUINO STM 32 Nucleo – Supporto Arduino Core | Michele MaffucciPARTIRE CON IDE Blink example · stm32duino/wiki Wiki · GitHubLAYOUT INFO GENERALI STM32 Nucleo-64 boards (MB1136) – UM1724Usare porte STM32 How portable is Arduino C on STM32 Core ? – Sciamanna LucioTUTTO STM E FAMIGLIA STM32duino_Workshop_PoliMImicropyton Visualizziamo un testo su un display LCD con la scheda NucleoF401RE – PerlatecnicaMicroPython su Nucleo F401RE – PerlatecnicaMPU-6050 (GY-521) Arduino Tutorial | Giuseppe Caccavale

TEMP

Sonoff Touch · arendst/Sonoff-Tasmota WikiMissing gpio 14 on new Sonoff basic (RF R2 V1.0) found – YouTubeAdding a DHT22 temperature and humidity sensor to the Sonoff | captain-slow.dk(84) Riprogrammare Sonoff Smart Switch Basic con Firmware Tasmota – YouTubeControllare un Sonoff tramite un pulsante o un interruttore esterno – inDomus.itBattery Powered ESP8266 WiFi Temperature and Humidity LoggerSonoff Basic · arendst/Sonoff-Tasmota WikiSALA DA PRANZO – ThingSpeak IoT🔥 JsonBuffer was not declared in this scope / does not name a type · Issue #756 · bblanchon/ArduinoJsonAutomatic reboot after wdt reset · Issue #1017 · esp8266/Arduino

THINGSPEAK

HOME CONTROLLO Sign In – ThingSpeak IoTFUNZIONI AGGIUNTIVE Apps – TimeControl – ThingSpeak IoTRead data stored in a ThingSpeak channel – MATLAB thingSpeakReadCODICE PER LEGGERE TEMP. ESP8266 Post Temperature Data and Read from Channel – MATLAB & Simulink – MathWorks ItaliaMISURA UMIDITA Moisture Sensor using HTTP POST Requests to Channel – MATLAB & Simulink – MathWorks Italiacon questo si aggiorna field Update channel data with HTTP GET or POST – MATLAB – MathWorks Italia

TINOCARUGATI

TINO CARUGHome

UEBBI

Uebbi – Indicazioni su come sviluppare il firmware – Franco Bersani HomePageUebbi, webby, U&B Project – Il sito per i possessori di U&B (uebbi, webby)Riproduci il tuo stream privato su U&B – Uebbi, webby, U&B ProjectRASPAP-CONFIGURAZIONE HOTSPOT–RaspAP WiFi Configuration Portal

UTIL

TRADUTTORE

Traduttorestill camera – Traduzione in italiano – esempi inglese | Reverso Contextdownload filezilla 3.17.0 (32-bit) gratis (windows)WinRAR – Prelievo

XEROX

01_WC3215_3225_it-IT.bookWorkCentre 3225 Download file

CMINDS

Glossary – CreativeMinds Glossary

irfanview

IrfanView Frequently Asked Questions

ALCOR

(363) Marelli ALCOR – pagina 3 – elettronidasalvare

TORTE

Focaccia al grano saraceno. Senza glutine e senza lattosio.Ridimensionare più immagini in un colpo solo » TheJoe.itApplicare gli stessi comandi a un insieme di immagini (Gimp batch) e farci un PDF | Informatica Libera – Blog di Francesco GalganiInstallazione e Configurazione del client NO-IP su Raspberry – RaffaeleChiatto.comMEDIA PLAYER CLASSIC Aiutamici.comDownloader di playlist YouTube online gratuitoDownloader di playlist YouTube online gratuitoDownloader di playlist YouTube online gratuitoDownload YouTube Videos in Linux Command LineCome cercare gruppi su Telegram | Salvatore Aranzulla(215) Guida Openshot “base”: editing, montaggio, esportazione – YouTubeAccesso negato a file e cartelle: come risolvere – IlSoftware.itDesktop Remoto: cos’è e come utilizzarlo, problemi e soluzioniOnline Censorship In China | GreatFire Analyzer(226) HOW TO SETUP PiVPN ON THE RASPBERRY PI TUTORIAL – YouTubeVNC (Virtual Network Computing) – Raspberry Pi Documentationitaly Archives – Low End Box Low End BoxPDF in TXT: Scarica file

ADOBE

10 Modi per Risolvere i Problemi di Esecuzione dei Prodotti Adobe

ALTERNATIVE

ALTERNATIVE A PRAAT praat – Search on AlternativeTo.net

ZOOM

134 136 3313 Online Taoist Meditation workshop

YOUTUBE TRICK

The Slow Mo Guys – YouTubeHow to Make Flipping Ebook Auto Flip?Caldaia – postafast@gmail.com – GmailHow to Convert a Video into a Time Lapse on Vimeo

VIDEO

RASBERRY

Raspberry Pi: Using Arduino IDE to compile and run sketches on the Pi – YouTubeLabviewraspberry video

LABVIEW

NI Vision: Step 6: Configure “Vision Assistant” Express VI – YouTubeLabVIEW Tutorial 37 – Project and File Structure (Enable Integration) – YouTubecertification CLAD LabVIEW – YouTubeWebcast Wednesday # 12 | Sneak Peek into CLAD Examination – YouTubeCertified LabVIEW Developer (CLD) Exam Demonstration – YouTubeIndex of /supportRemote Panels in LabVIEW — Distributed Application Development – National Instruments

VOCE

LPC Microsoft Word – Codifica_segnale_vocale.doc(409) Speech and Audio Processing 4: Speech Coding I – Professor E. Ambikairajah – YouTube(410) Digital Signal Processing 1: Signals and Systems – Prof E. Ambikairajah – YouTube(412) Speech and Audio Processing 1: Introduction to Speech Processing – Professor E. Ambikairajah – YouTubeAmbikairajah youtube – Cerca con Google(423) Introduction to Spectrogram Analysis – YouTube(424) Isabel Cooke McKay – YouTubeVocali nello SpettrogrammaTesi_-_Enrico_Massarente_-_matr_1084341.pdfFerrante.pdftesi politecnico 16 filtri simulinkmatlab Progetto FIRdsp_handout45.dviAllegato_63228.pdfFrom text to mp3 with gtts (reading external file) | python programming(429) Python Voice Assistant Tutorial #1 – Playing Sound with gTTS (Google Text to Speech) – YouTube(429) Tech With Tim – YouTubegTTS Documentationsintetizzatore vocale oddcast – Cerca con GoogleIl miglior Text To Speech free e italiano per convertire parole scritte in voce parlata – Navigaweb.netPresentazione trascrittore vocaleVirtual Singer – Sintesi della voceInstalling Effect, Generator and Analyzer plug-ins on Windows – Audacity ManualSpettrogramma con AUDACITY | metafoniametavisionescipy.signal.spectrogram — SciPy v0.19.0 Reference Guideformanti e link L’importanza di F1 e F2 – Tertium Aurissoftware musica suono TMH KTH :: SoftwareInternet Institute for Speech and HearingWASP – Waveform, Spectrogram and Pitch DisplayVTDemo – Vocal Tract Acoustics Demonstrator(436) marco tonini – YouTubePRAAT Downloading Praat for WindowsLUNGO ELENCO DI SW PER ELABORARE VOCE E LINGUE Products – SIL Language Technology(429) Python Voice Assistant Tutorial #1 – Playing Sound with gTTS (Google Text to Speech) – YouTubeDigital Signal Processing 9: Multirate Digital Signal Processi – Prof Ambikairajah – YouTube(439) Praat Voice Analysis Tutorial – YouTubeAnalisi spettrografica del segnale vocale, Francesco Cutugno « Elaborazione del Linguaggio Naturale « Scienze Matematiche Fisiche e Naturali « Federica e-Learning(439) Linguistiklabor Albert-Ludwigs-Universität Freiburg – YouTube(439) Plotting pitch and intensity contours with annotations in Praat – YouTube(439) Setting up an ELAN database – YouTube(439) Transana Tutorial 1/4 – Creating a new project and importing video – YouTubeMANUALR UsingPraatforLinguisticResearchLatest.pdf

NEURO

Come Creare una Rete Neurale Artificiale da Zero – ItalianCoders(504) Introduzione Alle Reti Neurali 01: Cos’è una Rete Neurale? – YouTubeCosa è il Machine Learning ? – Profession AIProfession AIMachine Learning – ItalianCodersSPINDOX INTRODUTTIVO Reti Neurali, Machine Learning: proviamo a smitizzarleMicrosoft Word – MORI-ILEANA_COMPLETO_LA-PRODUZIONE-DI-VOCALI-E-CONSONANTI-NEL-SISTEMA-NERVOSO-CENTRALE.docPITCH Cardace_Antonio_tesi.pdfVoce umana – Fisica, onde MusicaHome | Auditory NeuroscienceSoundBridge – A Free Full-Featured DAW Designed with Simplicity in MindMauro Graziani – Audio digitale ed elaborazione del suonoMADDE Tolvan DataLorenzo SenoAcoustic phoneticsSintesi vocale – WikipediaPLUGIN AUTOTALENT How do I change the formants of my voice separately from the pitch? – Audacity ForumVST 4 FREE – Free Audio Plug-ins ArchivesDA PROVARE SFS Speech Filing Systemdownload ableton live 9.1.9 (32-bit) gratis (windows)LABVIEW Formant (Vowel) Synthesis – Musical Signal Processing with LabVIEW (All Modules) – OpenStax CNXLabVIEW 2012 Advanced Signal Processing Toolkit Download Confirmation – National InstrumentsUsing LabVIEW for Voice Signal Analysis – NI CommunityFormant (Vowel) Synthesis – Musical Signal Processing with LabVIEW (All Modules) – OpenStax CNXBELLA TESI OCR TO VOICE LABVIEW 872 Rajiv Kumar Yadav (80751017).pdfDIFFICILE TRATTATO SU ELABORAZIONE SEGNALI LabVIEW Digital Signal Processing and Digital CommunicationsRASPBERRY Waves generator – Is there a faster way to calculate sines? – Raspberry Pi ForumsGROSSO MANUALE SU PRAAT Speech signal processing by PraatHOME PRAAT Praat: doing Phonetics by ComputerUTILE PER SCRIPTING Praat Scripting Tutorial | Homepagebuoni video su pitch (518) Ian Wilson – YouTubemodifica pitch Pitch modification in praat – Stack OverflowPRAAT E PYTHON Parselmouth – Praat in Python, the Pythonic way — Parselmouth 0.3.3 documentationPITCH MANIP CINESE (518) Praat – Pitch manipulation – YouTubeTABELLA VOCALI CON SUONI Linguistics 103 – Vowel Chart with Sound FilesMANIPOL PITCH CINESE 5 VIDEO IN CINESE(518) The P Lab – YouTubeTABELLA FORMANTI Using Formants to Synthesize Vowel Sounds – SoundBridgeGENERICO DISEGNO PITCH (519) Wayne Cowart – YouTube(521) Introduction to using Praat scripts: the gridmaker script – YouTubeSCRIPT PRAAT VEDERLO Basic and advanced Praat Scripting – ppt video online downloadDOMANDA HA SENSO MODIFICARE FORMANTI? (521) Praat – Manipulation of Pitch and Duration – YouTubeFORMANTI DI PAROLE INGESI VEDI DOWSpeech Analyzer – SIL Language TechnologyGAZZARO Spectrogram readingPLUGIN PER MODIFICARE AUDIO Praat Vocal ToolkitIMPARA SCRIPT lecturenotes.pdfSINTETIZZATORE KlattWorksMANUALE KLATTWORKSEDITOR STx BUONO PER FARE TUTTO SUI SEGNALISTx Help Version: 3.7.5PER UN CAFFE A Tutorial on Extracting Formants in PraatESTRARRE A MANO Using Praat to find vowel formantsPAGINA GOOGLE DI PARTENZA PER ESTRACT FORMANT – Cerca con GoogleALTRA SOLA SCRIPT ESTRAZIONE FORMANTI user.keio.ac.jp/~kawahara/scripts/get_formants_midpoint.praatALTRA BUFALA ESTRAI FORMANTI https://www.acsu.buffalo.edu/~cdicanio/scripts/Get_Formants.praatPOTREBBERO ANDARE QUANDO SO USARLIPraat scripts – Christian DiCanioR E PRAAT Supported Commands – PraatRGUARDARE IN SEGUITO PER TEXT GRIG E PER FORMANTI SCRIPT Software and resources – University of VictoriaRIFERIMENTO GOOGLE PER ESTRAZIONE FORMANTI EXTRACT FORMANT – Cerca con GoogleTENTATIVO DI DEFINIRE PITCH E FORMANTIAUDACITY How to Change the pitch & formant of your voice with Audacity « Audacity :: WonderHowToCOMANDI STX Spectrogram and Parameter Viewer Hotkeys – STX WikiGUARDARE MANUALE STX modify FORMANT stx – Ricerca GoogleFORMANT EDITOR GITUB GitHub – soskuthy/formant_edit: software for editing dynamic formant measurementsPRAAT PER LINUX Downloading Praat for LinuxMANUALE DI PRAAT Index of /praat/manualESERCIZIO DA STANFORD PRAAT TutorialMANUALE INTERESSANTEPRENDERE COME RIFERIMENTO PER FORMANTI(533) PRAAT textgrid demo – YouTubeUTILE TESI SULL’ABORAZIONE DELLE EMOZIONI VOCALI PRAATAUDIO PLUGIN PER DEBIAN Debian Multimedia Audio plugins packagesSFS MANUALE https://www.phon.ucl.ac.uk/resource/sfs/help/index.htmlSTRUMENTI ASSOCIATI A SFSCORSO ONLINE DI PRAATMATLAB ANALISI VOCALE analisiT3.pdfMATLAB AANALISI SEGNALI VOCALI Microsoft PowerPoint – AISV08_AnSegnale_Parti1_2.pptSINTETIZZATORI Sintetizzatorionline.itBELLE FORMANTI DI VOCALI Semplici modelli per la voce – Fisica, onde Musica

PRAAT

styler_praat_scripts/nasality_automeasure at master · stylerw/styler_praat_scripts · GitHubTon WempePraat script resourcesMODIFICA FORMANTI PRAAT VOCAL TOOLKIT Praat Vocal Toolkit: Change formantsnuovaelettronica247.pdfFernanda Barrientos – ResourcesCANTARE CON THEREMIN Making The Theremin ‘Sing’ – SynthtopiaTONI CINESI Seeing the Tones of Mandarin Chinese with Praat | SinosplicePRAAT THEREMIN IN STACKOVERFLOW audio – Real time pitch detection – Stack Overflow

THEREMIN

(53) Carolina Eyck – YouTube

PURE NOTE

PURE DATA SOFTWARE GENERA SUONI (55) Pure data – tutorial ITA – 00 introduzione – YouTubeSINTESI CON PURE DATA (56) Tommaso Rosati – YouTube

WINSNOORA

WINSNOORA (59) Input parameters of a Klatt speech synthesizer – YouTubeWINSNOORI WEB CERCA klatlt voice synthetizer – BingBIBLIOGRAFIA PER KLATT Multi-Objective Genetic Algorithm to Automatically Estimating the Input Parameters of Formant-Based Speech Synthesizers | IntechOpenAPPROFONDIRE PER KLATTA (PDF) A genetic algorithm with look-ahead mechanism to estimate formant synthesizer input parameters | Pedro Batista – Academia.edu

VPN

Raspberry PI VPN Server with PiVPN – peppe8oOpen Port Check Tool – Test Port Forwarding on Your RouterZEROTIER CONFIGURAZIONE_PI–Bridge your ZeroTier and local network with a RaspberryPi – ZeroTier Knowledge Base – ZeroTierCERCARE INFO ZEROTIER–Search – ZeroTierZEROTIER–Root Server IP Addresses – ZeroTier Knowledge Base – ZeroTierHuawei Modems OpenVPN Install – YouTubeCome trasformare il vostro Raspberry Pi in un server VPN – Guida all’installazione – Andrea Piani – Sviluppatore

WORDPRESS

CAMBIARE NOME ESPORTA SITO–Come posso configurare WordPress affinché utilizzi un nuovo dominio?Come trasferire WordPress manualmente

WP

VERIFICA SICUREZZA–Sucuri SiteCheck – Free Website Security Check & Malware ScannerELENCO DI TEST VERIFICA TRIJAN–Controllare se il tuo sito è affetto da malware e come difendersi

ZEROTIR

Connecting to a remote MySQL server on the go with ZeroTierHow to manage remote servers using ZerotierCome utilizzare il tunneling SSH per accedere ai server con restrizioni e navigare in modo sicuro – it.phhsnews.comSTART DEFALT–Raspberry Pi into VPN (Video How-To) – Kiril Peyanski’s BlogBuilding a ZeroTier Bridged Network – David RamsdenBest way to expose LAN network over Zerotier network. · Issue #805 · zerotier/ZeroTierOne · GitHubZEROTIER PITASSI BUONO–Accedi al tuo dispositivo IoT ovunque tu sia, con ZeroTier – Il blog di Michele Pinassi

Mozilla Firefox

Aiuto e guidePersonalizza FirefoxCollabora con noiInformazioni

159.149.49.40

wview debian vantage davis nlsu2 – Cerca con GoogleAndrea Beggi » Linksys NSLU2Download Angry IP Scanner from SourceForge.netElettronicaNet Cavi USB, Convertitori di interfaccia USB, Convertitore da Usb a Seriale, Convertitore da Usb a Parallela, ConvFree Download All-In-Wonder 128 Pro AGP – Downloadatoz.comGuida stazioni radioHow to Use the Sound Output VIs in LabVIEW to Play Wave Files – KnowledgeBase – Support – National InstrumentsIP vpnInstallare LAMP su debian ubuntu ovvero come installare apache php mysqlMSN.comMessage Search – NI Discussion ForumsMicrosoft bCentralNAS WiFi Asus WL-500GP FTP Samba IP-Cam Torrent 400GB ! su eBay.it Server, Networking, Informatica e PalmariNSLU2-Linux – parti con lennyOfficial eMule-Board Configurazione Access Point + RouterOnline IP CIDR – VLSM Supernet CalculatorPUBLICWubi – Ubuntu Installer for Windows

advantech

USB IO Modules – buy.advantech.eu

fotovoltaico

Pannelli solari fotovoltaici guadagni subito grazie alla forza del nostro gruppo d’acquisto e ottieni garanzie e prezzi bassi!homeippierpaolo

io

Google Traduttore#IP camera ES-IP607W China ,Ip Camera and server,CCTV Cameras & Accessories offered by chinese wholesalerLEDBlink Learning Wiring ALPHA 1.0Lift01.com – Lift 01 LIFT – HomeWireless IP Camera Pan-Tilt 2-ways Audio Mobile Viewing – JS-WI01 – Top cctv (China Manufacturer) – Productsx264 revision 1376_forse va投影仪 – 淘宝网#ListView

joomla

Home – Lezionionline – e-Learning dinamico per e-Prof dinamici! Tutorial Joomla e Moodle

linux

Slackit.org – Slackware Linux Essentials – Archiviare i File[linux] Leggere I File.zip – WinInizio

moodle

lucapierfederici.it » Tutorial installare Moodle

nslu2

AVIOSYS InternationalAndrea Beggi » Linksys NSLU2Aviosys 9100A Plus Video Server.Aviosys IP Video Server 9100A Plus 4 Porte CCTV + AUDIO su eBay.it Telecamere da sorveglianza, Antifurti e Sorveglianza, Audio,Debian on a Linksys NSLU2 (‘Slug’) — Florian HollerwegerDynDNS My AccountIP CameraInstalling Debian on NSLU2Italian NSLU2 forum • Visualizza forum – HardwareMeteohub – What is Meteohub aboutNSLU2 e Debian server a basso consumo! FiNeX.orgNSLU2-Linux – Debian – HomePage browseNSLU2-Linux – FAQ – FirmwareMatrix browseNSLU2-Linux – Main – HomePage browseNSLU2-Linux – Unslung – HomePage browsePLC Forum – Progetti On-line Main – Come FareWeather at the Buzbee Housebegbroke.org » nslu2

photoshow

Photodex – Downloading ProShow Gold

sheeva

wview on the Sheeva – wview Google GruppiDebian on the SheevaPlugE-zine – Debianizzati.OrgFactory Default u-Boot Environment – PlugWikiHow to solve NAND Nand ECC errorInstall Ubuntu 7.10 to a Flash Drive via CD USB Pen Drive LinuxMMC-SD alfa6SheevaPlug – Guide@Debianizzati.OrgSheevaPlug Installation guide – SqueezeboxWikiSheevaPlug Installer – PlugWikiSheevaplug – pure Linux geek juice!!!vncSheevaplug SBS Server for dummies – SqueezeboxWikiTechnical Bulletins Setting Up The Sheeva PlugThe SheevaPlug Finally Arrives – phrison.comTutorial – wview on the Sheeva – wview Google Gruppiimportante recupera errore nandFactory Default u-Boot Environment – PlugWiki

sitimeteo

Biometeolab – Centro di Ricerche in Bioclimatologia Medica, Biotecnologie e Medicine NaturaliRete MNW e confronti – Forum meteo MeteoNetwork – Meteo.it

sophos

Mal-AutoInf-A Malicious behavior – Sophos security analysis

unfilo

PC Rs232 interface for Hygro-Thermo 433 MHz remote sensor – about microcontroller

wview_forum

vproRunState retrying archive record… – wview Google GruppiGoogle TraduttoreTeamViewer – accesso remoto gratuito e condivisione del desktop remoto via internetElectrically Conductive Epoxy | Atom AdhesivesProgramming the ESP8266 WeMos-D1R2 Using Arduino Software/IDE: 15 Steps

RADIO MICROFONO CON DARKICE ICECAST E RaspAP

COME INVIARE A UEBBI IL GAZZETTINO PADANO

L’idea nasce dalla necessità di inviare su un canale di UEBBI riservato all’utente all’indirizzo 10.0.0.240:8000/stream il segnale del Gazzettino Padano proveniente da una  radio posta in casa.
Per realizzare il progetto servono tre cose:
HOTSPOT RaspAP
DARKICE
ICECAST
HOTSPOT

HOTSPOT RaspAP

Seguire le istruzioni in questo link , oppure direttamente in GITHUB Verificare la compatibilità con il sistema operativo che si vuole usare. A me interessa Debian Buster per Raspberry.  Edimax Wireless 802.11b/g/n nano USB adapter potrebbe servire come interfaccia WIFI nel caso non ci fosse a bordo il chip. L’istallazione completa di codici SSL è automatizzata con questi comandi:

sudo apt-get update
sudo apt-get full-upgrade
sudo reboot
Accertarsi che non sia bloccato il WIFI del Raspberry
sudo rfkill unblock wlan

In ogni caso si può anche vedere il manuale per una installazione passo passo.
Installazione automatica:

curl -sL https://install.raspap.com | bash

Con il comando


	

IPAD OPENVPN

Per installare il client su IPAD è necessario creare un file nome_utente.ovpn. questo file viene creato automaticamente andando direttamente sul server seguendo le istruzioni. Inviare il file per posta
Scaricare l’app per ipad Openvpn direttamente dall’app store.
Si può seguire questo video.
Più brevemente, dopo aver attivato l’app e inviato dal server il file .ovpn ad un indirizzo di posta usato anche sull’ipad si apre la posta e appare come allegato il file, riconoscibile anche dall’icona caratteristica di openvpn. Selezionadola si apre un menu nel quale appare anche l’icona di openvpn. Premendola si incolla il file nell’applicazione. Si apre la pagina con il nuovo account, fare add nell’angolino in alto a destra.
La nuova voce appare anche nel menu VPN delle impostazioni.

DEBIAN 10 LIVE

Partendo da un dvd con debian 10 MATE si selezione la modalità live. Se sul pc è gia installato un SO viene chiesto di assegnare dello spazio alla nuova installazione (ci deve essere spazio sufficiente). Nel mil caso avevo già win7 installato e parcchio spazio così ho assegnato una buona quota a debian. Si dà il caso che a seguito di casini ho dovuto reinstallare debian. Alla fine mi sono trovato tre SO attivabile a scelta al boot: debian nuovo, win7, debian vechio e scassato ma ancora funzionante (vedere come fare a eliminare questo). Siccome il mio pc ha una scheda grafica forsevecchia tipo RADEON inizialmente, nella prima installazione di debian 10 avevo scaricato dei driver (mettere link). Inoltre avevo installato chrome (mettere link) . Il tutto in formato .deb. Ho installato gdebi che è un installatore di pacchetti deb, non so se era necessario visto che in mate c’è già un gestore di pacchetti. Ho poi installato JOE che è il mio editor preferito.
Ho scoperto che le partizioni di win7 e del vecchio debian sono visibili come volumi quindi invece di scaricare di nuovo i driver per RADEON e CHROME li ho copiati dal vecchio sistema dopo aver montato i volumi.

DEBIAN 10 LIVE

Partendo da un dvd con debian 10 MATE si selezione la modalità live. Se sul pc è gia installato un SO viene chiesto di assegnare dello spazio alla nuova installazione (ci deve essere spazio sufficiente). Nel mil caso avevo già win7 installato e parcchio spazio così ho assegnato una buona quota a debian. Si dà il caso che a seguito di casini ho dovuto reinstallare debian. Alla fine mi sono trovato tre SO attivabile a scelta al boot: debian nuovo, win7, debian vechio e scassato ma ancora funzionante (vedere come fare a eliminare questo). Siccome il mio pc ha una scheda grafica forsevecchia tipo RADEON inizialmente, nella prima installazione di debian 10 avevo scaricato dei driver (mettere link). Inoltre avevo installato chrome (mettere link) . Il tutto in formato .deb. Ho installato gdebi che è un installatore di pacchetti deb, non so se era necessario visto che in mate c’è già un gestore di pacchetti. Ho poi installato JOE che è il mio editor preferito.
Ho scoperto che le partizioni di win7 e del vecchio debian sono visibili come volumi quindi invece di scaricare di nuovo i driver per RADEON e CHROME li ho copiati dal vecchio sistema dopo aver montato i volumi.

secondo

secondo testo

HISTORY

Debian 10 a partire dal 190221

[ 2.129991] ata5: SATA max UDMA/133 abar m2048@0xfe8ff000 port 0xfe8ff300 irq 25
[ 2.129993] ata6: SATA max UDMA/133 abar m2048@0xfe8ff000 port 0xfe8ff380 irq 25
[ 2.130084] [drm] initializing kernel modesetting (RV710 0x1002:0x954F 0x174B:0xE990 0x00).
[ 2.130172] ATOM BIOS: 11X
[ 2.130199] radeon 0000:04:00.0: VRAM: 512M 0x0000000000000000 – 0x000000001FFFFFFF (512M used)
[ 2.130201] radeon 0000:04:00.0: GTT: 1024M 0x0000000020000000 – 0x000000005FFFFFFF
[ 2.130204] [drm] Detected VRAM RAM=512M, BAR=256M
[ 2.130205] [drm] RAM width 64bits DDR
[ 2.130280] [TTM] Zone kernel: Available graphics memory: 2020452 kiB
[ 2.130281] [TTM] Initializing pool allocator
[ 2.130287] [TTM] Initializing DMA pool allocator
[ 2.130307] [drm] radeon: 512M of VRAM memory ready
[ 2.130308] [drm] radeon: 1024M of GTT memory ready.
[ 2.130316] [drm] Loading RV710 Microcode
[ 2.130343] radeon 0000:04:00.0: firmware: direct-loading firmware radeon/RV710_pfp.bin
[ 2.130366] radeon 0000:04:00.0: firmware: direct-loading firmware radeon/RV710_me.bin
[ 2.130382] radeon 0000:04:00.0: firmware: direct-loading firmware radeon/R700_rlc.bin
[ 2.130406] radeon 0000:04:00.0: firmware: direct-loading firmware radeon/RV710_smc.bin
[ 2.130409] [drm] Internal thermal controller with fan control
[ 2.131520] [drm] radeon: dpm initialized
[ 2.131593] radeon 0000:04:00.0: firmware: direct-loading firmware radeon/RV710_uvd.bin
[ 2.131608] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.155426] [drm] PCIE GART of 1024M enabled (table at 0x000000000014C000).
[ 2.155465] radeon 0000:04:00.0: WB enabled
[ 2.155468] radeon 0000:04:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0x(ptrval)
[ 2.155470] radeon 0000:04:00.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0x(ptrval)
[ 2.155872] radeon 0000:04:00.0: fence driver on ring 5 use gpu addr 0x000000000005c598 and cpu addr 0x(ptrval)
[ 2.155874] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.155875] [drm] Driver supports precise vblank timestamp query.
[ 2.155876] radeon 0000:04:00.0: radeon: MSI limited to 32-bit
[ 2.155921] radeon 0000:04:00.0: radeon: using MSI.
[ 2.155943] [drm] radeon: irq initialized.
[ 2.201897] [drm] ring test on 0 succeeded in 1 usecs
[ 2.201902] [drm] ring test on 3 succeeded in 2 usecs
[ 2.386468] [drm] ring test on 5 succeeded in 1 usecs
[ 2.386471] [drm] UVD initialized successfully.
[ 2.386604] [drm] ib test on ring 0 succeeded in 0 usecs
[ 2.386620] [drm] ib test on ring 3 succeeded in 0 usecs
[ 2.416252] tsc: Refined TSC clocksource calibration: 2399.950 MHz
[ 2.416259] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2298086d749, max_idle_ns: 440795294037 ns
[ 2.545401] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.545413] clocksource: Switched to clocksource tsc
[ 2.568511] ata1.00: ATA-8: Hitachi HDP725032GLA380, GM3OA52A, max UDMA/133
[ 2.568514] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 2.569446] ata1.00: configured for UDMA/133
[ 2.569655] scsi 0:0:0:0: Direct-Access ATA Hitachi HDP72503 A52A PQ: 0 ANSI: 5
[ 2.608338] firewire_core 0000:01:05.0: created device fw0: GUID 001e8c00015a0b6b, S400
[ 2.676221] usb 5-1: new low-speed USB device number 2 using uhci_hcd
[ 2.872232] usb 5-1: New USB device found, idVendor=046d, idProduct=c05b, bcdDevice=54.00
[ 2.872235] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.872238] usb 5-1: Product: USB Optical Mouse
[ 2.872240] usb 5-1: Manufacturer: Logitech
[ 2.881841] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.882571] ata2: SATA link down (SStatus 0 SControl 300)
[ 2.899540] usbcore: registered new interface driver usbhid
[ 2.899541] usbhid: USB HID core driver
[ 2.901354] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.0/0003:046D:C05B.0001/input/input5
[ 2.901429] hid-generic 0003:046D:C05B.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1/input0
[ 3.056261] [drm] ib test on ring 5 succeeded
[ 3.056649] [drm] Radeon Display Connectors
[ 3.056650] [drm] Connector 0:
[ 3.056650] [drm] VGA-1
[ 3.056652] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 3.056652] [drm] Encoders:
[ 3.056653] [drm] CRT2: INTERNAL_KLDSCP_DAC2
[ 3.056654] [drm] Connector 1:
[ 3.056655] [drm] HDMI-A-1
[ 3.056655] [drm] HPD1
[ 3.056656] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 3.056657] [drm] Encoders:
[ 3.056658] [drm] DFP1: INTERNAL_UNIPHY
[ 3.056658] [drm] Connector 2:
[ 3.056659] [drm] DVI-I-1
[ 3.056659] [drm] HPD4
[ 3.056661] [drm] DDC: 0x7f10 0x7f10 0x7f14 0x7f14 0x7f18 0x7f18 0x7f1c 0x7f1c
[ 3.056661] [drm] Encoders:
[ 3.056662] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 3.056662] [drm] DFP2: INTERNAL_UNIPHY2
[ 3.120954] [drm] fb mappable at 0xD034D000
[ 3.120955] [drm] vram apper at 0xD0000000
[ 3.120955] [drm] size 8294400
[ 3.120956] [drm] fb depth is 24
[ 3.120957] [drm] pitch is 7680
[ 3.121014] fbcon: radeondrmfb (fb0) is primary device
[ 3.171523] Console: switching to colour frame buffer device 160×64
[ 3.174637] radeon 0000:04:00.0: fb0: radeondrmfb frame buffer device
[ 3.188317] [drm] Initialized radeon 2.50.0 20080528 for 0000:04:00.0 on minor 0
[ 3.194548] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 3.195062] ata3.00: ATAPI: TSSTcorp CDDVDW TS-H653Q, 0303, max UDMA/33
[ 3.195813] ata3.00: configured for UDMA/33
[ 3.196769] scsi 2:0:0:0: CD-ROM TSSTcorp CDDVDW TS-H653Q 0303 PQ: 0 ANSI: 5
[ 3.460271] usb 5-2: new low-speed USB device number 3 using uhci_hcd
[ 3.534666] ata4: SATA link down (SStatus 0 SControl 300)
[ 3.657234] usb 5-2: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
[ 3.657237] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.657239] usb 5-2: Product: USB Keyboard
[ 3.657242] usb 5-2: Manufacturer: Logitech
[ 3.691760] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/0003:046D:C31C.0002/input/input6
[ 3.748450] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-2/input0
[ 3.782991] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.1/0003:046D:C31C.0003/input/input7
[ 3.840379] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.1/0003:046D:C31C.0003/input/input8
[ 3.840429] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-2/input1
[ 3.846762] ata5: SATA link down (SStatus 0 SControl 300)
[ 4.056218] usb 4-5: new high-speed USB device number 4 using ehci-pci
[ 4.158632] ata6: SATA link down (SStatus 0 SControl 300)
[ 4.166734] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[ 4.166743] sd 0:0:0:0: [sda] Write Protect is off
[ 4.166745] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.166756] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
[ 4.192630] sda: sda1 sda2 sda3
[ 4.193018] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.207190] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[ 4.207192] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.207468] sr 2:0:0:0: Attached scsi CD-ROM sr0
[ 4.214064] usb 4-5: New USB device found, idVendor=058f, idProduct=6377, bcdDevice= 1.00
[ 4.214067] usb 4-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4.214068] usb 4-5: Product: Mass Storage Device
[ 4.214070] usb 4-5: Manufacturer: Generic
[ 4.214071] usb 4-5: SerialNumber: 920321111113
[ 4.219531] usb-storage 4-5:1.0: USB Mass Storage device detected
[ 4.219679] scsi host6: usb-storage 4-5:1.0
[ 4.219774] usbcore: registered new interface driver usb-storage
[ 4.221583] usbcore: registered new interface driver uas
[ 4.809757] random: fast init done
[ 5.232971] scsi 6:0:0:0: Direct-Access Generic USB SD Reader 1.00 PQ: 0 ANSI: 0
[ 5.233581] scsi 6:0:0:1: Direct-Access Generic USB CF Reader 1.01 PQ: 0 ANSI: 0
[ 5.234203] scsi 6:0:0:2: Direct-Access Generic USB SM Reader 1.02 PQ: 0 ANSI: 0
[ 5.234827] scsi 6:0:0:3: Direct-Access Generic USB MS Reader 1.03 PQ: 0 ANSI: 0
[ 5.237251] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[ 5.238825] sd 6:0:0:1: [sdc] Attached SCSI removable disk
[ 5.241075] sd 6:0:0:3: [sde] Attached SCSI removable disk
[ 5.248581] sd 6:0:0:2: [sdd] Attached SCSI removable disk
[ 5.352371] random: plymouthd: uninitialized urandom read (8 bytes read)
[ 5.352555] random: plymouthd: uninitialized urandom read (8 bytes read)
[ 5.528220] raid6: sse2x1 gen() 3783 MB/s
[ 5.596202] raid6: sse2x1 xor() 4072 MB/s
[ 5.664216] raid6: sse2x2 gen() 4885 MB/s
[ 5.732203] raid6: sse2x2 xor() 4985 MB/s
[ 5.800207] raid6: sse2x4 gen() 7392 MB/s
[ 5.868209] raid6: sse2x4 xor() 5549 MB/s
[ 5.868210] raid6: using algorithm sse2x4 gen() 7392 MB/s
[ 5.868211] raid6: …. xor() 5549 MB/s, rmw enabled
[ 5.868212] raid6: using ssse3x2 recovery algorithm
[ 5.878722] xor: measuring software checksum speed
[ 5.916205] prefetch64-sse: 9509.000 MB/sec
[ 5.956201] generic_sse: 8421.000 MB/sec
[ 5.956202] xor: using function: prefetch64-sse (9509.000 MB/sec)
[ 6.059389] Btrfs loaded, crc32c=crc32c-generic
[ 6.640731] cryptd: max_cpu_qlen set to 1000
[ 6.822240] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[ 8.225297] systemd[1]: Inserted module ‘autofs4’
[ 8.253473] random: crng init done
[ 8.393035] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 8.412293] systemd[1]: Detected architecture x86-64.
[ 8.434013] systemd[1]: Set hostname to .
[ 9.909293] systemd[1]: Listening on Syslog Socket.
[ 9.909387] systemd[1]: Reached target Swap.
[ 9.909451] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 9.910610] systemd[1]: Created slice User and Session Slice.
[ 9.910627] systemd[1]: Reached target Slices.
[ 9.911114] systemd[1]: Created slice system-openvpn.slice.
[ 9.911184] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 10.141324] EXT4-fs (sda3): re-mounted. Opts: (null)
[ 10.334124] systemd-journald[236]: Received request to flush runtime journal from PID 1
[ 11.895735] audit: type=1400 audit(1613726545.673:2): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”libreoffice-senddoc” pid=271 comm=”apparmor_parser”
[ 11.896324] audit: type=1400 audit(1613726545.677:3): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”libreoffice-oopslash” pid=272 comm=”apparmor_parser”
[ 11.921722] audit: type=1400 audit(1613726545.701:4): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”libreoffice-xpdfimport” pid=275 comm=”apparmor_parser”
[ 11.922331] audit: type=1400 audit(1613726545.701:5): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”nvidia_modprobe” pid=274 comm=”apparmor_parser”
[ 11.922336] audit: type=1400 audit(1613726545.701:6): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”nvidia_modprobe//kmod” pid=274 comm=”apparmor_parser”
[ 11.940112] audit: type=1400 audit(1613726545.717:7): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session” pid=270 comm=”apparmor_parser”
[ 11.940118] audit: type=1400 audit(1613726545.717:8): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session//chromium” pid=270 comm=”apparmor_parser”
[ 11.940629] audit: type=1400 audit(1613726545.721:9): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”/usr/bin/man” pid=276 comm=”apparmor_parser”
[ 11.940632] audit: type=1400 audit(1613726545.721:10): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”man_filter” pid=276 comm=”apparmor_parser”
[ 11.940637] audit: type=1400 audit(1613726545.721:11): apparmor=”STATUS” operation=”profile_load” profile=”unconfined” name=”man_groff” pid=276 comm=”apparmor_parser”
[ 12.573768] input: PC Speaker as /devices/platform/pcspkr/input/input9
[ 13.416421] kvm: disabled by bios
[ 13.459296] kvm: disabled by bios
[ 13.491548] kvm: disabled by bios
[ 13.543362] kvm: disabled by bios
[ 13.770225] coretemp coretemp.0: Using relative temperature scale!
[ 13.770894] coretemp coretemp.0: Using relative temperature scale!
[ 13.770928] coretemp coretemp.0: Using relative temperature scale!
[ 13.771064] coretemp coretemp.0: Using relative temperature scale!
[ 14.117085] intel_powerclamp: No package C-state available
[ 14.148583] intel_powerclamp: No package C-state available
[ 14.184668] intel_powerclamp: No package C-state available
[ 14.232625] intel_powerclamp: No package C-state available
[ 14.762365] iTCO_vendor_support: vendor-support=0
[ 14.780643] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 14.780692] iTCO_wdt: Found a ICH9R TCO device (Version=2, TCOBASE=0x0860)
[ 14.781415] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 14.782837] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 14.783381] sr 2:0:0:0: Attached scsi generic sg1 type 5
[ 14.783643] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 14.783869] sd 6:0:0:1: Attached scsi generic sg3 type 0
[ 14.784008] sd 6:0:0:2: Attached scsi generic sg4 type 0
[ 14.784145] sd 6:0:0:3: Attached scsi generic sg5 type 0
[ 15.884190] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
[ 16.021167] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:04:00.1/sound/card1/input10
[ 16.277362] snd_hda_codec_realtek hdaudioC0D0: ALC1200: SKU not ready 0x411111f0
[ 16.278045] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1200: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[ 16.278047] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 16.278049] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 16.278051] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 16.278052] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x1e
[ 16.278054] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 16.278056] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 16.278058] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 16.278059] snd_hda_codec_realtek hdaudioC0D0: Line=0x1c
[ 16.278061] snd_hda_codec_realtek hdaudioC0D0: dig-in=0x1f
[ 16.293829] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 16.296960] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 16.297092] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 16.298830] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 16.299147] input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[ 16.300280] input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[ 16.301955] input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[ 16.303779] input: HDA Intel Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
[ 16.303883] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
[ 21.833333] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[ 21.833904] RTL8211B Gigabit Ethernet r8169-200:00: attached PHY driver [RTL8211B Gigabit Ethernet] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
[ 21.932419] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[ 23.525475] r8169 0000:02:00.0 enp2s0: Link is Up – 100Mbps/Full – flow control rx/tx
[ 23.525486] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
[ 31.337483] tun: Universal TUN/TAP device driver, 1.6
[ 4107.816098] perf: interrupt took too long (2509 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
[ 4773.510097] perf: interrupt took too long (3141 > 3136), lowering kernel.perf_event_max_sample_rate to 63500
[ 6248.133368] perf: interrupt took too long (3927 > 3926), lowering kernel.perf_event_max_sample_rate to 50750
tullio@servervpn:~$ history
1 dmesg
2 sudo dmesg
3 sudo apt-get update
4 dmesg
5 sudo dmesg
6 lspci -nn | grep VGA
7 sudo lspci -nn | grep VGA
8 apt-get install lspci
9 sudo apt-get install lspci
10 sudo apt-get install aptitude
11 su
12 whoami
13 su sudo
14 su
15 sudo root passwd
16 root passwd
17 sudo su
18 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
19 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
20 sudo apt-get install wget
21 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
22 ls
23 sudo dpkg -i google-chrome-stable_current_amd64.deb
24 cd /etc/gdm3
25 ip a
26 sudo apt update
27 ip a show eth0
28 ip a
29 ip a show emp2s0
30 ip a show enp2s0
31 lsb_release -a
32 ip a
33 dig +short myip.opendns.com
34 sudo dig +short myip.opendns.com
35 sudo apt install dig
36 wget https://raw.githubusercontent.com/Angristan/openvpn-install/master/openvpn-install.sh -O debian10-vpn.sh
37 ls
38 chmod +x debian10-vpn.sh
39 joe debian10-vpn.sh
40 sudo ./debian10-vpn.sh
41 sudo systemctl start openvpn@server
42 sudo systemctl status openvpn@server

43 ip a
44 ip a show enp2s0
45 ip a show tun0
46 ls
47 scp
48 root scp
49 sudo apt install scp
50 sudo aptitude install scp
51 ssh
52 aptitude install putty
53 sudo aptitude install putty
54 sudo aptitude install ssh openssh-server
55 ssh
56 sudo aptitude install ssh openssh-client
57 scp
58 scp tullio@:;3~/hplento.ovpn
59 sudo scp tullio@:;3~/hplento.ovpn
60 sudo scp tullio@:~/hplento.ovpn
61 sudo scp tullio@:~/hplento.ovpn .
62 ls
63 joe hplento.ovpn
64 firewall-cmd –permanent
65 sudo firewall-cmd –permanent
66 sudo firewall-cmd –permanent –add-port=22/tcp
67 ip a
68 sudo aptitude install vncserver
69 sudo aptitude install real-vnc-server
70 sudo aptitude install realvnc-vnc-server
71 sudo aptitude install gdebi
72 gdebi
73 sudo aptitude install gdebi
74 sudo apt install gdebi-core gdebi
75 which gdebi
76 IFCONFIG
77 ifconfig
78 ip a
79 scp
80 ls
81 sudo scp tullio@192.168.2.13:hplento.ovpn /home
82 sudo scp pi@192.168.2.13:hplento.ovpn /home
83 sudo scp hplento.ovpn pi@192.168.2.13 /home
84 sudo scp hplento.ovpn pi@192.168.2.13:/home
85 sudo scp hplento.ovpn tullio@192.168.2.13:/home
86 sudo scp hplento.ovpn pi@192.168.2.13:/home/pi
87 ip a
88 lsusb
89 fdisk -l
90 sudo su
91 ls
92 df
93 ip a
94 dmesg
95 sudo dmesg
96 history
tullio@servervpn:~$ history >storia190221.txt
tullio@servervpn:~$ joe storia190221.txt

^K IW storia190221.txt Row 1 Col 1
1 dmesg
2 sudo dmesg
3 sudo apt-get update
4 dmesg
5 sudo dmesg
6 lspci -nn | grep VGA
7 sudo lspci -nn | grep VGA
8 apt-get install lspci
9 sudo apt-get install lspci
10 sudo apt-get install aptitude
11 su
12 whoami
13 su sudo
14 su
15 sudo root passwd
16 root passwd
17 sudo su
18 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd6
19 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current
20 sudo apt-get install wget
21 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current
22 ls
23 sudo dpkg -i google-chrome-stable_current_amd64.deb
No modified files, so no updates needed.
tullio@servervpn:~$ joe storia190221.txt

IW   storia190221.txt                                      Row 1    Col 1   
1  dmesg
2  sudo dmesg
3  sudo apt-get update
4  dmesg
5  sudo dmesg
6  lspci -nn | grep VGA
7  sudo lspci -nn | grep VGA
8  apt-get install lspci
9  sudo apt-get install lspci

10 sudo apt-get install aptitude
11 su
12 whoami
13 su sudo
14 su
15 sudo root passwd
16 root passwd
17 sudo su
18 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd6
19 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current
20 sudo apt-get install wget
21 sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current
22 ls
Joe’s Own Editor 4.6 (utf-8) ** Type Ctrl-K Q to exit or Ctrl-K H for help **

OPENVPN IN 5 MINUTI

https://www.cyberciti.biz/faq/debian-10-set-up-openvpn-server-in-5-minutes/

Debian 10 Set Up OpenVPN Server In 5 Minutes

Author: Vivek Gite Last updated: April 24, 2020 1 comment

Iam a new Debian Linux 10 server user. How do I set up an OpenVPN Server on Debian Linux version 10 server to shield my browsing activity from bad guys on public Wi-Fi, and more?

Introduction OpenVPN is a full-featured SSL VPN (virtual private network). It implements OSI layer 2 or 3 secure network extension using the SSL/TLS protocol. It is an open source software and distributed under the GNU GPL. A VPN allows you to connect securely to an insecure public network such as wifi network at the airport or hotel. VPN is also required to access your corporate or enterprise or home server resources. You can bypass the geo-blocked site and increase your privacy or safety online. This tutorial provides step-by-step instructions for configuring an OpenVPN server on Debian Linux 10 server.

Procedure: Debian 10 Set Up OpenVPN Server In 5 Minutes

The steps are as follows:

Step 1 – Update your system

Run the apt command :
{vivek@deb10:~ }$ sudo apt update
{vivek@deb10:~ }$ sudo apt upgrade

Step 2 – Find and note down your IP address

Use the ip command as follows:
{vivek@deb10:~ }$ ip a
{vivek@deb10:~ }$ ip a show eth0

ip command get my IP address on Debian Linux 10
Another option is to run the following dig command/host command to find out your public IP address from Linux command line:
{vivek@deb10:~ }$ dig +short myip.opendns.com @resolver1.opendns.com
OR
{vivek@deb10:~ }$ dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | awk -F'"' '{ print $2}'

A note about IP address

Most cloud servers have two types of IP address:

  1. Public static IP address directly assigned to your box and routed from the Internet. For example, Linode, Digital Ocean, and others gives you direct public IP address.
  2. Private static IP address directly attached to your server and your server is behind NAT with public IP address. For example, AWS EC2/Lightsail give you this kind of NAT public IP address.

The script will automatically detect your networking setup. All you have to do is provide correct IP address when asked for it.

Step 3 – Download and run debian10-vpn.sh script

I am going to use the wget command:
{vivek@deb10:~ }$ wget https://raw.githubusercontent.com/Angristan/openvpn-install/master/openvpn-install.sh -O debian10-vpn.sh


Download debian10-vpn.sh script to setup OpenVPN server in 5 minutes on Debian
Setup permissions using the chmod command{vivek@deb10:~ }$ chmod +x debian10-vpn.sh
One can view the script using a text editor such as vim/vi :
{vivek@deb10:~ }$ vi debian10-vpn.sh

Run debian10-vpn.sh to install OpenVPN server

Now all you have to do is:
{vivek@deb10:~ }$ sudo ./debian10-vpn.sh
Sample session from AWS EC2/Lightsail where my cloud server is behind NAT:
Debian 10 Setup OpenVPN Server In 5 Minutes
Sample session from Linode/DO server where cloud server has direct public IPv4 address:
Script Input Part 1
To avoid problem always choose DNS as 1.1.1.1 or Google DNS. Those are fast DNS server and reached from anywhere on the Internet. Okay, that was all script needed. We are ready to setup your OpenVPN server now. You will be able to generate a client at the end of the installation as follows:
Script Input Part 2

How do I start/stop/restart OpenVPN server on Debian 10 ?

{vivek@deb10:~ }$ sudo systemctl stop openvpn@server # <--- stop server
{vivek@deb10:~ }$ sudo systemctl start openvpn@server # <--- start server
{vivek@deb10:~ }$ sudo systemctl restart openvpn@server # <--- restart server
{vivek@deb10:~ }$ sudo systemctl status openvpn@server # <--- get server status

systemctl status openvpn@server

Step 4 – Connect an OpenVPN server using IOS/Android/Linux/Windows client

On server your will find a client configuration file called ~/linuxDesktop.ovpn. All you have to do is copy this file to your local desktop using the scp command:
{vivek@deb10:~ }$ scp vivek@:~/linuxDesktop.ovpn .
OR
{vivek@deb10:~ }$ scp root@:~/linuxDesktop.ovpn .
Next, provide this file to your OpenVPN client to connect:

  1. Download Apple iOS client
  2. Grab Android client
  3. Visit Apple MacOS (OS X) client
  4. Microsoft user download: Windows 8/10 clients

Linux Desktop: OpenVPN client configuration

First, install the openvpn client for your desktop, enter:
{vivek@deb10:~ }$ sudo yum install openvpn
OR
{vivek@deb10:~ }$ sudo apt install openvpn
Next, copy linuxDesktop.ovpn as follows:
{vivek@deb10:~ }$ sudo cp linuxDesktop.ovpn /etc/openvpn/client/

'linuxDesktop.ovpn' -> '/etc/openvpn/client/linuxDesktop.ovpn'

Test connectivity from the CLI:
{vivek@deb10:~ }$ sudo openvpn --client --config /etc/openvpn/client/linuxDesktop.ovpn
Sample outputs:

Sat Jul 13 21:56:07 2019 Unrecognized option or missing or extra parameter(s) in /etc/openvpn/client/linuxDesktop.ovpn:17: block-outside-dns (2.4.7)
Sat Jul 13 21:56:07 2019 OpenVPN 2.4.7 x86_64-redhat-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Feb 20 2019
Sat Jul 13 21:56:07 2019 library versions: OpenSSL 1.1.1c FIPS  28 May 2019, LZO 2.08
Sat Jul 13 21:56:07 2019 Outgoing Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
Sat Jul 13 21:56:07 2019 Outgoing Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
Sat Jul 13 21:56:07 2019 Incoming Control Channel Encryption: Cipher 'AES-256-CTR' initialized with 256 bit key
Sat Jul 13 21:56:07 2019 Incoming Control Channel Encryption: Using 256 bit message hash 'SHA256' for HMAC authentication
Sat Jul 13 21:56:07 2019 TCP/UDP: Preserving recently used remote address: [AF_INET]172.105.51.63:1194
Sat Jul 13 21:56:07 2019 Socket Buffers: R=[212992->212992] S=[212992->212992]
Sat Jul 13 21:56:07 2019 UDP link local: (not bound)
Sat Jul 13 21:56:07 2019 UDP link remote: [AF_INET]172.105.51.63:1194
Sat Jul 13 21:56:07 2019 TLS: Initial packet from [AF_INET]172.105.51.63:1194, sid=0efbc848 675b12c1
Sat Jul 13 21:56:07 2019 VERIFY OK: depth=1, CN=cn_46pSC1RkaXtUzj8E
Sat Jul 13 21:56:07 2019 VERIFY KU OK
Sat Jul 13 21:56:07 2019 Validating certificate extended key usage
Sat Jul 13 21:56:07 2019 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
Sat Jul 13 21:56:07 2019 VERIFY EKU OK
Sat Jul 13 21:56:07 2019 VERIFY X509NAME OK: CN=server_CfvC2CLjZBl46fYN
Sat Jul 13 21:56:07 2019 VERIFY OK: depth=0, CN=server_CfvC2CLjZBl46fYN
Sat Jul 13 21:56:07 2019 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, 256 bit EC, curve: prime256v1
Sat Jul 13 21:56:07 2019 [server_CfvC2CLjZBl46fYN] Peer Connection Initiated with [AF_INET]172.105.51.63:1194
Sat Jul 13 21:56:08 2019 SENT CONTROL [server_CfvC2CLjZBl46fYN]: 'PUSH_REQUEST' (status=1)
Sat Jul 13 21:56:08 2019 PUSH: Received control message: 'PUSH_REPLY,dhcp-option DNS 1.0.0.1,dhcp-option DNS 1.1.1.1,redirect-gateway def1 bypass-dhcp,route-gateway 10.8.0.1,topology subnet,ping 10,ping-restart 120,ifconfig 10.8.0.2 255.255.255.0,peer-id 0,cipher AES-128-GCM'
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: timers and/or timeouts modified
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: --ifconfig/up options modified
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: route options modified
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: route-related options modified
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: peer-id set
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: adjusting link_mtu to 1624
Sat Jul 13 21:56:08 2019 OPTIONS IMPORT: data channel crypto options modified
Sat Jul 13 21:56:08 2019 Outgoing Data Channel: Cipher 'AES-128-GCM' initialized with 128 bit key
Sat Jul 13 21:56:08 2019 Incoming Data Channel: Cipher 'AES-128-GCM' initialized with 128 bit key
Sat Jul 13 21:56:08 2019 ROUTE_GATEWAY 192.168.1.1/255.255.255.0 IFACE=wlp1s0 HWADDR=b4:6b:fc:32:7a:12
Sat Jul 13 21:56:08 2019 TUN/TAP device tun0 opened
Sat Jul 13 21:56:08 2019 TUN/TAP TX queue length set to 100
Sat Jul 13 21:56:08 2019 /sbin/ip link set dev tun0 up mtu 1500
Sat Jul 13 21:56:08 2019 /sbin/ip addr add dev tun0 10.8.0.2/24 broadcast 10.8.0.255
Sat Jul 13 21:56:08 2019 /sbin/ip route add 172.105.51.63/32 via 192.168.1.1
Sat Jul 13 21:56:08 2019 /sbin/ip route add 0.0.0.0/1 via 10.8.0.1
Sat Jul 13 21:56:08 2019 /sbin/ip route add 128.0.0.0/1 via 10.8.0.1
Sat Jul 13 21:56:08 2019 Initialization Sequence Completed

Your Linux system will automatically connect when computer restart using openvpn script/service:
{vivek@deb10:~ }$ sudo systemctl start openvpn@client #

Step 5 – Verify/test the connectivity

Execute the following commands after connecting to OpenVPN server from your Linux desktop:
{vivek@deb10:~ }$ ping 10.8.0.1 #Ping to the OpenVPN server gateway
{vivek@deb10:~ }$ ip route #Make sure routing setup working
{vivek@deb10:~ }$ dig TXT +short o-o.myaddr.l.google.com @ns1.google.com #Must return public IP address of OpenVPN server

172.105.51.63

Step 6 – Add/delete/revoke VPN users

Now that OpenVPN is already installed and running, it is time to add a new user or delete existing VPN users. We can do this smoothly by running the debian10-vpn.sh script again. Type the following command on youe OpenVPN Debian Linux v10 server:
ssh vivek@my-debian-10-server
sudo ./debian10-vpn.sh

Gif.01: Add or remove OpenVPN users/clients

A note about trouble shooting OpenVPN server and client issues

Check OpenVPN server for errors:
{vivek@deb10:~ }$ journalctl --identifier ovpn-server

Click to enlarge imageIs firewall rule setup correctly on your server? Use the iptables command and sysctl command commands to verify NAT rule setup on your server:
{vivek@deb10:~ }$ sudo iptables -t nat -L -n -v
{vivek@deb10:~ }$ sysctl net.ipv4.ip_forward

NAT Firewall OpenVPN Rules Verification
Insert the rules if not inserted from /etc/rc.local
{vivek@deb10:~ }$ sudo sh /etc/rc.local
{vivek@deb10:~ }$ sudo sysctl -w net.ipv4.ip_forward=1

Is OpenVPN server running and port is open? Use the ss command or netstat command and pidof command/ps command:
{vivek@deb10:~ }$ netstat -tulpn | grep :1194 ## 1194 is the openvpn server port ##
{vivek@deb10:~ }$ ss -tulpn | grep :1194 ## 1194 is the openvpn server port ##
{vivek@deb10:~ }$ ps aux | grep openvpn ## is the openvpn server running? ##
{vivek@deb10:~ }$ ps -C openvpn ## is the openvpn server running? ##
{vivek@deb10:~ }$ pidof openvpn ## find the openvpn server PID ##

Verify that OpenVPN server runnign and Port is Open on Debian Linux
If not running, restart the OpenVPN server:
{vivek@deb10:~ }$ sudo systemctl restart openvpn@server
Look out for errors:
{vivek@deb10:~ }$ sudo systemctl status openvpn@server
Can the Linux desktop client connect to the OpenVPN server machine? First you need to run a simple test to see if the OpenVPN server port (UDP 1194) accepts connections:
{vivek@deb10:~ }$ nc -vu 1194
Connection to 1194 port [udp/openvpn] succeeded!

If not connected it means either a Linux desktop firewall or your router is blocking access to server. Make sure both client and server using same protocol and port, e.g. UDP port 1194.

Conclusion

Congratulations. You successfully set up an OpenVPN server on Debian Linux 10 server running in the cloud. See the OpenVPN website here and script page here for additional information