cjahv

Results 11 comments of cjahv

功能菜单的图标已经可以更换了,也可以自定义。如果你觉得软件图标也有必要改可以做好了发上来,支持的人多了,作者可能会采纳的

![image](https://user-images.githubusercontent.com/15372793/103148554-f6bcbf80-479b-11eb-8fbd-e111f8812345.png) ![image](https://user-images.githubusercontent.com/15372793/103148557-fa504680-479b-11eb-8566-4cd3f0e6378b.png) 这样对比起来感觉这个大头还好看些,有特点,冲击感强😅

越来越好看了

你可以试试clipy(粘贴板历史),你可以一次多复制几段文本,然后再一起粘贴进来

你在项目里面设置的服务模板,还是在管理里面设置的服务模板?如果在管理面板里面设置的话,可能还需要在项目里面的集成去关闭。 😂猜的

1. `HOMEBREW_EDITOR=vim brew edit tmignore` 2. write ``` class Tmignore < Formula desc "Exclude development files from Time Machine backups" homepage "https://github.com/samuelmeuli/tmignore" url "https://github.com/samuelmeuli/tmignore/releases/download/v1.2.2/tmignore" sha256 "80a8b0e3e05dc30113b9a4db1997b39fadfabbe2a58fa7f63ac4f757b2de9012" head "https://github.com/samuelmeuli/tmignore.git" depends_on :macos...

文档中有滑动done ```python def horizontalSwipe(): x = 300 s.send(("101" + formatSocketData(TOUCH_DOWN, 7, x, 1000)).encode()) # 模拟点击按下。开头的"10"的意思是告诉插件本次任务为“点击模拟”。“10”后面的“1”是点击模拟的数据计数为1 # 上面的那一行代码等同于s.send(("1011070300010000").encode()) time.sleep(0.01) # 如果你在电脑上运行这段代码,把这个sleeptime改成0.2 (iOS环境下的python time.sleep会比他应该休眠的时间长很多) while x = 100: s.send(("101" + formatSocketData(TOUCH_MOVE, 7,...

```diff diff --git a/app/pages/upload/page.js b/app/pages/upload/page.js index d28a05c..46f2044 100644 --- a/app/pages/upload/page.js +++ b/app/pages/upload/page.js @@ -24,6 +24,7 @@ module.exports = function() { fileReader.readAsText(files[0]); fileReader.onload = function() { var data = fileReader.result; +...

temporary solution: 1. `brew install 7zip` 2. `mkdir wine_proxy` 3. create a file `wine_proxy/wine` 4. add execute permission `chmod +x wine_proxy/wine` 5. set environment `export PATH="$(pwd)/wine_proxy:$PATH"` wine_proxy/wine: ``` #!/usr/bin/env node...