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 | |
| # | |
| # Como `git grep`, pero Imprime una tabla solo con el nombre de las funciones | |
| # que ocupan la expresion. | |
| # | |
| # Copyright (C) 2025 Ian Mejias | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or |
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:fdm=marker | |
| " 0. CORE {{{1 | |
| " »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» | |
| " Enable true color 启用终端24位色 | |
| if exists('+termguicolors') | |
| let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" | |
| let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" | |
| set termguicolors |
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
| # -*- coding: utf-8 -*- | |
| # Genere un programa en Python que lea dos matrices de dos archivos de texto | |
| # (matrizA.txt y matrizB.txt) y con ellas: | |
| # | |
| # - Verifique que tienen dimensiones válidas para ser multiplicadas | |
| # - Realice el cálculo de la multiplicación | |
| # - Escriba el cálculo de la multiplicación en un archivo de texto | |
| # “resultado.txt” | |
| # |
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
| #!/bin/sh | |
| exec < /dev/tty | |
| ./.git/hooks/validate_commit.rb $1 |