scil

Results 26 comments of scil

可参考 [LaravelFly](https://github.com/scil/LaravelFly) 上面带着个nginx配置范例 另外,在swoole worker上创建laravel app,在多数应用上不可用,因为app及其上面绑定的events之类的服务 会在处理请求时发生变化 譬如绑定了若干事件处理函数;这些变化,会影响后续的请求. 所以LaravelFly的方法是:在worker初始化时备份各对象的关键属性,在每次请求之后恢复. swala在服务器易用性等方面非常专业,我决定慢慢吸收到LaravelFly里面,谢谢swala

I met this kind of error with `webpack --watch` first, then I exit webpack then execute it again, the error did not resurface again.

encountered repeatly. I remove dir node_modules and tentatively remove this webpack config `cacheDirectory: true`. hope it go well without this error.

a simple sullution: ``` export default { mounted() { this.autoTextAreaHeight(); }, methods:{ autoTextAreaHeight() { if (!this.$refs.autoTextAreaHeight) return; var ele = this.$refs.autoTextAreaHeight.$el.querySelector("textarea"); ele.style.height = 'auto' ele.style.height = (ele.scrollHeight) + 'px' },...

end: https://mailchi.mp/93829490127a/graphite-docs-is-shutting-down

> > > Firefox 68- 的话,你这样编译之后应该也会有问题。虽然问题仅限于 V7 界面,用 V6 界面应该不受影响。 > 或许需要再找一个 ResizeObserver 的腻子。 > 或许可以试试回退[这次提交修改的内容](https://github.com/tiansh/yaofang/commit/6085ac14e49bd539be4eee638248360d5dc7b402),不过那样自己实现出来的效果可能很差甚至有问题就是了。 V7、V6 是指什么?我现在用着没毛病 难道用的是V6?

thank you. but do you mean by " code in browser section"?

for me , I manually add some config for 443 in `nginx.conf` myself. At last , I found that only server for 80 is needed. the server for 443 cause...

Thank you. I follow this https://dominikrys.com/posts/zsh-in-git-bash-on-windows/ to use zsh. Every time a new zsh console starts up, I should wait it ready for some seconds, as zsh executes `.zshrc` which...

I would like the same style as you. based on absent1706/sqlalchemy-mixins, I created [ scil/ sqlalchemy-mixins-for-starlette](https://github.com/scil/sqlalchemy-mixins-for-starlette) which support starlette and fastcgi by adding a new argument `db` to each API.