ENDOH takanao

Results 9 comments of ENDOH takanao

How do you think about providing another way such as supports the cancel event of `context.Context` for return from goroutines?

The inner goroutine returns if a case of closing all input channels. This is other use cases, I try implements the Multiple-Input/Multiple-Output now. I want do not closing edge channels...

FYI: my use case. I want to cache the responses of the POST requests to API. It is an example of the customizable cache handler. https://github.com/gocolly/colly/compare/master...michilu:customizable-cache-handler

Sorry. The NDB is new feature that can write without blocking code in Google App Engine / Python 2.7. https://developers.google.com/appengine/docs/python/ndb/async Now, simpleauth is blocking in old urlfetch.fetch method. It is...

PYNQ-Z1 products: - http://www.pynq.io/ - http://store.digilentinc.com/pynq-z1-python-productivity-for-zynq/ - https://github.com/Xilinx/PYNQ

If used this package on the production, validation of values ​​is necessary in order to prevent requests to become invalid. It is required by my project, so I wrote the...

@rkirov OK. I will try to write a test case. But I do not have any time, now. Please wait until April or later.

I resolved that by changing [the `comment_start_string` option of `jinja2.Environment`](http://jinja.pocoo.org/docs/dev/api/#jinja2.Environment) to `{##`, like this: ``` python jinja2_environment = { 'comment_start_string': '{##', }, ```

@ymotongpoo 説明不足でした。 具体的には、黒丸3-6の説明文の順が入れ替わっているのでは無いか、という印象を受けました。 var clickRegistered sync.WaitGroup // ❸ ⬇︎ ❹ WaitGroupを作ります。これはプログラムが stdoutへの書き込む前に終了してしまわないように するためだけのものです。 subscribe(button.Clicked, func() { // ❹ fmt.Println("Maximizing window.") ⬇︎ ❺ ボタンがクリックされたときに、ボタンがあるウィンドウを最大化するのをシミュレートしたハン ドラーを登録します。 subscribe(button.Clicked, func() { // ❺ fmt.Println("Displaying...