博文

目前显示的是 十月, 2023的博文

Telegram RSS机器人-Flowerss bot比较全面的安装教程

  Flowerssr bot的简单介绍 RSS基于XML标准,在互联网上被广泛采用的内容包装和投递协议。 在博客、杂志等等的地方有广泛的应用,而Flowerssr bot就是一个支持应用内即时预览的 Telegram RSS Bot。 GitHub地址: https://github.com/indes/flowerss-bot 官方教程: https://flowerss-bot.now.sh/ 安装教程 准备安装前请先安装Docker,安装命令 #CentOS 6系统 rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum update -y yum -y install docker-io service docker start chkconfig docker on #CentOS 7、Debian、Ubuntu系统 curl -sSL https://get.docker.com/ | sh systemctl start docker systemctl enable docker 使用Putty或是Xshell等软件进入你的系列,执行以下命令 mkdir ~/flowerss &&\ wget -O ~/flowerss/config.yml \ https://raw.githubusercontent.com/indes/flowerss-bot/master/config.yml.sample 然后我们需要编辑一下config.yml文件,具体用WinSCP或是宝塔文件管理(docker也可以在宝塔面板里安装)都可以。 新手不建议使用vim命令直接编辑。 文件所在目录: /root/flowerss/config.yml 打开之后参考下面的配置,这里还有一个小坑,bot_token: xxxxx:xxxxxxxxxxxxxxxxxxxx 这个冒号后面是有一个空格的。 bot_token: xxxxx:xxxxxxxxxxxxxxxxxxxx #Telegram机器人的密钥 telegraph_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

仿照浮墨的开源笔记neno

图片
  什么是 neno ? neno  是使用  svelte  +  tailwindcss  仿照浮墨写的  pwa  应用。 之前老苏发过『  碎片化知识管理工具Memos 』, Memos  也是一款仿浮墨的应用,其采用了  SQLite  保存 笔记 ,而今天介绍的  neno ,使用  github  或者  gitee  来存储 笔记 ,包括 文字和图片 。 构建镜像 如果你不想自己构建,可以跳过,直接阅读下一章节 这是一个比较标准的前端  Dockerfile 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 FROM node: 16.5 as build-deps MAINTAINER laosu<[email protected]> WORKDIR /app COPY . ./ # Install all project dependencies RUN npm install RUN npm run build FROM nginx: 1.12 -alpine COPY --from=build-deps /app/dist /usr/share/nginx/html EXPOSE 80 CMD [ "nginx" , "-g" , "daemon off;" ] 构建镜像和容器运行的基本命令如下👇 1 2 3 4 5 6 7 8 9 10 11 # 下载代码 git clone https://github.com/openneno/neno.git # 或者加个代理 git clone https://ghproxy.com/github.com/openneno/neno.git # 进入目录 cd neno # 构建镜像 docker build -t wbsu2003/neno:v1 . 安装 在群晖上以 Docker 方式安装。 在注册表中搜索  wbsu2003  ,找到  wbsu2003/neno ,版本选择  latest 。 端口 本地端口不冲突就行,不确定的话可以用命令查一下 1

使用rssbot创建电报RSS订阅机器人,并添加到Telegram频道或群组

图片
介绍 小白一直想给电报频道添加个RSS订阅推送机器人来推送LET站offer区的帖子,找来找去,看到了RustRssBot这机器人,发现官方机器人用户数已满 那就自建个机器人吧,项目地址: https://github.com/iovxw/rssbot 创建新机器人 在Telegarm中,搜索栏粘贴 @botfather 然你就打开了botfarther的聊天对话框,输入 /newbot 回车发送,botfarther会反馈 Alright, a new bot. How are we going to call it? Please choose a name for your bot. 输入你要创建的bot名字。例如zhujiwiki_bot,回车发送 Done! Congratulations on your new bot. …… Use this token to access the HTTP API: xxx:xxx 我们还可以给自己的机器人添加个菜单,这一步是非必须的 输入 /mybots 找到自己的bot,选择他,然后选择Edit Bot,选择Edit Commands就可以输入你的指令了 例如: rss – 显示当前订阅的 RSS 列表,加 raw 参数显示链接 sub – 订阅一个 RSS: /sub  http://example.com/feed.xml unsub – 退订一个 RSS: /unsub  http://example.com/feed.xml unsubthis – 使用此命令回复想要退订的 RSS 消息即可退订, 不支持 Channel export – 导出为 OPML 在服务器上搭建 rssbot已编译最新版是v2.0.0-alpha.11: https://github.com/iovxw/rssbot/releases 这两个我们任选一个即可 mkdir  / root / rssbot  &&  cd  / root / rssbot wget https : //github.com/iovxw/rssbot/releases/download/v2.0.0-alpha.11/rssbot-zh-x86_64-unknown-linux-musl-openssl -O rssbot chmod