Skip to content

Commit

Permalink
and the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
Khemarato Bhikkhu committed Nov 25, 2024
1 parent 0dd2e52 commit 8d69c87
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Affective Entanglements: Human-Nonhuman Relations in Buddhist Ecologies of Feeling"
authors:
- "Frederik Schröer"
external_url: "https://www.globalbuddhism.org/article/download/3812/5140"
source_url: "https://doi.org/10.26034/lu.jgb.2024.3812"
drive_links:
- "https://drive.google.com/file/d/18ElPJhHzj99u054UP2f6jZCj1CkURCvr/view?usp=drivesdk"
course: setting
tags:
- nature
year: 2024
month: jun
journal: jgb
volume: 25
number: 1
pages: "27--43"
openalexid: W4399772601
---

> ... this article explores how the early Buddhist teaching can challenge and enrich how we think of persons and bodies in relation to other beings and environments.
> Through a discussion of the powerful emotion of fear and the importance of vulnerability, the article develops thoughts on how Buddhist emotional practices as practices of care can inspire new approaches in today's times of escalating ecological crisis and acute vulnerability in coexisting and intersecting human and nonhuman pluriworlds.
38 changes: 21 additions & 17 deletions scripts/android_go_through.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,27 @@
glink = gdrive.DRIVE_LINK.format(gf['id'])
course = predictor.predict([text], normalized=True)[0] + "/unread"
course = input_with_tab_complete("course: ", course_list, prefill=course)
gfolder = gdrive.get_gfolders_for_course(course)
if gfolder[0]:
from openaleximporter import (
prompt_for_work,
make_library_entry_for_work,
)
query = fp.stem.replace("_text", "").split(" -")[0]
work, _ = prompt_for_work(query.replace("_", " "))
if work:
if course == "trash":
print("Trashing...")
gdrive.trash_drive_file(gf['id'])
else:
gfolder = gdrive.get_gfolders_for_course(course)
if gfolder[0]:
from openaleximporter import (
prompt_for_work,
make_library_entry_for_work,
)
query = fp.stem.replace("_text", "").split(" -")[0]
work, _ = prompt_for_work(query.replace("_", " "))
if work:
gdrive.move_gfile(glink, gfolder)
filepath = make_library_entry_for_work(work, course=course, glink=glink)
print(f"\nOpening {filepath}\n")
system_open(filepath)
fp.unlink()
exit(0)
else:
input("Press enter to move the file and continue with the next one...")
gdrive.move_gfile(glink, gfolder)
filepath = make_library_entry_for_work(work, course=course, glink=glink)
print(f"\nOpening {filepath}\n")
system_open(filepath)
fp.unlink()
exit(0)
else:
input("Press enter to move the file and continue with the next one...")
gdrive.move_gfile(glink, gfolder)
print("")
fp.unlink()
20 changes: 13 additions & 7 deletions scripts/gdrive.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,10 +722,16 @@ def make_ytplaylist_summary_html(ytplid):
else:
glink_gens.append(lambda r=link: r)
course = input_with_tab_complete("course: ", get_known_courses())
folders = get_gfolders_for_course(course)
for glink_gen in glink_gens:
move_gfile(glink_gen(), folders)
print("Files moved!")
if len(urls_to_save) > 0:
print("Ensuring URLs are saved to Archive.org...")
archive_urls(urls_to_save)
if course == "trash":
print("Trashing...")
for glink_gen in glink_gens:
trash_drive_file(link_to_id(glink_gen()))
print("Done!")
else:
folders = get_gfolders_for_course(course)
for glink_gen in glink_gens:
move_gfile(glink_gen(), folders)
print("Files moved!")
if len(urls_to_save) > 0:
print("Ensuring URLs are saved to Archive.org...")
archive_urls(urls_to_save)

0 comments on commit 8d69c87

Please sign in to comment.