mwchase
mwchase
> https://github.com/math2001/FileManager/blob/4ecc88d57984adadf4d0a221b2f1f1bc2755ef04/FileManager.sublime-settings#L67-L70 > > Is it expensive to always have that on? And by default it's off, and I've never had any problem... I wonder if some people have it...
Actually, near as I can tell, the long-term price increases are really extremely forgiving. Instead of exponential growth (like in Cookie Clicker, and some of the systems in Candy Box),...
The Galactic Senate?
Quote from the doc: > Only single-level tables are currently supported, and the fields must be valid identifiers. So, for documentation purposes, only non-keyword string keys work, apparently.
I poked around a little, and it looks like this is an open bug in NuGet: https://github.com/NuGet/Home/issues/6778. So, I assume that until that bug is addressed, some form of workaround...
After poking at this some more, I think the resolution is "tell people not to use pass-by-reference when defining normal knots". (Because it doesn't actually accomplish anything. The contents of...
I thought a little more, and I have a proposal that might work without sacrificing functionality, but it could break save compatibility. Because knots with parameters (ref and non-ref) act...
I'd argue that `t[k1][k2] = v` does use a value of t. It uses the value stored at `k1`. Get rid of the mutation that populates `k1`, and the assignment...
I was using the table to provide limited access to arbitrarily many upvalues (accessed by a proportional number of closures). So: a for loop creates an unknown number of scopes...
The behavior seems to have changed in the last year. From mypy-play, Python 3.8, mypy latest, I get ``` main.py:12: error: Name 'T.Inner' is not defined main.py:15: note: Revealed type...