-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e3c0eb
commit eb8febe
Showing
14 changed files
with
129 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Contatti | ||
permalink: /contact | ||
--- | ||
|
||
TODO non sarà possibile usare la form di contatto dinamica in quanto il sito sarà statico |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
title: Corsi | ||
--- | ||
|
||
<h1 id="titolo_h1">Corsi realizzati da me su varie piattaforme</h1> | ||
|
||
<p>In questa sezione potrete trovare vari corsi su differenti argomenti e su differenti piattaforme.<br> | ||
I corsi sono realizzati da me e sono gratuiti (dove indicato) o a pagamento. </p> | ||
|
||
TODO lista corsi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
title: Elettronica - Datasheet | ||
--- | ||
|
||
<h1 id="titolo_h1">Datasheet</h1> | ||
|
||
<p>Qui troverete un elenco dei datasheet di molti componenti elettronici che possono essere usati nei progetti di robotica o elettronica.</p> | ||
<p>Sono suddivisi in categoria.</p> | ||
|
||
TODO lista datasheet divisi per categoria |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: default | ||
title: Elettronica - Manuali | ||
--- | ||
|
||
<h1 id="titolo_h1">Manuali</h1> | ||
|
||
<p>Qui troverete vari manuali e documenti per capire meglio l'elettronica e i suoi utilizzi.</p> | ||
|
||
<div class="project-box"> | ||
<ul> | ||
{% for post in site.categories.electronics-manuals %} | ||
<li>{{ post.title }}</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: default | ||
title: Elettronica - Progetti | ||
--- | ||
|
||
<h1 id="titolo_h1">Progetti</h1> | ||
|
||
<p>Qui troverete dei progetti trovati in rete o realizzati da me, con la relativa descrizione per realizzarli ed eventuali problemi trovati nel corso della realizzazione.<br> | ||
Se volete inviarmi dei vostri progetti con la descrizione potete farlo contattandomi agli indirizzi nella sezione contatti.</p> | ||
|
||
<div class="project-box"> | ||
<ul> | ||
{% for post in site.categories.electronics-projects %} | ||
<li>{{ post.title }}</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: default | ||
title: Programmazione - BASIC | ||
--- | ||
|
||
<h1 id="titolo_h1">BASIC</h1> | ||
|
||
<p> | ||
Il basic è il linguaggio di programmazione più facile in assoluto.<br> | ||
Permette la programmazione di un dispositivo, sia esso un computer o un microcontrollore, anche a i meno esperti. | ||
</p> | ||
<p> | ||
I linguaggi basic si assomigliano molto tra di loro, anche se ogni dispositivo ha una sua sintassi, quindi il basic per un PC sarà simile al basic di un microcontrollore, ma on sarà uguale. | ||
</p> | ||
Questo discorso vale anche per gli altri linguaggi di programmazione, ogni volta che cambiate un duispositivo, ed a volte anche una marca, cambia la sintassi del linguaggio, anche se rimane lo stesso. | ||
</p> | ||
<p> | ||
Qui sotto vi riporto dei manuali in basic, con la descrizione dei comandi e delle sintassi. | ||
</p> | ||
|
||
<div class="project-box"> | ||
<ul> | ||
{% for post in site.categories.programming-basic %} | ||
<li>{{ post.title }}</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
title: Programmi - Elettronica | ||
--- | ||
|
||
<h1 id="titolo_h1">Programmi elettronica</h1> | ||
|
||
<p>In questa sezione troverai dei programmi freeware o shareware in diversi linguaggi.<br> | ||
Possono essere opensource oppure già compilati, troverete una descrizione a fianco di ogni programma. </p> | ||
|
||
TODO lista programmi elettronica |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
title: Programmi - Robotica | ||
--- | ||
|
||
<h1 id="titolo_h1">Programmi robotica</h1> | ||
|
||
<p>In questa sezione troverai dei programmi freeware o shareware in diversi linguaggi.<br> | ||
Possono essere opensource oppure già compilati, troverete una descrizione a fianco di ogni programma.</p> | ||
|
||
TODO lista programmi robotica |