Nicolas M. Thiéry

Results 274 comments of Nicolas M. Thiéry

And here is the complementary part, to merge in the assignment information. ```python def merge_assignment_gradebook(source: Gradebook, target: Gradebook) -> None: """ Merge the gradebook's assignment information into the target gradebook...

For the record: this is pretty slow: it takes a bit less than a second per submission. That's ok for my application, but not very reasonable in principle.

Caveat: Gradebook.close does not trigger a database commit! Hence the last transaction may be lost. It took me a while to figure out why the grades of my last student...

For the record: Jérémie Neveu from Paris Sud mentioned to me that the "toggle visibility of all student names with one click" would be helpful in his workflow.

For the record: this has evolved slightly: now evaluating the cell triggers an InterpreterError. Has it been reported upstream? I tried reproducing it with cling but I am not sure...

``` $ conda list | grep cling clangdev 5.0.0 cling_1 [cling] QuantStack cling 0.5 7 [cling] QuantStack cling-patches 1 0 conda-forge cryptopp 5.6.5 cling_0 [cling] QuantStack llvmdev 5.0.0 cling_1 [cling]...

For the record: this is still failing with conda 0.7 and xeus-cling 0.10.0.

For the record: the example above now works smoothly with cling 0.8 and xeus-cling 0.13.0. ``` /* ' */ 1 + 1 ``` I tried a few other examples without...

I encountered the same problem, though with some variations. Whether the kernel crashes seems to depend not only on the conda environment but on the underlying OS/hardware???. We have some...

For the record: I managed to get C++17 to work (but not C++11 or C++14) consistently by forcing gcc=9.4.0. Presumably it was not OS related after all, but just some...