Jackson Hu

Results 52 comments of Jackson Hu

I've implemented something here: https://github.com/huming2207/lycheelink-serv Basically in the `__test__/index.spec.ts` I've quickly tested the binding library. It will then complain something like this: ``` ~$ RUST_BACKTRACE=1 npm run test > [email protected]...

Hi @Brooooooklyn Oops sorry my bad, I've accidentially set that to be private. Now it's public! I will also have a read for your code as well. Regards, Jackson

@Brooooooklyn turns out to be I don't need to access the tokio `Handle`. I can just do something like: ```rust #[napi] pub async fn start_server(&mut self) { let addr =...

Hi @Yatekii > This is not implemented :) You can download the binary with probe-rs-cli download beforehand. The GDB stub was only intended as an intermediate solution until we have...

@littlecodersh 实测发图片也不行,异常信息如下: ``` root@vultr:~/WeChatAtis# python3 wechat_bot.py itchatmp started! press Ctrl+C to exit. Hhhhh Access token updated Uncaught exception POST /?signature=4beed04xyzxyzxyzcd8f5e&timestamp=1492212054&nonce=1433764523&openid=oLRnxyzxyzxyzxdvasoB0yhxBFrI&encrypt_type=aes&msg_signature=6e21032d6a80bd5760073a1fbc284a632be8eabd (103.7.30.69) HTTPServerRequest(protocol='http', host='45.63.xyz.xyz', method='POST', uri='/?signature=4beed04xyzxyzxyzcd8f5e&timestamp=1492212054&nonce=1433764523&openid=oLRnxyzxyzxyzxdvasoB0yhxBFrI&encrypt_type=aes&msg_signature=6e21032d6a80bd5760073a1fbc284a632be8eabd', version='HTTP/1.1', remote_ip='103.7.30.69', headers={'Pragma': 'no-cache', 'Host':...

@littlecodersh 实测能用了!谢谢! 见图: ![wechatimg7](https://cloud.githubusercontent.com/assets/4463497/25308782/abb1f614-27ff-11e7-8a1c-ac62ab30d531.jpeg) 项目见:https://github.com/huming2207/WeChatAtis 这是个用Beautifulsoup抓澳洲民航部门气象信息然后用微信公号查询的bot,刚随便弄了个demo试试能不能用,所以代码很乱很丑,过会儿改掉。

Hi @systemed Thanks for your reply. Here's a dump for [Williamstown, VIC](https://www.google.com/maps/place/Williamstown/@-37.8664604,144.9006653,15.52z/data=!4m13!1m7!3m6!1s0x6ad666549e99d41d:0x5045675218ce910!2sWilliamstown+VIC+3016!3b1!8m2!3d-37.861!4d144.885!3m4!1s0x6ad66692b485f147:0x1d04567609f4e080!8m2!3d-37.8676602!4d144.9053412): [dump.zip](https://github.com/systemed/tilemaker/files/8028633/dump.zip) Also thanks for your advice, we will have a look with vt2geojson and QGIS. Regards, Jackson

Here's the GeoJSON converted from PBF: [14-14786-10056.zip](https://github.com/systemed/tilemaker/files/8029003/14-14786-10056.zip) The `14-14786-10056.json` is dumped from our map, and `14-14786-10056-2.json` is from Maptiler. Looks like our map data is not a perfect-ish square. Here's...

Hi @systemed Sorry for the late reply. We've tried something like this: ```lua function attribute_function(attr,layer) if attr["featurecla"]=="Glaciated areas" then return { subclass="glacier" } elseif attr["featurecla"]=="Antarctic Ice Shelf" then return {...

We grabbed some of those state government building outline GDB data, and use some sorts of commands like this to bundle and convert into Shapefile: ``` find . -type d...