Saeran Vasanthakumar

Results 12 comments of Saeran Vasanthakumar

I'm having this problem as well. I'm trying to solve it with @qorrect's method, however it's failing at the npm install step, with the following message: ``` 1016 silly lockFile...

Okay, so having successfully followed @qorrect's instructions, now I'm running into this error when running `node lib/cli.js g -y`: ``` ⠸ Loading Game Schedule...(4/6) FetchError: request to https://stats.nba.com/stats/teaminfocommon?LeagueID=00&Season=2018-19&SeasonType=Regular%20Season&TeamID=1610612766 failed, reason:...

@qorrect, so I'm actually having intermittent success now. I would say 1/10 attempts is successful. When it's not working, this is the error I'm getting when I try to wget...

Anyone have any updates on this? I'm trying to install it on WSL2, Ubuntu 20.04.4 LTS, When using `cargo install speki` (with the dependencies listed already installed) I'm getting a...

@TBS1996 Thanks for getting back to me! Your solution worked to solve my issue with install speki with cargo (I also had to install `pkg-config`). Now `cargo install speki` works...

Thanks Chris, we have made progress on this calculation: https://github.com/mostaphaRoudsari/honeybee/compare/master...ryanxwelch:master; and are working on scheduling some time in our busy work schedules to finish off the first implementation. We'll hopefully...

@chriswmackey, I agree, the internal loads and schedules (by building type) are a lot more useful to modify then these parameters.

You can code in an Esc break: http://www.grasshopper3d.com/forum/topics/make-a-custom-component-cancel-able?commentId=2985220%3AComment%3A883361 , introduced to me by @mostaphaRoudsari . You can see an example for Python here, I used it for one of the...

@mostaphaRoudsari Should we strip all white spaces, or just beginning and end? Just the beginning and end: ``` filenamestr = " hello world\n\t " filenamestr = filenamestr.strip() # removes whitepsace...

That's perfect @mostaphaRoudsari I know I've said it before, but I have to say, I love the coding practices you guys are integrating into honeybee[+]. What a great foundation.