acgrid

Results 4 comments of acgrid

> * `brew install 7zip` Great approach! I managed to fix a series of issues when packaging Windows on MacOS 12.2 with [cjahv](https://github.com/cjahv)'s wrapper. Note: the right path of `wine`...

Me too but resolved by initializing everything (clone a new repo and setup again), so possible issues involves: * incompatible packages in existing venv if you just `git pull` and...

Same here if updated to newer gradio. There may be some incompatible problems for extensions related to gradio. Disabling extensions (especially additional-networks, batchlinks-webui, civitai helper, etc...) will work. I checked...

其实`or`这类运算符应该用在的地方是只需要代码的**副作用**(具体地说,比如guard,log),而不是表达式的时候。 举个例子,do something并赋值,并在出现问题时记录,在一行里怎么写呢,伪代码如下: ```php $result = query_database($SQL) or query_error(__FILE__, __LINE__); ``` 赋值表达式本身是有值的,`query_error`根据赋值结果执行。当然现在基本都是用异常处理,我也是从early PHP5时代的代码里学来的。