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

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 [] = []
{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;})
];
}

Informatica 2.0

I anno

I semestre

  • Analisi I [9 cfu]
  • Fondamenti di Programmazione I [6 cfu]
  • Architetture I [6 cfu]
  • Metodi Matematici per l'Informatica [6 cfu]
#!/usr/bin/sh
du -h $1 2>/dev/null | grep '^[0-9]*,*[0-9]*G' | sort -t ' ' -k 1 -n
@aflaag
aflaag / tree.c
Last active April 21, 2023 14:53
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <string.h>
#include <stdint.h>
typedef struct {
char* path;
struct Directory** sub_dirs;
} Directory;