Skip to content

Instantly share code, notes, and snippets.

@vickygabs
vickygabs / index.js
Last active January 25, 2026 18:45
Buscador de películas - Nivel 1 APX
const pelis = require("./pelis.js");
function main() {
const peliculas = pelis.getPeliculas();
if (process.argv[2] === "--sort") {
peliculas.sort((a, b) => {
const prop = process.argv[3];
return typeof a[prop] === 'number'
? a[prop] - b[prop]
@vickygabs
vickygabs / desafio.js
Created September 21, 2025 23:13
Desafío nivel 0 APX
const miPlaylist = [
{
titulo: "Programar ya fue (?)",
url: "https://www.youtube.com/watch?v=cD_-0KEDEDw",
resumen: "Objetivo de la carrera, plan de estudios y modalidad. Qué son los devs, Cómo funcionan las empresas de software",
tags: ["JavaScript", "Funciones", "Apx"],
visto: true,
dificultad: 1,
},
{
@vickygabs
vickygabs / codigo.js
Created September 21, 2025 21:53
Mi primer Gist
const canciones = [
{
titulo: "Mary on a Cross",
album: "Seven Inches of Satanic Panic",
artista: "Ghost",
fechaDeLanzamiento: "2019",
genero: "Rock, Alternativa/independiente, Metal",
},
{
titulo: "On the Floor",