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
| html, body { | |
| padding: 2.5em; | |
| margin: auto; | |
| max-width: 48em; | |
| } | |
| body { | |
| font: 0.8em Palatino, Times; | |
| color: #333; | |
| line-height: 1.3; |
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
| # set-option -sa terminal-overrides ",xterm-kitty:RGB" | |
| # set -g default-terminal "tmux-256color" | |
| set -g default-terminal "screen-256color" | |
| # tell Tmux that outside terminal supports true color | |
| set -ga terminal-overrides ",xterm-256color*:Tc" | |
| # Undercurl, taken from: https://github.com/folke/lsp-colors.nvim | |
| set -g default-terminal "${TERM}" | |
| set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support | |
| set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0 |
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
| # vim:fileencoding=utf-8:foldmethod=marker | |
| Fonts {{{ | |
| #: kitty has very powerful font management. You can configure | |
| #: individual font faces and even specify special fonts for particular | |
| #: characters. | |
| font_family JetBrainsMono Nerd Font | |
| bold_font auto |
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
| interface Node<T> { | |
| key: number; | |
| value: T; | |
| } | |
| class PriorityQueue<T> { | |
| heap: Node<T>[]; | |
| constructor() { | |
| this.heap = []; |
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
| # Circular linked list implementation | |
| """ | |
| Se desea llevar un control de las temperaturas diarias en la ciudad, los atributos de la clase Temperaturas son: fecha (dd,mm,yy) y temperatura máxima; utilizar una lista simplemente ligada circular que realice los siguientes procedimientos: | |
| • insertar en forma ordenada en base a la fecha. | |
| • mostrar la temperatura más alta y la fecha. | |
| • eliminar un registro ´x´. |