diff --git a/2024/documents/by-course/as-am-5/midterm-cheatsheet/git-icon.svg b/2024/documents/by-course/as-am-5/midterm-cheatsheet/git-icon.svg new file mode 100644 index 0000000..5bf444b --- /dev/null +++ b/2024/documents/by-course/as-am-5/midterm-cheatsheet/git-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/2024/documents/by-course/as-am-5/midterm-cheatsheet/main.typ b/2024/documents/by-course/as-am-5/midterm-cheatsheet/main.typ new file mode 100644 index 0000000..93f97aa --- /dev/null +++ b/2024/documents/by-course/as-am-5/midterm-cheatsheet/main.typ @@ -0,0 +1,36 @@ +#import "@preview/cram-snap:0.2.0": cram-snap, theader + +#set page( + paper: "a4", + flipped: true, + margin: 1cm, +) +#set text(font: "Arial", size: 11pt) + +#show: cram-snap.with(title: [AS AM 5 Midterm]) + +#table( + theader[America is in the Heart - Characters], + [Carlos/Allos/Carl + Bulosan], + [Author/protagonist. 4 brothers. From Pangasinan province. Hometown Binalonan, + leaves as teenager seeking new life in West Coast. Travels around country + working low-paying labor, dabbles in crime. Meets up with brothers Amado and + Macario and lives primarily with other immigrants.], + [Amado], + [Youngest of Carlos's four brothers. Spends childhood in Phillipines helping family on farm. Flees to Binalonan after argument with father over abusing water buffalo. Develops appreciation for value of education, provides Carlos with books, influences his brother's lifelong commitment to learning. Moves to America, enters underworld of crime with Alfredo. Opens successful restaurant and hotel.], + [Macario], + [ + Third oldest brother. Attends high school, only member of family to receive education beyond grade school. Father and mother sacrifice and work hard to send him to school. Serves as family's hope for better life, but doesn't make enough to buy back land. Goes to America, influences Carlos's intellectual development. Socialist tradition, labor union movement. Tells Bulosan American promise of equality for all is unfinished, ongoing process. + ], + [Luciano], + [Second oldest brother. Honorably discharged from Phillipine Scouts at 20, diagnosed with TB. Returns home, influences Bulosan by showing him beauty is intrinsically valuable. Shows Carlos how to snare birds without harming them (find beauty amidst suffering despair). Teaches Carlos to appreciate beauty in more dire and depressing moments of his life. Becomes mayor of Binalonan. Dies of TB.], + [Leon], + [ + Oldest brother. Just returns from fighting in war. Lives traditional peasant lifestyle. Moves with wife to another part of Luzon. Teaches Carlos to appreciate Earth and all it offers, symbol of bittersweet nature of homecoming. + ], + [Father], + [ + Filipino peasant farmer, name is not known. Relationship to the land is defining element of life as peasant. Pastoralism. Illiterate, but understands important role education plays in achieving a better life. Forced to sell land to pay for education, loss of land turns him into idle alcoholic, destitute. + ] +) diff --git a/2024/documents/by-course/phil-1/paper-2/main.pdf b/2024/documents/by-course/phil-1/paper-2/main.pdf new file mode 100644 index 0000000..7198f4e Binary files /dev/null and b/2024/documents/by-course/phil-1/paper-2/main.pdf differ diff --git a/2024/documents/by-course/phil-1/paper-2/main.typ b/2024/documents/by-course/phil-1/paper-2/main.typ new file mode 100644 index 0000000..6d6f007 --- /dev/null +++ b/2024/documents/by-course/phil-1/paper-2/main.typ @@ -0,0 +1,82 @@ +#import "@preview/unequivocal-ams:0.1.1": ams-article, theorem, proof +#import "@preview/wordometer:0.1.3": word-count, total-words + +#import "prelude.typ": indented-argument + +#show: ams-article.with( + title: [On the Argument Against Fearing Death], + bibliography: bibliography("refs.bib"), +) + +#show: word-count.with(exclude: ( + heading, + , + table, + figure, + footnote, +)) + +#set cite(style: "institute-of-electrical-and-electronics-engineers") +#set text(fractions: true) +#set table(inset: 8pt, align: center) + + +#align( + center, + pad( + x: 20%, + table( + columns: (1fr, 1fr), + [ + Perm: A2V4847 + ], + [ + Word Count: #total-words + #footnote[ + Figure computed programmatically during document compilation. Discounts + content in tables and the AI contribution statement. + ] + ], + ), + ), +) + += Introduction + +The argument Against Fearing Death proposes the surprising thesis that you +should not fear being dead because it is not bad for you. The author states it +as follows on #cite(, supplement: [p. 74]): + +#indented-argument( + title: "Against Fearing Death", + abbreviation: "FD", + [ You cease to be conscious when you die ], + [ If you cease to be conscious when you die, then being dead is not bad for you ], + [ So, being dead is not bad for you ], + [ If being dead is not bad for you, then you should not fear death ], + [ So, you should not fear death ], +) + +To support premise FD2, the author argues + += Don't kill yourself + +#indented-argument( + title: "Argument for Killing Yourself", + abbreviation: "KYS", + [You are conscious when you are alive], + [Something is bad for you if and only if it results in more pain than you otherwise would have had], + [If you are conscious, you experience more pain than you otherwise would have if you were unconscious], + [So, being alive is bad for you], + [If you are unconscious when you are dead, then being dead isn't bad for you], + [If being alive is bad for you, then: if being dead isn't bad for you, you should kill yourself], + [So, you should kill yourself], +) + +#pagebreak() + +#[ + = AI Contribution Statement + + #quote[I did not use AI whatsoever in the writing of this paper.] +] diff --git a/2024/documents/by-course/phil-1/paper-2/package.nix b/2024/documents/by-course/phil-1/paper-2/package.nix new file mode 100644 index 0000000..1c9e4f7 --- /dev/null +++ b/2024/documents/by-course/phil-1/paper-2/package.nix @@ -0,0 +1,35 @@ +{ + pkgs, + typstPackagesCache, + typixLib, + cleanTypstSource, + ... +}: +let + src = cleanTypstSource ./.; + commonArgs = { + typstSource = "main.typ"; + + fontPaths = [ + # Add paths to fonts here + # "${pkgs.roboto}/share/fonts/truetype" + ]; + + virtualPaths = [ + # Add paths that must be locally accessible to typst here + # { + # dest = "icons"; + # src = "${inputs.font-awesome}/svgs/regular"; + # } + ]; + + XDG_CACHE_HOME = typstPackagesCache; + }; + +in +typixLib.buildTypstProject ( + commonArgs + // { + inherit src; + } +) diff --git a/2024/documents/by-course/phil-1/paper-2/prelude.typ b/2024/documents/by-course/phil-1/paper-2/prelude.typ new file mode 100644 index 0000000..71f547c --- /dev/null +++ b/2024/documents/by-course/phil-1/paper-2/prelude.typ @@ -0,0 +1,16 @@ +#let indented-argument(title: "", abbreviation: "", ..args) = [ + #set par(first-line-indent: 0pt) + + #pad(left: 12pt, smallcaps(title)) + + #let arg-numbering = (..nums) => nums.pos().map(n => ( + "(" + abbreviation + str(n) + ")" + )).join() + + #enum( + numbering: arg-numbering, + indent: 16pt, + tight: false, + ..args.pos(), + ) +] diff --git a/2024/documents/by-course/phil-1/paper-2/refs.bib b/2024/documents/by-course/phil-1/paper-2/refs.bib new file mode 100644 index 0000000..25f6815 --- /dev/null +++ b/2024/documents/by-course/phil-1/paper-2/refs.bib @@ -0,0 +1,7 @@ +@book{Korman2022-KORLFA, + author = {Daniel Z. Korman}, + editor = {}, + publisher = {The PhilPapers Foundation}, + title = {Learning From Arguments: An Introduction to Philosophy}, + year = {2022} +}