This commit is contained in:
Andrea Fazzi 2024-05-16 10:03:01 +02:00
commit 634da266c8
4 changed files with 54 additions and 3 deletions

View file

@ -1,3 +1,5 @@
- Generatore di ASCII Art #Probo
- https://www.asciiart.eu/text-to-ascii-art
- Domande di Geometria realizzate dagli studenti #teaching
- Quali delle seguenti affermazioni è vera per il teorema diretto del triangolo isoscele
- Se un triangolo è isoscele allora gli angoli alla base sono congruenti
@ -23,4 +25,4 @@
- Gli angoli alla base sono congruenti
- Angolo B congruenta ad A
- Lato BC congruente ad AB
- Lato BC congruente ad AC
- Lato BC congruente ad AC

View file

@ -1,2 +1,27 @@
- **14:09** [[quick capture]]: [Hello GPT-4o | OpenAI](https://openai.com/index/hello-gpt-4o/)
- **14:12** [[quick capture]]: [GPT-4o](https://news.ycombinator.com/item?id=40345775)
- **14:12** [[quick capture]]: [GPT-4o](https://news.ycombinator.com/item?id=40345775)
- Per eseguire un template incluso in un eseguibile #golang (embed)
- ```go
package main
import (
"embed"
"os"
"text/template"
)
//go:embed templates/*.tmpl
var templatesFolder embed.FS
func main() {
tmpl, err := template.ParseFS(templatesFolder, "templates/*.tmpl")
if err != nil {
panic(err)
}
err = tmpl.Execute(os.Stdout, map[string]string{"Name": "Andrea"})
if err != nil {
panic(err)
}
}
```

View file

@ -1,2 +1,10 @@
- **15:40** [[quick capture]]: [A low budget consumer hardware espionage implant: a GSM device hidden in (2018)](https://news.ycombinator.com/item?id=40363704)
- **15:48** [[quick capture]]: [Glider open-source eInk monitor with an emphasis on low latency](https://news.ycombinator.com/item?id=40358309)
- **15:48** [[quick capture]]: [Glider open-source eInk monitor with an emphasis on low latency](https://news.ycombinator.com/item?id=40358309)
- Notte Bianca dei #LES
- Ultimi sviluppi dell'IA generativa
- Cos'è?
- Rilascio di GPT-4o
- https://openai.com/index/hello-gpt-4o/
- Modelli LLM aperti
- [LLAMA 3](https://llama.meta.com/llama3/)
- [Chat Arena](https://chat.lmsys.org/)

16
journals/2024_05_16.md Normal file
View file

@ -0,0 +1,16 @@
- Domande Geometria
- Nella dimostrazione del teorema inverso del triangolo isoscele, secondo quale criterio i triangoli ATC e SAC sono congruenti?
- Per il secondo criterio di congruenza
- Per il primo criterio di congruenza
- Per il terzo criterio di congruenza
- Per tutti e tre i criteri di congruenza
- Cos'hanno in comune i triangoli ATC e ASC?
- Il lato AC
- Il lato BC
- Il lato SC
- L'angolo TAC
- Cosa dobbiamo dimostrare nel teorema inverso del triangolo isoscele?
- AB congruente a BC
- AB congruente ad AC
- AC congruente a BC
- AT congruente a SC