Skip to content

Instantly share code, notes, and snippets.

View Cristian5c26l's full-sized avatar
💭
Trying to learn english.

Cristian Hernández Cristian5c26l

💭
Trying to learn english.
  • Mexico
View GitHub Profile
@Cristian5c26l
Cristian5c26l / curl.md
Created April 14, 2025 15:31 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@Cristian5c26l
Cristian5c26l / heroes.ts
Created June 25, 2024 14:38 — forked from Klerith/heroes.ts
Material para el ejercicio del curso de Vue.js
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'