周辉
周辉
I noticed [Paste](https://pasteapp.io/) has a feature: when clipboard receive new content, there's a sound response to notice user. When copied something on iOS, the computer(macOS) will receive the content by...
Tested on: ``` macOS Catalina 10.15 elpa: 26.1 Cider version: 0.22.0 and 20191103.1528 flycheck-clojure version: 20190611.2351 flycheck version: 20191028.2247 ``` Opening cider-jack-in when in a clj file of a clj...
Below code will stuck the program. ```javascript var i = setInterval(() => { console.log(1) }, 1000); clearInterval(i) ``` ```javascript var t = setTimeout(() => { console.log(1) }, 1000); clearTimeout(t) ```
> code ``` [self.view addConstraints:[self.view1 constraintsSize:CGSizeMake(50, 30)]]; [self.view addConstraints:[self.view1 constraintsTopInContainer:10.0f]]; [self.view addConstraints:[self.view1 constraintsTopInContainer:20.0f]]; ``` > console ``` 2016-09-02 19:53:50.192 FaiChouTest[3223:179657] Unable to simultaneously satisfy constraints. Probably at least one of...
I download a (big) file which I want to cancel it. Wish to have a method like this: ``` componentWillUnmount() { OpenFile.cancelUnfinishedTask(); } ```
It is ok when I input the keyword. But when I start inputing the query, he became google search. No matter it is python or something else. When I debug...
比如 bot 回答一个超长回复, 由于 tg 的限制, 消息会被截断. 建议对消息进行拆分回复, 比如: ``` async function sendMessageToTelegram(message, token, context) { // 每1000字符进行拆分 if (message.length > 1000) { let msgArray = message.match(/.{1,1000}/g); for (let msg...
version: ``` "react": "16.9.0", "react-native": "0.61.2", "react-native-snap-carousel": "^3.8.2", ``` code: ``` ``` which the data is: ``` const data = [ {type: 'a', uri: 'https://tmp.mp4'}, {type: 'b', uri: 'https://tmp.png'}, {type:...
https://ffmpeg.org/doxygen/trunk/group__lavc__core.html
``` $ curl --proxy http://127.0.0.1:8001 \ -H ':method: VIEW' \ -H 'content-type: application/json' \ --data-binary '{"pin" : 8213,"id" : "0911D5D6-6354-21F7-9E0A-XXXXXXXXXXXX"}' \ -X VIEW \ 'https://api.some.app.io/trial' ``` 经过测试, anyproxy 无法解析请求方法为 VIEW...