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 main | |
import ( | |
"encoding/json" | |
"fmt" | |
"net/http" | |
"time" | |
s "strings" | |
) |
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 ruby | |
class Integer | |
@@range_upper = (65..90) | |
@@range_lower = (97..122) | |
def upper? | |
@@range_upper.include? self | |
end | |
def lower? |
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 python3 | |
# Created by Luis Ilarraza for Fundamemoria Documental | |
# This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. | |
from tkinter import * | |
from tkinter import filedialog | |
from shutil import copy | |
from copy import deepcopy | |
import os | |
# Interfaz Tk |
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
// el que esta en app/javascript/packs | |
// Se agrega el js de bootstrap abajo de por los defecto, generalmente require("channels") | |
require("bootstrap") | |
//Y los estilos | |
require("../estilos/archivo.scss") |