This file contains hidden or 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
-- Active: 1697538187361@@127.0.0.1@3306@katas | |
CREATE Table livres ( | |
id INT NOT NULL AUTO_INCREMENT, | |
titre VARCHAR(255), | |
auteur VARCHAR(255), | |
genre VARCHAR(255), | |
annee_publication INT, | |
PRIMARY KEY (id) | |
) |
This file contains hidden or 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
{ | |
"flirts": [ | |
"Si tu étais un périphérique, tu serais le meilleur accessoire de ma vie.", | |
"Es-tu un écran tactile ? Parce que je ne peux pas arrêter de te toucher.", | |
"Tu es comme un algorithme de tri rapide, tu mets de l'ordre dans mon cœur en un éclair.", | |
"Notre relation est comme une boucle infinie, elle ne se termine jamais.", | |
"Si tu étais une variable, tu serais constante dans ma vie.", | |
"Es-tu un fichier PDF ? Parce que tu es le document de mes rêves.", | |
"Je n'ai pas besoin de documentation, je veux juste te connaître par cœur.", | |
"Si tu étais une puce, tu serais le microcontrôleur de ma vie.", |
This file contains hidden or 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
package com.example.todo | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.background | |
import androidx.compose.foundation.gestures.ScrollableState | |
import androidx.compose.foundation.gestures.scrollable | |
import androidx.compose.foundation.interaction.MutableInteractionSource | |
import androidx.compose.foundation.interaction.collectIsPressedAsState |