Eddie Hsu

Results 8 comments of Eddie Hsu

I think that's the reason https://stackoverflow.com/questions/45274548/node-js-require-returns-a-string-instead-of-module-object But not sure how to solve it. @tom-sherman did you resolved it?

Tried `leveldown`, and it works. ```js const leveldown = require("leveldown") const path = require("path") leveldown(path.resolve(__dirname, '中文')).open(function (res) { debugger }) ```

Found a [similar issue](https://github.com/paritytech/parity/issues/2215) in a rust-rocksdb binding. Maybe we can do something [like this PR](https://github.com/paritytech/rust-rocksdb/pull/7) in node binding file for this issue?

I'm not a c++ programmer, but it looks like [rocksDB use `_mkdir` to create dir in windows](https://github.com/facebook/rocksdb/blob/cd5092e1683fa3c69bc8686cad1e8c173e523906/port/win/env_win.cc#L433). I tried something after some searching: ```c++ string dir_name = "中文"; _mkdir(dir_name.c_str()); //...

:beers: Thank you, I'll stay turn for good news!

@eduedix Any update with this?

Same issue with that on mobile. When the scroll event over, sometimes the scroll position jumped a little (about 10-20px). Seams like it's a [mobile scroll event issue](http://andyshora.com/mobile-scroll-event-problems.html). Any ideal...

Sorry but no luck. At 0.4.0, it's better but still happened when scroll ending(use default setting). The blog post demo have this issue too(but not very often). I'll try other...