-
使用 PDF-XChange Editor 进行 PDF 批注并生成批注链接
2024-05-14 19:26我需要经常打开企业微信同事发来的 PDF 文件,zotero 没法作为系统默认阅读器双击打开文件,之前搜了一下也没找到方法,放弃了。
我需要的是阅读器,并不需要文献管理器。
-
如何在四级标题下搜索多个关键词交集?
2024-05-11 21:45两种方法。
第一种无脑粘贴,但是不够精确:
with recursive head(headid,id,parent_id,type,content) as ( select id,id,parent_id,type,content from blocks where subtype = 'h4' and hpath like '%规范%' union select h.headid,b.id,b.parent_id,b.type,b.content from blocks b join head h on b.parent_id = h.id where h.type not in ('l','b') ) select * from blocks where id in( select headid from (select *,group_concat(content) as headcontent from head group by headid having headcontent like '%耐火极限%' and headcontent like '%消防水泵房%' and headcontent like '%乙级的防火门%' ) )
第二种是精确的,需要复制《规范》这个文档的 id 替换到查询语句中:
with recursive head(headid,id,parent_id,type,content) as ( select id,id,parent_id,type,content from blocks where subtype = 'h4' and hpath like (select hpath from blocks where id = '规范文档的id')||'%' union select h.headid,b.id,b.parent_id,b.type,b.content from blocks b join head h on b.parent_id = h.id where h.type not in ('l','b') ) select * from blocks where id in( select headid from (select *,group_concat(content) as headcontent from head group by headid having headcontent like '%耐火极限%' and headcontent like '%消防水泵房%' and headcontent like '%乙级的防火门%' ) )
-
如何在四级标题下搜索多个关键词交集?
2024-05-11 17:47你这个需求还是有点麻烦的:
with recursive head(headid,id,parent_id,type,content) as ( select id,id,parent_id,type,content from blocks where subtype = 'h4' union select h.headid,b.id,b.parent_id,b.type,b.content from blocks b join head h on b.parent_id = h.id where h.type not in ('l','b') ) select * from blocks where id in( select headid from (select *,group_concat(content) as headcontent from head group by headid having headcontent like '%耐火极限%' and headcontent like '%消防水泵房%' and headcontent like '%乙级的防火门%' ) )
-
安卓版 quickAdd——用 fooview 向思源发送内容
2024-05-11 00:52吐槽一下 FV 的自定义任务,文档少、群里问问题没人回答、编辑器难用、执行出错没有错误信息,简直全方位被 macroDroid 吊打!
要不是悬浮球功能实在牛逼 macroDroid 好像没法实现,我早就跑路了!
-
Anytype——思源数据库的指路明灯
2024-05-07 11:08这个比较简单粗暴了,也不是不行 😄
不过最好同时对自定义属性同步进行升级,自定义属性增加数据类型的定义,这样在数据库里就可以支持数据类型的设置了,从向前兼容的角度来说,以前旧的自定义属性全部当作 text 类型处理。
-
在思源笔记中存放私密资料安全吗?
2024-04-23 09:13- 云端,加密的,思源官方都没法查看。
- 本地
- 保存的本地的 sy 文件是明文的,只要能打开你的电脑就可以通过文件管理器直接查看。
- 只要能打开你的思源笔记,也可以查看到任意内容,不过可以通过这个 quicker 动作把文档隐藏起来 思源笔记隐私空间 - by 浅沧 - 动作信息 - Quicker (getquicker.net),在文档树上看不到,搜索也搜索不到,不过查看后记得及时关闭文档。
-
求助属性视图数据库看不到了
2024-03-28 20:30不需要调用任何 API,简单一点的复现步骤,
1,添加文档 1 到数据库
2,ctrl c 复制数据库
3,删除数据库,文档 1 相关属性消失
4,ctrl v 粘贴数据库,文档 1 的属性面板中相关数据库属性没有恢复。
-
求助属性视图数据库看不到了
2024-03-28 19:12- 这个动作查找的是没有在文档中引用的数据库,而不是主键都不是文档的数据库,也就是说主键是块或文档,但是没有被数据库块引用的数据库也会被查找出来,并删除。如果你误删了这种数据库的话,这会导致你相关文档的数据库属性被删除。
- @88250 有个 bug:
- 假设数据库 1 的其中一个主键为文档 1,将数据库 1 的所有数据库块删除,文档 1 的数据库 1 属性会消失,到这里为止正常。
- 手动输入一个引用数据库 1 的数据库块,此时文档 1 的属性面板中数据库 1 的相关属性没有恢复。
-
【已解决】有没有大神开发插件:可以在笔记中新建附件,感觉是很有用的功能
2024-03-23 22:14新建文件到assets文件夹 - by 浅沧 - 动作信息 - Quicker
你说这个吗,早就有了
-
关联列信息应体现在块的数据库面板中
2024-03-13 21:57比如我在测试 2 中关联了[[乘风破浪]]文档
但是在[[乘风破浪]]的数据库页面只显示了电影数据库,没有显示测试 2 数据库。
我看了下关联列的 json,关联的是[[乘风破浪]]的 id,即使不是主键,也可以判定这个数据库和这个块是有关系的。