- 文章信息
- 作者: kaiwu
- 点击数:1031
1.Dissertations & Theses (Proquest)
Theses and Dissertations Collection
https://about.proquest.com/en/dissertations/
2.PolyU Electronic Theses (Hongkong Polytechnic University)
https://theses.lib.polyu.edu.hk/
3.Theses and Dissertations, Hospitality and Tourism Management (Virginia Tech)
https://vtechworks.lib.vt.edu/handle/10919/82827
4.electronic theses and dissertations(ETD)
5.Dissertation examples
https://library.leeds.ac.uk/dissertation-examples
Listed below are some of the best examples of research projects and dissertations from undergraduate and taught postgraduate students at the University of Leeds. We have not been able to gather examples from all schools. The module requirements for research projects may have changed since these examples were written. Refer to your module guidelines to make sure that you address all of the current assessment criteria. Some of the examples below are only available to access on campus.
Jung, E. (2021). Slow Tourism: A Means-End Approach to the Motivations of Slow Travelers [Doctoral Dissertation, The University of Tennessee]. https://trace.tennessee.edu/utk_graddiss/6696
Pulkkinen, T. (2020). “Being Able to Be Who I Truly Am, That Is the Most Freeing Feeling Ever”: Experiences of Travel Behavior by Transgender Individuals [Master Thesis, University of Eastern Finland]. https://erepo.uef.fi/handle/123456789/23680
Mitsche, N. (2016). Digital Destination Promotion: Understanding and Maximizing the Use of Digital and Cultural Assets to Enhance Tourists’ Decision Making and Destination Marketing Strategies [Doctoral Dissertation, University of Sunderland.]. https://sure.sunderland.ac.uk/id/eprint/7105/
Lo, S. T. (2012). The Production and Consumption of Online Travel Photography [Doctoral Dissertation, The Hong Kong Polytechnic University]. https://theses.lib.polyu.edu.hk/handle/200/6828
Han, J. Y. (2005). The Relationships of Perceived Risk to Personal Factors, Knowledge of Destination, and Travel Purchase Decisions in International Leisure Travel [Doctoral Dissertation, University Libraries, Virginia Polytechnic Institute and State University]. https://vtechworks.lib.vt.edu/handle/10919/27410
- 文章信息
- 作者: kaiwu
- 点击数:699
- 2021 年 5 月,日本多摩动物园(Tama Zoological Park)开放了一个持续了半年的展览,展示了一个蚁群的死亡过程,这可能是全球唯一一个直接向观众展示死亡的动物园了。有很多关于这个展览的讨论,关于死亡,关于老龄化社会,关于开放社会等等。
大多数动物园的昆虫区如果想展示蚁群的话,通常都会选择切叶蚁(leaf-cutting ant )。这种蚂蚁的体态就是典型的蚂蚁的样子,但社群的复杂度却远远高出其他类型的蚁群,甚至被有些昆虫学家誉为“地球上仅次于人类的第二大复杂的社会动物”。在野外,典型的一窝能有几百万只个体,巢穴的体积大约和一个建筑面积 300 平米的独栋别墅差不多。
- 文章信息
- 作者: kaiwu
- 点击数:1900
批量修改(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
- 点击数:1081
通过图片检索图片及相关内容。
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
- 点击数:1083
延迟满足这个词,来自1966 年到 1972 年启动的一批实验。其中最著名的一个,是在斯坦福大学附属幼儿园(Bing Nursery School of Stanford University)里做的。斯坦福大学的心理学家米歇尔(Walter Mischel)采集了总共 32 名 3 - 6 岁的、平均年龄是 4.3 岁的儿童,测试他们在棉花软糖、饼干的诱惑下的表现。
规则是这样的:给孩子一块棉花软糖,然后明确告诉他,之后他一个人在屋子里,老师要出去一会儿。如果回来的时候,孩子还没有把这块糖吃下去,就会再得到一块糖。
结果在总体统计里,大约有 30% 的孩子可以等 15 分钟后老师回来,进而得到第二块糖。这些孩子,就是所谓的延迟满足能力强的学生。随后每 10 年,实验人员都会跟踪参加实验的孩子在全方面的表现,包括学业成绩、职业发展、身体健康、精神状态、婚姻状况、经济收入等。
跟踪结果是这样的:在青春期阶段,当初那些延迟满足能力强的学生具有更好的学习能力、社交能力,在美国的高考(SAT)中成绩也更好。当初在实验里表现最好的那 3 个小孩,在美国高考中的成绩比当初表现最差的 3 个同学高了 210 分。
愿意多等 15 分钟,只是孩子的决策系统在某件单一事件上的表现。而这个决策系统是由好几百种因素和他之前短暂的人生经历叠加作用后共同塑造的。决策系统运转后的最终结果就是,孩子自觉、自愿、自主地选择在这件事上能不能多等 15 分钟再吃棉花软糖。