Skip to content

Instantly share code, notes, and snippets.

View Yecodeo's full-sized avatar
😎

Afjnik hassan Yecodeo

😎
  • yecodeo
  • Paris
  • 23:19 (UTC +01:00)
View GitHub Profile
@Yecodeo
Yecodeo / .eslintrc
Created September 5, 2023 13:31
eslint typescript config
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "import"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-var-requires": "off"
}
@Yecodeo
Yecodeo / curl.md
Created July 3, 2024 11:43 — 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.

{
"name": "My workflow",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "job-search",
"responseMode": "responseNode",
"options": {}
},