Skip to content

Instantly share code, notes, and snippets.

View boada's full-sized avatar

Steven Boada boada

View GitHub Profile
@boada
boada / lvo2023.md
Last active January 15, 2023 04:07

New Roster (Warhammer 40,000 9th Edition) [100 PL, 1CP, 1,985pts]

Battalion Detachment 0CP (Imperium - Adeptus Astartes - Ultramarines) [100 PL, 1CP, 1,985pts]

Rules: And They Shall Know No Fear, Angels of Death, Armour of Contempt, Bolter Discipline, Combat Doctrines, Shock Assault

Configuration [6CP]

  • Chapter Selector

Ultramarines

@boada
boada / hyperopt_wrap_cost.py
Created March 18, 2021 19:49 — forked from hunse/hyperopt_wrap_cost.py
A wrapper to execute Hyperopt cost functions safely on a separate process, with timeout
"""A wrapper to execute Hyperopt cost functions safely on a separate process, with timeout
This code is based off parts of https://github.com/hyperopt/hyperopt-sklearn,
which falls under the following license:
=======
Copyright (c) 2013, James Bergstra
All rights reserved.
@boada
boada / hunt_sm.txt
Last active September 2, 2020 15:17
hunt + sm
Kaya 1,2,3
Tanith
Una 2
Argus Moonhound
Brennos the Elderhorn
Feral Warpwolf x2
Gnarlhorn Satyr
Gorax Rager
Pureblood
@boada
boada / tharn.txt
Last active September 2, 2020 15:23
tharn
Grayle
Iona
Kromac 1,2
Morvahna 1,2
Wurmwood and Cassius
Ghettorix
Gorax Rager
Loki
@boada
boada / bones.txt
Created August 31, 2020 19:24
bones
Baulder 1,2
Bradigus
Krueger 1,2
Mosar
Megalith
Wold Guardian x3
Woldwarden x3
Woldwatcher x4
Wold Wight x3
@boada
boada / circle_models.txt
Last active September 7, 2020 21:07
Circle Models
## Caster:
Baulder 1,2
Bradigus
Wurmwood
Grayle
Iona
Kaya 1,2,3
Kromac 1,2
Krueger 1,2
Morvahna 1,2
import matplotlib.pyplot as plt
import numpy as np
y = 0.01 + np.random.random(1000)* 10
x = np.random.random(1000)
fig, ax = plt.subplots(figsize=(7, 7 * (np.sqrt(5.) - 1.0) / 2.0))
ax.set_xlim(0.02,0.75)
ax.set_ylim(0.01, 20)
ax.tick_params(zorder=10)
### MATPLOTLIBRC FORMAT
# This is a sample matplotlib configuration file - you can find a copy
# of it on your system in
# site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it
# there, please note that it will be overwritten in your next install.
# If you want to keep a permanent local copy that will not be
# overwritten, place it in the following location:
# unix/linux:
# $HOME/.config/matplotlib/matplotlibrc or
import bpz_tools
from useful import match_resol
import numpy
# Hacked to use numpy and avoid import * commands
# FM
Float = numpy.float
less = numpy.less
@boada
boada / imcombine.py
Last active March 1, 2017 20:57 — forked from vterron/imcombine.py
Python interface to IRAF's imcombine (via PyRAF)
#! /usr/bin/env python
# Author: Victor Terron (c) 2015
# Email: `echo vt2rron1iaa32s | tr 132 @.e`
# License: GNU GPLv3
""" Python interface to IRAF's imcombine (via PyRAF) """
import sys
import tempfile