Skip to content

Instantly share code, notes, and snippets.

View it6c65's full-sized avatar
🏠
Working from home

Luis Ilarraza it6c65

🏠
Working from home
View GitHub Profile
@it6c65
it6c65 / dtcli.go
Created October 20, 2020 05:08
DolarToday en un binario (Golang)
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
s "strings"
)
#!/usr/bin/env ruby
class Integer
@@range_upper = (65..90)
@@range_lower = (97..122)
def upper?
@@range_upper.include? self
end
def lower?
@it6c65
it6c65 / ordenando_libretas.py
Last active October 20, 2020 05:09
Un simple script para ordenar libretas en fundamemoria
#!/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
@it6c65
it6c65 / application.js
Last active March 25, 2020 02:42
Rails 6 + Boostrap 4
// 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")