This file contains 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 | |
# Copyright © 2020 Antonio Hernández Blas <[email protected]> | |
# This work is free. You can redistribute it and/or modify it under the | |
# terms of the Do What The Fuck You Want To Public License, Version 2, | |
# as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | |
# | |
# This program is free software. It comes without any warranty, to | |
# the extent permitted by applicable law. You can redistribute it | |
# and/or modify it under the terms of the Do What The Fuck You Want |
This file contains 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 | |
# Copyright © 2020 Antonio Hernández Blas <[email protected]> | |
# This work is free. You can redistribute it and/or modify it under the | |
# terms of the Do What The Fuck You Want To Public License, Version 2, | |
# as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | |
# | |
# This program is free software. It comes without any warranty, to | |
# the extent permitted by applicable law. You can redistribute it | |
# and/or modify it under the terms of the Do What The Fuck You Want |
This file contains 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 | |
# Copyright © 2020 Antonio Hernández Blas <[email protected]> | |
# This work is free. You can redistribute it and/or modify it under the | |
# terms of the Do What The Fuck You Want To Public License, Version 2, | |
# as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | |
# | |
# This program is free software. It comes without any warranty, to | |
# the extent permitted by applicable law. You can redistribute it | |
# and/or modify it under the terms of the Do What The Fuck You Want |
This file contains 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 | |
# Mini Scraper 2 | |
# https://pywombat.com/exercises/e770767b | |
# Author: Antonio Hernández Blas <hba.nihilismus<at>gmail.com> | |
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
# Version 2, December 2004 | |
# |
This file contains 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
MenuLibre is an advanced menu editor that provides modern features | |
in a clean, easy-to-use interface and full quicklist support. All | |
without GNOME dependencies, so even lightweight systems can benefit | |
from the sanity that MenuLibre offers. MenuLibre is your one-stop | |
shop for menus in Linux, whether you use Gnome, LXDE, XFCE, or Unity. |
This file contains 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
(ns recursividad) | |
;; Ejemplos de recursividad en Clojure | |
;; Lecturas: | |
;; http://biolab.uspceu.com/aotero/recursos/docencia/TEMA%207.pdf | |
;; https://gheize.wordpress.com/2007/09/28/recursividad/ | |
;; http://www.grycap.upv.es/gmolto/docs/eda/EDA_Tema_5_Parte_I_gmolto.pdf | |
;; Tipos de recursividad lineal: |
This file contains 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
package operaciones; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Main { | |
/* | |
* args <- [] -> "Excepción." | |
* args <- ["@" "10" "20" "30"] -> "Excepción." |
This file contains 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
(ns plf.rfc) | |
;; Registro Federal de Contribuyentes (México) | |
;; El Registro Federal de Contribuyentes (o RFC) es una clave que requiere | |
;; toda persona física o moral en México para realizar cualquier actividad | |
;; económica lícita por la que esté obligada a pagar impuestos a toda persona | |
;; moral, con algunas excepciones. | |
;; - https://es.wikipedia.org/wiki/Registro_Federal_de_Contribuyentes_(M%C3%A9xico) | |
;; Procedimiento para calcular el dígito verificador del Registro Federal de Contribuyentes |
This file contains 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
title Main | |
include Irvine32.inc | |
;;;; Escriba las instrucciones necesarias en lenguaje ensamblador para el algoritmo | |
;;;; del Cifrado Atbash que opere sobre una palabra: | |
;;;; Este método consiste en sustituir la primera letra por la última del alfabeto | |
;;;; que se esté utilizando, la segunda por la penúltima, la tercera por la antepenúltima | |
;;;; y así sucesivamente con todo el alfabeto. A este método también suele llamársele | |
;;;; código espejo ya que el cifrado del criptograma es nuevamente el texto en claro. | |
;;;; Fuente: http://bit.ly/2gbni5U |
This file contains 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
;;;; Main.asm | |
title Main | |
include Irvine32.inc | |
;;;; Escriba las instrucciones necesarias en lenguaje ensamblador para que | |
;;;; dado un desplazamiento y un mensaje_claro se obtenga un mensaje_cifrado | |
;;;; a partir de desplazar los caracteres del mensaje_claro tantos caracteres | |
;;;; a la derecha lo establezca el desplazamiento. | |
;;;; |
NewerOlder