Joey Zhao

Results 62 issues of Joey Zhao

I tried to add below css on the parent of `` dom to make it in a fixed height with a vertical scrollbar but it doesn't work. How can I...

I am not sure whether this is an issue or a question. Below is my configuration which works fine: ``` config :logger, backends: [{LoggerFileBackend, :error_log}] ``` Now I want to...

我的系统是 ![image](https://user-images.githubusercontent.com/3355579/194441149-a3d24ba7-3ebe-4d62-831c-1a187db54c56.png) 开始可以通过键盘选择人物属性,进入后主角在家门口,但是任何鼠标键盘都没有反应,不知应当通过什么方式操作任务?

I am using below code to listen on `meta m` key event but it doesn't work if there is a bootstrap modal on the page. ``` listener.simple_combo('meta m', (e) =>...

I am using below scripts to compile less files: ``` "build-css": "node-less-chokidar src/scenes -o src/scenes", "watch-css": "yarn run build-css && node-less-chokidar src/scenes -o src/scenes --watch --recursive", ``` I will compile...

I have a central `less` file used to import all other style files: ``` @import '../..//Home/style/style.less'; @import '../../Crunching/style/crunching.less'; @import '../../components/Tab/tab.less'; @import './font.less'; @import '../../components/Spinner/style.less'; @import '../../style/style.less'; ``` If I watch...

Take stackTags from serverless.yml file and replicate them in the new stack of the new region

I have blow configuration: ``` globalTables: version: v2 regions: - ap-southeast-1 - ap-southeast-2 createStack: false ``` but when run `sls deploy` in ap-southeast-2, it gives me below error ``` CreateGlobalTable:...

I have multiple dynamodb tables under `Resources` section and I only want to create global table for one dynamodb table. How can I specify the table name under `globalTables`?

enhancement
good first issue

I am running `rocksdb-node` 1.7.2 with rocks 5.8 on MacOs. Below is my code: ``` db = rocksdb.open( {create_if_missing: true}, path.join(dbPath, `users-${nodeEnv}.rocksdb`) ); db.put('node', 'rocks'); ``` after running above code...