Skip to content

Instantly share code, notes, and snippets.

View gjuliane's full-sized avatar
🎯
Focusing

Gustavo Julián gjuliane

🎯
Focusing
  • México
View GitHub Profile
@gjuliane
gjuliane / gist_markdown_examples.md
Created June 28, 2023 14:09 — forked from ww9/gist_markdown_examples.md
Gist markdown examples

Gist markdown examples

A collection of Markdown code and tricks that were tested to work in Gist.

This and all public gists in https://gist.github.com/ww9 are Public Domain. Do whatever you want with it including , no need to credit me.

Todo

  • Reformat this whole document and assimilate these:
@gjuliane
gjuliane / postmanTypes.js
Last active November 23, 2022 18:08
Postman variable types
#Parsear una cadena a fecha
pm.globals.set("fProceso", Date.parse(new Date("2022-10-10 00:00:00")));
Test
# Contar número de items
var body = JSON.parse(responseBody);
tests["Count: " + body.length] = true;
Generar Java Date desde JavaScript
var d = new Date();
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
1.- Instalar Symfony CLI
curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | sudo -E bash
sudo dnf install symfony-cli
2.- Checar requerimientos
symfony check:requirements
3.- Clonar el repo
git@gitlab.com:gryb.technology/bi-noticias-amp-render.git
@gjuliane
gjuliane / discover-tricks.md
Last active October 19, 2021 16:54
Discover tricks
@gjuliane
gjuliane / git-commands.md
Last active October 17, 2021 01:57
Github commands
@gjuliane
gjuliane / VSCodeBracketPairColorization settings.json
Last active October 11, 2021 16:10
Configuration for bracketPairColorization in core of VSCode https://rgbcolorcode.com/color/FF3399
{
"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#FFD700",
"editorBracketHighlight.foreground2": "#DA70D6",
"editorBracketHighlight.foreground3": "#87CEFA",
"editorBracketHighlight.foreground4": "#FA8072",
"editorBracketHighlight.foreground5": "#7CFC00",
"editorBracketHighlight.foreground6": "#FF8C00",
"editorBracketHighlight.unexpectedBracket.foreground": "#DB6165"