Skip to content

Instantly share code, notes, and snippets.

View nz-angel's full-sized avatar
馃幆
Focusing

Nazareno A. Faillace Mullen nz-angel

馃幆
Focusing
View GitHub Profile
@nz-angel
nz-angel / list_osmium_removeid.py
Created September 28, 2024 14:52
Makes a file to list the id of the objects to be deleted by osmium removeid
""" When we delete nodes from an .osm using JOSM, the nodes remain in the file marked as deleted. This
scripts creates a .txt with the ids of the deleted objects (nodes, ways and relations) to use as input for the function
'removeid' from osmium in order to remove them from the file. """
import xml.etree.ElementTree as ET
filename = 'path_to_the.osm'
osm_tree = ET.parse(filename)
root = osm_tree.getroot()
with open(f'ids_to_delete.txt', 'w') as f:
@nz-angel
nz-angel / photoshop.lua
Created June 23, 2024 22:59
A LuaMacros script to use with Photoshop.
-- Macros for Photoshop. Button codes belong to a Kolke KTN-101 numercial
-- keyboard. By changing the keys of the key_map array, they can be adapted
-- to your secondary keyboard.
-- clears output
clear()
-- minimizes to tray
lmc_minimize()
lmc.minimizeToTray = true;
@nz-angel
nz-angel / clase_grafo_TP.py
Last active November 19, 2021 19:32
Clase Grafo con algunos metodos adicionales para el TP
"""
Clase Grafo para la materia Investigaci贸n Operativa, del Departamento de Matem谩tica, Facultad de Ciencias Exactas y
Naturales, Universidad de Buenos Aires.
"""
class Grafo:
def __init__(self):
""" Crea un grafo vac铆o. Representaci贸n de un grafo por lista de adyacencia """
@nz-angel
nz-angel / benchmark_functions.py
Created November 5, 2021 18:57
Benchmark functions for continuous optimization methods
""" Benchmark functions for continuous optimization methods."""
import numpy as np
import plotly
import plotly.express as px
import plotly.graph_objs as go
from plotly.offline import init_notebook_mode
LIMITS_DICT = {'ackley': (-5, 5, -5, 5),
'bukin': (-15, -5, -3, 3),
@nz-angel
nz-angel / clase_grafo.py
Last active October 29, 2021 18:26
Clase Grafo para la materia Investigacion Operativa
"""
Clase Grafo para la materia Investigaci贸n Operativa, del Departamento de Matem谩tica, Facultad de Ciencias Exactas y
Naturales, Universidad de Buenos Aires.
"""
class Grafo:
def __init__(self):
""" Crea un grafo vac铆o. Representaci贸n de un grafo por lista de adyacencia """
@nz-angel
nz-angel / solucion_microapple.txt
Created November 30, 2020 22:06
Soluci贸n para el TP de Grafos de Investigaci贸n Operativa 2020
0 [0] 1
1 [0, 1] 0.85
2 [0, 1, 2] 0.6459999999999999
3 [0, 3] 0.84
4 [0, 3, 4] 0.8063999999999999
5 [0, 1, 5] 0.5864999999999999
6 [0, 1, 2, 6] 0.5232600000000001
7 [0, 7] 0.65
8 [0, 1, 2, 6, 8] 0.3505842
9 [0, 3, 9] 0.6132
@nz-angel
nz-angel / dictionary_chunks.py
Created December 18, 2019 13:11
A couple of functions to split a Python dictionary into chunks of equal size
"""
Allows to split a dictionary into chunks of equal size. If the length of the dictionary is not divisible by the chunk
size, the last chunk will be smaller. For example, if the length of the dictionary is 10 and the chunk size is 4,
then we'll have three chunks: two of size 4 and one of size 2.
The first function returns a list with the dictionaries and the second one creates a generator.
"""
def split_dictionary(input_dict, chunk_size):
@nz-angel
nz-angel / gray.py
Created September 4, 2019 17:41
Handy functions to get the binary and/or Gray's code representation of an integer or of each integer in an iterable.
def int_to_bin(n, length=0):
"""
Converts an integer to a string of its representation in binary code.
:param n: integer to convert
:type n: int
:param length: desired length of string if the binary representation is shorter than that length.
:type length: int
:return: binary representation of the integer
:rtype: str