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
/** | |
* Display an animated typing indicator with a configurable number of dots. | |
* | |
* @param modifier The modifier to be applied to the component. | |
* @param configuration The configuration for the component's appearance. | |
* @param totalDots The total number of dots displayed in the indicator. | |
*/ | |
@Composable | |
fun AnimatedTypingIndicator( | |
modifier: Modifier = Modifier, |
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
<?php | |
require_once __DIR__.'/routeHTTP.php'; | |
$route = new RouteHTTP(); | |
$route->addRoute('GET', '/user', function() { | |
$page = isset($_GET['page']) ? $_GET['page'] : 1; | |
//llamada a funcion de service | |
}); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <assert.h> | |
//definicion de estructuras | |
typedef struct nodo { | |
int valor; | |
struct nodo *siguiente; | |
//struct nodo *anterior; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define TRUE 1 | |
#define FALSE 0 | |
//definicion de estructuras | |
typedef struct nodo { | |
int valor; | |
struct nodo *siguiente; |