Erlend Langseth

Results 47 issues of Erlend Langseth

I was going to do this but I'm blocked by #63

`npm i`: ``` npm WARN old lockfile npm WARN old lockfile The package-lock.json file was created with an old version of npm, npm WARN old lockfile so supplemental metadata must...

I get several of these errors when I try to compile: ``` error[E0046]: not all trait items implemented, missing: `set_color`, `set_dimensions`, `get_dimensions`, `set_description`, `set_identifier` --> src/backend/stacked_bar_chart.rs:109:1 | 109 | impl...

Discussion: #36

I will keep updating it. Some of these are quite subtle, but I think we should address everything. - [x] 1. Should `mutate_add_connection()` be allowed to add `i -> i`...

### `Organism` and `Gene` * In `mutation_add_connection`, there is no check whether the connection already exists. In `Organism::get_weights`, we only use the weight of one connection, so any other similar...

Both in the XOR example and in my own attempts, I noticed something: The first 100-200 generations, the output of `organism.activate` is `0.0`. So we are essentially waiting for any...

``` $ import-sort src/index.js src/index.js: Error: Cannot find module '@babel/plugin-proposal-do-expressions' Require stack: - /home/ploppz/node_modules/@babel/core/lib/config/files/plugins.js - /home/ploppz/node_modules/@babel/core/lib/config/files/index.js - /home/ploppz/node_modules/@babel/core/lib/index.js - /home/ploppz/node_modules/import-sort-parser-babylon/lib/index.js - /home/ploppz/node_modules/import-sort/lib/index.js - /home/ploppz/node_modules/import-sort-cli/lib/index.js ``` In `package.json` I have: ```...

### Version 2.0.5 ### Test Case https://codesandbox.io/s/eloquent-voice-c239pn?file=/src/App.js ### Expected Behavior The popup should be visible ### Actual Behavior The popup is partially occluded by the Dialog

I have this function to print errors: ``` pub fn print_err(err: Error) -> T { println!("\n === \nError: {}", err); for e in err.iter().skip(1) { println!(" caused by: {}", e);...