Skip to content

Instantly share code, notes, and snippets.

@edsu
Last active July 13, 2023 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsu/2a74387ed01392baf0aa43cdcb49a436 to your computer and use it in GitHub Desktop.
Save edsu/2a74387ed01392baf0aa43cdcb49a436 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import csv
import sys
import json
import time
import requests
def get_snapshots(url):
url = f"https://swap.stanford.edu/was/cdx?url={url}&output=json"
resp = requests.get(url)
if resp.status_code == 200 and resp.text:
return sorted(
[json.loads(line) for line in resp.text.strip().split("\n")],
key=lambda d: d['timestamp'],
reverse=True
)
else:
return
def main():
seed_filename = sys.argv[1]
writer = csv.writer(sys.stdout)
writer.writerow(["url", "latest_timestamp", "swap_url"])
for url in open(seed_filename):
url = url.strip()
snapshots = get_snapshots(url)
if snapshots is not None and len(snapshots) > 0:
ts = snapshots[0]["timestamp"]
writer.writerow([url, ts, f"https://swap.stanford.edu/was/{ts}/{url}"])
else:
writer.writerow([url, None, None])
time.sleep(1)
if __name__ == "__main__":
main()
url latest_timestamp swap_url
https://library.stanford.edu/news/2023/04/remix-april-issue 20230523220746 https://swap.stanford.edu/was/20230523220746/https://library.stanford.edu/news/2023/04/remix-april-issue
https://news.stanford.edu/report/2023/06/06/reading-rare-books-candlelight/
https://news.stanford.edu/report/2023/05/30/teaching-stanfords-history/ 20230531163550 https://swap.stanford.edu/was/20230531163550/https://news.stanford.edu/report/2023/05/30/teaching-stanfords-history/
https://library.stanford.edu/node/173397
https://library.stanford.edu/news/2023/04/remix-april-issue 20230523220746 https://swap.stanford.edu/was/20230523220746/https://library.stanford.edu/news/2023/04/remix-april-issue
https://library.stanford.edu/news/2023/03/remix-march-issue 20230523220754 https://swap.stanford.edu/was/20230523220754/https://library.stanford.edu/news/2023/03/remix-march-issue
https://library.stanford.edu/node/173313 20230523214626 https://swap.stanford.edu/was/20230523214626/https://library.stanford.edu/node/173313
https://library.stanford.edu/news/2023/02/remix-february-issue 20230523220759 https://swap.stanford.edu/was/20230523220759/https://library.stanford.edu/news/2023/02/remix-february-issue
https://library.stanford.edu/news/2023/01/remix-january-issue 20230523220802 https://swap.stanford.edu/was/20230523220802/https://library.stanford.edu/news/2023/01/remix-january-issue
https://library.stanford.edu/node/173238 20230523220805 https://swap.stanford.edu/was/20230523220805/https://library.stanford.edu/node/173238
https://library.stanford.edu/news/2023/04/remix-april-issue 20230523220746 https://swap.stanford.edu/was/20230523220746/https://library.stanford.edu/news/2023/04/remix-april-issue
https://library.stanford.edu/node/173223 20230523220816 https://swap.stanford.edu/was/20230523220816/https://library.stanford.edu/node/173223
https://library.stanford.edu/news/2022/11/remix-november-issue 20230523220811 https://swap.stanford.edu/was/20230523220811/https://library.stanford.edu/news/2022/11/remix-november-issue
https://library.stanford.edu/node/173163 20230523220826 https://swap.stanford.edu/was/20230523220826/https://library.stanford.edu/node/173163
https://library.stanford.edu/node/173161 20230524005413 https://swap.stanford.edu/was/20230524005413/https://library.stanford.edu/node/173161
https://library.stanford.edu/news/2022/10/remix-october-issue 20230524005441 https://swap.stanford.edu/was/20230524005441/https://library.stanford.edu/news/2022/10/remix-october-issue
https://library.stanford.edu/news/2022/09/remix-september-issue 20230524005448 https://swap.stanford.edu/was/20230524005448/https://library.stanford.edu/news/2022/09/remix-september-issue
https://www.goodtimes.sc/the-bracero-legacy-project-combines-art-history-and-education-at-mah/
https://library.stanford.edu/news/2022/08/remix-august-issue 20230524005445 https://swap.stanford.edu/was/20230524005445/https://library.stanford.edu/news/2022/08/remix-august-issue
https://library.stanford.edu/node/172905 20230524005451 https://swap.stanford.edu/was/20230524005451/https://library.stanford.edu/node/172905
https://library.stanford.edu/news/2022/07/remix-july-issue 20230524005458 https://swap.stanford.edu/was/20230524005458/https://library.stanford.edu/news/2022/07/remix-july-issue
https://library.stanford.edu/news/2022/06/remix-june-issue 20230524005455 https://swap.stanford.edu/was/20230524005455/https://library.stanford.edu/news/2022/06/remix-june-issue
https://library.stanford.edu/news/2022/05/remix-may-issue 20230524005501 https://swap.stanford.edu/was/20230524005501/https://library.stanford.edu/news/2022/05/remix-may-issue
https://library.stanford.edu/node/172812 20230524054336 https://swap.stanford.edu/was/20230524054336/https://library.stanford.edu/node/172812
https://library.stanford.edu/news/2022/04/remix-april-issue 20230524054342 https://swap.stanford.edu/was/20230524054342/https://library.stanford.edu/news/2022/04/remix-april-issue
https://www.washingtonpost.com/technology/2022/04/08/ukraine-digital-history/
https://library.stanford.edu/news/2022/03/remix-march-issue 20230524054349 https://swap.stanford.edu/was/20230524054349/https://library.stanford.edu/news/2022/03/remix-march-issue
https://library.stanford.edu/news/2022/02/remix-february-issue 20230524054346 https://swap.stanford.edu/was/20230524054346/https://library.stanford.edu/news/2022/02/remix-february-issue
https://library.stanford.edu/node/172691 20230524054353 https://swap.stanford.edu/was/20230524054353/https://library.stanford.edu/node/172691
https://library.stanford.edu/news/2022/01/remix-january-issue 20230524054357 https://swap.stanford.edu/was/20230524054357/https://library.stanford.edu/news/2022/01/remix-january-issue
https://news.stanford.edu/report/2022/01/21/course-teaches-scope-materials-science-engineering/ 20230601042128 https://swap.stanford.edu/was/20230601042128/https://news.stanford.edu/report/2022/01/21/course-teaches-scope-materials-science-engineering/
https://www.washingtonpost.com/video-games/2022/01/12/video-game-preservation-emulation/
https://library.stanford.edu/node/172655 20230524104339 https://swap.stanford.edu/was/20230524104339/https://library.stanford.edu/node/172655
https://library.stanford.edu/news/2021/11/remix-november-issue 20230524104347 https://swap.stanford.edu/was/20230524104347/https://library.stanford.edu/news/2021/11/remix-november-issue
https://library.stanford.edu/news/2021/10/remix-october-issue 20230524104343 https://swap.stanford.edu/was/20230524104343/https://library.stanford.edu/news/2021/10/remix-october-issue
https://stanforddaily.com/2021/10/19/humans-and-ai-differ-in-poetry-interpretations-says-library-event/ 20211230031001 https://swap.stanford.edu/was/20211230031001/https://stanforddaily.com/2021/10/19/humans-and-ai-differ-in-poetry-interpretations-says-library-event/
https://www.montereycountyweekly.com/people/face_to_face/by-twists-of-fate-amanda-whitmire-found-herself-in-a-job-she-never-knew-she/article_92092182-26d9-11ec-92b7-4f6492fea0ee.html
https://news.stanford.edu/2021/09/30/stanford-scholars-expand-digital-database-historic-records-nuremberg-trial/ 20230601223302 https://swap.stanford.edu/was/20230601223302/https://news.stanford.edu/2021/09/30/stanford-scholars-expand-digital-database-historic-records-nuremberg-trial/
https://library.stanford.edu/news/2021/09/remix-september-issue 20230524104350 https://swap.stanford.edu/was/20230524104350/https://library.stanford.edu/news/2021/09/remix-september-issue
https://library.stanford.edu/node/172529 20230524104353 https://swap.stanford.edu/was/20230524104353/https://library.stanford.edu/node/172529
https://library.stanford.edu/node/172523 20230524104401 https://swap.stanford.edu/was/20230524104401/https://library.stanford.edu/node/172523
https://library.stanford.edu/news/2021/08/remix-august-issue 20230524140930 https://swap.stanford.edu/was/20230524140930/https://library.stanford.edu/news/2021/08/remix-august-issue
https://library.stanford.edu/node/172460 20230524140934 https://swap.stanford.edu/was/20230524140934/https://library.stanford.edu/node/172460
https://library.stanford.edu/node/172452 20230524140938 https://swap.stanford.edu/was/20230524140938/https://library.stanford.edu/node/172452
https://library.stanford.edu/news/2021/07/remix-july-issue 20230524140944 https://swap.stanford.edu/was/20230524140944/https://library.stanford.edu/news/2021/07/remix-july-issue
https://www.wnycstudios.org/podcasts/radiolab/articles/queen-dying
https://library.stanford.edu/news/2021/06/remix-june-issue 20230524140941 https://swap.stanford.edu/was/20230524140941/https://library.stanford.edu/news/2021/06/remix-june-issue
https://library.stanford.edu/node/172409 20230524140950 https://swap.stanford.edu/was/20230524140950/https://library.stanford.edu/node/172409
https://library.stanford.edu/news/2021/05/remix-may-issue 20230524140947 https://swap.stanford.edu/was/20230524140947/https://library.stanford.edu/news/2021/05/remix-may-issue
https://library.stanford.edu/node/172367 20230524140954 https://swap.stanford.edu/was/20230524140954/https://library.stanford.edu/node/172367
https://news.stanford.edu/2021/05/04/revealing-complexities-life-silicon-valley/ 20230601144933 https://swap.stanford.edu/was/20230601144933/https://news.stanford.edu/2021/05/04/revealing-complexities-life-silicon-valley/
https://library.stanford.edu/node/172356 20230524160226 https://swap.stanford.edu/was/20230524160226/https://library.stanford.edu/node/172356
https://www.eff.org/sb978-Apr2021
https://library.stanford.edu/news/2021/04/remix-april-issue 20230524160316 https://swap.stanford.edu/was/20230524160316/https://library.stanford.edu/news/2021/04/remix-april-issue
https://library.stanford.edu/news/2021/03/remix-march-issue-0 20230524160320 https://swap.stanford.edu/was/20230524160320/https://library.stanford.edu/news/2021/03/remix-march-issue-0
https://www.engineering.com/story/how-makerspaces-are-adapting-to-the-pandemic
https://www.libraryjournal.com/ 20221217223508 https://swap.stanford.edu/was/20221217223508/https://www.libraryjournal.com/
https://library.stanford.edu/node/172266 20230524160323 https://swap.stanford.edu/was/20230524160323/https://library.stanford.edu/node/172266
https://thesixfifty.com/from-iggy-to-jello-stanfords-newest-photo-archive-is-an-epic-punk-rock-time-capsule-3f37451db221
https://library.stanford.edu/news/2021/02/remix-february-issue 20230524165127 https://swap.stanford.edu/was/20230524165127/https://library.stanford.edu/news/2021/02/remix-february-issue
https://news.stanford.edu/2021/02/11/archiving-black-histories-silicon-valley/ 20230602121003 https://swap.stanford.edu/was/20230602121003/https://news.stanford.edu/2021/02/11/archiving-black-histories-silicon-valley/
https://library.stanford.edu/news/2021/01/remix-january-issue 20230524165131 https://swap.stanford.edu/was/20230524165131/https://library.stanford.edu/news/2021/01/remix-january-issue
https://library.stanford.edu/node/172192 20230524073334 https://swap.stanford.edu/was/20230524073334/https://library.stanford.edu/node/172192
https://library.stanford.edu/news/2020/11/remix-november-issue 20230524165134 https://swap.stanford.edu/was/20230524165134/https://library.stanford.edu/news/2020/11/remix-november-issue
https://github.blog/2020-11-19-github-archive-program-making-the-archives-beautiful/
https://library.stanford.edu/node/172144 20230524165139 https://swap.stanford.edu/was/20230524165139/https://library.stanford.edu/node/172144
https://news.stanford.edu/2020/11/20/makerspaces-get-creative-coronavirus-pandemic/ 20230513181435 https://swap.stanford.edu/was/20230513181435/https://news.stanford.edu/2020/11/20/makerspaces-get-creative-coronavirus-pandemic/
https://library.stanford.edu/node/172152 20230524165142 https://swap.stanford.edu/was/20230524165142/https://library.stanford.edu/node/172152
https://library.stanford.edu/node/172133 20230524173832 https://swap.stanford.edu/was/20230524173832/https://library.stanford.edu/node/172133
https://library.stanford.edu/news/2020/10/remix-october-issue 20230524173845 https://swap.stanford.edu/was/20230524173845/https://library.stanford.edu/news/2020/10/remix-october-issue
https://library.stanford.edu/node/172125 20230524173854 https://swap.stanford.edu/was/20230524173854/https://library.stanford.edu/node/172125
https://library.stanford.edu/alerts 20230524030723 https://swap.stanford.edu/was/20230524030723/https://library.stanford.edu/alerts
https://library.stanford.edu/news/2020/09/remix-september-issue 20230524173850 https://swap.stanford.edu/was/20230524173850/https://library.stanford.edu/news/2020/09/remix-september-issue
https://news.stanford.edu/2020/09/04/say-names-no-names-exhibit-stanford-libraries/ 20221130130943 https://swap.stanford.edu/was/20221130130943/https://news.stanford.edu/2020/09/04/say-names-no-names-exhibit-stanford-libraries/
https://library.stanford.edu/news/2020/08/remix-august-issue 20230524173857 https://swap.stanford.edu/was/20230524173857/https://library.stanford.edu/news/2020/08/remix-august-issue
https://library.stanford.edu/news/2020/07/remix-july-issue 20230524173901 https://swap.stanford.edu/was/20230524173901/https://library.stanford.edu/news/2020/07/remix-july-issue
https://www.clir.org/2020/07/clir-and-stanford-libraries-announce-digital-library-of-the-middle-east-platform/
https://library.stanford.edu/news/2020/06/remix-june-issue 20230524181710 https://swap.stanford.edu/was/20230524181710/https://library.stanford.edu/news/2020/06/remix-june-issue
https://americanlibrariesmagazine.org/2020/06/01/library-technology-what-future-holds/
https://library.stanford.edu/node/171904 20230524141337 https://swap.stanford.edu/was/20230524141337/https://library.stanford.edu/node/171904
https://library.stanford.edu/news/2020/06/remix-may-issue 20230524181819 https://swap.stanford.edu/was/20230524181819/https://library.stanford.edu/news/2020/06/remix-may-issue
https://library.stanford.edu/node/171895 20230524181823 https://swap.stanford.edu/was/20230524181823/https://library.stanford.edu/node/171895
https://library.stanford.edu/node/171886 20230524181826 https://swap.stanford.edu/was/20230524181826/https://library.stanford.edu/node/171886
https://library.stanford.edu/news/2020/04/remix-april-issue 20230524181830 https://swap.stanford.edu/was/20230524181830/https://library.stanford.edu/news/2020/04/remix-april-issue
https://library.stanford.edu/node/171854 20230524181833 https://swap.stanford.edu/was/20230524181833/https://library.stanford.edu/node/171854
https://library.stanford.edu/node/171852 20230524000919 https://swap.stanford.edu/was/20230524000919/https://library.stanford.edu/node/171852
https://www.insidehighered.com/news/2020/04/15/we-need-fun-more-ever-digital-humanities-meets-baby-sitters-club-books
https://library.stanford.edu/node/171830 20230524185155 https://swap.stanford.edu/was/20230524185155/https://library.stanford.edu/node/171830
https://library.stanford.edu/node/171801 20230524185119 https://swap.stanford.edu/was/20230524185119/https://library.stanford.edu/node/171801
https://library.stanford.edu/news/2020/04/remix-march-issue 20230524185200 https://swap.stanford.edu/was/20230524185200/https://library.stanford.edu/news/2020/04/remix-march-issue
https://library.stanford.edu/news/2020/03/remix-february-issue 20230524185204 https://swap.stanford.edu/was/20230524185204/https://library.stanford.edu/news/2020/03/remix-february-issue
https://news.stanford.edu/2020/02/13/stanford-leader-national-effort-get-vote-college-campuses/ 20211106234429 https://swap.stanford.edu/was/20211106234429/https://news.stanford.edu/2020/02/13/stanford-leader-national-effort-get-vote-college-campuses/
https://news.stanford.edu/2020/02/12/picturing-valentines-day/ 20221020102600 https://swap.stanford.edu/was/20221020102600/https://news.stanford.edu/2020/02/12/picturing-valentines-day/
https://library.stanford.edu/news/2020/02/remix-january-issue 20230524185207 https://swap.stanford.edu/was/20230524185207/https://library.stanford.edu/news/2020/02/remix-january-issue
https://www.scoop.co.nz/stories/CU2001/S00203/archivist-in-nz-to-help-with-preserving-email-challenges.htm
https://americanlibrariesmagazine.org/blogs/the-scoop/using-virtual-reality-fight-fake-news/
https://library.stanford.edu/node/171670 20230524191947 https://swap.stanford.edu/was/20230524191947/https://library.stanford.edu/node/171670
https://library.stanford.edu/node/171669 20230524191940 https://swap.stanford.edu/was/20230524191940/https://library.stanford.edu/node/171669
https://www.esri.com/arcgis-blog/products/story-maps/mapping/announcing-the-winners-of-the-2019-storymapper-of-the-year-competition/ 20210414133644 https://swap.stanford.edu/was/20210414133644/https://www.esri.com/arcgis-blog/products/story-maps/mapping/announcing-the-winners-of-the-2019-storymapper-of-the-year-competition/
https://library.stanford.edu/node/171592 20230524191954 https://swap.stanford.edu/was/20230524191954/https://library.stanford.edu/node/171592
https://library.stanford.edu/news/2019/12/remix-november-issue 20230524191957 https://swap.stanford.edu/was/20230524191957/https://library.stanford.edu/news/2019/12/remix-november-issue
https://news.stanford.edu/2019/11/27/hard-to-count-matter/ 20230602064422 https://swap.stanford.edu/was/20230602064422/https://news.stanford.edu/2019/11/27/hard-to-count-matter/
https://beebom.com/github-open-source-code-arctic-world-archive/
https://www.nuevaschool.org/about/news/upper-school/postviewer/~board/upper-school-news/post/history-comes-to-life-for-students-on-archive-field-trip
https://archiveprogram.github.com/ 20200907070605 https://swap.stanford.edu/was/20200907070605/https://archiveprogram.github.com/
https://diverseeducation.com/article/158237/
https://library.stanford.edu/node/171394 20230524194133 https://swap.stanford.edu/was/20230524194133/https://library.stanford.edu/node/171394
https://www.hmbreview.com/news/pescadero-students-study-immigration-issues-with-grant/article_b72d5480-f060-11e9-89e2-9fb0b9d77046.html
https://www.finebooksmagazine.com/news/grolier-club-presents-peter-koch-printer-retrospective
https://library.stanford.edu/news/2019/09/remix-august-edition 20230524194143 https://swap.stanford.edu/was/20230524194143/https://library.stanford.edu/news/2019/09/remix-august-edition
https://news.stanford.edu/2019/09/02/vintage-film-reveals-antarctic-glacier-melting/ 20211012224124 https://swap.stanford.edu/was/20211012224124/https://news.stanford.edu/2019/09/02/vintage-film-reveals-antarctic-glacier-melting/
https://americanlibrariesmagazine.org/blogs/the-scoop/ifla-wlic-artificial-intelligence-data-mining/
https://www.stanforddaily.com/2019/08/03/100-years-after-opening-green-library-is-still-guided-by-the-vision-of-jane-stanford/ 20200805131027 https://swap.stanford.edu/was/20200805131027/https://www.stanforddaily.com/2019/08/03/100-years-after-opening-green-library-is-still-guided-by-the-vision-of-jane-stanford/
https://news.stanford.edu/2019/08/16/ways-studying-humanity/ 20230317123918 https://swap.stanford.edu/was/20230317123918/https://news.stanford.edu/2019/08/16/ways-studying-humanity/
https://news.stanford.edu/2019/07/19/developing-skills-humanities-research/ 20230317125037 https://swap.stanford.edu/was/20230317125037/https://news.stanford.edu/2019/07/19/developing-skills-humanities-research/
http://www.steinbecknow.com/2019/07/30/new-light-john-steinbeck-stanford-green-library/
https://news.stanford.edu/thedish/2019/07/17/branner-earth-sciences-library-exhibit-celebrates-the-apollo-missions/ 20211021013717 https://swap.stanford.edu/was/20211021013717/https://news.stanford.edu/thedish/2019/07/17/branner-earth-sciences-library-exhibit-celebrates-the-apollo-missions/
https://www.directionsmag.com/article/8949
https://bigthink.com/strange-maps/map-california-island 20210410124328 https://swap.stanford.edu/was/20210410124328/https://bigthink.com/strange-maps/map-california-island
https://stanfordmag.org/contents/the-legend-of-the-almost-lost 20230510052820 https://swap.stanford.edu/was/20230510052820/https://stanfordmag.org/contents/the-legend-of-the-almost-lost
https://www.paloaltoonline.com/news/2019/05/29/whats-in-leonardos-library
https://www.digitalmeetsculture.net/article/agreement-between-stanford-university-and-bibliotheque-nationale-de-france/
https://progressive.org/dispatches/the-social-justice-photography-of-david-bacon-iraq-under-occupation-190513/
http://aabs-balticstudies.org/featured/introducing-liisi-esse-new-aabs-administrative-executive-director
https://www.datarefugestories.org/podcast-page/2019/5/10/episode-04-the-lifecycle-of-data
https://news.stanford.edu/2019/05/08/stanford-scans-storied-judah-railroad-map/ 20230601233842 https://swap.stanford.edu/was/20230601233842/https://news.stanford.edu/2019/05/08/stanford-scans-storied-judah-railroad-map/
https://news.stanford.edu/thedish/2019/05/07/on-the-eve-of-the-150th-anniversary-of-the-first-continental-railroad-whither-the-gold-spike/ 20230601234001 https://swap.stanford.edu/was/20230601234001/https://news.stanford.edu/thedish/2019/05/07/on-the-eve-of-the-150th-anniversary-of-the-first-continental-railroad-whither-the-gold-spike/
https://library.stanford.edu/node/156153 20230524201203 https://swap.stanford.edu/was/20230524201203/https://library.stanford.edu/node/156153
https://news.stanford.edu/2019/05/03/leonardo-da-vinci-celebrated-stanfords-green-library/ 20211013085938 https://swap.stanford.edu/was/20211013085938/https://news.stanford.edu/2019/05/03/leonardo-da-vinci-celebrated-stanfords-green-library/
https://arts.stanford.edu/leonardo-da-vinci-is-celebrated-at-stanfords-green-library/ 20221031041945 https://swap.stanford.edu/was/20221031041945/https://arts.stanford.edu/leonardo-da-vinci-is-celebrated-at-stanfords-green-library/
https://library.stanford.edu/node/156145 20230524201225 https://swap.stanford.edu/was/20230524201225/https://library.stanford.edu/node/156145
https://library.stanford.edu/news/2019/05/remix-stanford-libraries-newsletter 20230524202622 https://swap.stanford.edu/was/20230524202622/https://library.stanford.edu/news/2019/05/remix-stanford-libraries-newsletter
https://americanlibrariesmagazine.org/blogs/the-scoop/dewey-decibel-podcast-ai-academic-libraries/
https://medium.com/google-earth/explore-400-years-of-maps-in-google-earth-b3f552a0fedb
https://m.youtube.com/watch 20230529173616 https://swap.stanford.edu/was/20230529173616/https://m.youtube.com/watch
https://library.stanford.edu/node/156116 20230524202628 https://swap.stanford.edu/was/20230524202628/https://library.stanford.edu/node/156116
https://library.stanford.edu/node/156083 20230524083833 https://swap.stanford.edu/was/20230524083833/https://library.stanford.edu/node/156083
https://library.stanford.edu/node/156071 20230524202632 https://swap.stanford.edu/was/20230524202632/https://library.stanford.edu/node/156071
https://hevga.org/hevga-2019-fellows/
https://scholarlykitchen.sspnet.org/2019/03/13/guest-post-protecting-patron-privacy-in-digital-resources/
https://library.stanford.edu/news/2019/03/remix-stanford-libraries-enewsletter 20230524203615 https://swap.stanford.edu/was/20230524203615/https://library.stanford.edu/news/2019/03/remix-stanford-libraries-enewsletter
https://library.stanford.edu/node/156042 20230524203629 https://swap.stanford.edu/was/20230524203629/https://library.stanford.edu/node/156042
https://news.stanford.edu/thedish/2019/03/03/the-elisabeth-kubler-ross-archive-has-found-a-home-at-stanford/ 20211020062748 https://swap.stanford.edu/was/20211020062748/https://news.stanford.edu/thedish/2019/03/03/the-elisabeth-kubler-ross-archive-has-found-a-home-at-stanford/
https://americanlibrariesmagazine.org/2019/03/01/exploring-ai/
https://library.stanford.edu/node/156033 20230524203622 https://swap.stanford.edu/was/20230524203622/https://library.stanford.edu/node/156033
http://fortune.com/2019/02/21/digital-health-ethics-stanford/
https://library.stanford.edu/node/156021 20230524203640 https://swap.stanford.edu/was/20230524203640/https://library.stanford.edu/node/156021
https://venturebeat.com/2019/02/07/a-25-million-grant-will-help-stanford-libraries-preserve-silicon-valley-archives/
https://news.stanford.edu/2019/01/31/stanford-libraries-transformative-gift-creates-hub-highlighting-silicon-valley-history/review/ 20190311030951 https://swap.stanford.edu/was/20190311030951/https://news.stanford.edu/2019/01/31/stanford-libraries-transformative-gift-creates-hub-highlighting-silicon-valley-history/review/
https://news.stanford.edu/2019/01/29/new-exhibit-showcases-chinese-propaganda-posters/ 20200708013642 https://swap.stanford.edu/was/20200708013642/https://news.stanford.edu/2019/01/29/new-exhibit-showcases-chinese-propaganda-posters/
https://news.stanford.edu/2019/01/25/scholars-select/ 20230323215550 https://swap.stanford.edu/was/20230323215550/https://news.stanford.edu/2019/01/25/scholars-select/
https://www.sfchronicle.com/bayarea/nativeson/article/Homegrown-jazz-heritage-finds-a-home-13563478.php
https://news.stanford.edu/2018/12/19/stanford-polymath-blazes-new-trail-design-manifesto/ 20230131143848 https://swap.stanford.edu/was/20230131143848/https://news.stanford.edu/2018/12/19/stanford-polymath-blazes-new-trail-design-manifesto/
https://library.stanford.edu/node/155907 20230524030713 https://swap.stanford.edu/was/20230524030713/https://library.stanford.edu/node/155907
https://library.stanford.edu/node/155887 20230524204553 https://swap.stanford.edu/was/20230524204553/https://library.stanford.edu/node/155887
https://undark.org/article/request-streamline-federal-document-purge-doi/
https://library.stanford.edu/node/155879 20230524204614 https://swap.stanford.edu/was/20230524204614/https://library.stanford.edu/node/155879
https://blog.wired.com/story/intelligence-squared-debate-silicon-valley-lost-its-soul/
https://library.stanford.edu/news/2018/11/remix-stanford-libraries-newsletter 20230524205553 https://swap.stanford.edu/was/20230524205553/https://library.stanford.edu/news/2018/11/remix-stanford-libraries-newsletter
https://news.stanford.edu/2018/11/12/benjamin-franklin-social-genius-18th-century/ 20230525004111 https://swap.stanford.edu/was/20230525004111/https://news.stanford.edu/2018/11/12/benjamin-franklin-social-genius-18th-century/
https://news.stanford.edu/thedish/2018/11/05/samuel-beckett-letter-at-stanford-opens-new-opportunities-for-scholarship/ 20210605153000 https://swap.stanford.edu/was/20210605153000/https://news.stanford.edu/thedish/2018/11/05/samuel-beckett-letter-at-stanford-opens-new-opportunities-for-scholarship/
https://library.stanford.edu/node/155851 20230524205602 https://swap.stanford.edu/was/20230524205602/https://library.stanford.edu/node/155851
https://library.stanford.edu/node/155850 20230524205558 https://swap.stanford.edu/was/20230524205558/https://library.stanford.edu/node/155850
https://library.stanford.edu/node/155834 20230524205612 https://swap.stanford.edu/was/20230524205612/https://library.stanford.edu/node/155834
https://library.stanford.edu/node/155831 20230524205605 https://swap.stanford.edu/was/20230524205605/https://library.stanford.edu/node/155831
https://news.stanford.edu/2018/10/12/cantor-arts-center-stanford-libraries-collaborate-make-warhol-photography-archives-publicly-available/ 20220120145925 https://swap.stanford.edu/was/20220120145925/https://news.stanford.edu/2018/10/12/cantor-arts-center-stanford-libraries-collaborate-make-warhol-photography-archives-publicly-available/
https://news.stanford.edu/2018/10/15/helping-journalists-use-data-investigative-reporting/ 20230525004323 https://swap.stanford.edu/was/20230525004323/https://news.stanford.edu/2018/10/15/helping-journalists-use-data-investigative-reporting/
https://news.stanford.edu/2018/10/15/michael-keller-named-vice-provost-teaching-learning-sarah-church-serve-senior-associate-vice-provost/ 20200110141120 https://swap.stanford.edu/was/20200110141120/https://news.stanford.edu/2018/10/15/michael-keller-named-vice-provost-teaching-learning-sarah-church-serve-senior-associate-vice-provost/
https://www.24-7pressrelease.com/press-release/457218/zachary-m-baker-presented-with-the-albert-nelson-marquis-lifetime-achievement-award-by-marquis-whos-who
https://library.stanford.edu/node/154937 20230524210455 https://swap.stanford.edu/was/20230524210455/https://library.stanford.edu/node/154937
https://library.stanford.edu/news/2018/10/remix-stanford-libraries-newsletter 20230524210459 https://swap.stanford.edu/was/20230524210459/https://library.stanford.edu/news/2018/10/remix-stanford-libraries-newsletter
https://datebook.sfchronicle.com/art-exhibits/cantor-debuts-warhol-contact-sheets-at-stanford
https://news.stanford.edu/2018/09/26/new-stanford-project-gets-inside-voltaires-mind/ 20230525061813 https://swap.stanford.edu/was/20230525061813/https://news.stanford.edu/2018/09/26/new-stanford-project-gets-inside-voltaires-mind/
https://news.stanford.edu/2018/09/25/unparalleled-collection-warhols-photography-stanford-university-includes-images-never-exhibited/ 20201029125540 https://swap.stanford.edu/was/20201029125540/https://news.stanford.edu/2018/09/25/unparalleled-collection-warhols-photography-stanford-university-includes-images-never-exhibited/
https://news.stanford.edu/2018/09/13/stanford-extends-warm-welcome-incoming-undergraduates-thursday/ 20191015011306 https://swap.stanford.edu/was/20191015011306/https://news.stanford.edu/2018/09/13/stanford-extends-warm-welcome-incoming-undergraduates-thursday/
https://dpconline.org/news/r-i-finalists-announced-dpa2018
https://library.stanford.edu/node/153582 20230524052145 https://swap.stanford.edu/was/20230524052145/https://library.stanford.edu/node/153582
https://www.stanforddaily.com/2018/08/07/the-baltic-way-exhibition-commemorates-100-years-of-history/ 20180814214804 https://swap.stanford.edu/was/20180814214804/https://www.stanforddaily.com/2018/08/07/the-baltic-way-exhibition-commemorates-100-years-of-history/
https://news.stanford.edu/2018/08/02/longtime-stanford-librarian-james-breedlove-dies/ 20201014133850 https://swap.stanford.edu/was/20201014133850/https://news.stanford.edu/2018/08/02/longtime-stanford-librarian-james-breedlove-dies/
https://www.kinephanos.ca/Revue_files/2018_Lowood%20interview.pdf
https://library.stanford.edu/node/142538 20230524073341 https://swap.stanford.edu/was/20230524073341/https://library.stanford.edu/node/142538
https://medium.com/@StanfordGlobal/pioneers-in-politics-how-the-words-of-children-became-the-language-of-war-b67f94d412d7 20200909190356 https://swap.stanford.edu/was/20200909190356/https://medium.com/@StanfordGlobal/pioneers-in-politics-how-the-words-of-children-became-the-language-of-war-b67f94d412d7
https://news.stanford.edu/2018/07/19/solving-mystery-unusual-medieval-text/ 20220731104510 https://swap.stanford.edu/was/20220731104510/https://news.stanford.edu/2018/07/19/solving-mystery-unusual-medieval-text/
https://news.stanford.edu/2018/07/11/one-question-led-new-stanford-archive/ 20200926043544 https://swap.stanford.edu/was/20200926043544/https://news.stanford.edu/2018/07/11/one-question-led-new-stanford-archive/
https://campustechnology.com/articles/2018/07/05/universities-working-to-make-library-metadata-searchable-on-the-web.aspx
https://www.infodocket.com/2018/06/27/4-million-grant-from-mellon-foundation-awarded-implement-linked-data-metadata-environment-awarded-to-libraries-at-stanford-cornell-harvard-and-u-of-iowa-partneship/
https://library.stanford.edu/node/142487 20230523221214 https://swap.stanford.edu/was/20230523221214/https://library.stanford.edu/node/142487
https://www.nytimes.com/2018/06/14/obituaries/dorothy-cotton-rights-champion-and-close-aide-to-king-dies-at-88.html
https://www.stanford.edu/about/be-here/
https://library.stanford.edu/node/142479 20230524212452 https://swap.stanford.edu/was/20230524212452/https://library.stanford.edu/node/142479
https://library.stanford.edu/node/142477 20230524212459 https://swap.stanford.edu/was/20230524212459/https://library.stanford.edu/node/142477
https://www.thirteen.org/openmind/science/tech-troublemakers/5955/
https://news.err.ee/836045/baltic-states-centennial-conference-starts-friday-at-us-stanford-university
https://library.stanford.edu/news/2018/06/remix-may-edition 20230524212505 https://swap.stanford.edu/was/20230524212505/https://library.stanford.edu/news/2018/06/remix-may-edition
https://news.stanford.edu/2018/06/04/study-spaces/ 20230526024510 https://swap.stanford.edu/was/20230526024510/https://news.stanford.edu/2018/06/04/study-spaces/
https://www.stanforddaily.com/2018/05/29/functions-of-a-library-3/ 20200505015104 https://swap.stanford.edu/was/20200505015104/https://www.stanforddaily.com/2018/05/29/functions-of-a-library-3/
https://www.theguardian.com/commentisfree/2018/may/28/the-guardian-view-on-digitising-culture-make-manuscripts-more-illuminating
https://www.cnbc.com/2018/05/21/why-your-computer-has-a-mouse-according-to-steve-jobs.html
https://www.cnbc.com/2018/05/17/1976-letter-from-silicon-valley-exec-calls-steve-jobs-flaky-joker.html
https://www.stanforddaily.com/2018/05/17/archive-of-recorded-sound-demos-century-old-music-players/ 20180909023239 https://swap.stanford.edu/was/20180909023239/https://www.stanforddaily.com/2018/05/17/archive-of-recorded-sound-demos-century-old-music-players/
https://library.stanford.edu/node/142441 20230524090741 https://swap.stanford.edu/was/20230524090741/https://library.stanford.edu/node/142441
https://library.stanford.edu/node/142429 20230524213202 https://swap.stanford.edu/was/20230524213202/https://library.stanford.edu/node/142429
https://statescoop.com/how-public-libraries-are-becoming-the-place-where-citizens-can-turn-to-for-government-data
http://estonianworld.com/knowledge/2018-aabs-conference-at-stanford-university-three-days-filled-with-baltic-studies/
https://library.stanford.edu/news/2018/04/remix-april-edition 20230524213930 https://swap.stanford.edu/was/20230524213930/https://library.stanford.edu/news/2018/04/remix-april-edition
https://news.stanford.edu/2018/04/11/retired-stanford-trees-found-home-green-library/ 20230515172103 https://swap.stanford.edu/was/20230515172103/https://news.stanford.edu/2018/04/11/retired-stanford-trees-found-home-green-library/
https://library.stanford.edu/node/141911 20230524213940 https://swap.stanford.edu/was/20230524213940/https://library.stanford.edu/node/141911
https://library.stanford.edu/node/141883 20230524213936 https://swap.stanford.edu/was/20230524213936/https://library.stanford.edu/node/141883
http://estonianworld.com/knowledge/exhibit-at-stanford-libraries-presents-100-years-of-baltic-history/
https://gse100.stanford.edu/stories/mapping-activism-at-stanford
http://estonianworld.com/knowledge/interview-growing-interest-in-baltic-studies-in-the-united-states/
http://www.ksbw.com/article/watsonville-photographer-chronicled-martin-luther-king-jr/19687513
https://library.stanford.edu/news/2018/04/remix-march-edition 20230524214514 https://swap.stanford.edu/was/20230524214514/https://library.stanford.edu/news/2018/04/remix-march-edition
https://www.clir.org/2018/04/clir-receives-1-12-million-to-implement-platform-and-processes-for-digital-library-of-the-middle-east/
https://news.stanford.edu/2018/03/30/archive-features-powerful-photos-kings-death/ 20200117141632 https://swap.stanford.edu/was/20200117141632/https://news.stanford.edu/2018/03/30/archive-features-powerful-photos-kings-death/
https://www6.slac.stanford.edu/news/2018-03-22-hidden-medical-text-read-first-time-thousand-years.aspx 20190311041337 https://swap.stanford.edu/was/20190311041337/https://www6.slac.stanford.edu/news/2018-03-22-hidden-medical-text-read-first-time-thousand-years.aspx
https://www.stanforddaily.com/2018/03/06/qa-ryan-perkins-on-his-experience-as-stanfords-first-south-asian-and-islamic-studies-librarian/ 20180308010303 https://swap.stanford.edu/was/20180308010303/https://www.stanforddaily.com/2018/03/06/qa-ryan-perkins-on-his-experience-as-stanfords-first-south-asian-and-islamic-studies-librarian/
https://medium.com/stanford-magazine/gretchen-carlson-gets-fierce-74df8bc07708
https://www.kqed.org/arts/13826143/wikipedia-needs-more-female-artists-so-add-them
https://news.stanford.edu/2018/03/01/stanford-students-craft-big-life-lessons-books-little-kids/ 20211013102407 https://swap.stanford.edu/was/20211013102407/https://news.stanford.edu/2018/03/01/stanford-students-craft-big-life-lessons-books-little-kids/
https://library.stanford.edu/node/140644 20230524214519 https://swap.stanford.edu/was/20230524214519/https://library.stanford.edu/node/140644
https://library.stanford.edu/news/2018/02/remix-february-edition 20230524215103 https://swap.stanford.edu/was/20230524215103/https://library.stanford.edu/news/2018/02/remix-february-edition
https://www.jweekly.com/2018/02/28/curator-retires-wow-judaica-legacy-stanford/
https://thesixfifty.com/photos-remarkable-and-rare-images-of-martin-luther-king-jr-and-other-civil-rights-leaders-6710af494979
https://library.stanford.edu/node/140492 20230524215107 https://swap.stanford.edu/was/20230524215107/https://library.stanford.edu/node/140492
https://library.stanford.edu/node/140454 20230524215114 https://swap.stanford.edu/was/20230524215114/https://library.stanford.edu/node/140454
https://library.stanford.edu/news/2018/01/remix-january-edition 20230524215110 https://swap.stanford.edu/was/20230524215110/https://library.stanford.edu/news/2018/01/remix-january-edition
https://news.stanford.edu/2018/01/31/john-mitchell-stepping-vice-provost-teaching-learning/ 20220930013545 https://swap.stanford.edu/was/20220930013545/https://news.stanford.edu/2018/01/31/john-mitchell-stepping-vice-provost-teaching-learning/
https://dlme.clir.org/2018/01/31/announcing-digital-library-middle-east-prototype/
https://medium.com/this-cambridge-life/the-librarian-sharing-the-stories-of-our-medieval-past-52dda552aafc
https://earth.stanford.edu/news/industry-leaders-share-mapping-insights-during-stanford-gis-day 20191213105903 https://swap.stanford.edu/was/20191213105903/https://earth.stanford.edu/news/industry-leaders-share-mapping-insights-during-stanford-gis-day
https://campustechnology.com/articles/2018/01/18/stanford-pilot-project-digitizes-bone-fragments-for-classroom-use.aspx
https://www.smithsonianmag.com/innovation/douglas-engelbart-invented-future-180967498/
https://hyperallergic.com/420690/urbano-monte-world-map-1544/
https://news.stanford.edu/2018/01/12/3-d-images-artifacts-enrich-experience-students-faculty/ 20230104144300 https://swap.stanford.edu/was/20230104144300/https://news.stanford.edu/2018/01/12/3-d-images-artifacts-enrich-experience-students-faculty/
https://news.stanford.edu/2017/12/20/doggy-therapy/ 20230602033433 https://swap.stanford.edu/was/20230602033433/https://news.stanford.edu/2017/12/20/doggy-therapy/
https://library.stanford.edu/node/138356 20230524215523 https://swap.stanford.edu/was/20230524215523/https://library.stanford.edu/node/138356
https://news.stanford.edu/2017/12/15/vintage-film-offers-new-insights-antarctica/ 20230602040800 https://swap.stanford.edu/was/20230602040800/https://news.stanford.edu/2017/12/15/vintage-film-offers-new-insights-antarctica/
https://www.nature.com/articles/d41586-017-08329-8
https://news.stanford.edu/2017/12/14/humanistic-inquiry-digital-technology/ 20220930173032 https://swap.stanford.edu/was/20220930173032/https://news.stanford.edu/2017/12/14/humanistic-inquiry-digital-technology/
https://west.stanford.edu/research/works/evasive-bodies-may-s-photo-studio-complete-video 20191213013215 https://swap.stanford.edu/was/20191213013215/https://west.stanford.edu/research/works/evasive-bodies-may-s-photo-studio-complete-video
http://www.dailymail.co.uk/sciencetech/article-5161309/Col
https://alumni.stanford.edu/get/page/magazine/article/ 20201015050618 https://swap.stanford.edu/was/20201015050618/https://alumni.stanford.edu/get/page/magazine/article/
http://www.datacarpentry.org/blog/exec-council-announce/
http://www.cbc.ca/radio/asithappens/as-it-happens-tuesday-edition-1.4444569/the-largest-world-map-from-the-renaissance-has-been-assembled-online-for-the-1st-time-1.4444583
https://news.nationalgeographic.com/2017/12/cartography-gigantic-ancient-map-urbano-monte/
https://library.stanford.edu/news/2017/12/remix-stanford-libraries-newsletter-november-2017 20230524215802 https://swap.stanford.edu/was/20230524215802/https://library.stanford.edu/news/2017/12/remix-stanford-libraries-newsletter-november-2017
https://publishingperspectives.com/2017/12/guadalajara-us-mexican-relations-publishing/
https://www.recode.net/2017/12/4/16725258/leslie-berlin-troublemakers-book-silicon-valley-history-stanford-kara-swisher-decode-podcast
http://www.aseees.org/programs/aseees-prizes/clir-distinguished-service-award/2017-rondestvedt
https://library.stanford.edu/node/136941 20230524215941 https://swap.stanford.edu/was/20230524215941/https://library.stanford.edu/node/136941
https://library.stanford.edu/node/136940 20230524093550 https://swap.stanford.edu/was/20230524093550/https://library.stanford.edu/node/136940
https://campustechnology.com/articles/2017/11/15/building-a-three-dimensional-record-of-student-learning.aspx
https://www.clir.org/recordings-at-risk/awards
https://library.stanford.edu/news/2017/11/remix-stanford-libraries-newsletter-october-2017 20230524215945 https://swap.stanford.edu/was/20230524215945/https://library.stanford.edu/news/2017/11/remix-stanford-libraries-newsletter-october-2017
https://news.stanford.edu/2017/11/09/press-celebrates-125th-anniversary/ 20200811065514 https://swap.stanford.edu/was/20200811065514/https://news.stanford.edu/2017/11/09/press-celebrates-125th-anniversary/
http://menafn.com/1096075511/Sharjah-Public-Library-Introduces-3000-Rare-Historical-Documents-to-the-Region
https://www.stanforddaily.com/2017/10/26/university-libraries-update-research-tool-for-digital-resources/ 20171029172141 https://swap.stanford.edu/was/20171029172141/https://www.stanforddaily.com/2017/10/26/university-libraries-update-research-tool-for-digital-resources/
https://www.diglib.org/archives/14705/
http://www.stanforddaily.com/2017/10/11/this-stanford-life-2/ 20171016173756 https://swap.stanford.edu/was/20171016173756/http://www.stanforddaily.com/2017/10/11/this-stanford-life-2/
https://www.stanforddaily.com/2017/10/11/100-films-to-watch-at-stanford/ 20201127070835 https://swap.stanford.edu/was/20201127070835/https://www.stanforddaily.com/2017/10/11/100-films-to-watch-at-stanford/
https://library.stanford.edu/news/2017/10/remix-stanford-libraries-newsletter-september-2017 20230524220116 https://swap.stanford.edu/was/20230524220116/https://library.stanford.edu/news/2017/10/remix-stanford-libraries-newsletter-september-2017
https://library.stanford.edu/node/133373 20230524220122 https://swap.stanford.edu/was/20230524220122/https://library.stanford.edu/node/133373
http://stanfordpress.typepad.com/blog/2017/09/125-years-of-publishing.html
http://news.stanford.edu/2017/09/25/pioneering-interactive-academic-publishing/ 20220120150130 https://swap.stanford.edu/was/20220120150130/http://news.stanford.edu/2017/09/25/pioneering-interactive-academic-publishing/
https://library.stanford.edu/node/130905 20230524220159 https://swap.stanford.edu/was/20230524220159/https://library.stanford.edu/node/130905
https://library.stanford.edu/node/130509 20230524220207 https://swap.stanford.edu/was/20230524220207/https://library.stanford.edu/node/130509
https://www.valitsus.ee/en/news/prime-minister-ratas-discussed-development-judicial-applications-artificial-intelligence
https://library.stanford.edu/news/2017/08/remix-stanford-libraries-newsletter-august-2017 20230524220203 https://swap.stanford.edu/was/20230524220203/https://library.stanford.edu/news/2017/08/remix-stanford-libraries-newsletter-august-2017
https://www.clir.org/about/news/pressrelease/whiting-dlme
https://library.stanford.edu/node/122490 20230524010229 https://swap.stanford.edu/was/20230524010229/https://library.stanford.edu/node/122490
http://axial.acs.org/2017/08/08/grace-baysinger/
http://www.tribuneindia.com/news/nation/largest-collection-of-partition-witness-accounts-set-for-release/448227.html
http://in.pcmag.com/feature/116093/these-advocates-want-to-make-sure-our-data-doesnt-disappear
http://www.spin.com/2017/08/allen-ginsberg-bob-dylan-bootleg-tapes/
http://news.stanford.edu/2017/08/02/ancient-rome-influence-usa-examined-new-class/ 20220511065850 https://swap.stanford.edu/was/20220511065850/http://news.stanford.edu/2017/08/02/ancient-rome-influence-usa-examined-new-class/
http://www.mercurynews.com/2017/07/10/virtual-reality-and-smoothie-bars-the-modern-university-library/
https://library.stanford.edu/news/2017/07/remix-stanford-libraries-newsletter-july-2017 20230524220253 https://swap.stanford.edu/was/20230524220253/https://library.stanford.edu/news/2017/07/remix-stanford-libraries-newsletter-july-2017
http://news.stanford.edu/2017/07/23/1967-year-summer-love-stanford/ 20191015043633 https://swap.stanford.edu/was/20191015043633/http://news.stanford.edu/2017/07/23/1967-year-summer-love-stanford/
http://www.newsweek.com/2017/07/07/zohar-translation-unlocks-secrets-jewish-mysticism-age-extremism-629527.html
http://news.stanford.edu/2017/07/12/libraries-rare-score-giuseppe-verdis-opera-aida-provides-clues-past/ 20220801133213 https://swap.stanford.edu/was/20220801133213/http://news.stanford.edu/2017/07/12/libraries-rare-score-giuseppe-verdis-opera-aida-provides-clues-past/
https://library.stanford.edu/news/2017/07/remix-june-2017 20230524220249 https://swap.stanford.edu/was/20230524220249/https://library.stanford.edu/news/2017/07/remix-june-2017
http://news.stanford.edu/2017/06/29/new-digital-archive-showcases-historical-images-rome/ 20210813152021 https://swap.stanford.edu/was/20210813152021/http://news.stanford.edu/2017/06/29/new-digital-archive-showcases-historical-images-rome/
http://www.smithsonianmag.com/innovation/brief-history-maps-180963685/
http://www.nbcnews.com/news/asian-america/150-years-ago-chinese-railroad-workers-staged-era-s-largest-n774901 20210114160644 https://swap.stanford.edu/was/20210114160644/http://www.nbcnews.com/news/asian-america/150-years-ago-chinese-railroad-workers-staged-era-s-largest-n774901
http://ocs.yale.edu/narrative/gsas-alumni-spotlight-amy-hodge
http://www.sfchronicle.com/entertainment/article/Correspondence-as-the-nest-empties-11221016.php
https://library.stanford.edu/node/119886 20230524220333 https://swap.stanford.edu/was/20230524220333/https://library.stanford.edu/node/119886
https://library.stanford.edu/node/119604 20230524220341 https://swap.stanford.edu/was/20230524220341/https://library.stanford.edu/node/119604
https://library.stanford.edu/node/119599 20230524220337 https://swap.stanford.edu/was/20230524220337/https://library.stanford.edu/node/119599
https://library.stanford.edu/news/2017/05/remix-may-2017 20230524220344 https://swap.stanford.edu/was/20230524220344/https://library.stanford.edu/news/2017/05/remix-may-2017
https://library.stanford.edu/node/119594 20230524220517 https://swap.stanford.edu/was/20230524220517/https://library.stanford.edu/node/119594
https://library.stanford.edu/node/119588 20230524220657 https://swap.stanford.edu/was/20230524220657/https://library.stanford.edu/node/119588
http://news.stanford.edu/2017/05/17/elizabeth-fischbach-storyteller-par-excellence-wins-amy-j-blue-award/ 20220603194323 https://swap.stanford.edu/was/20220603194323/http://news.stanford.edu/2017/05/17/elizabeth-fischbach-storyteller-par-excellence-wins-amy-j-blue-award/
https://library.stanford.edu/node/119585 20230524220654 https://swap.stanford.edu/was/20230524220654/https://library.stanford.edu/node/119585
https://library.stanford.edu/node/119581 20230524220701 https://swap.stanford.edu/was/20230524220701/https://library.stanford.edu/node/119581
https://library.stanford.edu/node/119576 20230524220709 https://swap.stanford.edu/was/20230524220709/https://library.stanford.edu/node/119576
https://ww2.kqed.org/arts/2017/05/11/stanford-japanese-immigrant-diaries-hisao-magario/
http://news.stanford.edu/2017/05/09/stanford-libraries-hoover-institution-gather-thousands-archival-materials-iran/ 20230131183046 https://swap.stanford.edu/was/20230131183046/http://news.stanford.edu/2017/05/09/stanford-libraries-hoover-institution-gather-thousands-archival-materials-iran/
https://library.stanford.edu/node/119573 20230524220705 https://swap.stanford.edu/was/20230524220705/https://library.stanford.edu/node/119573
https://library.stanford.edu/node/119572 20230524220712 https://swap.stanford.edu/was/20230524220712/https://library.stanford.edu/node/119572
https://library.stanford.edu/node/119570 20230524221001 https://swap.stanford.edu/was/20230524221001/https://library.stanford.edu/node/119570
http://bookhaven.stanford.edu/2017/05/a-stanford-story-and-winner-behind-this-years-compass-translation-awards-in-nyc/ 20210212083622 https://swap.stanford.edu/was/20210212083622/http://bookhaven.stanford.edu/2017/05/a-stanford-story-and-winner-behind-this-years-compass-translation-awards-in-nyc/
http://news.stanford.edu/2017/05/04/japanese-immigrants-diaries-display/ 20220607194807 https://swap.stanford.edu/was/20220607194807/http://news.stanford.edu/2017/05/04/japanese-immigrants-diaries-display/
http://news.stanford.edu/2017/04/27/three-staffers-win-2017-amy-j-blue-awards/ 20211013081637 https://swap.stanford.edu/was/20211013081637/http://news.stanford.edu/2017/04/27/three-staffers-win-2017-amy-j-blue-awards/
https://library.stanford.edu/node/117826 20230524220957 https://swap.stanford.edu/was/20230524220957/https://library.stanford.edu/node/117826
http://news.stanford.edu/2017/05/03/interest-grows-study-games-interactive-media/ 20191213080602 https://swap.stanford.edu/was/20191213080602/http://news.stanford.edu/2017/05/03/interest-grows-study-games-interactive-media/
https://cardinalatwork.stanford.edu/redwood-city/news/ceremonial-groundbreaking 20201014172257 https://swap.stanford.edu/was/20201014172257/https://cardinalatwork.stanford.edu/redwood-city/news/ceremonial-groundbreaking
https://library.stanford.edu/node/117815 20230524221005 https://swap.stanford.edu/was/20230524221005/https://library.stanford.edu/node/117815
https://www.wired.com/2017/04/youve-never-heard-tech-legend-bob-taylor-invented-almost-everything/
https://library.stanford.edu/news/2017/04/remix-stanford-libraries-e-newsletter-april-2017 20230524221101 https://swap.stanford.edu/was/20230524221101/https://library.stanford.edu/news/2017/04/remix-stanford-libraries-e-newsletter-april-2017
https://library.stanford.edu/node/117796 20230524221209 https://swap.stanford.edu/was/20230524221209/https://library.stanford.edu/node/117796
https://library.stanford.edu/node/117795 20230524221217 https://swap.stanford.edu/was/20230524221217/https://library.stanford.edu/node/117795
https://www.nytimes.com/2017/04/14/technology/robert-taylor-innovator-who-shaped-modern-computing-dies-at-85.html
https://library.stanford.edu/node/117783 20230524221213 https://swap.stanford.edu/was/20230524221213/https://library.stanford.edu/node/117783
https://medium.com/stanford-magazine/what-students-write-home-about-then-and-now-ae0a96544755
http://www.sacbee.com/news/politics-government/capitol-alert/article142146359.html
https://www.nytimes.com/2017/04/01/world/europe/yevgeny-yevtushenko-dead-dissident-soviet-poet.html
https://library.stanford.edu/node/117527 20230524221221 https://swap.stanford.edu/was/20230524221221/https://library.stanford.edu/node/117527
https://library.stanford.edu/node/117499 20230524221333 https://swap.stanford.edu/was/20230524221333/https://library.stanford.edu/node/117499
http://estonianworld.com/knowledge/stanford-university-host-major-baltic-conference-2018/
https://library.stanford.edu/node/117500 20230524221337 https://swap.stanford.edu/was/20230524221337/https://library.stanford.edu/node/117500
https://library.stanford.edu/news/2017/03/remix-stanford-libraries-e-newsletter-march-2017 20230524221341 https://swap.stanford.edu/was/20230524221341/https://library.stanford.edu/news/2017/03/remix-stanford-libraries-e-newsletter-march-2017
http://news.stanford.edu/2017/03/21/stanford-students-praise-new-hands-approach-archival-research/ 20220511070119 https://swap.stanford.edu/was/20220511070119/http://news.stanford.edu/2017/03/21/stanford-students-praise-new-hands-approach-archival-research/
http://news.stanford.edu/2017/03/17/newest-library-opens-former-old-chem/ 20220120150324 https://swap.stanford.edu/was/20220120150324/http://news.stanford.edu/2017/03/17/newest-library-opens-former-old-chem/
https://library.stanford.edu/node/117498 20230524221344 https://swap.stanford.edu/was/20230524221344/https://library.stanford.edu/node/117498
http://news.stanford.edu/2017/03/14/stanfords-trove-electronic-theses-dissertations-tops-5000/ 20191015015826 https://swap.stanford.edu/was/20191015015826/http://news.stanford.edu/2017/03/14/stanfords-trove-electronic-theses-dissertations-tops-5000/
http://www.stanforddaily.com/2017/03/13/a-photo-of-every-protest-stanford-archivists-memorialize-activism-as-it-unfolds/ 20170319174603 https://swap.stanford.edu/was/20170319174603/http://www.stanforddaily.com/2017/03/13/a-photo-of-every-protest-stanford-archivists-memorialize-activism-as-it-unfolds/
http://news.stanford.edu/2017/03/09/stanford-libraries-obtain-collection-giant-sequoias/ 20220120150658 https://swap.stanford.edu/was/20220120150658/http://news.stanford.edu/2017/03/09/stanford-libraries-obtain-collection-giant-sequoias/
https://library.stanford.edu/node/117497 20230524221453 https://swap.stanford.edu/was/20230524221453/https://library.stanford.edu/node/117497
https://library.stanford.edu/node/117496 20230524221449 https://swap.stanford.edu/was/20230524221449/https://library.stanford.edu/node/117496
https://library.stanford.edu/node/117495 20230524221456 https://swap.stanford.edu/was/20230524221456/https://library.stanford.edu/node/117495
https://library.stanford.edu/node/117494 20230524221503 https://swap.stanford.edu/was/20230524221503/https://library.stanford.edu/node/117494
http://news.stanford.edu/thedish/2017/01/18/stanford-alums-debut-novel-gets-national-book-critics-recognition/ 20191213085001 https://swap.stanford.edu/was/20191213085001/http://news.stanford.edu/thedish/2017/01/18/stanford-alums-debut-novel-gets-national-book-critics-recognition/
https://library.stanford.edu/node/117493 20230524221500 https://swap.stanford.edu/was/20230524221500/https://library.stanford.edu/node/117493
https://library.stanford.edu/node/117492 20230524221507 https://swap.stanford.edu/was/20230524221507/https://library.stanford.edu/node/117492
http://news.stanford.edu/2017/01/06/new-teaching-approach-brings-students-archives/ 20220120150939 https://swap.stanford.edu/was/20220120150939/http://news.stanford.edu/2017/01/06/new-teaching-approach-brings-students-archives/
https://proseawards.com/winners/
http://www.slate.com/blogs/the_vault/2016/12/30/five_great_digital_history_projects_from_2016.html
https://library.stanford.edu/node/117491 20230524221643 https://swap.stanford.edu/was/20230524221643/https://library.stanford.edu/node/117491
https://library.stanford.edu/node/117490 20230524221639 https://swap.stanford.edu/was/20230524221639/https://library.stanford.edu/node/117490
https://library.stanford.edu/node/117473 20230524221646 https://swap.stanford.edu/was/20230524221646/https://library.stanford.edu/node/117473
https://library.stanford.edu/node/117466 20230524221650 https://swap.stanford.edu/was/20230524221650/https://library.stanford.edu/node/117466
https://library.stanford.edu/node/117465 20230524221658 https://swap.stanford.edu/was/20230524221658/https://library.stanford.edu/node/117465
http://news.stanford.edu/2016/11/18/green-library-exhibition-highlights-125-years-student-life-stanford/ 20220120151258 https://swap.stanford.edu/was/20220120151258/http://news.stanford.edu/2016/11/18/green-library-exhibition-highlights-125-years-student-life-stanford/
https://ww2.kqed.org/arts/2016/10/19/how-bing-crosby-and-silicon-valley-revolutionized-radio-and-tv/
https://library.stanford.edu/node/117479 20230524221807 https://swap.stanford.edu/was/20230524221807/https://library.stanford.edu/node/117479
http://ww2.kqed.org/forum/2016/06/14/stanford-opens-massive-digital-map-archive-to-public/
#!/usr/bin/env python
import bs4
import time
import requests
from urllib.parse import urljoin
# extract the news URLs from a chunk of HTML
def scrape_urls(html):
html = bs4.BeautifulSoup(html, features='lxml')
return [
urljoin('https://library.stanford.edu/', a['href'])
for a in html.select('.node-title a')
]
page = 0
seen = set()
# get initial news urls on the screen
for url in scrape_urls(requests.get('https://library.stanford.edu/news').text):
print(url)
# exercise the Load More AJAX call
while True:
page += 1
resp = requests.get(f'https://library.stanford.edu/views/ajax?view_name=news&view_display_id=block&view_args=&view_path=news&view_base_path=&view_dom_id=d726264275fb6bc2618d9307dc153fd1&pager_element=0&page={page}')
settings, results = resp.json()
urls = scrape_urls(results['data'])
if len(urls) == 1:
break
for url in urls:
if url not in seen:
print(url)
seen.add(url)
time.sleep(1)
https://library.stanford.edu/news/2023/04/remix-april-issue
https://news.stanford.edu/report/2023/06/06/reading-rare-books-candlelight/
https://news.stanford.edu/report/2023/05/30/teaching-stanfords-history/
https://library.stanford.edu/node/173397
https://library.stanford.edu/news/2023/04/remix-april-issue
https://library.stanford.edu/news/2023/03/remix-march-issue
https://library.stanford.edu/node/173313
https://library.stanford.edu/news/2023/02/remix-february-issue
https://library.stanford.edu/news/2023/01/remix-january-issue
https://library.stanford.edu/node/173238
https://library.stanford.edu/news/2023/04/remix-april-issue
https://library.stanford.edu/node/173223
https://library.stanford.edu/news/2022/11/remix-november-issue
https://library.stanford.edu/node/173163
https://library.stanford.edu/node/173161
https://library.stanford.edu/news/2022/10/remix-october-issue
https://library.stanford.edu/news/2022/09/remix-september-issue
https://www.goodtimes.sc/the-bracero-legacy-project-combines-art-history-and-education-at-mah/
https://library.stanford.edu/news/2022/08/remix-august-issue
https://library.stanford.edu/node/172905
https://library.stanford.edu/news/2022/07/remix-july-issue
https://library.stanford.edu/news/2022/06/remix-june-issue
https://library.stanford.edu/news/2022/05/remix-may-issue
https://library.stanford.edu/node/172812
https://library.stanford.edu/news/2022/04/remix-april-issue
https://www.washingtonpost.com/technology/2022/04/08/ukraine-digital-history/
https://library.stanford.edu/news/2022/03/remix-march-issue
https://library.stanford.edu/news/2022/02/remix-february-issue
https://library.stanford.edu/node/172691
https://library.stanford.edu/news/2022/01/remix-january-issue
https://news.stanford.edu/report/2022/01/21/course-teaches-scope-materials-science-engineering/
https://www.washingtonpost.com/video-games/2022/01/12/video-game-preservation-emulation/
https://library.stanford.edu/node/172655
https://library.stanford.edu/news/2021/11/remix-november-issue
https://library.stanford.edu/news/2021/10/remix-october-issue
https://stanforddaily.com/2021/10/19/humans-and-ai-differ-in-poetry-interpretations-says-library-event/
https://www.montereycountyweekly.com/people/face_to_face/by-twists-of-fate-amanda-whitmire-found-herself-in-a-job-she-never-knew-she/article_92092182-26d9-11ec-92b7-4f6492fea0ee.html
https://news.stanford.edu/2021/09/30/stanford-scholars-expand-digital-database-historic-records-nuremberg-trial/
https://library.stanford.edu/news/2021/09/remix-september-issue
https://library.stanford.edu/node/172529
https://library.stanford.edu/node/172523
https://library.stanford.edu/news/2021/08/remix-august-issue
https://library.stanford.edu/node/172460
https://library.stanford.edu/node/172452
https://library.stanford.edu/news/2021/07/remix-july-issue
https://www.wnycstudios.org/podcasts/radiolab/articles/queen-dying
https://library.stanford.edu/news/2021/06/remix-june-issue
https://library.stanford.edu/node/172409
https://library.stanford.edu/news/2021/05/remix-may-issue
https://library.stanford.edu/node/172367
https://news.stanford.edu/2021/05/04/revealing-complexities-life-silicon-valley/
https://library.stanford.edu/node/172356
https://www.eff.org/sb978-Apr2021
https://library.stanford.edu/news/2021/04/remix-april-issue
https://library.stanford.edu/news/2021/03/remix-march-issue-0
https://www.engineering.com/story/how-makerspaces-are-adapting-to-the-pandemic
https://www.libraryjournal.com/
https://library.stanford.edu/node/172266
https://thesixfifty.com/from-iggy-to-jello-stanfords-newest-photo-archive-is-an-epic-punk-rock-time-capsule-3f37451db221
https://library.stanford.edu/news/2021/02/remix-february-issue
https://news.stanford.edu/2021/02/11/archiving-black-histories-silicon-valley/
https://library.stanford.edu/news/2021/01/remix-january-issue
https://library.stanford.edu/node/172192
https://library.stanford.edu/news/2020/11/remix-november-issue
https://github.blog/2020-11-19-github-archive-program-making-the-archives-beautiful/
https://library.stanford.edu/node/172144
https://news.stanford.edu/2020/11/20/makerspaces-get-creative-coronavirus-pandemic/
https://library.stanford.edu/node/172152
https://library.stanford.edu/node/172133
https://library.stanford.edu/news/2020/10/remix-october-issue
https://library.stanford.edu/node/172125
https://library.stanford.edu/alerts
https://library.stanford.edu/news/2020/09/remix-september-issue
https://news.stanford.edu/2020/09/04/say-names-no-names-exhibit-stanford-libraries/
https://library.stanford.edu/news/2020/08/remix-august-issue
https://library.stanford.edu/news/2020/07/remix-july-issue
https://www.clir.org/2020/07/clir-and-stanford-libraries-announce-digital-library-of-the-middle-east-platform/
https://library.stanford.edu/news/2020/06/remix-june-issue
https://americanlibrariesmagazine.org/2020/06/01/library-technology-what-future-holds/
https://library.stanford.edu/node/171904
https://library.stanford.edu/news/2020/06/remix-may-issue
https://library.stanford.edu/node/171895
https://library.stanford.edu/node/171886
https://library.stanford.edu/news/2020/04/remix-april-issue
https://library.stanford.edu/node/171854
https://library.stanford.edu/node/171852
https://www.insidehighered.com/news/2020/04/15/we-need-fun-more-ever-digital-humanities-meets-baby-sitters-club-books
https://library.stanford.edu/node/171830
https://library.stanford.edu/node/171801
https://library.stanford.edu/news/2020/04/remix-march-issue
https://library.stanford.edu/news/2020/03/remix-february-issue
https://news.stanford.edu/2020/02/13/stanford-leader-national-effort-get-vote-college-campuses/
https://news.stanford.edu/2020/02/12/picturing-valentines-day/
https://library.stanford.edu/news/2020/02/remix-january-issue
https://www.scoop.co.nz/stories/CU2001/S00203/archivist-in-nz-to-help-with-preserving-email-challenges.htm
https://americanlibrariesmagazine.org/blogs/the-scoop/using-virtual-reality-fight-fake-news/
https://library.stanford.edu/node/171670
https://library.stanford.edu/node/171669
https://www.esri.com/arcgis-blog/products/story-maps/mapping/announcing-the-winners-of-the-2019-storymapper-of-the-year-competition/
https://library.stanford.edu/node/171592
https://library.stanford.edu/news/2019/12/remix-november-issue
https://news.stanford.edu/2019/11/27/hard-to-count-matter/
https://beebom.com/github-open-source-code-arctic-world-archive/
https://www.nuevaschool.org/about/news/upper-school/postviewer/~board/upper-school-news/post/history-comes-to-life-for-students-on-archive-field-trip
https://archiveprogram.github.com/
https://diverseeducation.com/article/158237/
https://library.stanford.edu/node/171394
https://www.hmbreview.com/news/pescadero-students-study-immigration-issues-with-grant/article_b72d5480-f060-11e9-89e2-9fb0b9d77046.html
https://www.finebooksmagazine.com/news/grolier-club-presents-peter-koch-printer-retrospective
https://library.stanford.edu/news/2019/09/remix-august-edition
https://news.stanford.edu/2019/09/02/vintage-film-reveals-antarctic-glacier-melting/
https://americanlibrariesmagazine.org/blogs/the-scoop/ifla-wlic-artificial-intelligence-data-mining/
https://www.stanforddaily.com/2019/08/03/100-years-after-opening-green-library-is-still-guided-by-the-vision-of-jane-stanford/
https://news.stanford.edu/2019/08/16/ways-studying-humanity/
https://news.stanford.edu/2019/07/19/developing-skills-humanities-research/
http://www.steinbecknow.com/2019/07/30/new-light-john-steinbeck-stanford-green-library/
https://news.stanford.edu/thedish/2019/07/17/branner-earth-sciences-library-exhibit-celebrates-the-apollo-missions/
https://www.directionsmag.com/article/8949
https://bigthink.com/strange-maps/map-california-island
https://stanfordmag.org/contents/the-legend-of-the-almost-lost
https://www.paloaltoonline.com/news/2019/05/29/whats-in-leonardos-library
https://www.digitalmeetsculture.net/article/agreement-between-stanford-university-and-bibliotheque-nationale-de-france/
https://progressive.org/dispatches/the-social-justice-photography-of-david-bacon-iraq-under-occupation-190513/
http://aabs-balticstudies.org/featured/introducing-liisi-esse-new-aabs-administrative-executive-director
https://www.datarefugestories.org/podcast-page/2019/5/10/episode-04-the-lifecycle-of-data
https://news.stanford.edu/2019/05/08/stanford-scans-storied-judah-railroad-map/
https://news.stanford.edu/thedish/2019/05/07/on-the-eve-of-the-150th-anniversary-of-the-first-continental-railroad-whither-the-gold-spike/
https://library.stanford.edu/node/156153
https://news.stanford.edu/2019/05/03/leonardo-da-vinci-celebrated-stanfords-green-library/
https://arts.stanford.edu/leonardo-da-vinci-is-celebrated-at-stanfords-green-library/
https://library.stanford.edu/node/156145
https://library.stanford.edu/news/2019/05/remix-stanford-libraries-newsletter
https://americanlibrariesmagazine.org/blogs/the-scoop/dewey-decibel-podcast-ai-academic-libraries/
https://medium.com/google-earth/explore-400-years-of-maps-in-google-earth-b3f552a0fedb
https://m.youtube.com/watch
https://library.stanford.edu/node/156116
https://library.stanford.edu/node/156083
https://library.stanford.edu/node/156071
https://hevga.org/hevga-2019-fellows/
https://scholarlykitchen.sspnet.org/2019/03/13/guest-post-protecting-patron-privacy-in-digital-resources/
https://library.stanford.edu/news/2019/03/remix-stanford-libraries-enewsletter
https://library.stanford.edu/node/156042
https://news.stanford.edu/thedish/2019/03/03/the-elisabeth-kubler-ross-archive-has-found-a-home-at-stanford/
https://americanlibrariesmagazine.org/2019/03/01/exploring-ai/
https://library.stanford.edu/node/156033
http://fortune.com/2019/02/21/digital-health-ethics-stanford/
https://library.stanford.edu/node/156021
https://venturebeat.com/2019/02/07/a-25-million-grant-will-help-stanford-libraries-preserve-silicon-valley-archives/
https://news.stanford.edu/2019/01/31/stanford-libraries-transformative-gift-creates-hub-highlighting-silicon-valley-history/review/
https://news.stanford.edu/2019/01/29/new-exhibit-showcases-chinese-propaganda-posters/
https://news.stanford.edu/2019/01/25/scholars-select/
https://www.sfchronicle.com/bayarea/nativeson/article/Homegrown-jazz-heritage-finds-a-home-13563478.php
https://news.stanford.edu/2018/12/19/stanford-polymath-blazes-new-trail-design-manifesto/
https://library.stanford.edu/node/155907
https://library.stanford.edu/node/155887
https://undark.org/article/request-streamline-federal-document-purge-doi/
https://library.stanford.edu/node/155879
https://blog.wired.com/story/intelligence-squared-debate-silicon-valley-lost-its-soul/
https://library.stanford.edu/news/2018/11/remix-stanford-libraries-newsletter
https://news.stanford.edu/2018/11/12/benjamin-franklin-social-genius-18th-century/
https://news.stanford.edu/thedish/2018/11/05/samuel-beckett-letter-at-stanford-opens-new-opportunities-for-scholarship/
https://library.stanford.edu/node/155851
https://library.stanford.edu/node/155850
https://library.stanford.edu/node/155834
https://library.stanford.edu/node/155831
https://news.stanford.edu/2018/10/12/cantor-arts-center-stanford-libraries-collaborate-make-warhol-photography-archives-publicly-available/
https://news.stanford.edu/2018/10/15/helping-journalists-use-data-investigative-reporting/
https://news.stanford.edu/2018/10/15/michael-keller-named-vice-provost-teaching-learning-sarah-church-serve-senior-associate-vice-provost/
https://www.24-7pressrelease.com/press-release/457218/zachary-m-baker-presented-with-the-albert-nelson-marquis-lifetime-achievement-award-by-marquis-whos-who
https://library.stanford.edu/node/154937
https://library.stanford.edu/news/2018/10/remix-stanford-libraries-newsletter
https://datebook.sfchronicle.com/art-exhibits/cantor-debuts-warhol-contact-sheets-at-stanford
https://news.stanford.edu/2018/09/26/new-stanford-project-gets-inside-voltaires-mind/
https://news.stanford.edu/2018/09/25/unparalleled-collection-warhols-photography-stanford-university-includes-images-never-exhibited/
https://news.stanford.edu/2018/09/13/stanford-extends-warm-welcome-incoming-undergraduates-thursday/
https://dpconline.org/news/r-i-finalists-announced-dpa2018
https://library.stanford.edu/node/153582
https://www.stanforddaily.com/2018/08/07/the-baltic-way-exhibition-commemorates-100-years-of-history/
https://news.stanford.edu/2018/08/02/longtime-stanford-librarian-james-breedlove-dies/
https://www.kinephanos.ca/Revue_files/2018_Lowood%20interview.pdf
https://library.stanford.edu/node/142538
https://medium.com/@StanfordGlobal/pioneers-in-politics-how-the-words-of-children-became-the-language-of-war-b67f94d412d7
https://news.stanford.edu/2018/07/19/solving-mystery-unusual-medieval-text/
https://news.stanford.edu/2018/07/11/one-question-led-new-stanford-archive/
https://campustechnology.com/articles/2018/07/05/universities-working-to-make-library-metadata-searchable-on-the-web.aspx
https://www.infodocket.com/2018/06/27/4-million-grant-from-mellon-foundation-awarded-implement-linked-data-metadata-environment-awarded-to-libraries-at-stanford-cornell-harvard-and-u-of-iowa-partneship/
https://library.stanford.edu/node/142487
https://www.nytimes.com/2018/06/14/obituaries/dorothy-cotton-rights-champion-and-close-aide-to-king-dies-at-88.html
https://www.stanford.edu/about/be-here/
https://library.stanford.edu/node/142479
https://library.stanford.edu/node/142477
https://www.thirteen.org/openmind/science/tech-troublemakers/5955/
https://news.err.ee/836045/baltic-states-centennial-conference-starts-friday-at-us-stanford-university
https://library.stanford.edu/news/2018/06/remix-may-edition
https://news.stanford.edu/2018/06/04/study-spaces/
https://www.stanforddaily.com/2018/05/29/functions-of-a-library-3/
https://www.theguardian.com/commentisfree/2018/may/28/the-guardian-view-on-digitising-culture-make-manuscripts-more-illuminating
https://www.cnbc.com/2018/05/21/why-your-computer-has-a-mouse-according-to-steve-jobs.html
https://www.cnbc.com/2018/05/17/1976-letter-from-silicon-valley-exec-calls-steve-jobs-flaky-joker.html
https://www.stanforddaily.com/2018/05/17/archive-of-recorded-sound-demos-century-old-music-players/
https://library.stanford.edu/node/142441
https://library.stanford.edu/node/142429
https://statescoop.com/how-public-libraries-are-becoming-the-place-where-citizens-can-turn-to-for-government-data
http://estonianworld.com/knowledge/2018-aabs-conference-at-stanford-university-three-days-filled-with-baltic-studies/
https://library.stanford.edu/news/2018/04/remix-april-edition
https://news.stanford.edu/2018/04/11/retired-stanford-trees-found-home-green-library/
https://library.stanford.edu/node/141911
https://library.stanford.edu/node/141883
http://estonianworld.com/knowledge/exhibit-at-stanford-libraries-presents-100-years-of-baltic-history/
https://gse100.stanford.edu/stories/mapping-activism-at-stanford
http://estonianworld.com/knowledge/interview-growing-interest-in-baltic-studies-in-the-united-states/
http://www.ksbw.com/article/watsonville-photographer-chronicled-martin-luther-king-jr/19687513
https://library.stanford.edu/news/2018/04/remix-march-edition
https://www.clir.org/2018/04/clir-receives-1-12-million-to-implement-platform-and-processes-for-digital-library-of-the-middle-east/
https://news.stanford.edu/2018/03/30/archive-features-powerful-photos-kings-death/
https://www6.slac.stanford.edu/news/2018-03-22-hidden-medical-text-read-first-time-thousand-years.aspx
https://www.stanforddaily.com/2018/03/06/qa-ryan-perkins-on-his-experience-as-stanfords-first-south-asian-and-islamic-studies-librarian/
https://medium.com/stanford-magazine/gretchen-carlson-gets-fierce-74df8bc07708
https://www.kqed.org/arts/13826143/wikipedia-needs-more-female-artists-so-add-them
https://news.stanford.edu/2018/03/01/stanford-students-craft-big-life-lessons-books-little-kids/
https://library.stanford.edu/node/140644
https://library.stanford.edu/news/2018/02/remix-february-edition
https://www.jweekly.com/2018/02/28/curator-retires-wow-judaica-legacy-stanford/
https://thesixfifty.com/photos-remarkable-and-rare-images-of-martin-luther-king-jr-and-other-civil-rights-leaders-6710af494979
https://library.stanford.edu/node/140492
https://library.stanford.edu/node/140454
https://library.stanford.edu/news/2018/01/remix-january-edition
https://news.stanford.edu/2018/01/31/john-mitchell-stepping-vice-provost-teaching-learning/
https://dlme.clir.org/2018/01/31/announcing-digital-library-middle-east-prototype/
https://medium.com/this-cambridge-life/the-librarian-sharing-the-stories-of-our-medieval-past-52dda552aafc
https://earth.stanford.edu/news/industry-leaders-share-mapping-insights-during-stanford-gis-day
https://campustechnology.com/articles/2018/01/18/stanford-pilot-project-digitizes-bone-fragments-for-classroom-use.aspx
https://www.smithsonianmag.com/innovation/douglas-engelbart-invented-future-180967498/
https://hyperallergic.com/420690/urbano-monte-world-map-1544/
https://news.stanford.edu/2018/01/12/3-d-images-artifacts-enrich-experience-students-faculty/
https://news.stanford.edu/2017/12/20/doggy-therapy/
https://library.stanford.edu/node/138356
https://news.stanford.edu/2017/12/15/vintage-film-offers-new-insights-antarctica/
https://www.nature.com/articles/d41586-017-08329-8
https://news.stanford.edu/2017/12/14/humanistic-inquiry-digital-technology/
https://west.stanford.edu/research/works/evasive-bodies-may-s-photo-studio-complete-video
http://www.dailymail.co.uk/sciencetech/article-5161309/Col
https://alumni.stanford.edu/get/page/magazine/article/
http://www.datacarpentry.org/blog/exec-council-announce/
http://www.cbc.ca/radio/asithappens/as-it-happens-tuesday-edition-1.4444569/the-largest-world-map-from-the-renaissance-has-been-assembled-online-for-the-1st-time-1.4444583
https://news.nationalgeographic.com/2017/12/cartography-gigantic-ancient-map-urbano-monte/
https://library.stanford.edu/news/2017/12/remix-stanford-libraries-newsletter-november-2017
https://publishingperspectives.com/2017/12/guadalajara-us-mexican-relations-publishing/
https://www.recode.net/2017/12/4/16725258/leslie-berlin-troublemakers-book-silicon-valley-history-stanford-kara-swisher-decode-podcast
http://www.aseees.org/programs/aseees-prizes/clir-distinguished-service-award/2017-rondestvedt
https://library.stanford.edu/node/136941
https://library.stanford.edu/node/136940
https://campustechnology.com/articles/2017/11/15/building-a-three-dimensional-record-of-student-learning.aspx
https://www.clir.org/recordings-at-risk/awards
https://library.stanford.edu/news/2017/11/remix-stanford-libraries-newsletter-october-2017
https://news.stanford.edu/2017/11/09/press-celebrates-125th-anniversary/
http://menafn.com/1096075511/Sharjah-Public-Library-Introduces-3000-Rare-Historical-Documents-to-the-Region
https://www.stanforddaily.com/2017/10/26/university-libraries-update-research-tool-for-digital-resources/
https://www.diglib.org/archives/14705/
http://www.stanforddaily.com/2017/10/11/this-stanford-life-2/
https://www.stanforddaily.com/2017/10/11/100-films-to-watch-at-stanford/
https://library.stanford.edu/news/2017/10/remix-stanford-libraries-newsletter-september-2017
https://library.stanford.edu/node/133373
http://stanfordpress.typepad.com/blog/2017/09/125-years-of-publishing.html
http://news.stanford.edu/2017/09/25/pioneering-interactive-academic-publishing/
https://library.stanford.edu/node/130905
https://library.stanford.edu/node/130509
https://www.valitsus.ee/en/news/prime-minister-ratas-discussed-development-judicial-applications-artificial-intelligence
https://library.stanford.edu/news/2017/08/remix-stanford-libraries-newsletter-august-2017
https://www.clir.org/about/news/pressrelease/whiting-dlme
https://library.stanford.edu/node/122490
http://axial.acs.org/2017/08/08/grace-baysinger/
http://www.tribuneindia.com/news/nation/largest-collection-of-partition-witness-accounts-set-for-release/448227.html
http://in.pcmag.com/feature/116093/these-advocates-want-to-make-sure-our-data-doesnt-disappear
http://www.spin.com/2017/08/allen-ginsberg-bob-dylan-bootleg-tapes/
http://news.stanford.edu/2017/08/02/ancient-rome-influence-usa-examined-new-class/
http://www.mercurynews.com/2017/07/10/virtual-reality-and-smoothie-bars-the-modern-university-library/
https://library.stanford.edu/news/2017/07/remix-stanford-libraries-newsletter-july-2017
http://news.stanford.edu/2017/07/23/1967-year-summer-love-stanford/
http://www.newsweek.com/2017/07/07/zohar-translation-unlocks-secrets-jewish-mysticism-age-extremism-629527.html
http://news.stanford.edu/2017/07/12/libraries-rare-score-giuseppe-verdis-opera-aida-provides-clues-past/
https://library.stanford.edu/news/2017/07/remix-june-2017
http://news.stanford.edu/2017/06/29/new-digital-archive-showcases-historical-images-rome/
http://www.smithsonianmag.com/innovation/brief-history-maps-180963685/
http://www.nbcnews.com/news/asian-america/150-years-ago-chinese-railroad-workers-staged-era-s-largest-n774901
http://ocs.yale.edu/narrative/gsas-alumni-spotlight-amy-hodge
http://www.sfchronicle.com/entertainment/article/Correspondence-as-the-nest-empties-11221016.php
https://library.stanford.edu/node/119886
https://library.stanford.edu/node/119604
https://library.stanford.edu/node/119599
https://library.stanford.edu/news/2017/05/remix-may-2017
https://library.stanford.edu/node/119594
https://library.stanford.edu/node/119588
http://news.stanford.edu/2017/05/17/elizabeth-fischbach-storyteller-par-excellence-wins-amy-j-blue-award/
https://library.stanford.edu/node/119585
https://library.stanford.edu/node/119581
https://library.stanford.edu/node/119576
https://ww2.kqed.org/arts/2017/05/11/stanford-japanese-immigrant-diaries-hisao-magario/
http://news.stanford.edu/2017/05/09/stanford-libraries-hoover-institution-gather-thousands-archival-materials-iran/
https://library.stanford.edu/node/119573
https://library.stanford.edu/node/119572
https://library.stanford.edu/node/119570
http://bookhaven.stanford.edu/2017/05/a-stanford-story-and-winner-behind-this-years-compass-translation-awards-in-nyc/
http://news.stanford.edu/2017/05/04/japanese-immigrants-diaries-display/
http://news.stanford.edu/2017/04/27/three-staffers-win-2017-amy-j-blue-awards/
https://library.stanford.edu/node/117826
http://news.stanford.edu/2017/05/03/interest-grows-study-games-interactive-media/
https://cardinalatwork.stanford.edu/redwood-city/news/ceremonial-groundbreaking
https://library.stanford.edu/node/117815
https://www.wired.com/2017/04/youve-never-heard-tech-legend-bob-taylor-invented-almost-everything/
https://library.stanford.edu/news/2017/04/remix-stanford-libraries-e-newsletter-april-2017
https://library.stanford.edu/node/117796
https://library.stanford.edu/node/117795
https://www.nytimes.com/2017/04/14/technology/robert-taylor-innovator-who-shaped-modern-computing-dies-at-85.html
https://library.stanford.edu/node/117783
https://medium.com/stanford-magazine/what-students-write-home-about-then-and-now-ae0a96544755
http://www.sacbee.com/news/politics-government/capitol-alert/article142146359.html
https://www.nytimes.com/2017/04/01/world/europe/yevgeny-yevtushenko-dead-dissident-soviet-poet.html
https://library.stanford.edu/node/117527
https://library.stanford.edu/node/117499
http://estonianworld.com/knowledge/stanford-university-host-major-baltic-conference-2018/
https://library.stanford.edu/node/117500
https://library.stanford.edu/news/2017/03/remix-stanford-libraries-e-newsletter-march-2017
http://news.stanford.edu/2017/03/21/stanford-students-praise-new-hands-approach-archival-research/
http://news.stanford.edu/2017/03/17/newest-library-opens-former-old-chem/
https://library.stanford.edu/node/117498
http://news.stanford.edu/2017/03/14/stanfords-trove-electronic-theses-dissertations-tops-5000/
http://www.stanforddaily.com/2017/03/13/a-photo-of-every-protest-stanford-archivists-memorialize-activism-as-it-unfolds/
http://news.stanford.edu/2017/03/09/stanford-libraries-obtain-collection-giant-sequoias/
https://library.stanford.edu/node/117497
https://library.stanford.edu/node/117496
https://library.stanford.edu/node/117495
https://library.stanford.edu/node/117494
http://news.stanford.edu/thedish/2017/01/18/stanford-alums-debut-novel-gets-national-book-critics-recognition/
https://library.stanford.edu/node/117493
https://library.stanford.edu/node/117492
http://news.stanford.edu/2017/01/06/new-teaching-approach-brings-students-archives/
https://proseawards.com/winners/
http://www.slate.com/blogs/the_vault/2016/12/30/five_great_digital_history_projects_from_2016.html
https://library.stanford.edu/node/117491
https://library.stanford.edu/node/117490
https://library.stanford.edu/node/117473
https://library.stanford.edu/node/117466
https://library.stanford.edu/node/117465
http://news.stanford.edu/2016/11/18/green-library-exhibition-highlights-125-years-student-life-stanford/
https://ww2.kqed.org/arts/2016/10/19/how-bing-crosby-and-silicon-valley-revolutionized-radio-and-tv/
https://library.stanford.edu/node/117479
http://ww2.kqed.org/forum/2016/06/14/stanford-opens-massive-digital-map-archive-to-public/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment