玩转fress的过滤订阅内容

您可以使用搜索字段进一步细化结果:

by feed ID: f:123 or multiple feed IDs (or): f:123,234,345
by author: author:name or author:‘composed name’
by title: intitle:keyword or intitle:‘composed keyword’
by URL: inurl:keyword or inurl:‘composed keyword’
by tag: #tag or #tag+with+whitespace
by free-text: keyword or ‘composed keyword’
by date of discovery, using the ISO 8601 time interval format: date:
From a specific day, or month, or year:
date:2014-03-30
date:2014-03 or date:201403
date:2014
From a specific time of a given day:
date:2014-05-30T13
date:2014-05-30T13:30
Between two given dates:
date:2014-02/2014-04
date:2014-02–2014-04
date:2014-02/04
date:2014-02-03/05
date:2014-02-03T22:00/22:15
date:2014-02-03T22:00/15
After a given date:
date:2014-03/
Before a given date:
date:/2014-03
For a specific duration after a given date:
date:2014-03/P1W
For a specific duration before a given date:
date:P1W/2014-05-25T23:59:59
For the past duration before now (the trailing slash is optional):
date:P1Y/ or date:P1Y (past year)
date:P2M/ (past two months)
date:P3W/ (past three weeks)
date:P4D/ (past four days)
date:PT5H/ (past five hours)
date:PT30M/ (past thirty minutes)
date:PT90S/ (past ninety seconds)
date:P1DT1H/ (past one day and one hour)
by date of publication, using the same format: pubdate:
by custom label ID L:12 or multiple label IDs: L:12,13,14 or with any label: L:*
by custom label name label:label, label:“my label” or any label name from a list (or): labels:“my label,my other label”
by several label names (and): label:“my label” label:“my other label”
by entry (article) ID: e:1639310674957894 or multiple entry IDs (or): e:1639310674957894,1639310674957893
by user query (saved search) name: search:myQuery, search:“My query” or saved search ID: S:3
internally, those references are replaced by the corresponding user query in the search expression
Be careful not to enter a space between the operator and the search value.

Some operators can be used negatively, to exclude articles, with the same syntax as above, but prefixed by a ! or -: !f:234, -author:name, -intitle:keyword, -inurl:keyword, -#tag, !keyword, !date:2019, !date:P1W, !pubdate:P3d/.

It is also possible to combine keywords to create a more precise filter. For example, you can enter multiple instances of f:, author:, intitle:, inurl:, #, and free-text.

Combining several search criteria implies a logical and, but the keyword OR can be used to combine several search criteria with a logical or instead: author:Dupont OR author:Dupond

You don’t have to do anything special to combine multiple negative operators. Writing !intitle:‘thing1’ !intitle:‘thing2’ implies AND, see above. For more pointers on how AND and OR interact with negation, see this GitHub comment. Additional reading: De Morgan’s laws.

Finally, parentheses may be used to express more complex queries, with basic negation support:

(author:Alice OR intitle:hello) (author:Bob OR intitle:world)
(author:Alice intitle:hello) OR (author:Bob intitle:world)
!((author:Alice intitle:hello) OR (author:Bob intitle:world))
(author:Alice intitle:hello) !(author:Bob intitle:world)
!(S:1 OR S:2)
ℹ️ If you need to search for a parenthesis, it needs to be escaped like ( or )

By sorting by date

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mfbz.cn/a/572445.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

VUE父组件向子组件传递值

创作灵感 最近在写一个项目时,遇到了这样的一个需求。我封装了一个组件,这个组件需要被以下两个地方使用,一个是搜索用户时用到,一个是修改用户信息时需要用到。其中,在搜索用户时,可以根据姓名或者账号进…

C++之STL-String

目录 一、STL简介 1.1 什么是STL 1.2 STL的版本 1.3 STL的六大组件 ​编辑 1.4 STL的重要性 二、String类 2.1 Sting类的简介 2.2 string之构造函数 2.3 string类对象的容量操作 2.3.1 size() 2.3.2 length() 2.3.3 capacity() 2.3.4 empty() 2.3.5 clear() 2.3.6…

【Unity】苹果(IOS)开发证书保姆级申请教程

前言 我们在使用xcode出包的时候,需要用到iOS证书(.p12)和描述文件(.mobileprovision) 开发证书及对应的描述文件用于开发阶段使用,可以直接将 App 安装到手机上,一个描述文件最多绑定100台测试设备 1.证书管理 进入网站Apple Developer &…

从虚拟化走向云原生,红帽OpenShift“一手托两家”

汽车行业已经迈入“软件定义汽车”的新时代。吉利汽车很清醒地意识到,只有通过云原生技术和数字化转型,才能巩固其作为中国领先汽车制造商的地位。 和很多传统企业一样,吉利汽车在走向云原生的过程中也经历了稳态业务与敏态业务并存带来的前所…

视频美颜SDK原理与实践:从算法到应用

当下,从社交媒体到视频通话,人们越来越依赖于视频美颜功能来提升自己的形象。而视频美颜SDK作为支撑这一技术的重要工具,其原理和实践至关重要。 一、什么是视频美颜SDK? 视频美颜SDK是一种软件开发工具包,用于集成到…

FloodFill算法---DFS

目录 floodfill算法概念: 算法模板套路: 例题1:图像渲染 例题2:岛屿数量 例题3:岛屿的最大面积 例题4:被围绕的区域 floodfill算法概念: floodfill算法是一种常用的图像处理算法&#xf…

【IDEA】在IntelliJ IDEA中导入Eclipse项目:详细指南

IntelliJ IDEA和Eclipse是两款常用的集成开发环境(IDE),在软件开发中经常会遇到需要在它们之间迁移项目的情况。本文将重点介绍如何在IntelliJ IDEA中导入Eclipse项目,以帮助开发者顺利地迁移他们的项目,并在IntelliJ …

云主机修复监控插件异常的方法

首先,进入云监控服务--选择主机监控,勾选上网络配置异常的云主机,最上面的修复插件配置,然后等待大约半个小时多,再观察下主机的状态。 一般情况下问题都可以被解决,如果解决不了,可以尝试卸载…

剑指 Offer 03.:数组中重复的数字

剑指 Offer 03. 数组中重复的数字 找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。…

Linux下的进程管理:创建、终止、切换与等待

文章目录 一、引言二、进程创建1、进程创建的概念与场景2、进程创建的方式a、fork() 系统调用b、fork() 后的执行流程 3、进程创建的过程a、进程创建过程b、子进程创建过程 4、父子进程关系与属性继承 三、进程终止1、进程终止的原因2、进程的错误码和退出码a、错误码b、退出码…

Golang基础5-指针、结构体、方法、接口

指针 和c/c类似,但是go语言中指针不能进行偏移和运算,安全指针 &(取地址) *(根据地址取值) nil(空指针) make和new之前对比:make用于初始化slice,map,channel这样的引用类型 而new用于类…

热知识:更多团队采用3个及以上内部开发者平台

01 介绍 根据 Perforce Puppet 的一份新报告中,平台工程的采用已经在一些企业内看到了成效,78% 的受访者表示他们的组织拥有专门的平台团队至少三年了。 然而,这并不意味着这些组织只使用同一套工具。四分之三的调查参与者表示,他…

如何使用SOLIDWORKS添加装饰螺纹线规格

在我们的设计过程中,有很多的时候螺纹规格在机械设计手册上没有,而我们的SOLIDWORKS软件里面录制的都是符合标准的的螺纹,至于其他的特种或者超出的规格需要我们设计人员去手工添加,以下介绍我们装饰螺纹线新规格的添加方法&#…

关于PMO卓越中心职能建设的实践与思考︱PMO大会

全国PMO专业人士年度盛会 浪潮电子信息产业股份有限公司PMO时军先生受邀为PMO评论主办的2024第十三届中国PMO大会演讲嘉宾,演讲议题为“让组织持续卓越——关于PMO卓越中心职能建设的实践与思考”。大会将于5月25-26日在北京举办,敬请关注! …

菜单访问url/接口url为什么要带时间戳

一, 问题 1,菜单url中如果不加时间戳,会导致什么问题。我们现在做一个东西,需要获取菜单的访问地址,我们要拼这个地址 2,查询接口中,时间戳,如果不加,具体导致什么问题 二…

Vue集成three.js,加载glb、gltf类型的3d模型

安装基本依赖 // 注意OrbitControls要加{},注意路径是jsm import { OrbitControls } from ‘three/examples/jsm/controls/OrbitControls.js’; // import { dat } from ‘three/examples/jsm/controls/dat.gui.js’; // dat gui这个插件,是另外自己下载…

杰理使用USB声卡模式时关闭MIC

杰理在使用PC模式的时候,想只保留扬声器,但不要打开MIC功能,可以配置USB_DEVICE_CLASS_CONFIG中把MIC_CLASS去掉,然后重新编译就可以了。

Kimi 高效使用技巧,80%的人都不知道

关注我, AI 学习之旅上,我与您一同成长! 一、引言 Kimi 作为国产之光,在过去的一个多月里成为国内大模型的香饽饽。据数据分析,Kimi 网页、APP、小程序等各端的日活已经突破 300 万,超过文心一言、通义千问、智谱清言…

单链表实现通讯录

不过多赘述了 顺序表的增删查改-CSDN博客https://blog.csdn.net/bkmoo/article/details/137566495?spm1001.2014.3001.5502 使用顺序表实现通讯录-CSDN博客https://blog.csdn.net/bkmoo/article/details/137676561?spm1001.2014.3001.5502这里没有使用文件操作只是简单的使…
最新文章