stiff

Results 24 comments of stiff

Sure each approach has it's own trade offs different from others, that's why I asked about the possibility of Lithium going in this direction. Silicon is different from my proposed...

I think I would try this in my project :) I really like how parameters passed to handler function in Servant (like in toString example), for easier testing without any...

I've got similar issue, but noticed it only after adding guard and if I change the page address by hand (say navigate to #, and then clicking on a link...

Personally I find using indexOf somewhat annoying because of -1 in case nothing found. So `undefined` would be much better fit for it, especially since nullish coalescing is already part...

@doasync , sure since -1 is already used a lot, it of course makes some sense to stick to it. But it's a very poor design in the first place....

It kind of snapshots trace when Error was created. For example, this: ```js function foo() { return new Promise((res, rej) => ... rej(new Error(err))); } ``` will lose it, but...

I have similar issue but for different reason: ``` AttributeError: 'NoneType' object has no attribute 'rfind' Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 743, in on_text_command res =...

I believe it's all that was there. Sure I had the file open. I installed plugin, restarted Sublime, opened some solution from random contest, and wanted to figure out how...

It seems like under certain circumstances some rounding error creeps in and damages everything. I tried network with 20 hidden layers of 20 units, and it's almost always returned same...