- 文章信息
- 作者: kaiwu
- 点击数:2318
批量修改(batch editing)zotero字段内容的参考网址:
https://www.zotero.org/support/dev/client_coding/javascript_api#batch_editing
导入zotero的书籍类型文献记录(ISBN,amazon等网站)的出版社信息可能比较混乱,如下图所示:
1.点击【tools】-->【Developer】-->【Run Javascript】
2.在弹出的窗口,复制、粘贴示例程序
https://www.zotero.org/support/dev/client_coding/javascript_api#batch_editing
Example: Item Field Changes
Edit the first three lines as necessary:
var fieldName = "publicationTitle"; var oldValue = "Foo"; var newValue = "Foo2"; var fieldID = Zotero.ItemFields.getID(fieldName); var s = new Zotero.Search(); s.libraryID = ZoteroPane.getSelectedLibraryID(); s.addCondition(fieldName, 'is', oldValue); var ids = await s.search(); if (!ids.length) { return "No items found"; } await Zotero.DB.executeTransaction(async function () { for (let id of ids) { let item = await Zotero.Items.getAsync(id); let mappedFieldID = Zotero.ItemFields.getFieldIDFromTypeAndBase(item.itemTypeID, fieldName); item.setField(mappedFieldID ? mappedFieldID : fieldID, newValue); await item.save(); } }); return ids.length + " item(s) updated";zotero数据库字段列表查看:
https://www.zotero.org/support/dev/client_coding/javascript_api/search_fields
These are the values of the fieldName column in the fields table from system.sql
1
url
21
accessDate
41
codeNumber
61
postType
81
documentNumber
2
rights
22
seriesTitle
42
artworkMedium
62
audioFileType
82
dateEnacted
3
series
23
seriesText
43
number
63
version
83
publicLawNumber
4
volume
24
seriesNumber
44
artworkSize
64
system
84
country
5
issue
25
institution
45
libraryCatalog
65
company
85
applicationNumber
6
edition
26
reportType
46
videoRecordingFormat
66
conferenceName
86
forumTitle
7
place
27
code
47
interviewMedium
67
encyclopediaTitle
87
episodeNumber
8
publisher
28
session
48
letterType
68
dictionaryTitle
88
blogTitle
9
pages
29
legislativeBody
49
manuscriptType
69
language
89
type
10
ISBN
30
history
50
mapType
70
programmingLanguage
90
medium
11
publicationTitle
31
reporter
51
scale
71
university
91
title
12
ISSN
32
court
52
thesisType
72
abstractNote
92
caseName
13
date
33
numberOfVolumes
53
websiteType
73
websiteTitle
93
nameOfAct
14
section
34
committee
54
audioRecordingFormat
74
reportNumber
94
subject
15
callNumber
35
assignee
55
label
75
billNumber
95
proceedingsTitle
16
archiveLocation
36
patentNumber
56
presentationType
76
codeVolume
96
bookTitle
17
distributor
37
priorityNumbers
57
meetingName
77
codePages
97
shortTitle
18
extra
38
issueDate
58
studio
78
dateDecided
98
docketNumber
19
journalAbbreviation
39
references
59
runningTime
79
reporterVolume
99
numPages
20
DOI
40
legalStatus
60
network
80
firstPage
100
programTitle
101
issuingAuthority
102
filingDate
103
genre
104
archive
3.修改示例程序的前3行
修改查找字段(fieldName)为【publicationTitle】
修改查找值(oldValue)为【Springer Netherlands】
修改替换值(newValue)为【Springer】
var fieldName = "publicationTitle";
var oldValue = "Springer Netherlands";
var newValue = "Springer";
var fieldID = Zotero.ItemFields.getID(fieldName);
var s = new Zotero.Search();
s.libraryID = ZoteroPane.getSelectedLibraryID();
s.addCondition(fieldName, 'is', oldValue);
var ids = await s.search();
if (!ids.length) {
return "No items found";
}
await Zotero.DB.executeTransaction(async function () {
for (let id of ids) {
let item = await Zotero.Items.getAsync(id);
let mappedFieldID = Zotero.ItemFields.getFieldIDFromTypeAndBase(item.itemTypeID, fieldName);
item.setField(mappedFieldID ? mappedFieldID : fieldID, newValue);
await item.save();
}
});
return ids.length + " item(s) updated";
4.点击【Run】按钮
运行结果显示:查找替换了12处
- 文章信息
- 作者: kaiwu
- 点击数:1343
通过图片检索图片及相关内容。
1.微软必应
https://cn.bing.com/visualsearch
https://cn.bing.com/visualsearch?mkt=zh-CN
2. 百度
https://graph.baidu.com/pcpage/index?tpl_from=pc
3. 搜狗图片
4. 360识图
5.yandex
6.google
https://www.google.com.hk/imghp
- 文章信息
- 作者: kaiwu
- 点击数:1338
延迟满足这个词,来自1966 年到 1972 年启动的一批实验。其中最著名的一个,是在斯坦福大学附属幼儿园(Bing Nursery School of Stanford University)里做的。斯坦福大学的心理学家米歇尔(Walter Mischel)采集了总共 32 名 3 - 6 岁的、平均年龄是 4.3 岁的儿童,测试他们在棉花软糖、饼干的诱惑下的表现。
规则是这样的:给孩子一块棉花软糖,然后明确告诉他,之后他一个人在屋子里,老师要出去一会儿。如果回来的时候,孩子还没有把这块糖吃下去,就会再得到一块糖。
结果在总体统计里,大约有 30% 的孩子可以等 15 分钟后老师回来,进而得到第二块糖。这些孩子,就是所谓的延迟满足能力强的学生。随后每 10 年,实验人员都会跟踪参加实验的孩子在全方面的表现,包括学业成绩、职业发展、身体健康、精神状态、婚姻状况、经济收入等。
跟踪结果是这样的:在青春期阶段,当初那些延迟满足能力强的学生具有更好的学习能力、社交能力,在美国的高考(SAT)中成绩也更好。当初在实验里表现最好的那 3 个小孩,在美国高考中的成绩比当初表现最差的 3 个同学高了 210 分。
愿意多等 15 分钟,只是孩子的决策系统在某件单一事件上的表现。而这个决策系统是由好几百种因素和他之前短暂的人生经历叠加作用后共同塑造的。决策系统运转后的最终结果就是,孩子自觉、自愿、自主地选择在这件事上能不能多等 15 分钟再吃棉花软糖。
- 文章信息
- 作者: kaiwu
- 点击数:6535
下载网址:https://github.com/eschnett/zotero-citationcounts/releases
2022年4月5日更新,支持zotero 6.0
1.下载zotero-citationcounts插件
官方下载
或者本站下载(需要解压缩)
或者
https://od.lk/d/173044801_bhjGs/zotero-citationcounts-1.3.0.xpi
或者
https://drfs.ctcontents.com/file/20727931/563692906/027c27/opendata/zotero-citationcounts-1.3.0.xpi
2.安装zotero-citationcounts插件
2.1【文件】——>【插件】,选择从文件安装插件
2.2找到已经下载到本地的zotero-citationcounts-1.3.0.xpi
2.3安装以后,重启zotero软件即可
3.zotero-citationcounts的使用
3.1选中文献,单击鼠标右键,可以获取被引用次数
3.2可以将存储被引用次数的【其它】字段显示在主窗口,然后进行排序
- 文章信息
- 作者: kaiwu
- 点击数:1042
The Best Shots
https://www.foto-webcam.eu/webcam/bestof/
Feldkirch March 5, 2022 from 6:30 a.m. to 7:00 p.m.
https://www.foto-webcam.eu/webcam/feldkirch/2022/03/06/1400
6:30 a.m.
6:50 a.m.
7:10 a.m.
7:30 a.m.
7:50 a.m.
9:00 a.m.
10:00 a.m.
11:00 a.m.
12:00 a.m.
1:00 p.m.
2:00 p.m.
3:00 p.m.
4:00 p.m.
5:00 p.m.
6:00 p.m.
6:30 p.m.
6:40 p.m.
6:50 p.m.
7:00 p.m.