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
| /** | |
| * Object list language | |
| */ | |
| const LANGUAGE = { | |
| errors: 'errors', | |
| hits: 'hits', | |
| next: 'next', | |
| ops: 'π€¦ Ops, try again!', | |
| totalErrors: 'total erros', | |
| totalHits: 'total hits', |
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
| $color-belize-hole: #2980b9; | |
| $color-amethyst: #9b59b6; | |
| $color-wet-asphalt: #34495e; | |
| $color-sun-flower: #f1c40f; | |
| $lvls: ( | |
| ('easy', $color-sun-flower), | |
| ('normal', $color-amethyst), | |
| ('hard', $color-belize-hole), | |
| ('very-hard', $color-wet-asphalt) |
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
| query { | |
| repository(name: "repo-name", owner: "owner") { | |
| object(expression: "branch:file/to/path.extension") { | |
| ... on Blob { | |
| 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
| /** | |
| * Util Create DOM using literal templates | |
| */ | |
| const createElement = tmpl => new DOMParser().parseFromString(tmpl, 'text/html').body.firstChild; | |
| /** | |
| * Util Object Builder | |
| */ | |
| const builder = (newList = []) => { | |
| let list = newList; |
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
| <div | |
| data-analytics-asset-id="myBlogId" | |
| data-analytics-asset-title="Blog Title" | |
| data-analytics-asset-type="blog" | |
| > | |
| <h3>Bringing Ideas To Life: A Look Into Creative Writing</h3> | |
| <p> | |
| This blog explores the ways in which we can use creativity to bring our | |
| ideas to life. We will be looking at techniques for how to inspire, generate |
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
| #!/usr/bin/env bash | |
| # Colorized wrapper for catalina.sh run | |
| # Usage: ./run.sh [catalina args] | |
| RESET='\033[0m' | |
| BOLD='\033[1m' | |
| DIM='\033[2m' | |
| print_banner() { | |
| printf "${CYAN}${BOLD}" |
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
| #!/usr/bin/env python3 | |
| """Catalize β structured, colorized log pipe for Tomcat / Liferay DXP.""" | |
| import re | |
| import sys | |
| import time | |
| import threading | |
| # ββ ANSI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| R = '\033[0m' |
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
| #!/usr/bin/env bash | |
| # Claude Code status line. Recebe o JSON da sessΓ£o via stdin. | |
| # | |
| # Segmentos: π sessΓ£o (/rename) Β· πΏ branch Β· π³ worktree βΊ caminho relativo Β· | |
| # barra de contexto (0β100%) Β· β³ uso da janela de 5h (% + horΓ‘rio de reset) Β· modelo. | |
| # βββ Tema ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| # Troque o valor abaixo para mudar o visual (ou defina CC_STATUSLINE_THEME): | |
| # adaptativo Β· separadores cinza, barra colorida, modelo esmaecido (padrΓ£o) | |
| # minimalista Β· sem emoji, monocromΓ‘tico, separador "Β·" |
OlderNewer