cdhigh

Results 80 comments of cdhigh

caught this line! https://github.com/nitefood/ai-bash-gpt/blob/22e77b1a0c8c1aab6a2ea7fdcfa0a018b42e62a2/ai#L735C5-L735C61 735 response_text=$(jq -r '.content'

a lot of pages, can hexdump to a file? I don't know the first thing about bash and shell~~~ I have some experiences in field of C/C++ and python

complaining in line 17 col 178. [rsphexdump.txt](https://github.com/nitefood/ai-bash-gpt/files/11856535/rsphexdump.txt)

This is another dump, line 11 col 151. [rsphexdump (1).txt](https://github.com/nitefood/ai-bash-gpt/files/11856653/rsphexdump.1.txt)

After continuous searching and experimentation, it was discovered that the error was caused by a restriction in the JSON data where line breaks were not allowed. If a line break...

我已经用方法一帮别人搭建了好几个了,都没有什么问题。 如果现在不行,估计heroku又修改了什么规则吧。 不过就几十行代码,用heroku的demo工程然后将这几十行代码拷贝粘贴过去就好。

Usage: Copy release/MODELS/LCD12864B.DLL to the MODELS directory of proteus Copy the files in release/LIBRARY to the LIBRARY directory of proteus Search 12864B in proteus to find this device If the...

是这样,GAE的邮件中转我也常用,很喜欢,除了KindleEar的正事,有时候还用它来干坏事。 比如有些服务每个账号的试用期有限,同一个email又不能重复注册,appspotmail给我提供了无限量的email地址,过期就再注册一个,可以永远的试用~ 还有有些服务推荐一个用户就能获取某些升级奖励之类的,我就不停的推荐不同的appspotmail来创建新用户~ 在转到VPS部署后,我也发现缺了这个功能,所以现在我还在拼命完善Bookmarklet,希望能替代邮件中转服务,我没有接触过没有听说过你说的自定义域名邮箱解析,我会搜索研究,你有什么推荐的服务吗?

没接触过这个领域,我不知是否真正理解你的意思。 花了一点时间学习了相关的知识。 mailglove只是一个非常简单js脚本,将其注册为postfix的content filter,mailglove将postfix的邮件格式重新包装了一下,调用指定的url (webhook)。 所以KindleEar就没必要使用mailglove脚本了,避免了安装笨重的node.js,只需要安装postfix即可(话说postfix的安装和配置真复杂,我都没心情看完~) 我现在想到的方案就是: 1. 写一个python版本content filter 2. 像mailglove一样注册为postfix的content filter 3. 脚本里面解析邮件内容,通过任务队列异步转发到现有的inbound mail处理模块(因为postfix文档上提醒content filter不能执行太长时间)

经过几天的学习,终于明白docker是怎么回事了,也成功部署了docker。 参考docker的最佳实践,我之前的想法是错误的(合并postfix为一个镜像),一个镜像不应该实现很多功能,所以你之前的做法是正确的,postfix/mailglove就应该是另一个镜像,可以使用docker-compose一起执行。 所以我在KindleEar实现一个webhook接口,就处理mailglove转发过来的json,这样就可以不用修改mailglove来适配gae的格式,而是直接pull docker hub上的镜像。