commonmeta-ruby 3.7.1 → 3.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/publish.yml +23 -0
- data/Gemfile.lock +26 -26
- data/bin/commonmeta +1 -1
- data/docs/.gitignore +1 -0
- data/docs/_publish.yml +4 -0
- data/docs/_quarto.yml +46 -0
- data/docs/_site/favicon.ico +0 -0
- data/docs/_site/images/icon.png +0 -0
- data/docs/_site/index.html +947 -0
- data/docs/_site/readers/bibtex_reader.html +802 -0
- data/docs/_site/search.json +74 -0
- data/docs/_site/site_libs/bootstrap/bootstrap-dark.min.css +9 -0
- data/docs/_site/site_libs/bootstrap/bootstrap-icons.css +2078 -0
- data/docs/_site/site_libs/bootstrap/bootstrap-icons.woff +0 -0
- data/docs/_site/site_libs/bootstrap/bootstrap.min.css +9 -0
- data/docs/_site/site_libs/bootstrap/bootstrap.min.js +7 -0
- data/docs/_site/site_libs/clipboard/clipboard.min.js +7 -0
- data/docs/_site/site_libs/quarto-html/anchor.min.js +9 -0
- data/docs/_site/site_libs/quarto-html/popper.min.js +6 -0
- data/docs/_site/site_libs/quarto-html/quarto-syntax-highlighting-dark.css +179 -0
- data/docs/_site/site_libs/quarto-html/quarto-syntax-highlighting.css +179 -0
- data/docs/_site/site_libs/quarto-html/quarto.js +889 -0
- data/docs/_site/site_libs/quarto-html/tippy.css +1 -0
- data/docs/_site/site_libs/quarto-html/tippy.umd.min.js +2 -0
- data/docs/_site/site_libs/quarto-nav/headroom.min.js +7 -0
- data/docs/_site/site_libs/quarto-nav/quarto-nav.js +288 -0
- data/docs/_site/site_libs/quarto-search/autocomplete.umd.js +3 -0
- data/docs/_site/site_libs/quarto-search/fuse.min.js +9 -0
- data/docs/_site/site_libs/quarto-search/quarto-search.js +1241 -0
- data/docs/_site/utils/doi_utils.html +787 -0
- data/docs/_site/writers/bibtex_writer.html +803 -0
- data/docs/favicon.ico +0 -0
- data/docs/images/icon.png +0 -0
- data/docs/index.qmd +83 -0
- data/docs/readers/bibtex_reader.ipynb +37 -0
- data/docs/theme.scss +7 -0
- data/docs/utils/doi_utils.ipynb +28 -0
- data/docs/writers/bibtex_writer.ipynb +39 -0
- data/lib/commonmeta/cli.rb +8 -8
- data/lib/commonmeta/readers/json_feed_reader.rb +6 -6
- data/lib/commonmeta/utils.rb +2 -2
- data/lib/commonmeta/version.rb +1 -1
- data/spec/cli_spec.rb +5 -5
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_blog_slug.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_updated.yml +186 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/updated_posts.yml +186 -0
- data/spec/readers/json_feed_reader_spec.rb +5 -5
- metadata +42 -5
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_not_indexed.yml +0 -37
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/not_indexed_posts.yml +0 -37
data/docs/favicon.ico
ADDED
Binary file
|
Binary file
|
data/docs/index.qmd
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
---
|
2
|
+
title: Guide
|
3
|
+
---
|
4
|
+
|
5
|
+
[](https://doi.org/10.5281/zenodo.5785519)
|
6
|
+
[](https://badge.fury.io/rb/commonmeta-ruby)
|
7
|
+

|
8
|
+
|
9
|
+
commonmeta-ruby is a Ruby gem and command-line utility for the conversion of scholarly metadata, including [schema.org](https://schema.org). Based on the [bolognese](https://github.com/datacite/bolognese) gem, but using [commonmeta](https://commonmeta.org) as the intermediate format, and supporting additional metadata formats. A Python version is available at [commonmeta-py](https://github.com/front-matter/commonmeta-py).
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Requires Ruby 3.0 or later (Ruby 2.x [has reached its end of life](https://endoflife.date/ruby) March 2023). Then add the following to your `Gemfile` to install the
|
14
|
+
latest version:
|
15
|
+
|
16
|
+
```
|
17
|
+
gem 'commonmeta-ruby'
|
18
|
+
```
|
19
|
+
|
20
|
+
Then run `bundle install` to install into your environment.
|
21
|
+
|
22
|
+
You can also install the gem system-wide in the usual way:
|
23
|
+
|
24
|
+
```
|
25
|
+
gem install commonmeta-ruby
|
26
|
+
```
|
27
|
+
|
28
|
+
## Commands
|
29
|
+
|
30
|
+
Run the `commonmeta` command with either an identifier (DOI or URL) or filename:
|
31
|
+
|
32
|
+
```
|
33
|
+
commonmeta https://doi.org/10.7554/elife.01567
|
34
|
+
```
|
35
|
+
|
36
|
+
```
|
37
|
+
commonmeta example.xml
|
38
|
+
```
|
39
|
+
|
40
|
+
commonmeta can read BibTeX files (file extension `.bib`), RIS files (file extension `.ris`), Crossref files (file extension `.xml`), DataCite files and CSL-JSON files.
|
41
|
+
|
42
|
+
The input format (e.g. Crossref or BibteX) is automatically detected, but
|
43
|
+
you can also provide the format with the `--from` or `-f` flag. The supported
|
44
|
+
input formats are listed in the table above.
|
45
|
+
|
46
|
+
The output format is determined by the `--to` or `-t` flag, and defaults to `schema_org`.
|
47
|
+
|
48
|
+
Show all commands with `commonmeta help`:
|
49
|
+
|
50
|
+
```
|
51
|
+
Commands:
|
52
|
+
commonmeta # convert metadata
|
53
|
+
commonmeta --version, -v # print the version
|
54
|
+
commonmeta help [COMMAND] # Describe available commands or one specific command
|
55
|
+
```
|
56
|
+
|
57
|
+
## Errors
|
58
|
+
|
59
|
+
Errors are returned to STDOUT.
|
60
|
+
|
61
|
+
All input is validated against the commonmeta JSON schema.
|
62
|
+
|
63
|
+
## Supported Metadata Formats
|
64
|
+
|
65
|
+
commonmeta-ruby reads and/or writes these metadata formats:
|
66
|
+
|
67
|
+
| Format | Name | Content Type | Read | Write |
|
68
|
+
| ------ | ---- | ------------ | ---- | ----- |
|
69
|
+
| [Commonmeta](https://commonmeta.org) | commonmeta | application/vnd.commonmeta+json | yes | yes |
|
70
|
+
| [CrossRef Unixref XML](https://www.crossref.org/schema/documentation/unixref1.1/unixref1.1.html) | crossref | application/vnd.crossref.unixref+xml | yes | yes |
|
71
|
+
| [Crossref](https://api.crossref.org) | crossref | application/vnd.crossref+json | yes | no |
|
72
|
+
| [DataCite](https://api.datacite.org/) | datacite | application/vnd.datacite.datacite+json | yes | yes |
|
73
|
+
| [Schema.org (in JSON-LD)](http://schema.org/) | schema_org | application/vnd.schemaorg.ld+json | yes | yes |
|
74
|
+
| [RDF XML](http://www.w3.org/TR/rdf-syntax-grammar/) | rdf_xml | application/rdf+xml | no | yes |
|
75
|
+
| [RDF Turtle](http://www.w3.org/TeamSubmission/turtle/) | turtle | text/turtle | no | yes |
|
76
|
+
| [CSL-JSON](https://citationstyles.org/) | csl | application/vnd.citationstyles.csl+json | yes | yes |
|
77
|
+
| [Formatted text citation](https://citationstyles.org/) | citation | text/x-bibliography | no | yes |
|
78
|
+
| [Codemeta](https://codemeta.github.io/) | codemeta | application/vnd.codemeta.ld+json | yes | yes |
|
79
|
+
| [Citation File Format (CFF)](https://citation-file-format.github.io/) | cff | application/vnd.cff+yaml | yes | yes |
|
80
|
+
| [JATS](https://jats.nlm.nih.gov/) | jats | application/vnd.jats+xml | no | yes |
|
81
|
+
| [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) | csv | text/csv | no | yes |
|
82
|
+
| [BibTex](http://en.wikipedia.org/wiki/BibTeX) | bibtex | application/x-bibtex | yes | yes |
|
83
|
+
| [RIS](http://en.wikipedia.org/wiki/RIS_(file_format)) | ris | application/x-research-info-systems | yes | yes |
|
@@ -0,0 +1,37 @@
|
|
1
|
+
{
|
2
|
+
"cells": [
|
3
|
+
{
|
4
|
+
"cell_type": "raw",
|
5
|
+
"metadata": {},
|
6
|
+
"source": [
|
7
|
+
"---\n",
|
8
|
+
"title: BibTex Reader\n",
|
9
|
+
"description: |\n",
|
10
|
+
" This notebook shows how to read metadata in BibTex format.\n",
|
11
|
+
"---"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"cell_type": "markdown",
|
16
|
+
"metadata": {},
|
17
|
+
"source": [
|
18
|
+
"## Fetch the metadata"
|
19
|
+
]
|
20
|
+
}
|
21
|
+
],
|
22
|
+
"metadata": {
|
23
|
+
"kernelspec": {
|
24
|
+
"display_name": "Ruby 3.2.2",
|
25
|
+
"language": "ruby",
|
26
|
+
"name": "ruby"
|
27
|
+
},
|
28
|
+
"language_info": {
|
29
|
+
"file_extension": ".rb",
|
30
|
+
"mimetype": "application/x-ruby",
|
31
|
+
"name": "ruby",
|
32
|
+
"version": "3.2.2"
|
33
|
+
}
|
34
|
+
},
|
35
|
+
"nbformat": 4,
|
36
|
+
"nbformat_minor": 2
|
37
|
+
}
|
data/docs/theme.scss
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"cells": [
|
3
|
+
{
|
4
|
+
"cell_type": "raw",
|
5
|
+
"metadata": {},
|
6
|
+
"source": [
|
7
|
+
"---\n",
|
8
|
+
"title: doi_utils\n",
|
9
|
+
"---"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
],
|
13
|
+
"metadata": {
|
14
|
+
"kernelspec": {
|
15
|
+
"display_name": "Ruby 3.2.2",
|
16
|
+
"language": "ruby",
|
17
|
+
"name": "ruby"
|
18
|
+
},
|
19
|
+
"language_info": {
|
20
|
+
"file_extension": ".rb",
|
21
|
+
"mimetype": "application/x-ruby",
|
22
|
+
"name": "ruby",
|
23
|
+
"version": "3.2.2"
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"nbformat": 4,
|
27
|
+
"nbformat_minor": 2
|
28
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"cells": [
|
3
|
+
{
|
4
|
+
"cell_type": "raw",
|
5
|
+
"metadata": {},
|
6
|
+
"source": [
|
7
|
+
"---\n",
|
8
|
+
"title: BibTex Writer\n",
|
9
|
+
"description: |\n",
|
10
|
+
" This notebook shows how to generate BibTex metadata from a scholarly resource in commonmeta format generated by commonmeta-ruby.\n",
|
11
|
+
"---"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"cell_type": "markdown",
|
16
|
+
"metadata": {},
|
17
|
+
"source": [
|
18
|
+
"## Fetch the metadata\n",
|
19
|
+
"\n",
|
20
|
+
"As with all commonmeta-ruby notebooks, we start by fetching metadata, in this example a journal article via its Crossref DOI, and then convert it to the commonmeta format."
|
21
|
+
]
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"metadata": {
|
25
|
+
"kernelspec": {
|
26
|
+
"display_name": "Ruby 3.2.2",
|
27
|
+
"language": "ruby",
|
28
|
+
"name": "ruby"
|
29
|
+
},
|
30
|
+
"language_info": {
|
31
|
+
"file_extension": ".rb",
|
32
|
+
"mimetype": "application/x-ruby",
|
33
|
+
"name": "ruby",
|
34
|
+
"version": "3.2.2"
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"nbformat": 4,
|
38
|
+
"nbformat_minor": 2
|
39
|
+
}
|
data/lib/commonmeta/cli.rb
CHANGED
@@ -71,8 +71,8 @@ module Commonmeta
|
|
71
71
|
|
72
72
|
desc "", "encode_by_blog"
|
73
73
|
|
74
|
-
def encode_by_blog(
|
75
|
-
prefix =
|
74
|
+
def encode_by_blog(blog_slug)
|
75
|
+
prefix = get_doi_prefix_by_blog_slug(blog_slug)
|
76
76
|
return nil unless prefix.present?
|
77
77
|
puts encode_doi(prefix)
|
78
78
|
end
|
@@ -103,10 +103,10 @@ module Commonmeta
|
|
103
103
|
puts get_json_feed_unregistered
|
104
104
|
end
|
105
105
|
|
106
|
-
desc "", "
|
106
|
+
desc "", "json_feed_updated"
|
107
107
|
|
108
|
-
def
|
109
|
-
puts
|
108
|
+
def json_feed_updated
|
109
|
+
puts get_json_feed_updated
|
110
110
|
end
|
111
111
|
|
112
112
|
desc "", "json_feed_by_blog"
|
@@ -115,10 +115,10 @@ module Commonmeta
|
|
115
115
|
puts get_json_feed_by_blog(id)
|
116
116
|
end
|
117
117
|
|
118
|
-
desc "", "
|
118
|
+
desc "", "json_feed_blog_slug"
|
119
119
|
|
120
|
-
def
|
121
|
-
puts
|
120
|
+
def json_feed_blog_slug(slug)
|
121
|
+
puts get_json_feed_blog_slug(slug)
|
122
122
|
end
|
123
123
|
|
124
124
|
desc "", "update_ghost_post"
|
@@ -190,10 +190,10 @@ module Commonmeta
|
|
190
190
|
posts.map { |post| post["id"] }.first
|
191
191
|
end
|
192
192
|
|
193
|
-
def
|
193
|
+
def get_json_feed_updated
|
194
194
|
# get JSON Feed items not indexed in Crossref since they have been last updated
|
195
195
|
|
196
|
-
url =
|
196
|
+
url = json_feed_updated_url
|
197
197
|
response = HTTP.get(url)
|
198
198
|
return { "string" => nil, "state" => "not_found" } unless response.status.success?
|
199
199
|
|
@@ -212,8 +212,8 @@ module Commonmeta
|
|
212
212
|
blog["items"].map { |item| item["id"] }.first
|
213
213
|
end
|
214
214
|
|
215
|
-
def
|
216
|
-
# get JSON Feed item by id and return blog
|
215
|
+
def get_json_feed_blog_slug(id)
|
216
|
+
# get JSON Feed item by id and return blog slug
|
217
217
|
|
218
218
|
url = json_feed_item_by_id_url(id)
|
219
219
|
response = HTTP.get(url)
|
@@ -223,10 +223,10 @@ module Commonmeta
|
|
223
223
|
post.to_h.dig("blog", "slug")
|
224
224
|
end
|
225
225
|
|
226
|
-
def
|
226
|
+
def get_doi_prefix_by_blog_slug(blog_slug)
|
227
227
|
# for generating a random DOI.
|
228
228
|
|
229
|
-
url = json_feed_by_blog_url(
|
229
|
+
url = json_feed_by_blog_url(blog_slug)
|
230
230
|
response = HTTP.get(url)
|
231
231
|
return nil unless response.status.success?
|
232
232
|
|
data/lib/commonmeta/utils.rb
CHANGED
@@ -1453,8 +1453,8 @@ module Commonmeta
|
|
1453
1453
|
Base32::URL.decode(id)
|
1454
1454
|
end
|
1455
1455
|
|
1456
|
-
def
|
1457
|
-
"https://api.rogue-scholar.org/posts/
|
1456
|
+
def json_feed_updated_url
|
1457
|
+
"https://api.rogue-scholar.org/posts/updated"
|
1458
1458
|
end
|
1459
1459
|
|
1460
1460
|
def json_feed_unregistered_url
|
data/lib/commonmeta/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
@@ -370,18 +370,18 @@ describe Commonmeta::CLI do
|
|
370
370
|
expect { subject.json_feed_unregistered }.to output(/17d0e31c-bc41-42b8-b873-d3dacee61f5c/).to_stdout
|
371
371
|
end
|
372
372
|
|
373
|
-
|
374
|
-
|
375
|
-
|
373
|
+
it "json_feed_updated" do
|
374
|
+
expect { subject.json_feed_updated }.to output(/bb8932b9-2820-42f8-b22f-f191aaf00e32/).to_stdout
|
375
|
+
end
|
376
376
|
|
377
377
|
it "json_feed_by_blog" do
|
378
378
|
input = "iphylo"
|
379
379
|
expect { subject.json_feed_by_blog input }.to output(/3749f8c4-1ba7-4e51-9dd6-9d9551ad451a/).to_stdout
|
380
380
|
end
|
381
381
|
|
382
|
-
it "
|
382
|
+
it "json_feed_blog_slug" do
|
383
383
|
input = "01a92f9a-f8e0-442b-86e2-11530d9d5635"
|
384
|
-
expect { subject.
|
384
|
+
expect { subject.json_feed_blog_slug input }.to output(/eve/).to_stdout
|
385
385
|
end
|
386
386
|
end
|
387
387
|
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.rogue-scholar.org/posts/01a92f9a-f8e0-442b-86e2-11530d9d5635
|
6
|
+
body:
|
7
|
+
encoding: ASCII-8BIT
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- api.rogue-scholar.org
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json
|
23
|
+
Content-Length:
|
24
|
+
- '3313'
|
25
|
+
Ratelimit-Limit:
|
26
|
+
- '15'
|
27
|
+
Ratelimit-Remaining:
|
28
|
+
- '14'
|
29
|
+
Ratelimit-Reset:
|
30
|
+
- '3'
|
31
|
+
Date:
|
32
|
+
- Mon, 25 Dec 2023 10:38:50 GMT
|
33
|
+
Server:
|
34
|
+
- Fly/9e37a80f (2023-12-22)
|
35
|
+
Via:
|
36
|
+
- 1.1 fly.io
|
37
|
+
Fly-Request-Id:
|
38
|
+
- 01HJG8WMFGNRM35PXT9HSQJYJH-fra
|
39
|
+
body:
|
40
|
+
encoding: UTF-8
|
41
|
+
string: '{"archive_url":"https://wayback.archive-it.org/22123/20231101171300/https://eve.gd/2017/05/07/an-important-note-if-you-have-a-lenovo-g580","authors":[{"name":"Martin
|
42
|
+
Paul Eve","url":"https://orcid.org/0000-0002-5589-8511"}],"blog":{"api":false,"archive_prefix":"https://wayback.archive-it.org/22123/20231101171300/","authors":[{"name":"Martin
|
43
|
+
Paul Eve","url":null}],"backlog":0,"canonical_url":null,"category":"languagesAndLiterature","created_at":1690329600,"current_feed_url":"https://eve.gd/feed/feed.atom","description":null,"favicon":"https://eve.gd/favicon.png","feed_format":"application/atom+xml","feed_url":"https://eve.gd/feed_all.xml","filter":null,"funding":null,"generator":"Jekyll","generator_raw":"Jekyll","home_page_url":"https://eve.gd","id":"z4b9d78","indexed":false,"issn":null,"language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","plan":"Team","prefix":"10.59348","relative_url":"blog","secure":true,"slug":"eve","status":"active","title":"Martin
|
44
|
+
Paul Eve","updated_at":1702425600,"use_api":null,"use_mastodon":false,"user_id":"eb3f6a26-3e38-42ad-b752-250eb2c0bf89","version":"https://jsonfeed.org/version/1.1"},"blog_name":"Martin
|
45
|
+
Paul Eve","blog_slug":"eve","content_text":"The Lenovo G580 comes with Windows
|
46
|
+
8. It is possible to permanently lock\nyourself out of the operating system
|
47
|
+
if you begin with a Microsoft\naccount and migrate this to a local account.
|
48
|
+
Further, you won''t be able\nto rescue the system since *it is impossible
|
49
|
+
to enter the BIOS setup in\nthe machine''s default state if you cannot login
|
50
|
+
to Windows*.\n\nTo fix this:\n\n1. Disable \"fast boot\" mode in Windows
|
51
|
+
8. You can do this in \"Power\n Settings\". If you don''t do this, you
|
52
|
+
can''t modify the Windows disk\n partition when booting from a recovery
|
53
|
+
USB.\n2. [Update your\n BIOS](https://download.lenovo.com/consumer/mobiles/62cn97ww_64.exe).\n Do
|
54
|
+
it now or you won''t be able to unless you can still login to\n Windows
|
55
|
+
8.\n3. Go into the BIOS (shutdown the machine then press the small button\n next
|
56
|
+
to the power button and select \"BIOS setup\"). Then, set an\n administrator
|
57
|
+
password in the BIOS settings. Then, \"disable secure\n boot\". This will
|
58
|
+
allow you to boot from a recovery USB stick such as\n Kali or Ubuntu.\n\nUrgh.
|
59
|
+
A Catch-22 where Microsoft Windows corrupted a login (thanks,\nMicrosoft)
|
60
|
+
and a hardware defect stops you booting into a recovery\nmedium (thanks, Lenovo).\n\n[An
|
61
|
+
important note if you have a Lenovo\nG580](https://eve.gd/2017/05/07/an-important-note-if-you-have-a-lenovo-g580/)\nwas
|
62
|
+
originally published by Martin Paul Eve at [Martin Paul\nEve](https://eve.gd)
|
63
|
+
on May 07, 2017.\n","doi":"https://doi.org/10.59348/dmq66-f5d26","guid":"https://eve.gd/2017/05/07/an-important-note-if-you-have-a-lenovo-g580","id":"01a92f9a-f8e0-442b-86e2-11530d9d5635","image":null,"indexed_at":1696162656,"language":"en","published_at":1494172558,"reference":[],"relationships":[],"summary":"The
|
64
|
+
Lenovo G580 comes with Windows 8. It is possible to permanently lock yourself
|
65
|
+
out of the operating system if you begin with a Microsoft account and migrate
|
66
|
+
this to a local account.\n","tags":[],"title":"An important note if you have
|
67
|
+
a Lenovo G580","updated_at":1494115200,"url":"https://eve.gd/2017/05/07/an-important-note-if-you-have-a-lenovo-g580"}
|
68
|
+
|
69
|
+
'
|
70
|
+
recorded_at: Mon, 25 Dec 2023 10:38:50 GMT
|
71
|
+
recorded_with: VCR 6.2.0
|
@@ -0,0 +1,186 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.rogue-scholar.org/posts/updated
|
6
|
+
body:
|
7
|
+
encoding: ASCII-8BIT
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- api.rogue-scholar.org
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json
|
23
|
+
Content-Length:
|
24
|
+
- '25138'
|
25
|
+
Ratelimit-Limit:
|
26
|
+
- '15'
|
27
|
+
Ratelimit-Remaining:
|
28
|
+
- '14'
|
29
|
+
Ratelimit-Reset:
|
30
|
+
- '3'
|
31
|
+
Date:
|
32
|
+
- Wed, 08 Nov 2023 10:07:52 GMT
|
33
|
+
Server:
|
34
|
+
- Fly/442f90d3 (2023-11-07)
|
35
|
+
Via:
|
36
|
+
- 1.1 fly.io
|
37
|
+
Fly-Request-Id:
|
38
|
+
- 01HEQ6E4HTP85T3NK4C16TKDFM-fra
|
39
|
+
body:
|
40
|
+
encoding: UTF-8
|
41
|
+
string: '[{"archive_url":"https://wayback.archive-it.org/22141/20231105110201/https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023","authors":[{"name":"Georg
|
42
|
+
Fischer"}],"blog":{"category":"otherHumanities","description":null,"feed_url":"https://blogs.fu-berlin.de/open-access-berlin/feed/atom/","generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-access-berlin","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"oaberlin","status":"active","title":"Open
|
43
|
+
Access Blog Berlin","updated_at":1699429735},"blog_name":"Open Access Blog
|
44
|
+
Berlin","blog_slug":"oaberlin","doi":"https://doi.org/10.59350/bmvf8-z4q23","guid":"https://blogs.fu-berlin.de/open-access-berlin/?p=1977","id":"bb8932b9-2820-42f8-b22f-f191aaf00e32","image":null,"indexed":false,"indexed_at":1699219437,"language":"de","published_at":1696581036,"reference":[],"relationships":[],"summary":"weiter
|
45
|
+
zu Dezember 2023 [folgt in K\u00fcrze] Anmerkung zu dieser Rubrik: Das OABB
|
46
|
+
erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen
|
47
|
+
zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen.
|
48
|
+
Der Fokus liegt dabei auf unseren Partnereinrichtungen und auf Veranstaltungen,
|
49
|
+
die sich an die \u00d6ffentlichkeit richten bzw. die offen sind f\u00fcr Angeh\u00f6rige
|
50
|
+
der Wissenschafts- und Kulturerbeeinrichtungen in Berlin.","tags":["Veranstaltungshinweise"],"title":"Veranstaltungshinweise
|
51
|
+
November 2023","updated_at":1699429735,"url":"https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters","authors":[{"name":"Ginny
|
52
|
+
Hendricks","url":"https://orcid.org/0000-0002-0353-2702"}],"blog":{"category":"humanities","description":"The
|
53
|
+
community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/n6az7-4xb07","guid":"652bb7cb4e902104cd51d525","id":"3d013369-c9fa-4b05-8b5f-ad7e1e2f39a2","image":"https://images.unsplash.com/photo-1529246337709-b1a561ebd175?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDEyfHxjb2xvdXIlMjBzdGVwc3xlbnwwfHx8fDE2OTkzMDU0MTN8MA&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699348555,"language":"en","published_at":1699347653,"reference":[],"relationships":[],"summary":"<em>The
|
54
|
+
Upstream platform was created in order to discuss all things open. Open scholarly
|
55
|
+
infrastructure and the need for the community to assess such infrastructures
|
56
|
+
are surely at the heart of enabling the open research movement.","tags":["Interviews","Thought
|
57
|
+
Pieces"],"title":"Principles of Open Scholarly Infrastructure (POSI) version
|
58
|
+
1.1: Reflections from adopters","updated_at":1699378833,"url":"https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance","authors":[{"name":"Andrea
|
59
|
+
Chiarelli","url":"https://orcid.org/0000-0001-7336-8330"}],"blog":{"category":"humanities","description":"The
|
60
|
+
community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/qxbkv-rth08","guid":"6479cd0251698604a68d4b33","id":"d5bea9a2-5136-4ef1-8a73-0490aabd8b14","image":"https://upstream.force11.org/content/images/2023/06/alina-grubnyak-ZiQkhI7417A-unsplash.jpg","indexed":false,"indexed_at":1699197886,"language":"en","published_at":1686038449,"reference":[],"relationships":[],"summary":"The
|
61
|
+
exponential surge in research data, coupled with the advent of cutting-edge
|
62
|
+
computational tools, is ushering in an era of unprecedented opportunities
|
63
|
+
for research performing organisations. However, with many still in the process
|
64
|
+
of adopting basic research data management practices and support mechanisms,
|
65
|
+
the current state of play is concerning.","tags":["Thought Pieces"],"title":"Navigating
|
66
|
+
data-intensive innovation: The transition from research data management to
|
67
|
+
research data governance","updated_at":1699304092,"url":"https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group","authors":[{"name":"Iratxe
|
68
|
+
Puebla","url":"https://orcid.org/0000-0003-1258-0746"}],"blog":{"category":"humanities","description":"The
|
69
|
+
community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/8ty1h-b7t22","guid":"64932cf93cf1043a4d8b0425","id":"0d86b023-1425-450e-a641-a3e5cc25544b","image":"https://upstream.force11.org/content/images/2023/06/Screen-Shot-2023-06-26-at-11.33.11-AM.png","indexed":false,"indexed_at":1699194850,"language":"en","published_at":1687852853,"reference":[],"relationships":[],"summary":"Recognizing
|
70
|
+
the need for dialogue on best practices around ethical challenges in data
|
71
|
+
publication, the FORCE11 Research Data Publication Ethics Working Group started
|
72
|
+
in early 2021 as a multi-stakeholder community effort involving representatives
|
73
|
+
of data repositories, journals, researchers, institutional research integrity
|
74
|
+
officers and libraries.","tags":["Thought Pieces"],"title":"Announcing new
|
75
|
+
resources from the FORCE11-COPE Research Data Publishing Ethics Working Group:
|
76
|
+
flowcharts!","updated_at":1699304063,"url":"https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges","authors":[{"name":"Uttkarsha
|
77
|
+
Bhosale","url":"https://orcid.org/0000-0002-4189-8975"},{"name":"Riya Thomas","url":"https://orcid.org/0000-0002-8720-4051"},{"name":"Dr.
|
78
|
+
Gayatri Phadke","url":"https://orcid.org/0000-0003-2206-0031"},{"name":"Anupama
|
79
|
+
Kapadia"}],"blog":{"category":"humanities","description":"The community blog
|
80
|
+
for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/ra7z7-q2p46","guid":"6493e4be3cf1043a4d8b045b","id":"271749ff-66df-495a-893b-4bdc73ccc0cd","image":"https://upstream.force11.org/content/images/2023/06/standard-quality-control-collage-concept--1-.jpg","indexed":false,"indexed_at":1699194321,"language":"en","published_at":1688475577,"reference":[],"relationships":[],"summary":"The
|
81
|
+
open access (OA) movement has undoubtedly revolutionized the accessibility
|
82
|
+
of scholarly research, aiming to make knowledge freely available to all. While
|
83
|
+
many countries have embraced OA publishing with supportive policies, a persistent
|
84
|
+
obstacle remains\u2014article processing charges (APCs). These charges/fees
|
85
|
+
have led to a debate within the academic community, questioning whether they
|
86
|
+
align with the best interests of open science.","tags":["Thought Pieces","Original
|
87
|
+
Research"],"title":"A Fairer Future for Open Science: Choosing community over
|
88
|
+
commercialization with equitable article processing charges","updated_at":1699304052,"url":"https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable","authors":[{"name":"Martin
|
89
|
+
Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
|
90
|
+
Front Matter Blog covers the intersection of science and technology since
|
91
|
+
2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
|
92
|
+
Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/j4m27-bdw69","guid":"6544c3a43d863800019a5eec","id":"db56ed1f-6430-4418-b4a5-afa6338cf318","image":"https://images.unsplash.com/photo-1473163928189-364b2c4e1135?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDE1fHxzZWFyY2glMjBrZXlzfGVufDB8fHx8MTY5OTE4MTQ2NHww&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699118710,"language":"en","published_at":1699009062,"reference":[],"relationships":[],"summary":"With
|
93
|
+
an update launched yesterday, all blogs that participate in the Rogue Scholar
|
94
|
+
science blog archive are now searchable by blog title, description, language,
|
95
|
+
blogging platform, category (scientific field using the OECD Fields of Science
|
96
|
+
and Technology), and ISSN.","tags":["News"],"title":"Rogue Scholar blogs are
|
97
|
+
now searchable","updated_at":1699181519,"url":"https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable"},{"archive_url":null,"authors":[{"name":"Kim
|
98
|
+
Hartley"},{"name":"Michelle Barker"}],"blog":{"category":"computerAndInformationSciences","description":null,"feed_url":"https://www.researchsoft.org/feed.xml","generator":"Hugo","home_page_url":"https://researchsoft.org/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"researchsoft","status":"active","title":"Research
|
99
|
+
Software Alliance","updated_at":1699160484},"blog_name":"Research Software
|
100
|
+
Alliance","blog_slug":"researchsoft","doi":"https://doi.org/10.59350/kjwtp-3yg06","guid":"tag:researchsoft.org,2023:/blog/2023-10/","id":"092b69ee-5f4e-4449-9fdb-34329c8d1444","image":"https://researchsoft.org/blog/2023-10/IMG_3080-1440x1080.jpg","indexed":false,"indexed_at":1698568390,"language":"en","published_at":1698105600,"reference":[],"relationships":[],"summary":"October
|
101
|
+
2023 Authors: Kim Hartley and Michelle Barker We are proud to report that
|
102
|
+
the second International Research Software Funders Workshop, co-hosted by
|
103
|
+
the Digital Research Alliance of Canada (the Alliance) and the Research Software
|
104
|
+
Alliance (ReSA) from 18-20 September was a great success.","tags":[],"title":"Investing
|
105
|
+
in People: Anticipating the Future of Research Software","updated_at":1699160484,"url":"https://researchsoft.org/blog/2023-10"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078","authors":[{"name":"Georg
|
106
|
+
Fischer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
|
107
|
+
Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/6mhvf-28f30","guid":"https://irights.info/?post_type=custom_artikel&p=32078","id":"c85a507c-9125-40a1-9dc2-da10129b57c6","image":"https://irights.info/wp-content/uploads/2023/11/IMG_20231024_1601265362-490x254.jpg","indexed":false,"indexed_at":1698909349,"language":"de","published_at":1698908451,"reference":[],"relationships":[],"summary":"Open
|
108
|
+
Access f\u00fcr \u00f6ffentliche Forschung und Kultur: Zwei Jahrzehnte ist
|
109
|
+
es schon her, dass sich zahlreiche Organisationen in der <em>Berliner Erkl\u00e4rung</em>
|
110
|
+
daf\u00fcr aussprachen. Wie weit ist die \u00d6ffnung tats\u00e4chlich gekommen?
|
111
|
+
Und was gilt es weiterhin zu tun? Spannende Fragen, die Berliner und Brandenburger
|
112
|
+
Vertreter*innen aus Wissenschaft und Kultur letzte Woche diskutierten.","tags":["Gesellschaft
|
113
|
+
+ Kunst","Museen + Archive","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"20
|
114
|
+
Jahre Berliner Erkl\u00e4rung f\u00fcr Open Access: Wie ist die Lage in Berlin
|
115
|
+
und Brandenburg?","updated_at":1698917891,"url":"https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073","authors":[{"name":"Till
|
116
|
+
Kreutzer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
|
117
|
+
Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/ekr0w-r5r66","guid":"https://irights.info/?post_type=custom_artikel&p=32073","id":"fc382624-1e55-48df-a09b-853674644716","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698214609,"language":"de","published_at":1698213654,"reference":[],"relationships":[],"summary":"Das
|
118
|
+
Urheberrecht enth\u00e4lt Ausnahmen, die die Arbeit in Bildungseinrichtungen
|
119
|
+
leichter machen. Eine davon ist die sogenannte Unterrichtsschranke (\u00a7
|
120
|
+
60a UrhG). iRights.info erkl\u00e4rt die Regelung und gibt Tipps f\u00fcr
|
121
|
+
die Praxis. Die Unterrichtsschranke erleichtert es, urheberrechtlich gesch\u00fctztes
|
122
|
+
Fremdmaterial zu Bildungszwecken zu nutzen.","tags":["Bildung + OER","Grundwissen","Urheberrecht","Schrankenbestimmungen","Schule"],"title":"Urheberrecht
|
123
|
+
in Schulen: Welche Nutzungen die Unterrichtsschranke erlaubt","updated_at":1698908961,"url":"https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021","authors":[{"name":"Redaktion
|
124
|
+
iRights.info"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
|
125
|
+
Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/mbc9d-jet17","guid":"https://irights.info/?post_type=custom_artikel&p=32021","id":"f0a7cab6-67dd-48f2-b8be-f59f91254e07","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698228321,"language":"de","published_at":1693829213,"reference":[],"relationships":[],"summary":"Darf
|
126
|
+
ich meinen Unterricht aufzeichen? Wem geh\u00f6ren die Rechte an meinem Aufsatz?
|
127
|
+
Und wie war das nochmal mit dem Zitatrecht? In Schule und Wissenschaft stellen
|
128
|
+
sich vielf\u00e4ltige Fragen rund ums Urheberrecht. Zwei neue Handreichungen
|
129
|
+
des BMBF helfen mit leicht verst\u00e4ndlichen und praxisnahen Antworten,
|
130
|
+
konzipiert und erarbeitet von Till Kreutzer und Georg Fischer.","tags":["Autor
|
131
|
+
+ Text","Creative Commons + Lizenzen","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"Urheberrecht
|
132
|
+
in Schule und Wissenschaft: Zwei neue Handreichungen unterst\u00fctzen bei
|
133
|
+
Alltagsfragen","updated_at":1698677589,"url":"https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021"},{"archive_url":"https://wayback.archive-it.org/22125/20231105110316/https://opencitations.hypotheses.org/3488","authors":[{"name":"Chiara
|
134
|
+
Di Giambattista"}],"blog":{"category":"socialSciences","description":"The
|
135
|
+
blog of the OpenCitations Infrastructure","feed_url":"https://opencitations.hypotheses.org/feed/atom/","generator":"WordPress","home_page_url":"https://opencitations.hypotheses.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"opencitations","status":"active","title":"OpenCitations
|
136
|
+
blog","updated_at":1698658626},"blog_name":"OpenCitations blog","blog_slug":"opencitations","doi":"https://doi.org/10.59350/canw4-3xd10","guid":"https://opencitations.hypotheses.org/?p=3488","id":"77e770e0-74be-46f4-b800-9f8dc6435741","image":null,"indexed":false,"indexed_at":1698180833,"language":"en","published_at":1697558939,"reference":[],"relationships":[],"summary":"In
|
137
|
+
OpenCitations, we like to define our infrastructure organization as \u201ccommunity-based\u201d
|
138
|
+
and \u201ccommunity-driven\u201d, and we really mean it. The support
|
139
|
+
coming from the number of academic libraries and consortia coming after OpenCitations\u2019
|
140
|
+
involvement in the 2nd SCOSS funding cycle has made it possible, starting
|
141
|
+
from 2020, to make OpenCitations develop from a small university project based
|
142
|
+
on time-limited grant incomes to being an","tags":["Open Abstracts","Open
|
143
|
+
Access","Open Citations","Open Scholarship","Open Science"],"title":"OpenCitations
|
144
|
+
needs you: support the change in research practices","updated_at":1698658626,"url":"https://opencitations.hypotheses.org/3488"},{"archive_url":"https://wayback.archive-it.org/22153/20231105213934/https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late","authors":[{"name":"Mike
|
145
|
+
Taylor"}],"blog":{"category":"earthAndRelatedEnvironmentalSciences","description":"SV-POW! ... All
|
146
|
+
sauropod vertebrae, except when we''re talking about Open Access","feed_url":"https://svpow.com/feed/atom/","generator":"WordPress.com","home_page_url":"https://svpow.com","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"svpow","status":"active","title":"Sauropod
|
147
|
+
Vertebra Picture of the Week","updated_at":1698530723},"blog_name":"Sauropod
|
148
|
+
Vertebra Picture of the Week","blog_slug":"svpow","doi":"https://doi.org/10.59350/tfpdy-zkt79","guid":"https://svpow.com/?p=21347","id":"eec545af-44fd-4663-bcab-75d5c8de8bb1","image":"https://svpow.files.wordpress.com/2023/10/bob-nicholls-sideburns.jpeg?w=480&h=646","indexed":false,"indexed_at":1698526380,"language":"en","published_at":1698525657,"reference":[],"relationships":[],"summary":"Back
|
149
|
+
in 2013, we showed you Bob Nicholls\u2019 beautiful sketch \u201cThe Giant
|
150
|
+
& Company\u201d, featuring a giant Apatosaurus with a shaggy beard running
|
151
|
+
along its neck.","tags":["Art","Bob Nicholls","Diplodocids","Life Restorations","Speculation"],"title":"Facial
|
152
|
+
hair of the Mesozoic: Bob Nicholls edition, part 2 (only ten years late)","updated_at":1698530723,"url":"https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference","authors":[{"name":"Martin
|
153
|
+
Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
|
154
|
+
Front Matter Blog covers the intersection of science and technology since
|
155
|
+
2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
|
156
|
+
Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw55","guid":"62d42bbd41e317003df48e00","id":"b8f01608-05af-41a8-aa71-7238ddea1677","image":"https://blog.front-matter.io/content/images/2023/10/4691440146_bcaea61ee0-1.jpg","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1276560000,"reference":[],"relationships":[],"summary":"Last
|
157
|
+
week I attended the annual meeting of the American Society of Clinical Oncology
|
158
|
+
(ASCO) in Chicago. For my work it is the most important scientific meeting
|
159
|
+
of the year, and it is also by far the biggest with more than 30.000 participants.
|
160
|
+
Blogging is a great way to report from conferences, and for me <em>FriendFeed</em>
|
161
|
+
is the best microblogging tool to do that.","tags":["Meeting Report"],"title":"Using
|
162
|
+
Twitter at the ASCO Conference","updated_at":1698521115,"url":"https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/what-is-scholarly-markdown","authors":[{"name":"Martin
|
163
|
+
Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
|
164
|
+
Front Matter Blog covers the intersection of science and technology since
|
165
|
+
2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
|
166
|
+
Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw1c","guid":"62d42bbd41e317003df48d87","id":"3850bdcb-6858-4883-a9e9-b474d0bc6f45","image":"https://blog.front-matter.io/content/images/2022/08/DALL-E-2022-08-29-11.57.15---Edward-hopper-oil-painting-of-a-garden-gnome-with-an-umbrella-under-the-Golden-Gate-Bridge.png","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1371489360,"reference":[],"relationships":[],"summary":"One
|
167
|
+
of the important discussions taking place at the Markdown for Science workshop
|
168
|
+
last weekend was about the definition of Scholarly Markdown.","tags":["Meeting
|
169
|
+
Report"],"title":"What is Scholarly Markdown?","updated_at":1698520325,"url":"https://blog.front-matter.io/posts/what-is-scholarly-markdown"},{"archive_url":null,"authors":[{"name":"Roderic
|
170
|
+
Page","url":"https://orcid.org/0000-0002-7101-9767"}],"blog":{"category":"computerAndInformationSciences","description":"Rants,
|
171
|
+
raves (and occasionally considered opinions) on phyloinformatics, taxonomy,
|
172
|
+
and biodiversity informatics. For more ranty and less considered opinions,
|
173
|
+
see my <a href=\"https://twitter.com/rdmpage\">Twitter feed</a>.<br />ISSN
|
174
|
+
2051-8188. Written content on this site is licensed under a <a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative
|
175
|
+
Commons Attribution 4.0 International license</a>.","feed_url":"https://iphylo.blogspot.com/feeds/posts/default","generator":"Blogger","home_page_url":"https://iphylo.blogspot.com/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"iphylo","status":"active","title":"iPhylo","updated_at":1698394696},"blog_name":"iPhylo","blog_slug":"iphylo","doi":"https://doi.org/10.59350/m59qn-22v52","guid":"tag:blogger.com,1999:blog-16081779.post-903668539491051583","id":"087fc7fc-c157-414a-a7b6-00503a55b521","image":"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaJx_5psYTAPfRLaomxACMxZ5Ant1peCHJixf0PeYP82k2uw9vOq4P2Q-HzSakV8q5aSmfqs0X_J_OJmnnhttknlwVYeEguQaxhk4fWi0lKvh_KzugoZWd_MjHmXcImkuMVbJPxXmwln6-Ah7iy4elXNGhfhmofrZbHrgcc3VC7E7lrVd05Utw/s72-c/Screenshot%202023-10-26%20at%2013.30.11.png","indexed":false,"indexed_at":1698333872,"language":"en","published_at":1698333060,"reference":[],"relationships":[],"summary":"This
|
176
|
+
blog post documents my attempts to create links between two major resources
|
177
|
+
for plant taxonomy: JSTOR\u2019s Global Plants and GBIF, specifically between
|
178
|
+
type specimens in JSTOR and the corresponding occurrence in GBIF. The TL;DR
|
179
|
+
is that I have tried to map 1,354,861 records for type specimens from JSTOR
|
180
|
+
to the equivalent record in GBIF, and managed to find 903,945 (67%) matches.
|
181
|
+
Why do this? Why do this?","tags":[],"title":"Where are the plant type specimens?
|
182
|
+
Mapping JSTOR Global Plants to GBIF","updated_at":1698394696,"url":"https://iphylo.blogspot.com/2023/10/where-are-plant-type-specimens-mapping.html"}]
|
183
|
+
|
184
|
+
'
|
185
|
+
recorded_at: Wed, 08 Nov 2023 10:07:52 GMT
|
186
|
+
recorded_with: VCR 6.2.0
|