Bing

Results 10 comments of Bing

Just found that at least for Banshee, I can use below Abilities: RESEARCH_BANSHEECLOAKINGFIELD RESEARCH_BANSHEEHYPERFLIGHTROTORS I still don't understand why STARPORTTECHLABRESEARCH_RESEARCH*** doesn't work. It looks much more official.

Thanks @BurnySc2 for pointing it out! This is great help of understanding how does the research upgrade works in python-sc2. I would suggest to remove the unused attributes.

Hi @haltman-at, Thanks for your reply! Your understanding is correct. As the steps to reproduce demonstrates, seems that the fork is fine, but the fork of the fork is not...

Hi @haltman-at, Thanks for your suggestion. I've created a [temporary repo for the example](https://github.com/baibinghere/truffle_5505). While I was testing this, I suddenly found that when I create the mainnet fork, I...

I think a message or warning could be much better for user experience point of view...

发送邮件只是一个测试,用于判断整体市场10分钟内的价格变化的趋势。所以没有考虑针对某个交易对波动的通知。

> 能否讲一下这个函数类型的意义,不然为什么不直接调用想调用的函数,而要用函数类型去调用呢?这个在python和C++中都没有这种用法,为什么go要有这种用法呢? 问题是:函数本身可不可以被看成对象。 看起来是可以的,函数本身就是对象,通过函数与对象绑定形成方法,这样可以实现函数类型调用某个方法。

> 最后一个代码为什么不是第一个子协程先输出 鉴于@TajangSec没有给予自己问题的解释,我简单解释下: 这里的两个worker是**并发**执行的,可以用多线程的思想类比,go对协程的调度估计也是由go进程自己控制的,所以我们不确定谁会先被调用。并且,也可能穿插着第1、2个子协程分别输出的结果。

```golang // 切片的好处还包括长度可变,解包后容量的变化不太明白 sliceN := []int{1} fmt.Printf("sliceN(%d) 的长度为:%d,容量为:%d\n", sliceN, len(sliceN), cap(sliceN)) sliceN = append(sliceN, 2) // 长度和容量自动变长 fmt.Printf("sliceN(%d) 的长度为:%d,容量为:%d\n", sliceN, len(sliceN), cap(sliceN)) // 可追加多个元素 sliceN = append(sliceN, 3, 4) fmt.Printf("sliceN(%d)...

@DylanCkawalec, you didn't specify what command you executed, what environment you have. How would you let anyone to help you? At least my execution of `auction` runs successfully on Ubuntu...