Skip to content

Instantly share code, notes, and snippets.

View EliseAv's full-sized avatar

Elise Avila EliseAv

  • Toronto, Canada
  • 22:45 (UTC -04:00)
View GitHub Profile
@EliseAv
EliseAv / exponential_backoff_calculator.py
Created June 12, 2022 06:46
Exponential Backoff Geometric Series Sum Ratio Calculator
"""
Find Geometric Series Sum
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or
as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright
@EliseAv
EliseAv / primes.py
Created January 6, 2022 22:42
Dealing with primes
from bisect import bisect_right, bisect_left
from itertools import count, islice
from math import isqrt
from typing import Iterator, Union, Generator
class Primes:
known = [2, 3]
def __iter__(self) -> Generator[int, None, None]:
@EliseAv
EliseAv / cuckoo.py
Last active September 11, 2020 02:35
CUCKOO. Chimes the current time according to a set frequency. Inspired by the "Announce the time" setting in macOS, apparently unavailable in Windows.
"""
CUCKOO. Chimes the current time according to a set period.
Inspired by the "Announce the time" setting in macOS, apparently unavailable in Windows.
MIT License
Copyright (c) 2020 Ekevoo.com
Permission is hereby granted, free of charge, to any person obtaining a copy
@EliseAv
EliseAv / README.md
Last active November 5, 2020 20:56
Dvorak Simplified Keyboard keybindings for Oxygen Not Included
@EliseAv
EliseAv / deduplicator.py
Last active August 5, 2019 21:09
file deduplicator
#!/usr/bin/python3
#
# MIT License
#
# Copyright (c) 2019 Ekevoo.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@EliseAv
EliseAv / continued_fraction.py
Created January 29, 2019 19:12
Continued Fraction
from fractions import Fraction as F
from math import floor, pi
def to_cf(value):
head = floor(value)
value = F(value - head)
parts = [head]
while value:
value = F(1, value)
@EliseAv
EliseAv / cfic
Created April 21, 2018 04:25
Console full image color
#!/usr/bin/env python3
"""
Console full image color
Usage: ./cfic image.png
Any image format supported by Pillow will work.
Make sure the image is small. Width of 80 pixels is ideal.
Keep in mind that console blocks aren't usually 1:2 exactly, and the
@EliseAv
EliseAv / calc1.py
Last active January 1, 2018 23:46
Factorio Rates
from collections import namedtuple
from fractions import Fraction
from functools import partial
from itertools import chain
from math import log, floor
class FractionDict(dict):
zero = Fraction()
@EliseAv
EliseAv / paperclipsHelper.js
Last active May 13, 2020 22:30
Paperclips Helper
/*
Copyright 2017 Ekevoo
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
( •_•)
( •_•)>⌐■-■
(⌐■_■)