Sophie Alpert

Results 99 comments of Sophie Alpert

My tentative plan (once I find time to finish it) is to write a program that uses human strategies I've enumerated to try to classify which puzzles require more advanced...

We've continued meeting, but it takes a substantial amount of effort to clean up the notes into something that can be broadly understood and won't be misinterpreted. It wasn't clear...

The way I use that button is: * Pause on exception: I try to use this whenever possible whenever I'm trying to debug an unexpected exception in my code. *...

Honestly what I would love to do is annotate individual try/catch blocks in the source as "this is just a feature test" vs "this is error handling for real errors"...

@sokra An alternate would be: ```js function useEventCallback(fn) { let ref = useRef(); useLayoutEffect(() => { ref.current = fn; }); return useCallback(() => (0, ref.current)(), []); } ``` This doesn't...

So arguably this seems like a bug in elixir.bat, except that it seems like batch scripts just cannot correctly handle arbitrary characters in their arguments: https://stackoverflow.com/q/4200316 – so that seems...

Really? Why would you expect that a stylesheet key needs to be a valid classname? Requiring people to understand that requires them to understand implementation details of Aphrodite. `zubat: 1px;`...

React DOM does (mostly) support rendering into a container in another window.

One idea I had is that a puzzle might be hard if there are many possible things you can deduce, and then later while solving there is only one or...