Frossky 发布的文章

win10运行adb的时候总是说adb server版本不对,并且杀掉自动启动。发现是有进程不断重启adb.exe。
使用Everything搜索adb.exe发现好几个都有,究竟是哪个在搞鬼?
用任务管理器->详细信息,找到adb.exe点击右键,选择“打开文件所在的位置”,就发现是哪个目录里面的adb搞鬼了。这次居然是hap(quickapp),把quickapp的开发环境关掉就好了。

https://zapier.com/app/home
https://www.scoro.com/
https://ifttt.com/
还有一篇介绍
上面几个都比较接近我想要提高工作效率的想法:连接不同的APP,按条件自动触发任务。
而问题是上述软件很多在国内用不了,比如google facebook之类。所以国内应该是缺少一个类似这样的软件,可以连接微信、QQ、钉钉、邮箱之类。
看到阿里云推自己的RPA的文章,现在就尝试一下。

对于Excel中:
|-|A|B|C|
|--|--|
|1|品名|价格|重量|
|2|台灯|999|1.03Kg|
想变为:

品名: 台灯,
价格: 999,
重量: 1.03Kg,

开发了下面的函数:

Function joinTitleValue(name As Range, value As Range) As String
    Dim result As String
    result = ""
    For i = 1 To name.Count
        Dim v As String
        v = Trim(CStr(value(i)))
        If Len(v) <> 0 Then
            result = result + name(i) + ": " + v + "," + Chr(10)
        End If
    Next
    joinTitleValue = Left(result, Len(result) - 1)
End Function

使用时,在单元格中输入公式:

=joinTitleValue(A1:A3,B1:B3)

即可

在配置Airtight C-65时只能使用SSH,用户名密码都是config,遇到如下问题:

ssh config@192.168.0.21
Unable to negotiate with 192.168.0.21 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

解决方案

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 config@192.168.0.21

然后又遇到:

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 config@192.168.0.21
Unable to negotiate with 192.168.0.21 port 22: no matching cipher found. Their offer: aes128-cbc

解决方案,加上新的Option,-oCiphers=+aes128-cbc,终于OK

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oCiphers=+aes128-cbc config@192.168.0.21

用户名密码都是config

首先这个Excel文件要保存;
其次,文件-选项-信任中心-受保护的视图,里面3个都不勾。如果本机文件,只要中间的不勾就好了。