Skip to content

Instantly share code, notes, and snippets.

View aflaag's full-sized avatar
💭
coding

Alessio Bandiera aflaag

💭
coding
  • Sapienza University of Rome
  • Italy
View GitHub Profile
@aflaag
aflaag / autnet.md
Last active November 4, 2025 19:03

Autonomous Networking Questions

Why did I choose this course in the first place?

This is a very difficult question, i tried to look for an answer within the slides but could not find one, I'm sorry I can't help with this one :(.

What is the difference between smart objects and traditional entities of network systems?

Smart objects must possess means to sense physical phenomena, such as temperature, light or motion, or trigger actions having an effect on the physical reality. Smart objects must be able to:

Escursione

Vestiario

  • cappello
  • occhiali da sole
  • copricollo
  • magliette tecniche
  • micropile
  • k-way

CANTALICE

Giorno 1

  • palle

Giorno 2

  • palle
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
(texlive.combine {inherit (texlive) scheme-basic latexmk xcolor eurosym titlesec blindtext listings footmisc mdframed etoolbox zref needspace pgf parskip enumitem csquotes float bbm bbm-macros tcolorbox environ varwidth biblatex esint nicematrix stmaryrd mathtools extarrows jknapltx pgfplots multirow algorithm2e ifoddpage relsize karnaugh-map xstring circuitikz ulem tikzfill pdfcol cleveref collection-fontsrecommended algpseudocodex algorithmicx fifo-stack tabto-ltx totcount tikzmark pdftex esint-type1;})
];
}

Domande IUM

Descrivere gli esperimenti between/within groups.

All'interno delle tecniche di valutazione sperimentali, è possibile eseguire i test in 2 modi differenti:

  • between subjects: ad ogni partecipante viene data 1 sola condizione, e ogni partecipante effettua 1 solo test; questo permette di non avere il problema del trasferimento dell'apprendimento;
  • within subjects: ad ogni partecipante vengono date tutte le condizioni, e ogni partecipante effettua molteplici test; questo ha il vantaggio di poter avere pochi partecipanti per il test, dunque riducendo i costi, ma presenta il problema del trasferimento dell'apprendimento; è possibile mitigare quest'ultimo come segue:
    • metà partecipanti riceve prima la condizione di controllo, poi la condizione sperimentale;
    • l'altra metà riceve le condizioni in ordine contrario.

Resoconto

Cose portate (Alessio)

  • spray anti insetti
  • crema solare
  • nastro elettricista
  • borsa pronto soccorso
  • k-way
  • magliette termiche di ricambio

Fucking hell

Info

14 Esami Totali:

  • 11 Esami Interni a scelta (indipendentemente dall'anno)
  • 2 Esami Esterni a scelta
  • 1 Attività Formativa Complementare a scelta

Mountain

House drip

  • intimo
  • pigiama
  • costume
  • magliette corte (dentro e fuori casa)
  • magliette lunghe (dentro e fuori casa)
  • pantaloni corti (dentro e fuori casa)

Astrophotography

Calibration frames

Bias frames

  • Purpose
    • fix the pattern noise the sensor produces, the inherent noise of the electronics of the sensor
  • Where
  • complete darkness
@aflaag
aflaag / test.hs
Last active March 12, 2024 09:11
import Data.Char (toLower)
import Data.List (sort)
isAlpha c = (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
lower = map (\w -> toLower w)
count t = length . filter (== t)
removeDups [] = []