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
{ | |
"es": [ | |
{ | |
"label": "positions.es.assistantDirectionGeneral", | |
"data": "11" | |
}, | |
{ | |
"label": "positions.es.directorMale", | |
"data": "10M" | |
}, |
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
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Calculadora VAM</title> | |
</head> | |
<body> | |
<h2>Calculadora de Zonas VAM</h2> | |
<label for="ritmo">Introduce tu ritmo (MM:SS min/km):</label> |
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
-- | |
-- User basic and more profile data | |
-- | |
CREATE TABLE `role` ( | |
id int (255) auto_increment not null, | |
`name` varchar(100) NOT NULL, | |
`description` varchar(200) NOT NULL, | |
`access_type` int(2) NOT NULL, |
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
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> | |
<gpx xmlns="http://www.topografix.com/GPX/1/1" version="1.1" creator="Anartz Mugika Ledo - https://www.anartz-mugika.com"> | |
<metadata> | |
<name>My Track</name> | |
<desc>Generated GPX Track</desc> | |
<author> | |
<name>Anartz Mugika Ledo</name> | |
<email>[email protected]</email> | |
<link href="https://anartz-mugika.com/"> | |
<text>Anartz Mugika Ledo's Website</text> |
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
{ | |
"Vitaminas": { | |
"Hidrosolubles": { | |
"Tiamina (B1)": { | |
"Características": [ | |
"Termolábil, sensible a la oxidación y a los sulfitos", | |
"Absorción en el yeyuno → transporta al hígado", | |
"Debe ser suministrada continuamente a través de la dieta" | |
], | |
"Funciones": [ |
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
import type { Signal } from '@builder.io/qwik'; | |
import { useSignal, useVisibleTask$ } from '@builder.io/qwik'; | |
export type NetworkType = | |
| 'bluetooth' | |
| 'cellular' | |
| 'ethernet' | |
| 'none' | |
| 'wifi' | |
| 'wimax' |
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
export const booksList = [ | |
{ | |
isbn: '9788498387541', | |
title: 'Cien años de soledad', | |
sinopsis: | |
'La novela narra la historia de la familia Buendía a lo largo de siete generaciones en el pueblo ficticio de Macondo.', | |
pages: 432, | |
author: 'Gabriel García Márquez', | |
editorial: 'Debolsillo', | |
price: 10.5, |
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
body{ | |
background-color:#110F26; | |
color: white; | |
} | |
.choice img { | |
width: 100px !important; | |
height: 100%; | |
} |
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
export const Title = () => { | |
const name = 'Anartz'; | |
return <h1>{name}</h1>; | |
}; | |
export const Age = () => { | |
const age = 37; | |
return ( | |
<p> | |
{age > 40 |
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
export const ESTIMATED_PACES = { | |
"30": { | |
"1500": "8:30", | |
"mile": "9:11", | |
"3km": "17:56", | |
"2miles": "19:19", | |
"5km": "30:40", | |
"10Km": "1:03:46", | |
"15km": "1:38:14", | |
"mm": "2:21:04", |
NewerOlder