John Stilley
John Stilley
If you go to the Illusion tree of this build: http://chrizel.github.io/skyrim/#t/1/4bb9j4,0,0,0,0,0,0,0 And you unclick the "Rage" perk, near the top, it incorrectly de-selects "Master of the Mind". I cannot quite...
I use *very* standard markdown, which they say the support. Hmmph
Mostly, I am just adding in links to three games I like that are on GitHub. But also one game I have been a minor dev on.
I work on a team that would like to use the Latin Hypercube from `PyDOE`. But I note there is no unit testing on this project. If I were to...
## Description A ton of our functions and methods have bad return statements, I am attempting to fix those here. **NOTE**: This is a WIP, as I expect this to...
Using the following `pylint` command, I found 40 different functions/methods in ARMI that are broken, in that they have inconsistent return statements: > pylint armi | grep "inconsistent-return-statements" This means...
Zones has the potential to be a pretty powerful feature in ARMI, but has a handful of issues that make it impossible or unpleasant to use for certain cases. Below...
## Description There was [a request](https://github.com/terrapower/armi/pull/723#issuecomment-1159285744) that we add a `Plugin` hook for analysis, that would allow users to do something juuuuuuuust after a `Reactor` was loaded from a DB....
We currently have these two files, that contain four classes: * `database.py` * `class Database` * `database3.py` * `class Database3(Database)` * `class DatabaseInterface` * `class DatabaseLayout` I like base classes,...
We have some relic tests left over from the days before we had our `TemporaryDirectoryChanger`. When a unit test creates a temp file, it should use our special tooling instead...