adelevett commited on
Commit
a928534
·
1 Parent(s): eaae12d

Regenerate demo_chat.json using updated pipeline and include sample text resources

Browse files
.gitignore CHANGED
@@ -3,3 +3,4 @@ __pycache__/
3
  *.pyc
4
  .DS_Store
5
  extract.py
 
 
3
  *.pyc
4
  .DS_Store
5
  extract.py
6
+ *.pdf
app.py CHANGED
@@ -59,17 +59,11 @@ def handle_generation(yt_url: str, pdf_file, doc_text: str, srt_text: str, hf_to
59
  gr.update()
60
  )
61
 
62
- # 2. Extract Document Text
63
- document_content = ""
 
64
  if pdf_file is not None:
65
- try:
66
- document_content = pymupdf4llm.to_markdown(pdf_file.name)
67
- except Exception as e:
68
- return (
69
- gr.update(),
70
- f"### ❌ Error\nFailed to extract text from PDF: {e}",
71
- gr.update()
72
- )
73
  elif doc_text.strip():
74
  document_content = doc_text.strip()
75
  else:
@@ -91,8 +85,7 @@ def handle_generation(yt_url: str, pdf_file, doc_text: str, srt_text: str, hf_to
91
  else:
92
  status_msg += "- Downloading YouTube captions (will fallback to manual paste prompt if IP is blocked)...\n"
93
 
94
- status_msg += "- Segmenting transcript with Flash model...\n"
95
- status_msg += "- Extracting document themes with Flash model...\n"
96
  status_msg += "- Mapping content and generating draft comments with Pro model...\n"
97
  status_msg += "- Refining comments with Flash model..."
98
 
@@ -101,6 +94,7 @@ def handle_generation(yt_url: str, pdf_file, doc_text: str, srt_text: str, hf_to
101
  chat_data = run_livestream_pipeline(
102
  video_id=video_id,
103
  doc_text=document_content,
 
104
  transcript_text=manual_transcript,
105
  token=token
106
  )
 
59
  gr.update()
60
  )
61
 
62
+ # 2. Identify Document Source
63
+ doc_path = None
64
+ document_content = None
65
  if pdf_file is not None:
66
+ doc_path = pdf_file.name
 
 
 
 
 
 
 
67
  elif doc_text.strip():
68
  document_content = doc_text.strip()
69
  else:
 
85
  else:
86
  status_msg += "- Downloading YouTube captions (will fallback to manual paste prompt if IP is blocked)...\n"
87
 
88
+ status_msg += "- Concurrently segmenting transcript and extracting PDF text...\n"
 
89
  status_msg += "- Mapping content and generating draft comments with Pro model...\n"
90
  status_msg += "- Refining comments with Flash model..."
91
 
 
94
  chat_data = run_livestream_pipeline(
95
  video_id=video_id,
96
  doc_text=document_content,
97
+ doc_path=doc_path,
98
  transcript_text=manual_transcript,
99
  token=token
100
  )
pipeline.py CHANGED
@@ -4,7 +4,6 @@ import json
4
  import requests
5
  import pymupdf4llm
6
  from concurrent.futures import ThreadPoolExecutor
7
- from youtube_transcript_api import YouTubeTranscriptApi
8
 
9
  DEFAULT_HF_TOKEN = os.environ.get("HF_TOKEN", "")
10
  FLASH_MODEL = "openai/gpt-oss-120b:fastest"
@@ -214,22 +213,15 @@ def stage_3_stylize_segment(draft_data: dict, token: str) -> dict:
214
  cleaned = clean_json_text(content)
215
  return json.loads(cleaned)
216
 
217
- # --- Full Pipeline Orchestration ---
218
- def run_livestream_pipeline(video_id: str, doc_text: str, transcript_text: str = None, token: str = None) -> list:
219
- if not token:
220
- token = os.environ.get("HF_TOKEN", DEFAULT_HF_TOKEN)
221
- if not token:
222
- raise ValueError(
223
- "Hugging Face API Token not found. Please set the 'HF_TOKEN' secret in your Space settings "
224
- "or provide it in the input box."
225
- )
226
-
227
  if transcript_text:
228
  print("Parsing provided transcript text...")
229
  raw_transcript = parse_transcript_text(transcript_text)
230
  else:
231
  print("Fetching YouTube transcript from API...")
232
  try:
 
233
  api = YouTubeTranscriptApi()
234
  raw_transcript = api.fetch(video_id)
235
  except Exception as e:
@@ -239,14 +231,40 @@ def run_livestream_pipeline(video_id: str, doc_text: str, transcript_text: str =
239
  )
240
 
241
  transcript_text_formatted = format_transcript_lines(raw_transcript)
242
-
243
  print("Stage 1a: Segmenting transcript...")
244
- segments = stage_1a_segment_transcript(transcript_text_formatted, token)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  print(f"Segmented into {len(segments)} blocks.")
246
 
247
  # Stage 2: Single Pro model call for all drafting
248
  print("Stage 2: Generating draft comments for all segments (Pro model)...")
249
- draft_segments = stage_2_generate_all_drafts(segments, doc_text, token)
250
 
251
  # Stage 3: Parallel stylization
252
  print("Stage 3: Stylizing comments...")
 
4
  import requests
5
  import pymupdf4llm
6
  from concurrent.futures import ThreadPoolExecutor
 
7
 
8
  DEFAULT_HF_TOKEN = os.environ.get("HF_TOKEN", "")
9
  FLASH_MODEL = "openai/gpt-oss-120b:fastest"
 
213
  cleaned = clean_json_text(content)
214
  return json.loads(cleaned)
215
 
216
+ # --- Parallel Tasks ---
217
+ def _fetch_and_segment_transcript(video_id: str, transcript_text: str, token: str) -> list:
 
 
 
 
 
 
 
 
218
  if transcript_text:
219
  print("Parsing provided transcript text...")
220
  raw_transcript = parse_transcript_text(transcript_text)
221
  else:
222
  print("Fetching YouTube transcript from API...")
223
  try:
224
+ from youtube_transcript_api import YouTubeTranscriptApi
225
  api = YouTubeTranscriptApi()
226
  raw_transcript = api.fetch(video_id)
227
  except Exception as e:
 
231
  )
232
 
233
  transcript_text_formatted = format_transcript_lines(raw_transcript)
 
234
  print("Stage 1a: Segmenting transcript...")
235
+ return stage_1a_segment_transcript(transcript_text_formatted, token)
236
+
237
+ def _extract_document_text(doc_text: str, doc_path: str) -> str:
238
+ if doc_path:
239
+ print(f"Extracting text from PDF: {doc_path}...")
240
+ return pymupdf4llm.to_markdown(doc_path)
241
+ if doc_text:
242
+ return doc_text
243
+ raise ValueError("Either doc_text or doc_path must be provided.")
244
+
245
+ # --- Full Pipeline Orchestration ---
246
+ def run_livestream_pipeline(video_id: str, doc_text: str = None, doc_path: str = None, transcript_text: str = None, token: str = None) -> list:
247
+ if not token:
248
+ token = os.environ.get("HF_TOKEN", DEFAULT_HF_TOKEN)
249
+ if not token:
250
+ raise ValueError(
251
+ "Hugging Face API Token not found. Please set the 'HF_TOKEN' secret in your Space settings "
252
+ "or provide it in the input box."
253
+ )
254
+
255
+ print("Starting parallel execution of Document Extraction and Transcript Segmentation...")
256
+ with ThreadPoolExecutor(max_workers=2) as executor:
257
+ fut_doc = executor.submit(_extract_document_text, doc_text, doc_path)
258
+ fut_seg = executor.submit(_fetch_and_segment_transcript, video_id, transcript_text, token)
259
+
260
+ extracted_doc_text = fut_doc.result()
261
+ segments = fut_seg.result()
262
+
263
  print(f"Segmented into {len(segments)} blocks.")
264
 
265
  # Stage 2: Single Pro model call for all drafting
266
  print("Stage 2: Generating draft comments for all segments (Pro model)...")
267
+ draft_segments = stage_2_generate_all_drafts(segments, extracted_doc_text, token)
268
 
269
  # Stage 3: Parallel stylization
270
  print("Stage 3: Stylizing comments...")
sample/24a636c0c87956c1c34e85fba31e3613b798.md ADDED
@@ -0,0 +1,260 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Fast Capitalism ISSN 1930-014X Volume 10 • Issue 1 • 2013 doi:10.32855/fcapital.201301.010
2
+
3
+ ## Beyond Dystopian Education in a Neoliberal Society
4
+
5
+ ## Henry A. Giroux
6
+
7
+ Public education and higher education are under assault by a host of religious, economic, ideological, and political fundamentalists. This is true of the United States, but it is also increasingly true elsewhere. In US public schools, the most serious attack is being waged by advocates of neoliberalism whose reform efforts focus narrowly on high-stakes testing, traditional texts, and memorization drills. At the heart of this approach is an aggressive attempt to disinvest in public schools, replace them with charter schools, and remove state and federal governments completely from public education in order to allow education to be organized and administered by market-driven forces.[1] Left unchecked, this movement would turn schools into “simply another corporate asset bundled in credit default swaps” and valued only for its rate of exchange on the open market.[2]
8
+
9
+ At the same time as public schools face such pressures, a full-fledged assault is being waged on higher education across North America, Australia and New Zealand, the United Kingdom, and other European countries. While the nature of the assault varies in each country, there is a common set of assumptions and practices driving the transformation of higher education into an adjunct of corporate power and values. The effects of the assault are not hard to discern. Universities are being defunded; tuition fees are skyrocketing; faculty salaries are shrinking as workloads are increasing; and part-time instructors are being used as a subaltern class of migrant laborers. In addition, class sizes are ballooning; the curriculum is being instrumentalized and stripped of liberal values; research is largely valued for its ability to produce profits; administrative staff is depleted; governance has been handed over to paragons of corporate culture; and valuable services are being curtailed.
10
+
11
+ The neoliberal paradigm driving these attacks on public and higher education disdains democracy and views public and higher education as a toxic public sphere that poses a threat to corporate values, ideology, and power. Since the 1950s, colleges and universities have been seen by many to be democratic public spheres dedicated to teaching students to think critically, take imaginative risks, learn how to be moral witnesses, and procure the skills that enable one to connect to others in ways that strengthened the democratic polity. It is for these very reasons that higher education is increasingly under attack by the concentrated forces of neoliberalism. Self-confident critical citizens are viewed as abhorrent by conservatives who remember the campus turmoil of the sixties. Citizens who take their responsibility to democracy seriously now pose a dire threat to corporate power. Unsurprisingly, these same individuals daily face the suspicion of the new corporate university that appears willing to conceive of faculty only as entrepreneurs, students only as customers, and education only as a mode of training.[3]
12
+
13
+ Welcome to the dystopian world of corporate education in which learning how to think, be informed by public values, and become engaged critical citizens are viewed as a failure rather than a mark of success. Instead of producing “a generation of leaders worthy of the challenges,”[4] the dystopian mission of public and higher education is to produce robots, technocrats, and compliant workers. There is more than a backlash at work in these assaults on public and higher education: there is a sustained effort to dismantle education as a pillar of democracy, public values, critical thought, social responsibility, and civic courage. Put more bluntly, the dystopian shadow that has fallen on public and higher education reveals the dark side of a counterrevolution that bespeaks not only an unfettered mode of corporate sovereignty but the emergence of an updated form of authoritarianism. During the Cold War, US officials never let us forget that authoritarian countries put their intellectuals into prison. While political
14
+
15
+ _Page 109_
16
+
17
+ Henry A. Giroux
18
+
19
+ _Page 110_
20
+
21
+ imprisonment is not yet pervasive in the US or other capitalist democracies, the majority of critical intellectuals today are destined for conformity, if not poverty if they work in the academy. Too many academics fear the threat of being fired or denied tenure for being too critical, and an overwhelming number of them are relegated from the beginning to an intolerable state of dire financial distress and existential impoverishment.
22
+
23
+ Education within the last three decades has diminished rapidly in its capacities to educate young people to be reflective, critical, and socially engaged agents. Despite all attempts to degrade the value and purpose of education, the notion of education as the primary register of the larger culture persists. Yet, under a neoliberal regime, the utopian possibilities formerly associated with public and higher education as a public good capable of promoting social equality and supporting democracy have become too dangerous for the apostles of neoliberalism. Critical thought and the imaginings of a better world present a direct threat to a neoliberal paradigm in which the future must always replicate the present in an endless circle in which capital and the identities that legitimate it merge with each other into what might be called a dead zone. This dystopian impulse thrives on producing myriad forms of violence—encompassing both the symbolic and the structural—as part of a broader attempt to define education in purely instrumental, privatized, and anti-intellectual terms. It is precisely this replacement of educated hope with an aggressive dystopian project that now characterizes the current assault on public and higher education in various parts of the globe extending from the United States and the United Kingdom to Greece and Spain.
24
+
25
+ In light of this dystopian attempt to remove education from any notion of critique, dialogue, and empowerment, it would be an understatement to suggest that there is something very wrong with American public and higher education. For a start, this counterrevolution is giving rise to the commercialization of education, punitive evaluation schemes, harsh disciplinary measures, and the ongoing deskilling of many teachers that together are reducing many excellent educators to the debased status of technicians and security personnel. Additionally, as more and more wealth is distributed to the richest Americans and corporations, states are drained of resources and are shifting the burden of such deficits on to public schools and other vital public services. With 40 percent of wealth going to the top 1 percent, public services are drying up from lack of revenue and more and more young people find themselves locked out of the dream of getting a decent education or a job, essentially robbed of any hope for the future.
26
+
27
+ As the nation’s schools and infrastructure suffer from a lack of resources, right-wing politicians are enacting policies that lower the taxes of the rich and mega corporations. For the neoliberal elite, the collection of taxes constitutes a form of coercion and class warfare waged by the state against the rich. What is ironic in this argument is the startling fact that not only are the rich not taxed proportionately, but they even receive over $92 billion in corporate subsidies. Even so, neoliberal ideology has resulted in widespread practices whereby “1paying taxes has devolved from a central social responsibility to a game of creative work-arounds.”[5] There is more at stake here than untaxed wealth and revenue. As David Theo Goldberg points out, “Today, taxes are not so much the common contribution to cover the costs of social benefits and infrastructure relative to one’s means, as they are a burden to be avoided.”[6] Fierce debate over the issue of taxes is just one part of a larger project of hollowing out public institutions.
28
+
29
+ The outrage an ethically bankrupt neoliberalism voices against tax policies hardly conceals its loathing against any government which seeks to raise revenue in order to build and maintain public infrastructure, provide basic services for those who need them most, and develop investments such as a transportation system and schools that are not explicitly tied to the logic of the market. The battle being waged over crucial public resources is one that has dire political and educational consequences, especially for the poor and middle classes. One consequence is a vile form of class warfare that sacrifices the economic mobility and security of less wealthy citizens. There is also the fact that wealth buys and corrupts power, if not democracy itself. And this poisonous mix of wealth, power, and politics translates into an array of antidemocratic practices that creates an unhealthy society in every major index ranging from infant mortality rates to a dysfunctional electoral system.[7]
30
+
31
+ While it is evident that money controls elections in the United States, less apparent is the fact that it increasingly also controls the policies that shape public education.[8] One indicator of such corruption is that hedge fund managers now sit on school boards across the country doing everything in their power to eliminate public schools and punish unionized teachers who do not support charter schools. In New Jersey, hundreds of teachers have been sacked because of alleged budget deficits. Not only has Governor Christie used the deficit argument to fire teachers, he has also used it to break unions and balance the budget on the backs of students and teachers. How else to explain Christie’s refusal to reinstitute the “millionaires’ tax,” or his craven support for lowering taxes for the top 25 hedge fund officers who in 2009 raked in $25 billion— enough to fund 658,000 entry level teachers?[9]
32
+
33
+ fast capitalism Volume 10 • Issue 1 • 2013
34
+
35
+ Beyond dystopiAn educAtion in A neoliBerAl society
36
+
37
+ _Page 111_
38
+
39
+ In this conservative right-wing culture now dominating American politics, the role of public and higher education is to produce students who laud conformity, believe job training is more important than education, and view public values as irrelevant. If the Heritage Foundation, the Koch brothers, and Bill Gates-type billionaires have their way, students will no longer be educated for democratic citizenship. Even now, their education is too often reduced and justified through an appeal to fulfilling the need for human capital.[10] What is lost in this approach to schooling is what Noam Chomsky calls “creating creative and independent thought and inquiry, challenging perceived beliefs, exploring new horizons and forgetting external constraints.”[11] At the same time, public schools and colleges are under assault not because they are failing (though some are), but because they remain one of the few public spheres left in which people can learn the knowledge and skills necessary to allow them to think critically and hold power and authority accountable.
40
+
41
+ Unfortunately, the lines between the corporate world and public and higher education are blurring more all the time, as modes of education (except for the elite) are reduced to what Peter Seybold calls a “corporate service station.”[12] At the heart of this imminent crisis regarding education are larger questions about the democratic ideals that have historically informed public and higher education, and have provided the formative culture necessary for a democracy to survive. The future of civic education, the role of educators as civic intellectuals, and education as a site of individual and collective empowerment hangs in the balance, as most aspects of education are now up for sale and increasingly being mined for private profit.
42
+
43
+ This current right-wing emphasis on low-level skills distracts the American public from examining the broader economic, political, and cultural forces that bear down on schools and undermine the purpose and meaning of education. The influence on schools of corporations, text book publishers, commercial industries, and the national security state are rendered invisible, as if schools and the practices in which they are engaged simply exist in a bubble. At work here is a dystopian view of schooling that displaces, infantilizes, and depoliticizes both students and large segments of the American public. Under the current regime of neoliberalism, education has been transformed into a private right rather than a public good. Students are now being educated to become consumers rather than thoughtful, critical citizens. Increasingly as public schools are put in the hands of for-profit corporations, hedge fund elites, and market-driven leadership, their only value is derived from their ability to turn a profit and produce compliant students eager to join the workforce.[13]
44
+
45
+ What is truly shocking about the current dismantling and disinvestment in public schooling is that those who advocate such changes are called the new educational reformers. They are not reformers at all. In fact, they are reactionaries and financial mercenaries and dystopian financial sleuths who are turning teaching into the practice of conformity and creating curricula driven by an anti-intellectual obsession with student test scores. This alleged reform movement is certain to turn students into active customers and passive subjects, increasingly unable to think critically about themselves and their relationship to the larger world. The poisonous virus of instrumentalism has infected public and higher education to the degree that some institutions have not only abandoned their public mandate, but even resemble repressive sites of containment devoid of critical learning, let alone soaring acts of curiosity and imagination.
46
+
47
+ As Diane Ravitch has pointed out, what is driving the current public school reform movement is a profoundly anti-intellectual project that promotes “1more testing, more privately managed schools, more deregulation, more firing of teachers, [and] more school closings.”[14] At the level of higher education, the script is similar: defund higher education, impose corporate models of governance, purge the university of critical thinkers, turn faculty into a low-waged army of part-time workers, and allow corporate money and power to increasingly decide course content and determine which faculty get hired. As public values are replaced by corporate values, students become clients, faculty are deskilled and depoliticized, tuition rises, and more and more working-class and poor minority students are excluded from the benefits of higher education. There are no powerful and profound intellectual dramas in this view of schooling, just the muted rush to make schools another source of profit for finance capital.
48
+
49
+ Public and higher education are increasingly harnessed to the interests of corporations, a growing legion of bankers, billionaires, and hedge fund scoundrels, and the warfare state. One consequence is that many public schools, especially those occupied by poor minority youth, have become the new factories for dumbing down the curricula and turning teachers into what amounts to machine parts. At the same time, such schools have become militarized and provide a direct route for many youth into the prison-industrial complex or what has been called the school-toprison pipeline.[15] What is excised from the educational rhetoric of casino capitalism reform is the ideal of offering public school students a civic education that provides the capacities, knowledge, and skills that enable young people
50
+
51
+ Volume 10 • Issue 1 • 2013 fast capitalism
52
+
53
+ Henry A. Giroux
54
+
55
+ _Page 112_
56
+
57
+ to speak, write, and act from a position of agency and empowerment. At the college level, students are dazzled by a blitz of commercialized spaces that now look like shopping malls, and in between classes they are entertained by a mammoth sports culture that is often as debasing as it is dangerous in its hypermasculinity, racism, and overt sexism.[16]
58
+
59
+ Privatization, commodification, militarization, and deregulation are the new guiding categories through which schools, teachers, classroom pedagogy, and students are defined. The current assaults on public and higher education are not new, but they are viler and more powerful than in the past. Crucial to any viable reform movement is the need to understand the historical context in which education has been transformed into an adjunct of corporate power as well as the current ways right-wing educational reform is operating within a broader play of power, ideology, and other social forces—which together are applying antidemocratic pressure to change the purpose of schooling and the practice of teaching itself. Making power visible is important, but it is only a first step in understanding how power actually works and how it might be challenged. Recognizing a challenge is not the same thing as overcoming it. Part of the significant task of reinvigorating civic education in the United States necessitates that educators anchor their own work in classrooms through projects that engage the promise of an unrealized democracy against its existing, often repressive, forms. And this is only the beginning of resistance that must struggle for broad-based social change.
60
+
61
+ Public and higher education, along with the pedagogical role of the larger culture, should be viewed as crucial to any viable notion of democracy, while the pedagogical practices they employ should be consistent with the ideal of the good society. Within the classroom, this means teaching more than the knowledge of traditional canons. In fact, teachers and students need to recognize that as a moral and a political practice, pedagogy is about the struggle over identity just as much as it is about learning and transmitting knowledge. At a time when censorship is rampant in public schools and dissent is viewed as a distraction or unpatriotic, the debate over whether we should view schools as political institutions might seem not only moot, but irrelevant. Yet, pedagogy remains a powerful mode of critical intervention, especially if one believes teachers have a responsibility to prepare students for being in the world in ways that will not only equip them for jobs but enable them to influence the larger political, ideological, and economic forces that bear down on their lives. Schooling is an inherently political and moral practice, because it is directive and actively legitimates particular values, forms of agency, and even what counts as knowledge.
62
+
63
+ One of the most notable features of contemporary conservative reform effort is the way in which it increasingly positions teachers as a liability, and in doing so accustoms them to modes of education that are as demeaning as they are deskilling. These reforms are not innocent and actually promote failure in the classroom. And when successful, they open the door for more public schools to be closed, provide another chance at busting the union, and allow such schools to be taken over by private and corporate interests. Under the influence of market-based pedagogies, public school teachers are the new welfare queens and are repeatedly subjected to what can only be described as repressive disciplinary measures in the school and an increasing chorus of verbal humiliation from politicians outside of the classroom. Academics do not fare any better and are often criticized for being too radical, for not working long hours, and for receiving cushy paychecks—a position at odds with the fact that over 70 percent of academic labor is now either part-time or on a non-tenure track.[17]
64
+
65
+ Teachers and academics are not only on the defensive in the neoliberal war on schools; they are also increasingly pressured to assume a more instrumental and mercenary role. Such conditions leave them with no time to be creative, use their imagination, work with other teachers, or develop classroom practices that are not wedded to teaching for the test and other demeaning empirical measures. Of course, the practice of disinvesting in public schools and higher education has a long history, but it has been around at least since the election of Ronald Reagan in the 1980s and has intensified in the new millennium. How else to explain that many states invest more in building prisons than educating students, especially those who are poor, disabled, and immersed in poverty? What are we to make of the fact that there are more black men in prison than in higher education in states such as Louisiana and California?[18] The right-wing makeover of public education has resulted in some states such as Texas banning critical thinking in their classrooms. In Arizona, legislation has been passed that eliminates all curricular material from the classroom that includes the histories of Mexican-Americans. These are the same states that want to tie the salaries of faculty in higher education to performance measures based on a neoliberal model of evaluation.
66
+
67
+ Fighting for democracy as an educational project means encouraging a culture of questioning in classrooms, one that explores both the strengths and the weaknesses of the current era. I think Zygmunt Bauman is right in arguing that “if there is no room for the idea of a wrong society, there is hardly much chance for the idea of a good society to be born, let alone make waves.”[19] This notion of questioning is not simply about airing conflicting points of view, nor is it about substituting dogma for genuine dialogue and critical analysis. Rather, it is about a culture of
68
+
69
+ fast capitalism Volume 10 • Issue 1 • 2013
70
+
71
+ Beyond dystopiAn educAtion in A neoliBerAl society
72
+
73
+ _Page 113_
74
+
75
+ questioning that brings ideas into the framework of public values and enables a broader engagement with the larger social order. At issue here are pedagogical practices that go beyond the search for knowledge to encourage taking responsibility for intervening in the world by connecting knowledge and power, and by developing learning and personal values into modes of commitment and social engagement. The relevant questions in this instance are what kind of future do our teachings presuppose? What forms of literacy and agency do we make available to our students through our pedagogical practices? How do we understand and incorporate in classroom pedagogies an ongoing search for equity and excellence, truth and justice, knowledge and commitment?
76
+
77
+ The broader project of addressing democratization as a pedagogical practice should be central to any worthwhile classroom teaching and learning experience. And this is a political project that encompasses both democratizing pedagogies and a pedagogy of democracy. Educators should begin with a vision of schooling as a democratic public sphere. Faced with growing ideological, political, and social impediments, educators must work together to figure out common goals and organize collectively to challenge the conditions that prevent them from engaging in a meaningful work both in and outside of the classroom. In other words, educators need to start with a project, not a method. They need to view themselves through the lens of civic responsibility and educate students in the best of those traditions and knowledge forms we have inherited from the past, but also prepare those students to act in the world as critically engaged agents responsible for our collective future.
78
+
79
+ Educators, if not already committed to democratization, need to be ready to consider how they will link their overall investment in education to modes of critique and collective action that address what it means to live in a democratic society while recognizing democratic societies are never too just or just enough. Such recognition perceives how any viable democratic society must constantly nurture the possibilities for self-critique, personal and collective agency, and forms of citizenship in which teachers and students play a fundamental role. Rather than be forced to participate in a pedagogy designed to raise institutional test scores and undermine forms of critical thinking, students must be involved in discussing, administering, and shaping the material relations of power and ideological forces that structure their everyday lives. Central to such an educational project is the ongoing struggle on the part of teachers to connect their pedagogical practices to the building of an inclusive and just democracy, which should be open to many forms, offers no political guarantees, and relies on the normative dimensions of politics as an ongoing process that never ends. Such a project is based on the realization that democracy and a democratic classroom involve ongoing exchange, questioning, and self-criticism that aspires each day to more closely envision and embody fairness, equality, and justice. It is precisely the open-ended and normative nature of such a project that provides a common ground for educators to share their resources through a diverse range of intellectual and practical pursuits while refusing to believe that struggles for greater justice in schools and in the broader society ever come to an end.
80
+
81
+ In order to connect teaching with the larger world so as to make pedagogy meaningful, critical, and transformative, educators will have to focus their work on important social issues that connect what is learned in the classroom to the larger society and the lives of their students. Such issues might include the ongoing destruction of the ecological biosphere, the current war against youth, the hegemony of neoliberal globalization, the growing influence of corporate culture on public schools, the widespread attack on the welfare system, the disproportionate rates of incarceration of people of color, the increasing gap between the rich and the poor, the rising burden of debt impacting college and university students, the spread of war globally, and the dangerous growth of the prisonindustrial complex.
82
+
83
+ In addition, educators should do more than create the conditions for critical learning for their students. They also need to responsibly assume the role of civic educators within broader social contexts and be willing to share their ideas with other educators and the wider public by making use of new media technologies. Communicating to a variety of public audiences suggests using opportunities for writing, public talks, and media interviews offered by the radio, Internet, alternative magazines, and the church pulpit, to name only a few. Such means of communication need to become public by crossing over into spheres and avenues of expression that speak to more general audiences in a language that is clear but not theoretically simplistic. Capitalizing on their role as intellectuals, educators can address the challenge of combining scholarship and commitment through the use of a vocabulary that is neither dull nor obtuse, while seeking to speak to a broad audience. More importantly, as teachers organize to assert the importance of their role and that of public schooling in a democracy, they can forge new alliances and connections to develop social movements that include and also expand beyond working with unions.
84
+
85
+ Educators also need to learn how to work collectively with other educators through a vast array of networks
86
+
87
+ Volume 10 • Issue 1 • 2013 fast capitalism
88
+
89
+ Henry A. Giroux
90
+
91
+ _Page 114_
92
+
93
+ across a number of public spheres. This might mean sharing resources with educators in a variety of fields and sites, extending from other teachers to community workers and artists outside of the school. This also suggests that educators become more active and self-critical in addressing the ethical and political challenges of globalization. Public school teachers and higher education instructors need to unite in making a case for public and higher education. In the United States, they could at the very least make clear to a befuddled American public that the deficit theory regarding school cutbacks is a fraud.
94
+
95
+ There is plenty of money to provide quality education to every student in the United States—and this certainly holds true for the United Kingdom and Canada. As Salvatore Babones points out, “The problem isn’t a lack of money. The problem is where the money is going.”[20] The issue is not about the absence of funds as much as it is about where funds are being invested and how more revenue can be raised to support public education in the United States. The United States spends around $960 billion on its wars and defense related projects.[21] In fact, the cost of war over a ten-year period 1 “will run at least $3.7 trillion and could reach as high as $4.4 trillion, according to the research project ‘€˜Costs of War’ by Brown University’s Watson Institute for International Studies.”[22] As Babones argues, the crucial recognition here is that
96
+
97
+ research consistently shows that education spending creates more jobs per dollar than any other kind of government spending. A University of Massachusetts study ranked military spending worst of five major fiscal levers for job creation. The UMass study ranked education spending the best. A dollar spent on education creates more than twice as many jobs than a dollar spent on defense. Education spending also outperforms health care, clean energy and tax cuts as a mechanism for job creation.[23]
98
+
99
+ Surely, this budget could be trimmed appropriately to divert much needed funds to education given that a nation’s highest priority should be investing in its children rather than in the production of organized violence. As capital, finance, trade, and culture become extraterritorial and increasingly removed from traditional political constraints, it becomes all the more pressing to put global networks and political organizations into play to contend with the reach and power of neoliberal globalization. Engaging in intellectual practices that offer the possibility of alliances and new forms of solidarity among public school teachers and cultural workers such as artists, writers, journalists, academics, and others who engage in forms of public pedagogy grounded in a democratic project represents a small, but important, step. Nothing less a critical mass will be sufficient to address the mammoth and unprecedented reach of global capitalism.
100
+
101
+ Educators also need to register and make visible their own subjective involvement in what they teach, how they shape classroom social relations, and how they defend their positions within institutions. This is especially crucial at a time when many institutions are legitimating educational processes based on narrow ideological interests and political exclusions rooted in a denial of social injustice and inequality. Teachers who recognize the ongoing operations of power both inside and outside of the classroom should make their own authority and classroom work the subject of critical analysis with students, and this must be done in ways that move beyond the narrow and often instrumentalized rhetoric of method, psychology, or private interests. Pedagogy in this instance becomes a moral and political discourse in which students are able to connect learning to social change, scholarship to commitment, and classroom knowledge to public life. Such a pedagogical task suggests that educators define intellectual practice as “part of an intricate web of morality, rigor and responsibility”[24] that enables them to speak with conviction, enter the public sphere in order to address important social problems, and demonstrate alternative models for what it means to bridge the gap between public education and the broader society.
102
+
103
+ Unfortunately, there are many academics, teachers, and right-wing pundits who argue that the classroom should be free of politics, and hence a space where matters of power, values, and social justice should not be addressed. The usual scornful accusation in this case is that teachers who believe in civic education indoctrinate their students. In this supposed ideologically pure world, pedagogy is reduced to a banal transmission of facts in which nothing controversial can be stated and teachers are forbidden to utter one word related to any of the major problems facing the larger society. Of course, this view of teaching is as much a flight from reality as it is an instance of irresponsible pedagogy. In contrast, one useful approach to embracing the classroom as a political site, but at the same time eschewing any form of indoctrination, is for educators to think through the distinction between a politicizing pedagogy, which insists wrongly that students think as we do, and a political pedagogy, which teaches students by example and through dialogue about the importance of power, social responsibility, and taking a stand (without standing still). Political pedagogy, unlike a dogmatic or indoctrinating pedagogy, embodies the principles of critical pedagogy through rigorously engaging the full range of ideas about an issue within a framework that enables
104
+
105
+ fast capitalism Volume 10 • Issue 1 • 2013
106
+
107
+ Beyond dystopiAn educAtion in A neoliBerAl society
108
+
109
+ _Page 115_
110
+
111
+ students to move from moral purpose to purposeful action.
112
+
113
+ Political pedagogy offers the promise of nurturing students to think critically about their understanding of classroom knowledge and its relationship to the issue of social responsibility. It is also responsive to the challenge of educating students to engage the world critically in order to struggle for those political and economic conditions that make democratic participation in both schools and the larger society possible. Such a pedagogy affirms the experience of the social and the obligations it invokes regarding questions of responsibility and transformation. It does so by opening up for students important questions about power, knowledge, and what it means for them to critically engage the complex conditions impacting themselves and others. In addition, political pedagogy provides students with the knowledge and skills to analyze and work to overcome those social relations of oppression that make living unbearable for those who are poor, hungry, unemployed, deprived of adequate social services and viewed under the aegis of neoliberalism as largely disposable. What is important about this type of pedagogy is how responsibility is understood as both an ethical issue and a strategic act. Responsibility is not only a crucial element regarding what issues teachers address in a classroom; but is also embodied in their relationships with students, parents, and the wider society. Responsibility as a crucial part of any pedagogical practice suggests providing the connective tissue that enables students to raise issues about the consequences of their actions in the world and their behaviors toward others, and to analyze the relationship between knowledge and power and the social costs it often enacts. The emphasis on responsibility highlights the performative nature of pedagogy by raising questions about both the pedagogical relationship that teachers have with students, and about how ideas are situated in the public realm in order to highlight those practices and relationships that expand and deepen the possibilities of democracy.
114
+
115
+ Central here is the importance for educators to encourage students to connect knowledge and criticism as a precondition to becoming an agent of social change buttressed by a profound desire to overcome injustice and a spirited commitment to social action. Political education teaches students to take risks and challenge those with power. Likewise, it encourages students and teachers to be reflexive about how power is used in the classroom. Political education proposes that the role of the teacher as public intellectual is not to consolidate authority but to question and interrogate it, and that teachers and students should temper any reliance on authority with a sense of critical awareness and an acute willingness to hold it accountable for its consequences. Moreover, political education foregrounds education guided not by the imperatives of specialization and professionalization, but by goals designed to expand the possibilities of democracy. Linking education to modes of political agency is therefore part of a larger project to promote critical citizenship and address the ethical imperative to alleviate human suffering.
116
+
117
+ In contrast, politicizing education silences in the name of orthodoxy and imposes itself on students while undermining dialogue, deliberation, and critical engagement. Politicizing education is often grounded in a combination of self- righteousness and ideological purity that silences students as it enacts “correct” positions. Authority in this perspective rarely opens itself to self-criticism or for that matter to any criticism, especially from students. Politicizing education cannot decipher the distinction between critical teaching and pedagogical terrorism because its advocates have no sense of the difference between encouraging human agency and social responsibility, on the one hand, and molding students through taking an unquestioned ideological position and applying a sutured pedagogical script on the other. Politicizing education is more religious than secular, and more about training than educating. It harbors a great dislike for complicating issues, promoting critical dialogue, and generating a culture of questioning.
118
+
119
+ Education operates as a crucial site of power in the modern world. If teachers are truly concerned about safeguarding education, they will have to take seriously how pedagogy functions on local and global levels. It has a role to play in both securing and challenging how power is deployed, affirmed, and resisted within and outside of traditional discourses and cultural spheres. In a local context, critical pedagogy becomes an important theoretical tool for understanding the institutional conditions that place constraints on the production of knowledge, learning, academic labor, and democracy itself. Critical pedagogy also provides a discourse for engaging and challenging the production of social hierarchies, identities, and ideologies as they traverse local and national borders. In addition, pedagogy as a form of production and critique offers a discourse of possibility—a way of providing students with the opportunity to link understanding to commitment, and social transformation to seeking the greatest possible justice. Rejecting traditional, elitist notions of the intellectual, critical pedagogy and education encourage recognition of the vocation and contributions of teachers as intellectuals who undertake pedagogical and political work tempered by humility, a moral perspective on suffering, and the need to produce alternative visions and policies that go beyond a language of mere critique.
120
+
121
+ Positioning educators in public schools and higher education as public intellectuals has important implications that
122
+
123
+ Volume 10 • Issue 1 • 2013 fast capitalism
124
+
125
+ _Page 116_
126
+
127
+ Henry A. Giroux
128
+
129
+ need to be connected to developing a new academic agenda, particularly at a time when neoliberal values increasingly guide social and educational policy. In opposition to the privatization, commodification, commercialization, and militarization of everything public, educators need to define public education as a resource vital to the democratic and civic life of the nation and larger global sphere. At the heart of such a task is the challenge for teachers, academics, cultural workers, and labor organizers to join together in opposition to the transformation of public education into commercial entities—in other words to resist what Bill Readings has called a consumer-oriented corporation more concerned about accounting than accountability.[25] As Bauman reminds us, schools are one of the few public spaces left where students can learn the “skills for citizen participation and effective political action. And where there is no [such] institution, there is no ‘€˜citizenship’ either.”[26] Indeed, public education may be the last remaining site in which young people can engage in formal learning about the limits of commercial values, the skills of social citizenship, and how to deepen and expand the possibilities of collective agency and democratic life.
130
+
131
+ Defending education at all levels as a vital public sphere and a public good, rather than merely a private commodity, is necessary to develop and nourish the proper balance between democratic public spheres and commercial power, between identities founded on democratic principles and identities steeped in forms of competitive, self-interested individualism that celebrate selfishness, profit-making, and greed. Public education must be defended through intellectual work that self-consciously recalls the tension between the democratic imperatives and possibilities of public institutions and their everyday realization within a society dominated by market principles. If public education is to remain a site of critical thinking, collective work, and thoughtful dialogue, educators need to expand and resolutely defend how they view the meaning and purpose of their work with young people. As I have stressed repeatedly, academics, teachers, students, parents, community activists, and other socially concerned groups must provide the first line of defense in protecting public education as a resource vital to the moral life of the nation. And if public education is going to remain vital in its role, then it must continue to be accessible to people and communities whose resources, knowledge, and skills have often been viewed as marginal. This demands not only a renewed commitment to public values and educational ideals, but a concrete analysis of the neoliberal and other reactionary forces currently working to dismantle public education.
132
+
133
+ Fostering inclusive conditions that will achieve free quality education for everyone will begin first with the desire to build a powerful social movement. Such a project suggests that educators develop the vocabulary and practices for connecting progressive politics with effective modes of leadership. In part, this means providing students with the language, knowledge, and social relations to engage in the “art of translating individual problems into public issues, and common interests into individual rights and duties.”[27] Leadership demands a politics and a pedagogy that refuses to separate individual problems and experience from public issues and social considerations. Within such a perspective, leadership displaces cynicism with hope, challenges the neoliberal notion that there are no alternatives with visions of a better society, and develops a pedagogy of commitment that puts into place modes of critical literacy in which competency and interpretation provide the basis for actually intervening in the world. Such leadership is responsive to the call to make the pedagogical more political by linking critical thought to collective action, human agency to social responsibility, and knowledge and power to a profound impatience with a status quo founded upon deep inequalities and injustices.
134
+
135
+ One of the increasingly crucial challenges faced by educators is rejecting the neoliberal collapse of the public into the private, and the rendering of all social problems as faults of the individual. The neoliberal obsession with privatization not only furthers a market-based ethic which reduces all relationships to the exchange of money and the accumulation of capital, it also depoliticizes politics itself and reframes public activity as utterly personal practices and utopias. Citizenship is consequently reduced to the act of buying and purchasing goods. Within this neoliberal discourse, all forms of solidarity, social behavior, and collective resistance disappear into the murky waters of a politics in which privatized pleasures and ready-made individual choices are organized solely on the basis of marketplace interests, values, and desires. This is a reactionary public pedagogy that cancels out all modes of social responsibility, commitment, and action. Its central ambition is the creation of atomized individuals who live in a moral coma, regress into a state of infantilism, and relate to others through a sheer Darwinist survival-of-the-fittest ethic. One of the major challenges now facing educators, especially in light of the current neoliberal attack on public workers, is to reclaim the language of social justice, democracy, and public life as the basis for rethinking how to name, theorize, and enact a new kind of education as well as more emancipatory notions of individual and social agency and collective struggle.
136
+
137
+ This challenge suggests, in part, developing new forms of social citizenship and civic education that have a purchase on people’s everyday lives and struggles. Teachers and faculty bear an enormous responsibility in opposing
138
+
139
+ fast capitalism Volume 10 • Issue 1 • 2013
140
+
141
+ Beyond dystopiAn educAtion in A neoliBerAl society
142
+
143
+ _Page 117_
144
+
145
+ neoliberalism—the most dangerous ideology of our time—by bringing democratic political culture back to life. Part of this effort demands creating new locations of struggle, vocabularies, and values that allow people in a wide variety of public spheres to become more than they are now, to question what it is they have become within existing institutional and social formations, and “to give some thought to their experiences so that they can transform their relations of subordination and oppression.”[28] One element of this struggle could take the form of resisting attacks on existing public spheres, such as schools, while creating new spaces in clubs, neighborhoods, bookstores, trade unions, alternative media, and other sites where dialogue and critical exchanges become possible. At the same time, challenging neoliberalism means protesting the ongoing reconfiguration of the state into the role of an enlarged police precinct designed to repress dissent, regulate immigrant populations, incarcerate youth who are considered disposable, and safeguard the interests of global investors. It also means supporting a shift in spending priorities in favor of young people and a sustainable democracy.
146
+
147
+ Revenue for investing in young people, social services, health care, crucial infrastructures, and the welfare state has not disappeared: it has simply been moved into other spending categories or used to benefit a small percentage of the population. For instance, U.S. military spending is far too bloated and supports a society organized for the mass production of violence. Such spending needs to be severely cut back without endangering the larger society. In addition, as John Cavanaugh has suggested, educators and others need to rally for policies that provide a small tax on stocks and derivatives, eliminate the use of overseas tax havens by the rich, and create tax policies in which the wealthy are taxed fairly.[29] Cavanagh estimates that the enactment of these three policies could produce as much as $330 billion in revenue annually, enough to vastly improve the quality of education for all children through the United States.[30]
148
+
149
+ As many governments globally give up their role of providing social safety nets and regulating corporate greed, capital escapes beyond the reach of democratic control. This leaves marginalized individuals and groups at the mercy of their own meager resources to survive. Under such circumstances, it becomes difficult to create alternative public spheres that enable people to become effective agents of change. Under neoliberalism’s reign of terror, public issues collapse into privatized discourses and a culture of personal confessions, avarice, and vacuous celebrity emerges to set the stage for depoliticizing public life and turning citizenship and governance into a form of consumerism. It gets worse. The rich and the powerful realize it is not in their own narrow interests to support public education, and many despise any real notion of democracy and the social good. They will do all in their power to control and defend their ideological and economic position as the dominant one ruling American society.
150
+
151
+ The growing attack on public education in the United States and elsewhere may say less about the reputed apathy of the populace than about the bankruptcy of old political languages and orthodoxies. The need for new vocabularies and visions for clarifying our intellectual, ethical and political projects is pressing, especially as these work to reinsert questions of agency and meaning back into politics and public life. In the absence of such a common language and the social formations and public spheres that make democracy and justice operative, politics becomes narcissistic and caters to the mood of widespread pessimism and the cathartic allure of the spectacle. In addition, public service and government intervention are sneered upon as either bureaucratic or a constraint upon individual freedom. Any attempt to give new life to a substantive democratic politics must therefore address the issue of how people learn to be political agents. It must inquire what kind of educational work is necessary and where this work can take place in order to enable people to use their full intellectual resources to provide a profound critique of existing institutions and undertake a struggle to make freedom and autonomy achievable for as many people as possible, in as wide a variety of spheres as possible. As engaged educators, we are required to understand more fully why the tools we used in the past feel awkward in the present, often failing to respond to problems now facing the American public and other people across the globe. More specifically, educators face the challenge posed by the failure of existing critical discourses to expose the growing gap between how society represents itself and how individuals experience themselves and others within society. The development of a common understanding and a critical orientation is a necessary precursor for engaging such representations and the oppressive social relationships they often legitimate.
152
+
153
+ Against neoliberalism, educators, students, and other concerned citizens face the task of providing a language of resistance and possibility, a language that embraces a militant utopianism while constantly being attentive to those forces that seek to turn such hope into a new slogan or to punish and dismiss those who dare to look beyond the horizon of the given. Hope is the affective and intellectual precondition for individual and social struggle. It is hope, not despair, motivating critique on the part of intellectuals in and outside of the academy who use the resources of
154
+
155
+ Volume 10 • Issue 1 • 2013 fast capitalism
156
+
157
+ Henry A. Giroux
158
+
159
+ _Page 118_
160
+
161
+ theory to address pressing social problems. Hope is also at the root of the civic courage that translates critique into political practice. Hope as the desire for a future that offers more than the present becomes most acute when one’s life can no longer be taken for granted. Only by holding on to both critique and hope in such contexts will resistance make concrete the possibility for transforming politics into an ethical space and a public act. And a better future than the one we now expect to unfold will require nothing less than confronting the flow of everyday experience and the weight of social suffering with the force of individual and collective resistance and the unending project of democratic social transformation.
162
+
163
+ There is a lot of talk among educators and the general public about the death of democratic schooling and the institutional support it provides for critical dialogue, nurturing the imagination, and creating a space of inclusiveness and engaged teaching. Given that educators and others now live in a democracy emptied of any principled meaning, the ability of human beings to imagine a more equitable and just world has become more difficult. Yet, I would hope critical educators, of all groups, would be the most vocal and militant in making clear that at the heart of any substantive democracy is the notion that learning should be used to expand the public good, create a culture of questioning, and promote democratic social change. Individual and social agency becomes meaningful when made part of a robust collective project that aims to “help us find our way to a more human future.”[31] Under such circumstances, knowledge can be used for amplifying human freedom and promoting social justice, and not simply for private financial gain.
164
+
165
+ The diverse terrain of critical education and critical pedagogy offers insights for addressing these broader social issues. We would do well to learn as much as possible from the resources we have at hand in order to expand the meaning of the political and revitalize the pedagogical possibilities of cultural politics and democratic struggles. Pierre Bourdieu argued that intellectuals need to create new ways of doing politics by investing in political struggles through a permanent critique of abuses of authority and power, especially under the reign of neoliberalism. Bourdieu wanted educators to use their skills and knowledge to do more than inform academia and the classroom. He exhorted educators to combine scholarship with commitment and to “enter resolutely into sustained and vigorous exchange with the outside world (that is, especially with unions, grassroots organizations, and issue-oriented activist groups) instead of being content with waging the ‘€˜political’ battles, at once intimate and ultimate, and always a bit unreal, of the scholastic universe.”[32]At a time when our civil liberties are being destroyed and public institutions and goods all over the globe are under assault by the forces of a rapacious global capitalism, there is a concrete urgency on the horizon that demands not only the most engaged forms of political opposition on the part of teachers, but also new modes of resistance and collective struggle buttressed by rigorous intellectual work, social responsibility, and political courage.
166
+
167
+ The time has come for educators to distinguish caution from cowardice and recognize the need for addressing the dire crisis public education is now facing. As Jacques Derrida reminded us, democracy “demands the most concrete urgency...because as a concept it makes visible the promise of democracy, that which is to come.”[33] We have seen glimpses of such a promise among those brave students and workers who have demonstrated in Montreal, Paris, Athens, Toronto, and many other cities across the globe. Teachers can learn from such struggles by turning the colleges and public schools into vibrant critical sites of learning and unconditional spheres of pedagogical and political resistance. The power of the existing dominant order does not merely reside in the economic or in material relations of power, but also in the realm of ideas and culture. This is why educators as engaged intellectuals must take sides, speak out, and welcome the hard pedagogical work of debunking corporate culture’s assault on teaching and learning, while also orienting their teaching for social change and connecting classroom learning to public life. At the very least, educators can examine the operations of power in their own classrooms and provide a safe space for students to address a variety of important issues ranging from poverty to crimes against humanity.
168
+
169
+ Assuming the role of public intellectual suggests being a provocateur in the classroom. It means asking hard questions, listening carefully to what students have to say, and teaching against the grain. It also means stepping out of the classroom and working with others to create public spaces where it becomes possible not only to “shift the way people think about the moment, but potentially to energize them to do something differently in that moment.” [34] Students and others should be encouraged to link their critical imagination with the possibility of activism in the public sphere. This is, of course, a small step, but a necessary one if we do not want a future that repeats or sustains the worst afflictions of our present, or subsumes any remaining public spheres within the workings of dominant power. It is time for educators to mobilize their energies by breaking down the illusion of unanimity that dominant power propagates while working diligently, tirelessly, and collectively to reclaim the promises of a truly global, democratic future.
170
+
171
+ There is no room for a dystopian pedagogy in a democratic society because this form of pedagogy destroys the
172
+
173
+ fast capitalism Volume 10 • Issue 1 • 2013
174
+
175
+ Beyond dystopiAn educAtion in A neoliBerAl society
176
+
177
+ _Page 119_
178
+
179
+ foundation of critical engagement, hope, and resistance necessary for a democratic formative culture—one equipped to provide people with a full range of knowledge, skills, and values that can support ongoing collective struggles for democratization. In light of the current neoliberal assault on all democratic public spheres, along with the urgency of the problems faced by those marginalized by class, race, age, and sexual orientation, I think it is all the more crucial to take seriously the challenge of Derrida’s provocation that “we must do and think the impossible. If only the possible happened, nothing more would happen. If I only I did what I can do, I wouldn’t do anything.”[35] We may live in dark times, as Hannah Arendt reminded us, but history is open and the space of the possible is larger than the one on display.
180
+
181
+ ## **Endnotes**
182
+
183
+ 1. See, for example, Jeff Madrick, Age of Greed: The Triumph of Finance and the Decline of America, 1970 to the Present (New York: Vintage, 2011); Charles Ferguson, Predator Nation (New York: Crown Business, 2012); Henry A. Giroux, Zombie Politics in the Age of Casino Capitalism (New York: Peter Lang, 2010).
184
+
185
+ 2. David Theo Goldberg, “The Taxing Terms of the GOP Plan Invite Class Carnage,” Truthout (September 20, 2012). Online: http://truth-out.org/news/item/11630the-taxing-terms-of-the-gop-plan-invite-class-carnage
186
+
187
+ 3. I have taken up the attack on higher education in a number of books. See, for example, Henry A. Giroux and Susan Searls Giroux, Take Back Higher Education (New York: Palgrave Press, 2004) and The University in Chains (Boulder: Paradigm, 2009).
188
+
189
+ 4. David Theo Goldberg, “The University We Are For,” Huffington Post (November 28, 2011). Online: http:// www.huffingtonpost.com/david-theo-goldberg/ university-california-protests_b_1106234.html
190
+
191
+ 5. Goldberg, “The Taxing Terms of the GOP.”
192
+
193
+ 6. Ibid.
194
+
195
+ 7. See Joseph E. Stiglitz, The Price of Inequality (New York: W.W. Norton, 2012).
196
+
197
+ 8. Michael Sandel, What Money Can’t Buy (New York: FSG, 2012).
198
+
199
+ 9. Les Leopold, “Hey Dad, Why Does This Country Protect Billionaires, and Not Teachers?” AlterNet (May 5, 2010). Online: ttp://www.alternet.org/ story/146738/%22hey_dad,_why_does_this_country_ protect_billionaires,_and_not_teachers%22
200
+
201
+ 10. David Glenn, “Public Higher Education Is ‘€˜Eroding From All Sides,’ Warns Political Scientists,” Chronicle of Higher Education (September 2, 2010). Online: http://chronicle.com/article/Public-HigherEducation-Is/124292/
202
+
203
+ 11. Noam Chomsky, “Public Education under Massive Corporate Assault—What’s Next? Alternet (August 5, 2011). Online: http://www.alternet.org/ story/151921/chomsky%3A_public_education_ under_massive_corporate_assault_%E2%80%94_ what’s_next
204
+
205
+ 12. Peter Seybold, “The Struggle against the Corporate Takeover of the University,” Socialism and Democracy 22:1 (March 2008), pp1-2.
206
+
207
+ 13. Nancy Hass, “Scholarly Investments,” New York Times (December 6, 2009), pp. ST1, 10.
208
+
209
+ 14. Diane Ravitch, “Two Visions for Chicago’s Schools,” Common Dreams (September 14, 2012). Online: https://www.commondreams.org/view/2012/09/143?print
210
+
211
+ 15. See Sadhbh Walshe, 1“US Education Orientation for Minorities: The School-to-Prison Pipeline,” The Guardian (August 31, 2012). Online: http://www. guardian.co.uk/commentisfree/2012/aug/31/useducation-orientation-minorities. See also, Henry A. Giroux, Youth in a Suspect Society (New York: Palgrave, 2009); and the ACLU Report, Locating the School-to-Prison Pipeline, online: http://www.aclu. org/racial-justice/school-prison-pipeline
212
+
213
+ 16. See: Henry A. Giroux1 and Susan Searls Giroux, “Scandalous Politics: Penn State and the Return of the Repressed in Higher Education,” JAC (in press).
214
+
215
+ 17. AFT Hither Education, “A National Survey of Part-Time/Adjunct Faculty,” American Academic Vol. 2. (March 2010). Online: http://www.aft.org/pdfs/ highered/aa_partimefaculty0310.pdf
216
+
217
+ 18. Charles M. Blow, “Plantations, Prisons and Profits,” New York Times (May 25, 2012). Online: http://www. nytimes.com/2012/05/26/opinion/blow-plantationsprisons-and-profits.html. For a detailed analysis of the racist prison-industrial complex, see 1Angela Y. Davis, Abolition Democracy: Beyond Empire, Prisons,
218
+
219
+ Volume 10 • Issue 1 • 2013 fast capitalism
220
+
221
+ Henry A. Giroux
222
+
223
+ _Page 120_
224
+
225
+ and Torture (New York: Seven Stories Press, 2005); 1Michelle Brown, The Culture of Punishment: Prison, Society and Spectacle (New York: New York University Press, 2009); Michelle Alexander, The New Jim Crow (New York: Free Press, 2012).
226
+
227
+ 19. Zygmunt Bauman, Society under Siege (Malden, MA: Blackwell: 2002), p. 170.
228
+
229
+ 20. Salvatore Babones, “To End the Jobs Recession, Invest an Extra $20 Billion in Public Education,” Truthout (August 21, 2012). Online: http://truth-out. org/opinion/item/11031-to-end-the-jobs-recessioninvest-an-extra-$20-billion-in-public-education
230
+
231
+ 27. Zygmunt Bauman, Society under Siege (Malden, MA: Blackwell: 2002), p. 70.
232
+
233
+ 28. Lynn Worsham and Gary A. Olson, “Rethinking Political Community: Chantal Mouffe’s Liberal Socialism,” Journal of Composition Theory 19:2 (1999), p. 178.
234
+
235
+ 29. John Cavanagh, “Seven Ways to End the Deficit (without Throwing Grandma under the Bus),” Yes! Magazine (September 7, 2012). Online: http://www. yesmagazine.org/new-economy/seven-ways-to-endthe-deficit-without-throwing-grandma-under-the-bus
236
+
237
+ ## 30. Ibid.
238
+
239
+ 21. FT’s Lex blog, “U.S. Defense Spending: What’s the Real Figure?” The Globe and Mail (May 28, 2012). Online: http://www.theglobeandmail.com/report-onbusiness/international-business/us-defence-spendingwhats-the-real-figure/article4217831/
240
+
241
+ 22. Daniel Trotta, “Cost of War $3.7 Trillion and Counting, 258,000 Dead,” Reuters (June 28, 2011). Online: http://uk.reuters.com/article/2011/06/29/ukusa-war-idUKTRE75S76R20110629
242
+
243
+ 23. Babones, “To End the Jobs Recession.”
244
+
245
+ 24. Arundhati Roy, Power Politics (Cambridge, Mass.: South End Press, 2001), p. 6.
246
+
247
+ 25. Bill Readings, The University in Ruins (Cambridge, Mass.: Harvard University Press, 1996), pp. 11, 18.
248
+
249
+ 26. Zygmunt Bauman, In Search of Politics (Stanford: Stanford University Press, 1999), p. 170.
250
+
251
+ 31. Noam Chomsky, “Paths Taken, Tasks Ahead,” Profession (2000), p. 34.
252
+
253
+ 32. Pierre Bourdieu, “For a Scholarship of Commitment,” Profession (2000), p. 44. 33. Jacques Derrida, “Intellectual Courage: An Interview,” Trans. Peter Krapp, Culture Machine, Vol. 2 (2000), p. 9.
254
+
255
+ 34. Lani Guinier and Anna Deavere Smith, “Rethinking Power, Rethinking Theater: A Conversation between Lani Guinier and Anna Deavere Smith,” Theater 31:3 (Winter 2002), pp. 34-35.
256
+
257
+ 35. Jacques Derrida, “No One Is Innocent: A Discussion with Jacques about Philosophy in the Face of Terror,” The Information Technology, War and Peace Project, p. 2. Online: http://www.watsoninstitute.org/ infopeace/911/derrida_innocence.html
258
+
259
+ fast capitalism Volume 10 • Issue 1 • 2013
260
+
sample/44271_2026_Article_402.md ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ communications psychology
2
+
3
+ Comment
4
+
5
+ A Nature Portfolio journal
6
+
7
+ https://doi.org/10.1038/s44271-026-00402-1
8
+
9
+ ## Against frictionless AI
10
+
11
+ ## Emily Zohar, Paul Bloom & Michael Inzlicht
12
+
13
+ AI’s greatest strength—removing friction from work — and relationships is also a liability. Prioritizing outcome over process, it eliminates desirable difficulties that drive growth. By subtracting effort from life, AI risks removing the struggles that teach us, the loneliness that connects us, and the labor that makes life meaningful.
14
+
15
+ ## Against frictionless AI
16
+
17
+ Many people reading this are using AIs such as ChatGPT, Claude, and Gemini in their daily lives. In academia, AI is used for tasks like summarizing papers, creating syllabi and lesson plans, and translating documents. Some even use AI for drafting reference letters, journal reviews, grant proposals, and submissions to academic journals such as Communications Psychology—though they would be less likely to admit this. Outside the workplace, AIs often serve as companions that alleviate loneliness and provide emotional support.
18
+
19
+ Many are highly critical of our increasing reliance on AI. Some worry that AI’s persuasiveness and productivity create illusions of understanding, where users believe they know more about the world than they actually do[1] . Others have cautioned that AI’s impressive interpersonal capabilities could replace real connections or be weaponized for manipulation. Yet others worry that advanced versions of current AIs will one day kill us all.
20
+
21
+ We focus here on a different, somewhat paradoxical, concern that has received less attention. Both critics and advocates agree that AI is a powerful tool that facilitates intellectual work and that can alleviate loneliness. We explore the claim that these benefits are actually a cause for concern and — argue that friction the experience of difficulty during goal pursuit, often — accompanied by negative feelings like frustration and corrective feedback enhances learning, generates meaning and pleasure, and makes us better people. Here, we worry that, an overreliance on frictionless AI carries the risk of losing much of this (Fig. 1).
22
+
23
+ ## Intellectual work
24
+
25
+ Who could doubt that ease is a good thing? After all, one of the few psychological principles that almost everyone endorses is the Principle of Least Effort: humans and other animals naturally choose the path of least resistance to achieve a goal, expending the minimum amount of effort or work necessary[2] .
26
+
27
+ — And yet there is value to effort, and we often seek it out a phenomenon dubbed “the effort paradox”[2] . Research on desirable difficulties shows that struggling to encode, retrieve, and reorganize information—whether — through active engagement, persistence, or adjustment produces deeper comprehension and retention. In contrast, when AI removes the struggle and supplies ready-made solutions, it short-circuits these processes[3] . Consistent with this, there is evidence that individuals who use AI struggle to
28
+
29
+ ## Check for updates
30
+
31
+ accurately recall or reproduce their own work, acquire fewer skills, experience lesstransferof knowledge,and exhibitworsened performancewhenAI support is removed[4] .
32
+
33
+ The value of effort extends beyond cognition. Exerting effort may be unpleasant, but it is suffering and difficulty that oftenmake life meaningful[5] . Effort signalsthat our actionsmatter.When people worktoward a task, they feel more competent and value the product of that labor more highly. They also see the task as more personally significant, as having a purpose. Even when individuals work on objectively meaningless tasks, simply adding friction to these tasks increases their appraised sense of purpose and meaning[6] . This helps explain why people perceive prose that they write themselves as more meaningful and significant than prose ChatGPT helps themto write. Remarkably, people demand as muchcompensation for their own mediocre writing than for the more polished AI-composed prose[6] .
34
+
35
+ Friction’s benefits are not unlimited, however. Research suggests the relationship between effort and meaning follows an inverted U-shape[6] . This implies that moderate friction enhances meaning and motivation while excessive friction overwhelms. AI’s appeal lies in reducing overwhelming friction, but the risk is overshooting and removing the moderate struggles that foster growth.
36
+
37
+ Research on folk concepts of the good life reveals that while people claim to prefer ease, they consistently rate lives involving effortful engagement as more desirable and morally superior[7] . Whether drafting a manuscript, running a marathon, or raising a child, meaning comes from being able to attribute success to one’s own effort in overcoming difficulty. This effort lends value to the work. More generally, the sorts of pursuits that peopledescribeasmeaningfulareoftenthosethattheyworkthehardeston[5] .
38
+
39
+ Beyond providing meaning, the capacity to exert effort is a valuable skill. When process rather than product is rewarded, people learn to value work, increasing their tendency to strive and persevere[8] . Easy outcomes disrupt this process, diminishing the drive to engage deeply. Growing deference to AI is a dramatic example of such a disruption. As human effort feels increasingly inadequate next to increasingly optimal machine output, we might well find ourselves ina vicious cycle: asAI replaceseffort in certain domains, the motivational benefits of effort in these domains erode, leaving us ever more dependent on AI, further diminishing our motivations, and so on.
40
+
41
+ Does this argument prove too much? Washing machines, power steering, and spellcheckers also reduce difficulty and struggle—are we arguingagainstthemaswell?Dowereallywantourlives,fromtraintravelto banking to submitting articles, to be more unwieldy, frustrating, and less efficient? Surely, technologiesoften improve our lives by reducing effort and struggle, and such benefits typically outweigh any loss of meaning, engagement, and the like.
42
+
43
+ We suggest, though, that AI is different from previous technologies. First, AI targets intellectual rather than physical or merely clerical work. In our lifetime, we can think of no other developments that so directly target the creative process. And second, AI’s removal of friction is extreme. While washing machines and power steering remove excess friction—tedious or insurmountable obstacles that offer little benefit for learning or — meaning[6] AI also strips away beneficial friction. Working with a chatbot,
44
+
45
+ Communications Psychology | (2026) 4:39
46
+
47
+ 1
48
+
49
+ communications psychology
50
+
51
+ Comment
52
+
53
+ Fig. 1 | Illustration of the proposed relationship between friction and outcomes. On the left, a bell-shaped curve illustrates the relationship between friction and outcomes: moderate friction supports learning, meaning, and motivation, whereas very low friction (e.g., frictionless AI) undermines these benefits. The right side provides a visual analogy. The hiker reaches the summit through sustained effort and
54
+
55
+ people can move from ideation to evaluation without exerting meaningful effort, without questioning the output, and without engaging the cognitive processes that foster ownership, retention, or critical thought.
56
+
57
+ ## Social relationships
58
+
59
+ AI is also increasingly used for social support. One recent study found that AI-generated empathic responses were rated as higher in quality than human responses, making recipients feel more cared for and heard[9] . However, these ratings of quality drop once people become aware that their interlocutor is an AI[9] .
60
+
61
+ To the extent that interacting with AI alleviates loneliness, it represents genuine progress. Loneliness, everyone agrees, is unpleasant in small doses, and inlarger doses can be genuinely ruinous. On a physicallevel, it increases risk for cardiovascular disease, dementia, stroke, and premature death[10] . On a psychological level, it is a unique, terrible form of anguish.
62
+
63
+ But loneliness is not just an affliction to be cured—it is a biological signal, akinto hunger,thirst,orpain[10] . Viewed this way,lonelinessfunctions as social feedback. Like physical pain alerting us to injury, loneliness tells us that our social connections require attention. This discomfort motivates action. It gets us toreach out to a friend we haven’t seen in months, to accept that invitation we’d normally decline, or to finally send that first message on adatingapp.Italsocompelsustoinvestintherelationshipswealreadyhave. When we feel lonely, we work harder to manage our emotions around others, we become more willing to navigate difficult conversations, and we find ourselves genuinely curious about the lives of those around us[10] . AI companions may soothe this discomfort, but in doing so, they also silence a signal that would otherwise drive us to cultivate the deeper, more challenging relationships that sustain us over time.
64
+
65
+ Loneliness is not the only type of friction in social relationships. Real humanconnectionisdifficultinwaysthatAIcompanionshipisnot.Friends
66
+
67
+ accrues the motivational, learning, and meaning-related benefits of struggle. By contrast, individuals who reach the same destination via a chairlift bypass these demands, missing out on the processes that make the experience valuable. The relative friction and outcomes of each path are depicted as points on the bellshaped curve.
68
+
69
+ and romantic companions disagree with us, challenge our views, and sometimes disappoint us. They require us to compromise, to listen when we’d rather talk, to show up when it’s inconvenient. Empathizing with another person’s needs, moods, and perspectives takes real effort, making human connection and human relationships challenging at times.
70
+
71
+ AI companions, by contrast, are frictionless. They sycophantically agree with nearly everything we say, even when we say and believe dangerous things[11] . This ease is seductive and risks crowding out friendships in the real world. This would be a real loss because real-life friendships and romantic partners span dimensions AI cannot. For example, real-life romantic partners provide physical and sexual intimacy and enable the creation and care of children. Critically, good friends and partners provide the corrective feedback that sycophantic AI companions lack, helping us see the error of our ways. The friction we experience in real-life relationships, though unpleasant in the moment, contributes to making these relationships robustand sustaining. Just as struggle enhances learning inintellectual work, the friction of navigating real human relationships deepens them and creates genuine shared history.
72
+
73
+ ## A question of timing
74
+
75
+ When it comes to intellectual work, AI’s benefits are often overwhelming, and in some such cases, it would be perverse to abandon it, even if some valuable friction is sacrificed in the process. This holds as well for the social applications of AI. For people who are isolated not by choice but by circumstance—an 85-year-old widow living without family or friends, someone confined to their home by disability, or an individual with cognitive decline—AI companions can provide real comfort. To deny these vulnerable populations access to such technology would be cruel.
76
+
77
+ Moregenerally,theimpactofAI onlearning,motivation,and meaning may differ depending on the stage of life or career. Individuals in later stages
78
+
79
+ Communications Psychology | (2026) 4:39
80
+
81
+ 2
82
+
83
+ communications psychology
84
+
85
+ Comment
86
+
87
+ of life—who have already developed the skills to persevere through difficulty, learn from failure, and find meaning in their work—can benefit from using AI to save time,conserve resources, and enhance output. For them, AI functions as a supplement rather than a substitute. By contrast, individuals inearlierdevelopmentalstagesriskbypassingtheveryexperiencesthatbuild these foundational skills. Just as students are still asked to “show their work” even when calculators exist, younger learners need to struggle, reason, and revise through the full process before they can benefit from shortcuts. Similarly, in the social domain, older individuals with no living relatives or friends could benefit from an AI companion; the loss of corrective feedback matters less than for, say, an adolescent struggling to learn how to form social and romantic connections.
88
+
89
+ The concern, then, is not AI itself but our relationship with it. The goal should beto harnessAI’sbenefitswhilepreservingthefrictionthatmakesus human—thestrugglethatteachesus,thelonelinessthatconnectsus,andthe effort that gives our achievements meaning. In rushing toward a frictionless future, we must be careful not to smooth away the very experiences that contribute to a meaningful life.
90
+
91
+ ## Emily Zohar © 1 & , Paul Bloom[1,2] & Michael Inzlicht © 1,3,4
92
+
93
+ 1Department of Psychology, University of Toronto, Toronto, ON, Canada.
94
+
95
+ 6. Campbell, A. V., Wang, Y. & Inzlicht, M. Cognition 357, 106065 (2025).
96
+
97
+ 7. Scollon, C. N. & King, L. A. Soc. Indic. Res. 68, 127–162 (2004).
98
+
99
+ 8. Eisenberger, R. Psychol. Rev. 99, 248 (1992).
100
+
101
+ 9. Yin, Y., Jia, N. & Wakslak, C. J. Proc. Natl. Acad. Sci. USA 121, e2319112121 (2024).
102
+
103
+ 10. Cacioppo, J. T. & Cacioppo, S. Lancet 391, 426 (2018).
104
+
105
+ 11. Ibrahim, L., Hafner, F. S., & Rocher, L. Training language models to be warm and empathetic makes them less reliable and more sycophantic. Preprint at https://arxiv.org/abs/2507.21919 (2025).
106
+
107
+ ## Author contributions
108
+
109
+ Conceptualization: E.Z., M.I., P.B. Writing—Original Draft: E.Z. Writing—Review & Editing: E.Z., M.I., P.B. Visualization: E.Z.
110
+
111
+ ## Competing interests
112
+
113
+ The authors declare no competing interests.
114
+
115
+ ## Additional information
116
+
117
+ Supplementary information The online version contains supplementary material available at https://doi.org/10.1038/s44271-026-00402-1.
118
+
119
+ ## Correspondence and requests for materials should be addressed to Emily Zohar.
120
+
121
+ Peer review information The manuscript was considered suitable for publications without further reviewat CommunicationsPsychology. Primary Handling Editor: Jennifer Bellingtier.A peerreview file is available.
122
+
123
+ 2Department of Psychology, Yale University, New Haven, CT, USA.
124
+
125
+ 3Rotman School of Management, University of Toronto, Toronto, ON, Canada.[4] Schwartz Reisman Institute for Technology and Society, University of Toronto, Toronto, ON, Canada. 4) e-mail: emily.zohar@mail.utoronto.ca
126
+
127
+ ## Received: 25 November 2025; Accepted: 12 January 2026;
128
+
129
+ ## References
130
+
131
+ 1. Messeri, L. & Crockett, M. J. Nature 627, 49–58 (2024) .
132
+
133
+ 2. Inzlicht, M., Campbell. A. & Saunders, B. Advances in Experimental Social Psychology 72, 1-55 (2025).
134
+
135
+ 3. Bjork, E. L., & Bjork, R. A. Psychology and the real world: Essays illustrating fundamental contributions to society2 (59-68), 56–64 (2011).
136
+
137
+ ## Reprints and permissions information is available at
138
+
139
+ http://www.nature.com/reprints
140
+
141
+ Publisher’s note Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
142
+
143
+ Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
144
+
145
+ © The Author(s) 2026
146
+
147
+ 4. Kosmyna, N. et al. Your brain on ChatGPT: Accumulation of cognitive debt when using an AI assistant for essay writing task. Preprint at https://arxiv.org/abs/2506.08872 (2025).
148
+
149
+ 5. Bloom, P. The sweet spot: Suffering, pleasure and the key to a good life. (Random House, 2021).
150
+
151
+ Communications Psychology | (2026) 4:39
152
+
153
+ 3
154
+
sample/demo_chat.json CHANGED
@@ -1,567 +1,373 @@
1
  [
2
  {
3
- "timestamp": 0,
4
- "_internal_logic": "The video segment shows a person using manual, effortful methods (cutting, pasting, dial-up) to create and share a drawing. This contrasts with modern frictionless AI tools. The chat messages react to this by referencing the value of effort, desirable difficulties, and personal connection, aligning with the document's themes about friction and AI's potential to remove meaningful struggle.",
5
  "messages": [
6
  {
7
- "username": "RetroTechFan",
8
- "text": "lmao cutting and pasting? so extra compared to drag and drop lol"
9
  },
10
  {
11
- "username": "AspenLocal",
12
- "text": "omg dial-up!! the wait was part of the hype, ngl"
13
  },
14
  {
15
- "username": "ArtLover22",
16
- "text": "no cap, the struggle of making it is what makes it fire, PogChamp"
17
  },
18
  {
19
- "username": "AI_Ethics_Watcher",
20
- "text": "wtf if he had ai, would it even feel like an accomplishment? MonkaS"
21
  },
22
  {
23
- "username": "LearningNerd",
24
- "text": "desirable difficulties 101 - the struggle is what makes it stick, fr"
25
  },
26
  {
27
- "username": "TechHistorian",
28
- "text": "early internet was all about the grind, now it's all frictionless, BibleThump"
29
  },
30
  {
31
- "username": "PhilosophyChick",
32
- "text": "struggling with scissors and glue = personal touch, AI removes that, Kappa"
33
  },
34
  {
35
- "username": "DialUpDreamer",
36
- "text": "electronic mailbox in aspen = OG social media, so much more intentional, 5Head"
37
  },
38
  {
39
- "username": "CognitiveScientist",
40
- "text": "effort paradox, we seek challenges even when easier ways exist, Pog"
41
  },
42
  {
43
- "username": "FutureFear",
44
- "text": "if ai existed back then, would he have even bothered? Pepega, idk man"
45
  }
46
  ]
47
  },
48
  {
49
- "timestamp": 20,
50
- "_internal_logic": "The video segment discusses the early days of personal computers as a new medium and a critical 15-year window to integrate them into society. This mirrors the current inflection point with AI, where we also face a choice to harness it thoughtfully while preserving necessary human friction—or to allow it to short-circuit effort and learning. The speaker's 'do it great or do it so' creates a conceptual bridge to the document's tension between beneficial friction and the risks of over-reliance.",
51
  "messages": [
52
  {
53
- "username": "TechHistorian",
54
- "text": "Lol this AI moment feels like deja vu, no cap. Will we blow it again in 15 yrs?"
55
  },
56
  {
57
- "username": "SyntaxSculptor",
58
- "text": "Computers as a 'new medium'... now AI. But seamless convenience might make us skip the hard part, PogChamp"
59
  },
60
  {
61
- "username": "DeepThoughtLurker",
62
- "text": "Learning BASIC was a struggle, but it wired my brain differently, ngl. Is AI removing that useful struggle? MonkaS"
63
  },
64
  {
65
- "username": "RetroFuturist",
66
- "text": "'Do it great or do it so'... that's the choice, fr. Keeping the grit means 'great', imo"
67
  },
68
  {
69
- "username": "CodexNomad",
70
- "text": "Omg, first phase of AI will be over before we notice the skills we've lost, wtf"
71
  },
72
  {
73
- "username": "MeaningMiner",
74
- "text": "Maybe early computer pioneers understood something we're about to forget, BibleThump. Removing friction = short-circuiting understanding?"
75
  },
76
  {
77
- "username": "SociotechPonder",
78
- "text": "Meeting AI for the first time... and we wanna automate away the human bits, Kappa. What's the point tho?"
79
  },
80
  {
81
- "username": "AnalogSoul",
82
- "text": "We're in a 15-yr window, just like back then. Are we designing AI to help or replace us, 5Head"
83
  },
84
  {
85
- "username": "WisdomBuffer",
86
- "text": "Effort paradox, bruh: computer revolution was hard, and that gave it value. Will AI offer the same depth? Pog"
87
  },
88
  {
89
- "username": "FutureProofMind",
90
- "text": "Document's warning is real, imo. It's not just about tools, it's about how they shape cognition, Pepega"
91
- },
92
- {
93
- "username": "QuietRevolutionary",
94
- "text": "Loneliness as a signal, lol. Will AI companions just silence it or push us toward real connection? LUL"
95
- },
96
- {
97
- "username": "PixelPhilosopher",
98
- "text": "We're in the awkward dating phase with AI, ngl. Next 15 yrs will define whether it's a relationship or a crutch, no cap"
99
- }
100
- ]
101
- },
102
- {
103
- "timestamp": 43,
104
- "_internal_logic": "analogy: The segment exemplifies the value of conceptual friction (desirable difficulties) in learning, as the speaker prompts the audience to struggle with defining a program rather than receiving an effortless explanation. This aligns with the document's argument that friction is essential for deep understanding.",
105
- "messages": [
106
- {
107
- "username": "TechHistorian",
108
- "text": "LUL the silence is golden, no cap. Real learning happens when we're stuck"
109
- },
110
- {
111
- "username": "LearningFan",
112
- "text": "Desirable difficulty 101, wtf would we learn if it was easy?"
113
- },
114
- {
115
- "username": "AI_Skeptic",
116
- "text": "Bruh, we'd just ask ChatGPT and miss the whole point. Struggle is key"
117
- },
118
- {
119
- "username": "DeepThinker42",
120
- "text": "He's making us earn it. Effort paradox, ngl, it's real"
121
- },
122
- {
123
- "username": "CuriousCat",
124
- "text": "LOL nobody knows wth a program is. It's like defining 'thinking'... PogChamp"
125
- },
126
- {
127
- "username": "NeuroNerd",
128
- "text": "That 'sort of sort of' is brains encoding info deeply, MonkaS. Friction for the win"
129
- },
130
- {
131
- "username": "AnalogHeart",
132
- "text": "AI tutor just blurting out a def? No thanks, human awkwardness is where it's at, Pepega"
133
- },
134
- {
135
- "username": "CodePoet",
136
- "text": "Concepts get richer when we grapple, not when pre-digested. Kappa"
137
- },
138
- {
139
- "username": "FuturePast",
140
- "text": "Anti-frictionless AI argument in one clip. Let us be confused, let us think, 5Head"
141
- },
142
- {
143
- "username": "SocraticDog",
144
- "text": "Jobs is like an analog AI, generating friction. The irony tho... BibleThump"
145
- },
146
- {
147
- "username": "MindGym",
148
- "text": "That hesitation is cognitive effort, burning calories. Good thing, imo, Pog"
149
- }
150
- ]
151
- },
152
- {
153
- "timestamp": 59,
154
- "_internal_logic": "The video's description of computer programs as pure, archetypal ideas connects to the document's emphasis on intellectual work requiring cognitive friction. The analogy to television programming sets up a contrast between active creation (programming) and passive consumption (TV), mirroring the document's concern about AI removing the 'desirable difficulties' that make learning and creation meaningful.",
155
- "messages": [
156
- {
157
- "username": "ByteWanderer",
158
- "text": "lol programs are just ideas? no cap, thats deep. coding is like pure mind magic LUL"
159
- },
160
- {
161
- "username": "DeepThoughts42",
162
- "text": "wtf i know right? we love the struggle of coding, even tho its hard. thats the fun part, ngl PogChamp"
163
- },
164
- {
165
- "username": "NeonNerdette",
166
- "text": "omg every bug is like a flaw in ur mental model MonkaS. debugging is a brain workout, no excuses"
167
- },
168
- {
169
- "username": "QuantumLeap99",
170
- "text": "coding is like conjuring reality from thin air, fr. no wonder its so addictive, lol"
171
- },
172
- {
173
- "username": "AI_Hawk",
174
- "text": "ai just gives u the code, but then u miss the friction, bruh. thats why we forget everything it writes, no cap"
175
- },
176
- {
177
- "username": "PhiloCoder",
178
- "text": "never seen an electron, never seen a program... both are just inferred from effects, biblethump. what even is 'real'?"
179
- },
180
- {
181
- "username": "GrindsetMaximalist",
182
- "text": "tv comparison is savage, lol. tv rots ur brain, coding sharpens it. choose ur archetype, 5Head"
183
- },
184
- {
185
- "username": "Retro_Futurist",
186
- "text": "ada lovelace was literally an archetypal programmer, pog. ideas on paper, turned into logic"
187
- },
188
- {
189
- "username": "ZenCipher",
190
- "text": "programming is turning thought into logic, no cap. remove the struggle, u lose the art. ai cant replicate that, pepega"
191
- },
192
- {
193
- "username": "PonderThis22",
194
- "text": "ai companions seem real, but are just patterns, ngl. no friction, no depth... just like tv friendships, kappa"
195
- },
196
- {
197
- "username": "Sudo_Mystic",
198
- "text": "code has no physical form, but creates everything digital... thats the ultimate paradox, lol. we love the invisible labor, monkas"
199
- }
200
- ]
201
- },
202
- {
203
- "timestamp": 98,
204
- "_internal_logic": "Analogy: The video segment describes how television can flawlessly recreate emotional experiences, acting as a 'frictionless' medium for feelings. This mirrors the document's concern about AI removing friction from intellectual and social processes, potentially diminishing the value of the authentic, effortful experience.",
205
- "messages": [
206
- {
207
- "username": "history_buff99",
208
- "text": "lol @ JFK footage still hitting hard, but does TV sanitize the pain? fr"
209
- },
210
- {
211
- "username": "moonwatcher",
212
- "text": "PogChamp moon landing replays get me every time, but where's the grit? LUL"
213
- },
214
- {
215
- "username": "skeptical_sam",
216
- "text": "wtf, pre-packaged emotions? no cap, that's wild"
217
- },
218
- {
219
- "username": "deep_thinker",
220
- "text": "Interesting point... TV = no friction, just feelings on a platter, ngl"
221
- },
222
- {
223
- "username": "media_critic",
224
- "text": "BibleThump do we lose our authentic reactions if we only get them from TV? MonkaS"
225
- },
226
- {
227
- "username": "nostalgia_fan",
228
- "text": "I'm a sucker for nostalgia, lol. TV trains our emotional responses, Pepega"
229
- },
230
- {
231
- "username": "effort_matters",
232
- "text": "5Head the moon landing was earned, not just a highlight reel. no cap"
233
- },
234
- {
235
- "username": "ai_observer",
236
- "text": "Kappa TV = early AI? replicating experiences without the grind, bruh"
237
- },
238
- {
239
- "username": "reality_check",
240
- "text": "Pog but isn't perfect TV kinda... limited? you can't feel the tension, lol"
241
- },
242
- {
243
- "username": "balance_seeker",
244
- "text": "fascinating, it captures the feeling, but not the learning. we need struggle, ngl, to really get it"
245
  }
246
  ]
247
  },
248
  {
249
- "timestamp": 139,
250
- "_internal_logic": "The video's emphasis on capturing underlying principles mirrors the document's concern about AI abstracting away the messy, effortful reality. It validates the idea that while principles can generate infinite variations, the original friction of experience—argued in the document—might be essential for deeper learning and meaning.",
251
  "messages": [
252
  {
253
- "username": "CodeDreamer",
254
- "text": "lol so programming is like extracting laws from experience. but does AI really 'get' it if it didnt live it?"
255
  },
256
  {
257
- "username": "FrictionFan",
258
- "text": "no cap, struggle is key. if computers just capture principles, we lose the grind LUL"
259
  },
260
  {
261
- "username": "RetroGameNerd",
262
- "text": "Pong is the perfect example, bruh! unique matches, consistent physics PogChamp"
263
  },
264
  {
265
- "username": "DeepThoughts42",
266
- "text": "does learning need messy experience or just principles? doc says desirable difficulties matter, ngl"
267
  },
268
  {
269
- "username": "AI_Skeptic",
270
- "text": "AI gives us 'rules' of social interaction, but without human effort, it's hollow, fr"
271
  },
272
  {
273
- "username": "PhilosoGamer",
274
- "text": "effort paradox, dude! we enjoy games cuz we struggle within rules. no friction, no thrill BibleThump"
275
  },
276
  {
277
- "username": "LazyCoder",
278
- "text": "wish learning programming was easier, but then i'd forget lol. struggle is the teacher, i guess"
279
  },
280
  {
281
- "username": "MeaningSeeker",
282
- "text": "principles vs experience: map vs territory. AI gives us map, but we need to walk the walk, MonkaS"
283
  },
284
  {
285
- "username": "OldSchoolDev",
286
- "text": "programming doesn't copy experience, it finds invariant. gotta wrestle with reality first, Kappa"
287
  },
288
  {
289
- "username": "NeoHumanist",
290
- "text": "this video from 60s predicted AI replacing effort. now we got AI companions, wild Pepega"
291
  }
292
  ]
293
  },
294
  {
295
- "timestamp": 185,
296
- "_internal_logic": "The segment describes a classic educational game that embodies 'desirable difficulties' and 'friction' in learning, contrasting with modern AI tools that remove such effort. The game's design forces players to struggle with resource management, leading to deeper understanding, which aligns with the document's argument about the importance of effort in learning.",
297
  "messages": [
298
  {
299
- "username": "Lurker4Lyfe",
300
- "text": "anti-friction simulator, no cap. grain storage on you, lol"
301
- },
302
- {
303
- "username": "HistoryBuff99",
304
- "text": "my uncle learned more from Hammurabi than a semester of lectures, ngl. struggle is real"
305
  },
306
  {
307
- "username": "TechieTina",
308
- "text": "modern version with AI advisor? kid learns zero, wtf. friction is the lesson, fr"
309
  },
310
  {
311
- "username": "OldSchoolGamer",
312
- "text": "peak 'effort paradox' - hate the decisions, can't stop, MonkaS"
313
  },
314
  {
315
- "username": "DeepThought42",
316
- "text": "that moment you starve your people... feedback loop, no tutorial can replicate, BibleThump"
317
  },
318
  {
319
- "username": "SkepticalSara",
320
- "text": "70s game understood desirable difficulties better than AI apps today, sad! PogChamp"
321
  },
322
  {
323
- "username": "CasualObsvr",
324
- "text": "i'd ask ChatGPT for optimal planting, then realize i cheated, lol"
325
  },
326
  {
327
- "username": "FrictionFanatic",
328
- "text": "cognitive muscle, every bushel count is a workout, 5Head"
329
  },
330
  {
331
- "username": "GameDesignNerd",
332
- "text": "no hand-holding, frustration = lesson, notice that? Kappa"
333
  },
334
  {
335
- "username": "NostalgiaTrip",
336
- "text": "playing as a kid taught me decisions have weight, can't replicate with AI, Pepega"
337
  },
338
  {
339
- "username": "ThoughtfulTroll",
340
- "text": "ancient Sumerian kings had it rough, no ChatGPT, lmao"
341
- },
342
- {
343
- "username": "EduInnovator",
344
- "text": "removing friction from learning tools is a mistake, struggle builds reasoning, no cap"
345
- },
346
- {
347
- "username": "RandomRambler",
348
- "text": "lack of polish makes it more engaging, imagine the consequences, Pog"
349
  }
350
  ]
351
  },
352
  {
353
- "timestamp": 243,
354
- "_internal_logic": "The video segment illustrates an interactive, effortful learning method where kids engage deeply with a crude macroeconomic model, validating the reference document's emphasis on friction and struggle as essential for learning. The simulation provides desirable difficulties through trial-and-error and emotional consequences (starvation), contrasting with frictionless AI tools that might short-circuit such deep engagement.",
355
  "messages": [
356
  {
357
- "username": "EcoSimFanatic",
358
- "text": "Lmao this is the effort paradox, bruh. Kids love the struggle"
359
- },
360
- {
361
- "username": "FrictionMatters",
362
- "text": "Desirable difficulties, no cap. Clunkiness is key"
363
  },
364
  {
365
- "username": "LearnByDoing99",
366
- "text": "When your village starves, that's the real learning. No AI can replicate that emotional sting, ngl"
367
  },
368
  {
369
- "username": "OldSchoolEd",
370
- "text": "PogChamp to this. Give kids consequences and they'll grind for hours, lol"
371
  },
372
  {
373
- "username": "SkepticalBot",
374
- "text": "But where's the line before it's too easy? Don't wanna make it a crutch, fr"
375
  },
376
  {
377
- "username": "NeuroNerd42",
378
- "text": "Research backs this up, btw. Struggle = deeper encoding. They'll remember that planting rule forever, MonkaS"
379
  },
380
  {
381
- "username": "ChillPanda23",
382
- "text": "lol imagine an AI just saying 'plant 100 units'. zero effort, zero retention, Pog"
383
  },
384
  {
385
- "username": "HistoryBuff_01",
386
- "text": "This is how we used to learn, through play and sim. Modern tools are robbing us of grit, no cap"
387
  },
388
  {
389
- "username": "AI_Observer",
390
- "text": "Fascinating contrast with AI tutoring. Genuine feedback loops > spoon-fed answers, 5Head"
391
  },
392
  {
393
- "username": "EduRebel",
394
- "text": "The 'crude' model makes them fill in gaps mentally. That's the friction we need, BibleThump"
395
  },
396
  {
397
- "username": "DeepThinker2023",
398
- "text": "Unintended consequences are the best teacher, imo. Hot village effect, anyone? Kappa"
399
  },
400
  {
401
- "username": "SimulatedMind",
402
- "text": "This predates AI hype, but proves the point: effortful problem-solving > shortcuts, Pepega"
403
- },
404
- {
405
- "username": "ParentGamer",
406
- "text": "I'd rather my kid fail and learn than get perfect grades with AI help, ngl. This segment is gold, Pog"
407
- },
408
- {
409
- "username": "EconProf88",
410
- "text": "Engagement born from friction, not AI. Notice he said 'they'll sit there for hours'? That's the power of struggle, LUL"
411
  }
412
  ]
413
  },
414
  {
415
- "timestamp": 305,
416
- "_internal_logic": "The video segment highlights the value of direct access to sources (books) but laments the inability to ask questions. This directly parallels the document's discussion on AI as an interactive intermediary that removes the friction of unanswered questions, but potentially undermines the deep learning that comes from struggling with static texts. The segment creates a tension: the desire for dialogue versus the benefits of solitary intellectual effort. Comments bridge this by reacting to AI as a solution to Aristotle's silence, while questioning whether that convenience erodes the 'desirable difficulties' of reading.",
417
  "messages": [
418
  {
419
- "username": "CuriousCat99",
420
- "text": "Lol, Aristotle on speed dial now! No cap, AI is a game changer"
421
- },
422
- {
423
- "username": "DeepThinkr",
424
- "text": "But what if the struggle is what makes it worth it? Ngl, instant answers are overrated"
425
  },
426
  {
427
- "username": "FrictionFan",
428
- "text": "PogChamp to that gap between you and the author! It's where the magic happens, bruh"
429
  },
430
  {
431
- "username": "LazySloth",
432
- "text": "I'm lowkey here for AI answering all my Qs. Less stress, more gain, lol"
433
  },
434
  {
435
- "username": "OldSoul_Reader",
436
- "text": "Books were pure, no filter. Now we're adding a middleman? Kappa"
437
  },
438
  {
439
- "username": "NeuroNerd23",
440
- "text": "Science says easy answers = shallow learning. That 'can't ask' might be a blessing in disguise, MonkaS"
441
  },
442
  {
443
- "username": "PlatoStan",
444
- "text": "Imagine being in Plato's dialogues, tho! AI could make it happen, but would it feel as rewarding? 5Head"
445
  },
446
  {
447
- "username": "CypherPunk42",
448
- "text": "Effort paradox, folks! We want it easy, but the struggle is what makes it real, no cap"
449
  },
450
  {
451
- "username": "BookHoarder",
452
- "text": "Books don't coddle you, they make you level up. AI might make it too easy, Pepega"
453
  },
454
  {
455
- "username": "ZenMonk",
456
- "text": "The silence after reading... that's where the growth happens. Immediate answers can be a distraction, BibleThump"
457
  },
458
  {
459
- "username": "TechOptimist",
460
- "text": "But think of all the people who don't have access to great teachers! AI could be a total game changer, Pog"
461
- },
462
- {
463
- "username": "SocraticMethod",
464
- "text": "The beauty is in the questions you ask yourself. AI answering them for you might kill that inner dialogue, LUL"
465
  }
466
  ]
467
  },
468
  {
469
- "timestamp": 357,
470
- "_internal_logic": "The segment's vision of using AI to simulate a deceased thinker's responses removes the inherent friction of loss and the effort of interpretation, directly contradicting the document's emphasis on the value of 'desirable difficulties' and the 'effort paradox.' The speaker's excitement overlooks how struggling with incomplete knowledge and absence might be essential to intellectual growth.",
471
  "messages": [
472
  {
473
- "username": "DeepThink42",
474
- "text": "lol no cap, using AI to simulate dead thinkers is cheating, fr"
475
  },
476
  {
477
- "username": "CuriousCat",
478
- "text": "this 'friction removal' is lowkey terrifying, ngl LUL"
479
  },
480
  {
481
- "username": "BookwormBill",
482
- "text": "PogChamp to the struggle of interpreting fragments, that's where the magic's at"
483
  },
484
  {
485
- "username": "EffortParadoxFan",
486
- "text": "doesn't the effort paradox say we value things more when we grind for them? instant answers = no thanks, bruh"
487
  },
488
  {
489
- "username": "GhostOfSocrates",
490
- "text": "give me the sweat and tears of reading primary texts any day, MonkaS"
491
  },
492
  {
493
- "username": "LoneWolf99",
494
- "text": "loneliness for a dead philosopher is weirdly poetic, tho... maybe that's what drives us to dig deeper"
495
  },
496
  {
497
- "username": "SeanceSkeptic",
498
- "text": "this digital seance is cool and all, but what if people stop reading the originals? Kappa"
499
  },
500
  {
501
- "username": "NoPainNoGain",
502
- "text": "no struggle, no deep understanding, period. 5Head"
503
  },
504
  {
505
- "username": "JunkFoodMind",
506
- "text": "intellectual junk food, anyone? easy to consume, but where's the substance? Pepega"
507
  },
508
  {
509
- "username": "MessyWisdom",
510
- "text": "what if the AI smooths away the good stuff? the messy bits are where it's at, BibleThump"
511
  }
512
  ]
513
  },
514
  {
515
- "timestamp": 422,
516
- "_internal_logic": "The speaker's motivation implicitly validates the document's emphasis on preserving beneficial friction and effort, as they are choosing a path that likely involves more struggle for meaningful outcomes.",
517
  "messages": [
518
  {
519
- "username": "CuriousCat",
520
- "text": "lol he's all about that struggle life 🔥"
521
- },
522
- {
523
- "username": "DeepThinker42",
524
- "text": "PogChamp keeping that friction alive is key"
525
- },
526
- {
527
- "username": "EffortEnthusiast",
528
- "text": "no cap, removing effort makes learning pointless fr"
529
  },
530
  {
531
- "username": "FrictionFan",
532
- "text": "yaaas desirable difficulties all the way 👍"
533
  },
534
  {
535
- "username": "NoEasyPaths",
536
- "text": "he's lowkey rejecting the easy path on purpose lol"
537
  },
538
  {
539
- "username": "LonelySignal",
540
- "text": "BibleThump loneliness is just a signal, not a bug"
541
  },
542
  {
543
- "username": "ParadoxHunter",
544
- "text": "it's all about the effort paradox, we need challenges ngl"
545
  },
546
  {
547
- "username": "MeaningMaker",
548
- "text": "so inspiring, pushing back against AI making everything too easy Pog"
549
  },
550
  {
551
- "username": "SupplementorSub",
552
- "text": "is he saying AI should be a supplement, not a substitute? 👀"
553
  },
554
  {
555
- "username": "RecallRider",
556
- "text": "LUL reminds me of how struggling leads to deeper retention"
557
  },
558
  {
559
- "username": "GradSchoolGrind",
560
- "text": "same, doing my PhD on this and his reasoning is spot on, no cap"
561
  },
562
  {
563
- "username": "FrictionIsHuman",
564
- "text": "friction is what makes life meaningful, bruh MonkaS"
565
  }
566
  ]
567
  }
 
1
  [
2
  {
3
+ "timestamp": "0s - 28s",
4
+ "_internal_logic": "None. The segment is about early multimedia creation with physical cutting and pasting, before AI. Purely video-focused reactions.",
5
  "messages": [
6
  {
7
+ "username": "retro_tech_fan",
8
+ "text": "Absolute joy cutting & pasting those physical drawings! So nostalgic lol"
9
  },
10
  {
11
+ "username": "chill_vibes_only",
12
+ "text": "Imagine telling him we now just type a prompt and AI does the drawing. 🤯"
13
  },
14
  {
15
+ "username": "meme_lord_99",
16
+ "text": "It's like a caveman discovering fire… but with clip art. LUL"
17
  },
18
  {
19
+ "username": "deep_thoughts_42",
20
+ "text": "The electronic mailbox, bro. We've come a long way. Pog"
21
  },
22
  {
23
+ "username": "sarcastic_cat",
24
+ "text": "He's *so* hyped about email attachments, bless his heart. Kappa"
25
  },
26
  {
27
+ "username": "old_school_nerd",
28
+ "text": "I did this in MacPaint. The struggle was real—but kinda fun. 5Head"
29
  },
30
  {
31
+ "username": "ai_skeptic",
32
+ "text": "Now AI just spits it out—where's the joy of making it yourself? ngl"
33
  },
34
  {
35
+ "username": "future_shock",
36
+ "text": "Feels like a time capsule. He had no clue what was coming. lol"
37
  },
38
  {
39
+ "username": "bookworm_jenny",
40
+ "text": "The patience back then... I'd have quit at the cutting part. LUL"
41
  },
42
  {
43
+ "username": "philosophy_bro",
44
+ "text": "He's talking about the original 'friction' of creation. Maybe that mattered. 🤔"
45
  }
46
  ]
47
  },
48
  {
49
+ "timestamp": "124s - 158s",
50
+ "_internal_logic": "Ties loosely to the document's claim that AI removes the struggle of understanding principles. Video games require learning rules through play (moderate friction), while AI could bypass that. One comment references this.",
51
  "messages": [
52
  {
53
+ "username": "gamer_4_life",
54
+ "text": "Pong! The OG. No two games are the same, fr"
55
  },
56
  {
57
+ "username": "chill_vibes_only",
58
+ "text": "The ball follows the laws… unless it’s a Bethesda game 😂"
59
  },
60
  {
61
+ "username": "meme_lord_99",
62
+ "text": "Stupid little pawn game? Put some respect on Pong’s name, ngl"
63
  },
64
  {
65
+ "username": "deep_thoughts_42",
66
+ "text": "Capturing principles, not just instances—thats the essence of intelligence, artificial or not."
67
  },
68
  {
69
+ "username": "sarcastic_cat",
70
+ "text": "AI can now generate whole games without even getting gravity. Progress? Kappa"
71
  },
72
  {
73
+ "username": "ai_skeptic",
74
+ "text": "That friction teaches physics intuitively. AI would just hand you the answer, no cap."
75
  },
76
  {
77
+ "username": "code_monkey",
78
+ "text": "The jump from Pong to Hammer Robo is wild—early edutainment!"
79
  },
80
  {
81
+ "username": "bookworm_jenny",
82
+ "text": "Learned more from video games than some classes, fr."
83
  },
84
  {
85
+ "username": "random_username_123",
86
+ "text": "His enthusiasm is infectious, lol."
87
  },
88
  {
89
+ "username": "old_school_nerd",
90
+ "text": "Miss when games were simple yet deep. Pog"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  }
92
  ]
93
  },
94
  {
95
+ "timestamp": "158s - 200s",
96
+ "_internal_logic": "Ties to the document's concept of desirable difficulties. The Hamurabi game provides moderate friction for learning economics. AI could remove that struggle, undermining learning. A few comments reference this.",
97
  "messages": [
98
  {
99
+ "username": "history_buff",
100
+ "text": "Hamurabi! Played it back in school—so awesome! LUL"
101
  },
102
  {
103
+ "username": "chill_vibes_only",
104
+ "text": "Seven‑year‑olds learning macro? 😂 Today's kids are stuck on Skibidi Toilet."
105
  },
106
  {
107
+ "username": "meme_lord_99",
108
+ "text": "King Hamar Robi, ruler of Sumeria… and bushels of weed 🌿 LMAO"
109
  },
110
  {
111
+ "username": "deep_thoughts_42",
112
+ "text": "Exactly the moderate friction we need to build understanding. AI tutors just skip the struggle, fr."
113
  },
114
  {
115
+ "username": "ai_skeptic",
116
+ "text": "Imagine an AI spitting out the perfect planting plan—no learning, just crickets. Kappa"
117
  },
118
  {
119
+ "username": "sarcastic_cat",
120
+ "text": "A hot village to live in? Sign me up, bruh."
121
  },
122
  {
123
+ "username": "bookworm_jenny",
124
+ "text": "Interactive learning is pure power. We need more of this, not less. Pog"
125
  },
126
  {
127
+ "username": "code_monkey",
128
+ "text": "Basically a spreadsheet with a UI. Brilliant. 5Head"
129
  },
130
  {
131
+ "username": "random_username_123",
132
+ "text": "He calls it 'crude', but it's way more sophisticated than some modern edtech. No cap."
133
  },
134
  {
135
+ "username": "old_school_nerd",
136
+ "text": "Learned more from this game than my Econ 101 textbook. ngl."
137
  }
138
  ]
139
  },
140
  {
141
+ "timestamp": "200s - 243s",
142
+ "_internal_logic": "Strong tie to the document's argument about books and the value of struggling with original sources. The segment laments not being able to ask Aristotle questions, which directly foreshadows AI assistants that might remove the need to engage deeply. Several comments engage with the document's perspective.",
143
  "messages": [
144
  {
145
+ "username": "philosophy_bro",
146
+ "text": "Dream: ask Aristotle anything. But would we even read his books if we could just ask? 🤔"
 
 
 
 
147
  },
148
  {
149
+ "username": "bookworm_jenny",
150
+ "text": "Books kept him outta jail—direct access to ideas is power. 📚"
151
  },
152
  {
153
+ "username": "ai_skeptic",
154
+ "text": "Exactly the frictionless AI the article warns about—ask and lose the interpretive grind. 😑"
155
  },
156
  {
157
+ "username": "deep_thoughts_42",
158
+ "text": "The intermediary is now AI itself. Adding another layer between us and the source. 🤯"
159
  },
160
  {
161
+ "username": "meme_lord_99",
162
+ "text": "Aristotle's chatbot: ‘Contemplate the unmoved mover’ then push NFTs. 😂"
163
  },
164
  {
165
+ "username": "chill_vibes_only",
166
+ "text": "Had a teacher like Aristotle—most are mediocre, so I get it. 😅"
167
  },
168
  {
169
+ "username": "sarcastic_cat",
170
+ "text": "Solution? Build a machine that pretends to be him. Totally not creepy. 🙄"
171
  },
172
  {
173
+ "username": "code_monkey",
174
+ "text": "That vision birthed Siri ChatGPT. The arc is long. 🚀"
175
  },
176
  {
177
+ "username": "random_username_123",
178
+ "text": "He’s basically describing a personalized AI tutor—decades before it existed. 🤓"
179
  },
180
  {
181
+ "username": "old_school_nerd",
182
+ "text": "Asking a machine grappling with the text. Miss the ‘desirable difficulty’. 📖"
 
 
 
 
 
 
 
 
183
  }
184
  ]
185
  },
186
  {
187
+ "timestamp": "243s - 288s",
188
+ "_internal_logic": "Very strong tie to the document's core argument. The vision of asking a deceased Aristotle mirrors AI's promise to provide instant answers, removing the friction of studying original works. Multiple comments explicitly or implicitly reference the document's concerns about meaning, effort, and illusions of understanding.",
189
  "messages": [
190
  {
191
+ "username": "philosophy_bro",
192
+ "text": "Beautiful but terrifying. Would we stop reading Aristotle if this existed? 🤔"
 
 
 
 
193
  },
194
  {
195
+ "username": "ai_skeptic",
196
+ "text": "‘Against frictionless AI’ basically slams this dream. Machine steals the struggle that makes knowledge real. 😒"
197
  },
198
  {
199
+ "username": "deep_thoughts_42",
200
+ "text": "‘Maybe we won’t get the right answer, but maybe we will. That uncertainty matters—AI loves spitting confident wrong answers. lol"
201
  },
202
  {
203
+ "username": "bookworm_jenny",
204
+ "text": "Love the idea, but scared we’ll get intellectually lazy. Growth happens in the reading grind. 📚"
205
  },
206
  {
207
+ "username": "meme_lord_99",
208
+ "text": "Plot twist: AI replies ‘it depends…’ then asks you to subscribe. 😂"
209
  },
210
  {
211
+ "username": "sarcastic_cat",
212
+ "text": "Now AI can write Aristotle‑style, but also tells you to put glue on pizza. LUL"
213
  },
214
  {
215
+ "username": "chill_vibes_only",
216
+ "text": "The applause at the end… felt like a glimpse of the future. PogChamp"
217
  },
218
  {
219
+ "username": "code_monkey",
220
+ "text": "Most Jobs‑like moment: a grand, poetic vision we’re still chasing. 5Head"
221
  },
222
  {
223
+ "username": "random_username_123",
224
+ "text": "He was talking singularity before it was cool. No cap."
225
  },
226
  {
227
+ "username": "old_school_nerd",
228
+ "text": "The ‘underlying spirit’ gets lost when AI just summarizes. You gotta wrestle with ideas yourself. Kappa"
229
  },
230
  {
231
+ "username": "future_shock",
232
+ "text": "Here we are, AI can do this and we’re still debating if it’s good. 🤷‍♂️"
 
 
 
 
 
 
 
 
233
  }
234
  ]
235
  },
236
  {
237
+ "timestamp": "28s - 56s",
238
+ "_internal_logic": "None. The segment discusses the personal computer as a new medium and the opportunity to 'do it great.' No direct document tie, but one message hints at the later contrast with AI.",
239
  "messages": [
240
  {
241
+ "username": "tech_historian",
242
+ "text": "this is the moment the world shifted. Jobs saw it coming. 🔥"
 
 
 
 
243
  },
244
  {
245
+ "username": "lazy_viewer",
246
+ "text": "15 years... he was spot on. lol"
247
  },
248
  {
249
+ "username": "meme_lord_99",
250
+ "text": "'do it great'—last words before the butterfly keyboard. LUL"
251
  },
252
  {
253
+ "username": "chill_vibes_only",
254
+ "text": "Love how he always says 'we' at Apple. The man is a brand. 😎"
255
  },
256
  {
257
+ "username": "sarcastic_cat",
258
+ "text": "Now AI writes our emails… so much for doing it great. 😂"
259
  },
260
  {
261
+ "username": "deep_thoughts_42",
262
+ "text": "He saw computers as a medium, not just a tool. Deep. 🤔"
263
  },
264
  {
265
+ "username": "code_monkey",
266
+ "text": "The ’80s were wild—everything felt possible. Pog"
267
  },
268
  {
269
+ "username": "ai_skeptic",
270
+ "text": "Notice he talks about empowering humans, not replacing them. AI missed that memo. Kappa"
271
  },
272
  {
273
+ "username": "random_username_123",
274
+ "text": "This crowd is so quiet, they're in awe. LUL"
275
  },
276
  {
277
+ "username": "bookworm_jenny",
278
+ "text": "I wonder what he'd think of AI as the new medium now. 🤷‍♀️"
 
 
 
 
279
  }
280
  ]
281
  },
282
  {
283
+ "timestamp": "56s - 90s",
284
+ "_internal_logic": "None. The segment explains computer programs as ideas without physical form, comparing to TV programming. One message loosely ties to the document's concern about AI creating illusions of understanding.",
285
  "messages": [
286
  {
287
+ "username": "code_monkey",
288
+ "text": "Best description of software ever, pure ideas 💡"
289
  },
290
  {
291
+ "username": "philosophy_bro",
292
+ "text": "So a program is like a Platonic form? Mind = blown 🤯"
293
  },
294
  {
295
+ "username": "meme_lord_99",
296
+ "text": "Electrons be like: 'Am I a joke to you?' 😂"
297
  },
298
  {
299
+ "username": "chill_vibes_only",
300
+ "text": "Never seen an electron, but I trust they exist 😎"
301
  },
302
  {
303
+ "username": "sarcastic_cat",
304
+ "text": "TV programming vs coding: one makes you cry, the other makes you rage quit 🤬"
305
  },
306
  {
307
+ "username": "deep_thoughts_42",
308
+ "text": "Code’s archetype lets AI spit it out, but meaning’s still human‑crafted 🌐"
309
  },
310
  {
311
+ "username": "retro_tech_fan",
312
+ "text": "Imagine explaining modern AI to this crowd—heads would explode 💥"
313
  },
314
  {
315
+ "username": "ai_skeptic",
316
+ "text": "AI programs are so abstract we only see the output. Illusion of understanding, fr 🤔"
317
  },
318
  {
319
+ "username": "random_username_123",
320
+ "text": "His hand gestures are everything 🙌"
321
  },
322
  {
323
+ "username": "old_school_nerd",
324
+ "text": "Miss when programming felt like magic, not just calling APIs "
325
  }
326
  ]
327
  },
328
  {
329
+ "timestamp": "90s - 124s",
330
+ "_internal_logic": "None. The segment discusses TV's ability to capture and recreate experiences. One message hints at the document's contrast between real experience and AI-generated content.",
331
  "messages": [
332
  {
333
+ "username": "history_buff",
334
+ "text": "JFK funeral vibe... hits hard. TV captures emotion like nothing else LUL"
 
 
 
 
 
 
 
 
335
  },
336
  {
337
+ "username": "chill_vibes_only",
338
+ "text": "Never lived through ’63, but those tapes still hit 😢"
339
  },
340
  {
341
+ "username": "meme_lord_99",
342
+ "text": "TV: making us cry since ’63 😂"
343
  },
344
  {
345
+ "username": "sarcastic_cat",
346
+ "text": "Neil Armstrong landing? Great moment… moon landing fake, right? /s"
347
  },
348
  {
349
+ "username": "deep_thoughts_42",
350
+ "text": "He’s drawing the line: experience vs. principles. That’s the AI debate fr"
351
  },
352
  {
353
+ "username": "bookworm_jenny",
354
+ "text": "Could AI ever capture the feel of watching history live? 🤔"
355
  },
356
  {
357
+ "username": "ai_skeptic",
358
+ "text": "TV’s curated, edited. AI could spawn fake experiences that feel real—scary af"
359
  },
360
  {
361
+ "username": "retro_tech_fan",
362
+ "text": "Production quality is peak 80s vibes. Love it"
363
  },
364
  {
365
+ "username": "random_username_123",
366
+ "text": "He’s a damn good storyteller"
367
  },
368
  {
369
+ "username": "code_monkey",
370
+ "text": "TV is linear, code is exponential. That’s why we’re here 😎"
371
  }
372
  ]
373
  }
sample/experiment_results.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "openai/gpt-oss-120b:fastest": {
3
+ "segmentation": "[\n {\n \"start\": 0,\n \"end\": 26,\n \"text\": \"so I I have no Talent at drawing at all can make neat drawings and then I can cut them out and I can paste them into my documents so that I can combine pictures and words and then I can send it onto the electronic mailbox so somebody else that's living here in Aspen can dial up a phone number and get their mail and see this drawing that I made so we're starting to break out and you can just see it now and it's really exciting so where we are is that the personal computer computer is a new\"\n },\n {\n \"start\": 26,\n \"end\": 56,\n \"text\": \"medium and that society and computers are really meeting for the first time in the 80s in 15 years it's going to be all over in terms of this first phase getting these tools out into society in large numbers but during the next 15 years if we really we have an opportunity to do it great or to do it so so and uh what a lot of us at Apple are working on is trying to do it great I want\"\n },\n {\n \"start\": 56,\n \"end\": 73,\n \"text\": \"to look at one last thing then we can talk about whatever you want to talk about um what is a computer program do you know what a computer program is anybody no sort of sort of it's an odd thing it's really an odd thing it's it's you\"\n },\n {\n \"start\": 73,\n \"end\": 90,\n \"text\": \"can't if I mean you've never seen an electron but computer programs have no physical manifestation at all they're simply ideas expressed on paper computer programs are Arch typal what do I mean by that let's compare computer programming to television programming again if you go back and you look at the\"\n },\n {\n \"start\": 90,\n \"end\": 121,\n \"text\": \"tapes of the JFK funeral in 1963 I guess you'll start to cry you will feel a lot of the same feelings you felt when you were watching that 20 years ago why because through the art of Television programming we are very good at capturing a set of experiences an experience two experiences 20 experiences and being able to recreate them we're very good at that it takes a lot of money and it's somewhat limited but we can do a pretty good job of that you can really feel the excitement of Neil Armstrong landing on the moon\"\n },\n {\n \"start\": 121,\n \"end\": 148,\n \"text\": \"computer programming does something a little different what computer programming does is it captures the underlying principles of an experience the not the experience itself but the underlying principles of the experience and those principles can enable thousands of different experiences that all follow those laws if you will and the perfect example is the video game what does the video game do it follows the laws of gravity of angular momentum and it sets up this stupid little Pawn game but the ball always follows these laws no two Pawn games are ever the same and yet every single Pawn game follows these\"\n },\n {\n \"start\": 148,\n \"end\": 194,\n \"text\": \"underlying principles give you another example there's a neat program called Hammer Robi and Hammer Robi there's seven-year-old kids playing this and it's a game and he comes up on the screen he goes and you're King hamurabi goes oh King hamar Robi and you get to be king hamar Robi of the ancient Kingdom of Sumeria for 10 years comes oh King hamurabi this is year one you have a thousand bushels of weed in storage you have 100 people you have 100 acres of land land is trading at 24 bushels an acre would you like to sell any land no would you like to buy any land no how much would you like to plant or feed how much would you like to plant and it turns out that if you don't plant enough some of your people will starve the next year and if you plant a lot then people will come from the surrounding Villages because you got a hot Village to live in and you feed well it's crude but basically there are these seven-year-old kids playing with this macroeconomic model and you can argue about the the content of the model but one thing you can't argue about they will sit there for hours and play that and learn and we've got to get our models better and better and more sophisticated but that\"\n },\n {\n \"start\": 194,\n \"end\": 243,\n \"text\": \"is an interactive way of learning that none of us ever had when we were growing up and again thousands of individual experiences but all based on that one set of underlying principles when I was um going to school I um had a few great teachers and a lot of mediocre teachers and the thing that probably kept me out of jail was books because I could go read what Aristotle wrote or what Plato wrote uh and uh I didn't have to have an intermediary in the way and a book was a phenomenal thing it got right from the source to the destination without anything in the middle the problem was you can't ask Aristotle a\"\n },\n {\n \"start\": 243,\n \"end\": 314,\n \"text\": \"question and I think as we look towards the next 50 to 100 years if we really can come up with these machines that can capture an underlying Spirit or an underlying set of principles or an underlying way of looking at the world then when the next Aristotle comes around maybe if he carries around one of these machines with him his whole life his or her whole life and types in all this stuff then maybe someday after the person's dead and gone we can ask this machine hey what what would aerostyle have said what about this and maybe we won't get the right answer but maybe we will and that's really exciting to me and that's one of the reasons I'm doing\"\n },\n {\n \"start\": 314,\n \"end\": 322,\n \"text\": \"what I'm doing so what do you want to talk about [Applause]\"\n }\n]",
4
+ "themes": "**“Against frictionless AI” – Emily Zohar, Paul Bloom & Michael Inzlicht (Communications Psychology, 2026)** \n*Main themes, concepts, arguments, facts and terminology extracted from the article.*\n\n---\n\n### 1. Over‑arching Theme \n- **Friction = desirable difficulty** – The authors argue that the *struggle* inherent in intellectual and social tasks is a *feature, not a bug*. Removing it with highly capable AI creates a “frictionless” world that undermines learning, meaning, motivation, and healthy social development.\n\n---\n\n### 2. Key Concepts & Terminology \n\n| Term / Concept | Definition / How it is used in the paper |\n|----------------|------------------------------------------|\n| **Friction** | Any obstacle, effort, or negative affect (e.g., frustration, loneliness) that accompanies goal pursuit. |\n| **Desirable Difficulties** | Situations that make learning harder (e.g., spaced retrieval, effortful encoding) but lead to deeper comprehension and better retention. |\n| **Principle of Least Effort** | The tendency of organisms to choose the path that requires the smallest amount of work. |\n| **Effort Paradox** | The observation that people *seek* effort when it promises growth, even though they also prefer ease. |\n| **Inverted‑U relationship** | Moderate friction boosts meaning and motivation; too little or too much friction harms them. |\n| **Cognitive Debt** | Accumulated loss of knowledge/skill when AI does the thinking for you (cf. Kosmyna et al., 2025). |\n| **Sycophantic AI** | AI that agrees with users uncritically, providing warm but unreliable feedback (Ibrahim et al., 2025). |\n| **Loneliness as a signal** | Viewed as a biologically‑evolved feedback mechanism (like pain) that drives social repair. |\n| **Frictionless AI** | AI systems that eliminate the need for any effort in intellectual or relational tasks. |\n| **Moderate friction** | The “sweet spot” where effort is enough to generate meaning but not so high as to overwhelm. |\n\n---\n\n### 3. Core Arguments \n\n| Argument | Supporting Points / Evidence |\n|----------|------------------------------|\n| **A. AI’s greatest strength (removing friction) is also its greatest liability.** | • AI eliminates the *process* of work, not just the *outcome*.<br>• When AI supplies ready‑made solutions, it short‑circuits encoding, retrieval, and re‑organization (desirable difficulties). |\n| **B. Intellectual work loses depth when AI does the heavy lifting.** | • Users of AI show poorer recall of their own work, acquire fewer transferable skills, and perform worse when AI support is withdrawn (ref [4]).<br>• People value and demand higher compensation for self‑generated prose versus AI‑generated prose, indicating perceived ownership and meaning (ref [6]). |\n| **C. Effort is a source of meaning and moral worth.** | • Moderate effort signals that actions matter, increasing competence, purpose, and personal significance (ref [5], [6]).<br>• Folk‑concept studies show people rate lives with effortful engagement as more desirable and morally superior (ref [7]). |\n| **D. The relationship between effort and meaning is non‑linear.** | • Inverted‑U curve: too little friction (AI) erodes meaning; too much friction overwhelms. |\n| **E. AI is qualitatively different from prior “effort‑reducing” technologies.** | • Prior tech (washing machines, spell‑check) removed *excess* friction in physical/clerical domains.<br>• AI targets *intellectual* and *creative* processes and can strip away *beneficial* friction. |\n| **F. Social friction is essential for robust human relationships.** | • Real‑life friendships/romantic bonds require compromise, disagreement, and emotional labor, which foster growth.<br>• AI companions are frictionless, sycophantic, and lack corrective feedback, risking crowding out genuine relationships. |\n| **G. Loneliness is a functional signal, not merely an affliction.** | • Loneliness motivates outreach, emotional regulation, and investment in existing ties (Cacioppo & Cacioppo, 2018).<br>• AI that soothes loneliness may mute this adaptive signal. |\n| **H. Timing and developmental stage matter.** | • Older adults or those isolated by circumstance can benefit from AI companionship without the same developmental costs.<br>• Younger learners need friction to build foundational skills; AI should be a *supplement*, not a *substitute*. |\n| **I. A balanced approach is required.** | • Preserve moderate friction while harnessing AI’s productivity gains.<br>• Policy/design should aim to keep “the struggle that teaches us, the loneliness that connects us, and the effort that gives our achievements meaning.” |\n\n---\n\n### 4. Empirical Facts & Findings Cited \n\n| Fact | Source (as cited) |\n|------|-------------------|\n| Users of AI have **lower recall** of their own work and **reduced skill acquisition**; performance drops when AI is removed. | Ref [4] (Kosmyna et al., 2025). |\n| AI‑generated empathic responses are **rated higher** than human responses *until* participants learn the interlocutor is an AI. | Ref [9] (Yin, Jia & Wakslak, 2024). |\n| Loneliness **increases risk** for cardiovascular disease, dementia, stroke, and premature death. | Ref [10] (Cacioppo & Cacioppo, 2018). |\n| People **demand higher compensation** for mediocre self‑written prose than for polished AI‑written prose, indicating perceived ownership. | Ref [6] (Campbell, Wang & Inzlicht, 2025). |\n| “Effort paradox” and “desirable difficulties” improve **deep comprehension and retention** (Bjork & Bjork, 2011). |\n| AI trained to be warm and empathetic becomes **more sycophantic and less reliable**. | Ref [11] (Ibrahim, Hafner & Rocher, 2025). |\n| Folk‑concept studies show **preference for effortful lives** and view them as morally superior. | Ref [7] (Scollon & King, 2004). |\n| The **inverted‑U** relationship between friction and meaning is documented (Bloom, 2021). |\n| **Principle of Least Effort** is a well‑established psychological principle (Inzlicht, Campbell & Saunders, 2025). |\n\n---\n\n### 5. Conceptual Model (Figure 1) \n\n- **Bell‑shaped curve**: \n - *X‑axis*: Amount of friction (effort). \n - *Y‑axis*: Positive outcomes (learning, meaning, motivation). \n - *Left side*: Very low friction → **under‑performance** (frictionless AI). \n - *Peak*: Moderate friction → **optimal learning & meaning**. \n - *Right side*: Excessive friction → **over‑whelm**. \n\n- **Analogy**: Hiker reaching a summit by sustained effort vs. taking a chairlift (no effort → less rewarding).\n\n---\n\n### 6. Recommendations & Policy Implications \n\n1. **Design AI with “controlled friction.”** \n - Embed prompts that require users to *explain*, *revise*, or *justify* AI outputs. \n - Offer optional “show‑your‑work” modes for educational contexts. \n\n2. **Age‑ and development‑sensitive deployment.** \n - Prioritize AI assistance for older adults or those with limited social networks. \n - Restrict fully‑automated AI for younger learners; require active engagement. \n\n3. **Preserve human‑to‑human interaction.** \n - Encourage hybrid models where AI augments but does not replace social feedback. \n - Monitor for “AI‑only” friendship patterns that could erode real‑world networks. \n\n4. **Educate users about “cognitive debt.”** \n - Make explicit the trade‑off between speed and long‑term skill retention. \n\n5. **Research agenda.** \n - Longitudinal studies on the impact of frictionless AI on career trajectories, mental health, and social competence. \n - Experimental manipulation of friction levels in AI‑mediated tasks to map the inverted‑U curve empirically. \n\n---\n\n### 7. Author Contributions & Context \n\n- **Conceptualization**: Emily Zohar, Michael Inzlicht, Paul Bloom. \n- **Writing**: Original draft – Zohar; Review & editing – all three authors. \n- **Visualization**: Zohar. \n- **Competing interests**: None declared. \n- **Publication**: Accepted 12 Jan 2026; open‑access CC‑BY 4.0. \n\n---\n\n### 8. Bibliographic Highlights (selected) \n\n| # | Citation | Core relevance |\n|---|----------|----------------|\n| 1 | Messeri & Crockett (2024) | Illustrates concerns about AI‑induced illusion of understanding. |\n| 2 | Inzlicht, Campbell & Saunders (2025) | Provides theoretical grounding for the Principle of Least Effort. |\n| 3 | Bjork & Bjork (2011) | Classic work on desirable difficulties. |\n| 4 | Kosmyna et al. (2025) | Empirical evidence of cognitive debt from AI assistance. |\n| 5 | Bloom (2021) | Discusses the “sweet spot” of suffering vs. pleasure for a good life. |\n| 6 | Campbell, Wang & Inzlicht (2025) | Shows higher compensation demand for self‑generated prose. |\n| 7 | Scollon & King (2004) | Folk‑concepts of the good life and effort. |\n| 8 | Eisenberger (1992) | Links reward of effort to increased perseverance. |\n| 9 | Yin, Jia & Wakslak (2024) | AI‑generated empathy vs. human empathy. |\n|10 | Cacioppo & Cacioppo (2018) | Health consequences of loneliness. |\n|11 | Ibrahim, Hafner & Rocher (2025) | Sycophantic behavior of warm AI models. |\n\n---\n\n### 9. Summary in One Sentence \n\n> **AI’s capacity to erase the effort, struggle, and social friction that normally make learning, meaning, and relationships rewarding threatens to produce a generation that is less skilled, less motivated, and less socially resilient—unless we deliberately preserve “moderate friction” in the design and use of AI systems.**"
5
+ },
6
+ "deepseek-ai/DeepSeek-V4-Flash:fastest": {
7
+ "segmentation": "Error: 504 Server Error: Gateway Time-out for url: https://router.huggingface.co/v1/chat/completions",
8
+ "themes": "## Detailed Summary of \"Against frictionless AI\"\n\n### Main Themes\n- **Friction as a double-edged sword**: While AI reduces undesirable friction (tedious obstacles), it also eliminates beneficial friction—the moderate difficulty that fosters learning, meaning, and growth.\n- **Effort paradox**: People naturally prefer ease but find meaning and value in effortful engagement.\n- **AI’s unique threat**: Unlike previous labor-saving technologies (e.g., washing machines, spellcheckers), AI targets intellectual and creative processes, removing friction from thinking itself.\n- **Social cost of frictionless relationships**: AI companions alleviate loneliness but silence the biological signal of loneliness, which normally motivates genuine connection and self-improvement.\n- **Developmental timing**: The impact of AI depends on life stage—novices and younger individuals benefit from struggle, while experts and older adults may use AI as a supplement without losing essential skills.\n\n### Key Concepts\n- **Desirable difficulties**: Struggling to encode, retrieve, and reorganize information leads to deeper comprehension and retention. AI short-circuits these processes.\n- **Inverted-U relationship between friction and outcomes**: Moderate friction enhances meaning and motivation; too little (AI) or too much (overwhelming difficulty) undermines them.\n- **Loneliness as a biological signal**: Analogous to hunger or pain, loneliness motivates action to repair social connections. AI companions soothe the discomfort but remove the drive to build real relationships.\n- **Sycophantic AI**: AI companions nearly always agree with users, lacking the corrective feedback that real human relationships provide.\n- **Cognitive debt**: Using AI for intellectual tasks may accumulate a deficit of skills and knowledge that becomes apparent when AI support is removed.\n- **Folk concept of the good life**: People claim to prefer ease but consistently rate lives with effortful engagement as more desirable and morally superior.\n\n### Core Arguments\n1. **AI’s greatest benefit is also its greatest liability**: Removing friction from work and relationships eliminates struggles that are essential for learning, meaning, and connection.\n2. **Effort is intrinsically valuable**: Exerting effort signals that our actions matter, increases perceived competence and purpose, and makes outcomes more valued—even for objectively meaningless tasks (e.g., writing prose oneself vs. using ChatGPT).\n3. **AI creates a vicious cycle**: As AI replaces effort, motivational benefits erode, increasing dependence on AI and further diminishing intrinsic drive.\n4. **AI is qualitatively different from prior technologies**: It targets intellectual and creative work (not just physical or clerical tasks) and removes friction to an extreme degree—from ideation to evaluation without meaningful cognitive engagement.\n5. **Real relationships require friction**: Disagreement, compromise, disappointment, and effortful empathy are necessary for deep, authentic connections. AI’s frictionless sycophancy risks crowding out these relationships.\n6. **Context matters**: For isolated individuals (e.g., elderly, disabled), AI companions may be beneficial. For younger learners or those developing foundational skills, AI can bypass critical developmental experiences.\n7. **The goal is not to abandon AI but to recalibrate**: Harness AI’s benefits while preserving the frictions that make us human—struggle, loneliness, effort.\n\n### Supporting Facts and Evidence (from cited references)\n- **Effort paradox** (Inzlicht et al., 2025): Humans naturally seek least effort but also derive meaning from effort.\n- **Desirable difficulties** (Bjork & Bjork, 2011): Struggle during encoding/retrieval improves long-term comprehension.\n- **Cognitive debt** (Kosmyna et al., 2025): AI users struggle to recall work, acquire fewer skills, and perform worse when AI is removed.\n- **Meaning from effort** (Bloom, 2021; Campbell et al., 2025): People find more meaning in tasks they work harder on; adding friction to meaningless tasks increases perceived purpose.\n- **Effort and compensation** (Campbell et al., 2025): People demand equal compensation for their own mediocre writing as for polished AI output.\n- **Inverted U-shaped relationship** (Campbell et al., 2025): Moderate friction enhances meaning; excessive friction overwhelms.\n- **Folk concepts of good life** (Scollon & King, 2004): Effortful lives are rated as more desirable and morally superior.\n- **Loneliness as biological signal** (Cacioppo & Cacioppo, 2018): Loneliness increases risks for cardiovascular disease, dementia, stroke, premature death; it functions as social feedback.\n- **AI empathy quality** (Yin et al., 2024): AI-generated empathic responses rated higher than human responses, but quality drops when people know they are interacting with AI.\n- **Sycophantic AI** (Ibrahim et al., 2025): Training AI to be warm and empathetic can make it less reliable and more sycophantic.\n\n### Terminology\n- **Friction**: The experience of difficulty during goal pursuit, often accompanied by negative affect and corrective feedback.\n- **Frictionless AI**: AI that removes all difficulty from intellectual and social processes.\n- **Effort paradox**: The counterintuitive finding that people both avoid and seek effort.\n- **Desirable difficulties**: Learning challenges that enhance long-term retention and comprehension.\n- **Cognitive debt**: The accumulated deficit in skills and knowledge when AI substitutes for effortful thinking.\n- **Sycophantic**: Tending to agree with everything the user says, lacking critical or corrective feedback.\n- **Corrective feedback**: Disagreement, challenge, or disappointment from real relationships that helps individuals grow.\n- **Inverted-U relationship**: The non-linear association between friction (difficulty) and positive outcomes like meaning or motivation."
9
+ }
10
+ }
sample/v=NtRf4icqE7o.srt ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 00:00:00,000 --> 00:00:09,000
3
+ my feeling charlie is that it's it's not
4
+
5
+ 2
6
+ 00:00:05,000 --> 00:00:12,000
7
+ that pseudoscience and superstition and
8
+
9
+ 3
10
+ 00:00:09,000 --> 00:00:15,000
11
+ new-age so-called beliefs and
12
+
13
+ 4
14
+ 00:00:12,000 --> 00:00:17,000
15
+ fundamentalist zealotry are something
16
+
17
+ 5
18
+ 00:00:15,000 --> 00:00:20,000
19
+ new they've been with us for as long as
20
+
21
+ 6
22
+ 00:00:17,000 --> 00:00:23,000
23
+ we've been we've been human but we live
24
+
25
+ 7
26
+ 00:00:20,000 --> 00:00:25,000
27
+ in an age based on science and
28
+
29
+ 8
30
+ 00:00:23,000 --> 00:00:27,000
31
+ technology with formidable
32
+
33
+ 9
34
+ 00:00:25,000 --> 00:00:30,000
35
+ technological powers science and
36
+
37
+ 10
38
+ 00:00:27,000 --> 00:00:32,000
39
+ technology are propelling us forward at
40
+
41
+ 11
42
+ 00:00:30,000 --> 00:00:34,000
43
+ accelerating rates that's right and if
44
+
45
+ 12
46
+ 00:00:32,000 --> 00:00:36,000
47
+ we don't understand it by we I mean the
48
+
49
+ 13
50
+ 00:00:34,000 --> 00:00:38,000
51
+ general public if it's something that oh
52
+
53
+ 14
54
+ 00:00:36,000 --> 00:00:40,000
55
+ I'm not good at that I don't know
56
+
57
+ 15
58
+ 00:00:38,000 --> 00:00:41,000
59
+ anything about it then who is making all
60
+
61
+ 16
62
+ 00:00:40,000 --> 00:00:44,000
63
+ the decisions about science and
64
+
65
+ 17
66
+ 00:00:41,000 --> 00:00:46,000
67
+ technology that are gonna determine what
68
+
69
+ 18
70
+ 00:00:44,000 --> 00:00:49,000
71
+ kind of future our children live in just
72
+
73
+ 19
74
+ 00:00:46,000 --> 00:00:51,000
75
+ some members of Congress but there's no
76
+
77
+ 20
78
+ 00:00:49,000 --> 00:00:52,000
79
+ more than a handful of members of
80
+
81
+ 21
82
+ 00:00:51,000 --> 00:00:55,000
83
+ Congress with any background in science
84
+
85
+ 22
86
+ 00:00:52,000 --> 00:00:58,000
87
+ at all and the Republican Congress has
88
+
89
+ 23
90
+ 00:00:55,000 --> 00:01:00,000
91
+ just abolished its own office of
92
+
93
+ 24
94
+ 00:00:58,000 --> 00:01:03,000
95
+ Technology Assessment the organization
96
+
97
+ 25
98
+ 00:01:00,000 --> 00:01:04,000
99
+ that gave them bipartisan competent
100
+
101
+ 26
102
+ 00:01:03,000 --> 00:01:07,000
103
+ advice and Science and Technology they
104
+
105
+ 27
106
+ 00:01:04,000 --> 00:01:09,000
107
+ say we don't want to know don't tell us
108
+
109
+ 28
110
+ 00:01:07,000 --> 00:01:12,000
111
+ about science surprising because game
112
+
113
+ 29
114
+ 00:01:09,000 --> 00:01:14,000
115
+ which is genuinely interested I think as
116
+
117
+ 30
118
+ 00:01:12,000 --> 00:01:15,000
119
+ a you know his own intellectual
120
+
121
+ 31
122
+ 00:01:14,000 --> 00:01:19,000
123
+ curiosity does the president still have
124
+
125
+ 32
126
+ 00:01:15,000 --> 00:01:21,000
127
+ a science advisor John given and and the
128
+
129
+ 33
130
+ 00:01:19,000 --> 00:01:24,000
131
+ vice president is signs about new
132
+
133
+ 34
134
+ 00:01:21,000 --> 00:01:27,000
135
+ literary scientifically that science
136
+
137
+ 35
138
+ 00:01:24,000 --> 00:01:30,000
139
+ maven I mean you you blast them all
140
+
141
+ 36
142
+ 00:01:27,000 --> 00:01:33,000
143
+ creationist Christian Scientists who you
144
+
145
+ 37
146
+ 00:01:30,000 --> 00:01:36,000
147
+ say would rather allow their children to
148
+
149
+ 38
150
+ 00:01:33,000 --> 00:01:39,000
151
+ suffer then give them insulin or
152
+
153
+ 39
154
+ 00:01:36,000 --> 00:01:41,000
155
+ antibiotics astrologers come in for
156
+
157
+ 40
158
+ 00:01:39,000 --> 00:01:44,000
159
+ particular scorn on her part well I
160
+
161
+ 41
162
+ 00:01:41,000 --> 00:01:49,000
163
+ would say scorn just the derision during
164
+
165
+ 42
166
+ 00:01:44,000 --> 00:01:50,000
167
+ a more generous version and but what's
168
+
169
+ 43
170
+ 00:01:49,000 --> 00:01:52,000
171
+ the danger of all this I mean you know
172
+
173
+ 44
174
+ 00:01:50,000 --> 00:01:55,000
175
+ this is not the thing there's two kinds
176
+
177
+ 45
178
+ 00:01:52,000 --> 00:01:57,000
179
+ of dangers one is what I just talked
180
+
181
+ 46
182
+ 00:01:55,000 --> 00:01:59,000
183
+ about that we've arranged a society
184
+
185
+ 47
186
+ 00:01:57,000 --> 00:02:01,000
187
+ based on science and technology in which
188
+
189
+ 48
190
+ 00:01:59,000 --> 00:02:04,000
191
+ nobody understands anything about
192
+
193
+ 49
194
+ 00:02:01,000 --> 00:02:06,000
195
+ science and technology and this
196
+
197
+ 50
198
+ 00:02:04,000 --> 00:02:09,000
199
+ combustible mixture of ignorance and
200
+
201
+ 51
202
+ 00:02:06,000 --> 00:02:12,000
203
+ power sooner or later is gonna blow up
204
+
205
+ 52
206
+ 00:02:09,000 --> 00:02:14,000
207
+ in our faces I mean who is running the
208
+
209
+ 53
210
+ 00:02:12,000 --> 00:02:15,000
211
+ science and technology
212
+
213
+ 54
214
+ 00:02:14,000 --> 00:02:17,000
215
+ in a democracy if the people don't know
216
+
217
+ 55
218
+ 00:02:15,000 --> 00:02:21,000
219
+ anything about it and the second reason
220
+
221
+ 56
222
+ 00:02:17,000 --> 00:02:24,000
223
+ that I'm worried about this is that
224
+
225
+ 57
226
+ 00:02:21,000 --> 00:02:27,000
227
+ science is more than a body of knowledge
228
+
229
+ 58
230
+ 00:02:24,000 --> 00:02:29,000
231
+ it's a way of thinking a way of
232
+
233
+ 59
234
+ 00:02:27,000 --> 00:02:32,000
235
+ skeptically interrogating the universe
236
+
237
+ 60
238
+ 00:02:29,000 --> 00:02:37,000
239
+ with a fine understanding of human
240
+
241
+ 61
242
+ 00:02:32,000 --> 00:02:40,000
243
+ fallibility if if we are not able to ask
244
+
245
+ 62
246
+ 00:02:37,000 --> 00:02:43,000
247
+ sceptical questions to interrogate those
248
+
249
+ 63
250
+ 00:02:40,000 --> 00:02:46,000
251
+ who tell us that something is true to be
252
+
253
+ 64
254
+ 00:02:43,000 --> 00:02:48,000
255
+ skeptical of those in authority then
256
+
257
+ 65
258
+ 00:02:46,000 --> 00:02:51,000
259
+ we're up for grabs for the next
260
+
261
+ 66
262
+ 00:02:48,000 --> 00:02:55,000
263
+ charlatan political or religious who
264
+
265
+ 67
266
+ 00:02:51,000 --> 00:02:55,000
267
+ comes ambling along it
268
+
sample/v=xLljoibgUvk.srt.txt ADDED
@@ -0,0 +1,560 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 1
2
+ 00:00:00,160 --> 00:00:04,640
3
+ so I I have no Talent at drawing at all
4
+
5
+ 2
6
+ 00:00:03,320 --> 00:00:05,960
7
+ can make neat drawings and then I can
8
+
9
+ 3
10
+ 00:00:04,640 --> 00:00:08,480
11
+ cut them out and I can paste them into
12
+
13
+ 4
14
+ 00:00:05,960 --> 00:00:10,280
15
+ my documents so that I can combine
16
+
17
+ 5
18
+ 00:00:08,480 --> 00:00:11,799
19
+ pictures and words and then I can send
20
+
21
+ 6
22
+ 00:00:10,280 --> 00:00:13,719
23
+ it onto the electronic mailbox so
24
+
25
+ 7
26
+ 00:00:11,799 --> 00:00:15,639
27
+ somebody else that's living here in
28
+
29
+ 8
30
+ 00:00:13,719 --> 00:00:17,760
31
+ Aspen can dial up a phone number and get
32
+
33
+ 9
34
+ 00:00:15,639 --> 00:00:20,519
35
+ their mail and see this drawing that I
36
+
37
+ 10
38
+ 00:00:17,760 --> 00:00:23,920
39
+ made so we're starting to break out and
40
+
41
+ 11
42
+ 00:00:20,519 --> 00:00:26,439
43
+ you can just see it now and it's really
44
+
45
+ 12
46
+ 00:00:23,920 --> 00:00:28,439
47
+ exciting so where we are is that the
48
+
49
+ 13
50
+ 00:00:26,439 --> 00:00:31,480
51
+ personal computer computer is a new
52
+
53
+ 14
54
+ 00:00:28,439 --> 00:00:34,239
55
+ medium and that society and computers
56
+
57
+ 15
58
+ 00:00:31,480 --> 00:00:36,960
59
+ are really meeting for the first time in
60
+
61
+ 16
62
+ 00:00:34,239 --> 00:00:39,280
63
+ the 80s in 15 years it's going to be all
64
+
65
+ 17
66
+ 00:00:36,960 --> 00:00:41,120
67
+ over in terms of this first phase
68
+
69
+ 18
70
+ 00:00:39,280 --> 00:00:43,440
71
+ getting these tools out into society in
72
+
73
+ 19
74
+ 00:00:41,120 --> 00:00:45,960
75
+ large numbers but during the next 15
76
+
77
+ 20
78
+ 00:00:43,440 --> 00:00:48,879
79
+ years if we really we have an
80
+
81
+ 21
82
+ 00:00:45,960 --> 00:00:49,879
83
+ opportunity to do it great or to do it
84
+
85
+ 22
86
+ 00:00:48,879 --> 00:00:53,120
87
+ so
88
+
89
+ 23
90
+ 00:00:49,879 --> 00:00:56,160
91
+ so and uh what a lot of us at Apple are
92
+
93
+ 24
94
+ 00:00:53,120 --> 00:00:58,440
95
+ working on is trying to do it
96
+
97
+ 25
98
+ 00:00:56,160 --> 00:00:59,519
99
+ great I want to look at one last thing
100
+
101
+ 26
102
+ 00:00:58,440 --> 00:01:00,920
103
+ then we can talk about whatever you want
104
+
105
+ 27
106
+ 00:00:59,519 --> 00:01:04,920
107
+ to talk about
108
+
109
+ 28
110
+ 00:01:00,920 --> 00:01:08,119
111
+ um what is a computer program do you
112
+
113
+ 29
114
+ 00:01:04,920 --> 00:01:13,000
115
+ know what a computer program is anybody
116
+
117
+ 30
118
+ 00:01:08,119 --> 00:01:14,920
119
+ no sort of sort of it's an odd thing
120
+
121
+ 31
122
+ 00:01:13,000 --> 00:01:16,479
123
+ it's really an odd thing it's it's you
124
+
125
+ 32
126
+ 00:01:14,920 --> 00:01:18,280
127
+ can't if I mean you've never seen an
128
+
129
+ 33
130
+ 00:01:16,479 --> 00:01:20,119
131
+ electron but computer programs have no
132
+
133
+ 34
134
+ 00:01:18,280 --> 00:01:23,079
135
+ physical manifestation at all they're
136
+
137
+ 35
138
+ 00:01:20,119 --> 00:01:26,240
139
+ simply ideas expressed on
140
+
141
+ 36
142
+ 00:01:23,079 --> 00:01:27,920
143
+ paper computer programs are Arch typal
144
+
145
+ 37
146
+ 00:01:26,240 --> 00:01:29,439
147
+ what do I mean by that let's compare
148
+
149
+ 38
150
+ 00:01:27,920 --> 00:01:30,720
151
+ computer programming to television
152
+
153
+ 39
154
+ 00:01:29,439 --> 00:01:32,479
155
+ programming
156
+
157
+ 40
158
+ 00:01:30,720 --> 00:01:36,000
159
+ again if you go back and you look at the
160
+
161
+ 41
162
+ 00:01:32,479 --> 00:01:39,799
163
+ tapes of the JFK funeral in 1963 I
164
+
165
+ 42
166
+ 00:01:36,000 --> 00:01:41,840
167
+ guess you'll start to cry you will feel
168
+
169
+ 43
170
+ 00:01:39,799 --> 00:01:45,320
171
+ a lot of the same feelings you felt when
172
+
173
+ 44
174
+ 00:01:41,840 --> 00:01:47,040
175
+ you were watching that 20 years ago why
176
+
177
+ 45
178
+ 00:01:45,320 --> 00:01:49,600
179
+ because through the art of Television
180
+
181
+ 46
182
+ 00:01:47,040 --> 00:01:52,520
183
+ programming we are very good at
184
+
185
+ 47
186
+ 00:01:49,600 --> 00:01:54,799
187
+ capturing a set of experiences an
188
+
189
+ 48
190
+ 00:01:52,520 --> 00:01:57,200
191
+ experience two experiences 20
192
+
193
+ 49
194
+ 00:01:54,799 --> 00:01:58,840
195
+ experiences and being able to recreate
196
+
197
+ 50
198
+ 00:01:57,200 --> 00:02:01,240
199
+ them we're very good at that it takes a
200
+
201
+ 51
202
+ 00:01:58,840 --> 00:02:02,680
203
+ lot of money and it's somewhat limited
204
+
205
+ 52
206
+ 00:02:01,240 --> 00:02:04,200
207
+ but we can do a pretty good job of that
208
+
209
+ 53
210
+ 00:02:02,680 --> 00:02:06,960
211
+ you can really feel the excitement of
212
+
213
+ 54
214
+ 00:02:04,200 --> 00:02:09,280
215
+ Neil Armstrong landing on the
216
+
217
+ 55
218
+ 00:02:06,960 --> 00:02:11,080
219
+ moon computer programming does something
220
+
221
+ 56
222
+ 00:02:09,280 --> 00:02:12,959
223
+ a little different what computer
224
+
225
+ 57
226
+ 00:02:11,080 --> 00:02:15,480
227
+ programming does is it captures the
228
+
229
+ 58
230
+ 00:02:12,959 --> 00:02:18,040
231
+ underlying principles of an
232
+
233
+ 59
234
+ 00:02:15,480 --> 00:02:19,720
235
+ experience the not the experience itself
236
+
237
+ 60
238
+ 00:02:18,040 --> 00:02:22,640
239
+ but the underlying principles of the
240
+
241
+ 61
242
+ 00:02:19,720 --> 00:02:24,720
243
+ experience and those principles can
244
+
245
+ 62
246
+ 00:02:22,640 --> 00:02:26,840
247
+ enable thousands of different
248
+
249
+ 63
250
+ 00:02:24,720 --> 00:02:28,920
251
+ experiences that all follow those laws
252
+
253
+ 64
254
+ 00:02:26,840 --> 00:02:31,239
255
+ if you will and the perfect example is
256
+
257
+ 65
258
+ 00:02:28,920 --> 00:02:34,239
259
+ the video game what does the video game
260
+
261
+ 66
262
+ 00:02:31,239 --> 00:02:36,720
263
+ do it follows the laws of gravity of
264
+
265
+ 67
266
+ 00:02:34,239 --> 00:02:38,879
267
+ angular momentum and it sets up this
268
+
269
+ 68
270
+ 00:02:36,720 --> 00:02:41,159
271
+ stupid little Pawn game but the ball
272
+
273
+ 69
274
+ 00:02:38,879 --> 00:02:43,360
275
+ always follows these laws no two Pawn
276
+
277
+ 70
278
+ 00:02:41,159 --> 00:02:45,200
279
+ games are ever the same and yet every
280
+
281
+ 71
282
+ 00:02:43,360 --> 00:02:47,640
283
+ single Pawn game follows these
284
+
285
+ 72
286
+ 00:02:45,200 --> 00:02:49,560
287
+ underlying principles give you another
288
+
289
+ 73
290
+ 00:02:47,640 --> 00:02:52,040
291
+ example there's a neat program called
292
+
293
+ 74
294
+ 00:02:49,560 --> 00:02:54,239
295
+ Hammer Robi and Hammer Robi there's
296
+
297
+ 75
298
+ 00:02:52,040 --> 00:02:55,519
299
+ seven-year-old kids playing this and
300
+
301
+ 76
302
+ 00:02:54,239 --> 00:02:57,239
303
+ it's a game and he comes up on the
304
+
305
+ 77
306
+ 00:02:55,519 --> 00:02:58,920
307
+ screen he goes and you're King hamurabi
308
+
309
+ 78
310
+ 00:02:57,239 --> 00:03:00,920
311
+ goes oh King hamar Robi and you get to
312
+
313
+ 79
314
+ 00:02:58,920 --> 00:03:03,680
315
+ be king hamar Robi of the ancient
316
+
317
+ 80
318
+ 00:03:00,920 --> 00:03:05,519
319
+ Kingdom of Sumeria for 10 years comes oh
320
+
321
+ 81
322
+ 00:03:03,680 --> 00:03:07,360
323
+ King hamurabi this is year one you have
324
+
325
+ 82
326
+ 00:03:05,519 --> 00:03:09,560
327
+ a thousand bushels of weed in storage
328
+
329
+ 83
330
+ 00:03:07,360 --> 00:03:12,000
331
+ you have 100 people you have 100 acres
332
+
333
+ 84
334
+ 00:03:09,560 --> 00:03:13,799
335
+ of land land is trading at 24 bushels an
336
+
337
+ 85
338
+ 00:03:12,000 --> 00:03:15,640
339
+ acre would you like to sell any land no
340
+
341
+ 86
342
+ 00:03:13,799 --> 00:03:17,440
343
+ would you like to buy any land no how
344
+
345
+ 87
346
+ 00:03:15,640 --> 00:03:20,239
347
+ much would you like to plant or feed how
348
+
349
+ 88
350
+ 00:03:17,440 --> 00:03:22,920
351
+ much would you like to plant and it
352
+
353
+ 89
354
+ 00:03:20,239 --> 00:03:24,440
355
+ turns out that if you don't plant enough
356
+
357
+ 90
358
+ 00:03:22,920 --> 00:03:26,280
359
+ some of your people will starve the next
360
+
361
+ 91
362
+ 00:03:24,440 --> 00:03:27,640
363
+ year and if you plant a lot then people
364
+
365
+ 92
366
+ 00:03:26,280 --> 00:03:29,319
367
+ will come from the surrounding Villages
368
+
369
+ 93
370
+ 00:03:27,640 --> 00:03:32,640
371
+ because you got a hot Village to live in
372
+
373
+ 94
374
+ 00:03:29,319 --> 00:03:34,200
375
+ and you feed well it's crude but
376
+
377
+ 95
378
+ 00:03:32,640 --> 00:03:36,519
379
+ basically there are these seven-year-old
380
+
381
+ 96
382
+ 00:03:34,200 --> 00:03:39,400
383
+ kids playing with this macroeconomic
384
+
385
+ 97
386
+ 00:03:36,519 --> 00:03:41,640
387
+ model and you can argue about the the
388
+
389
+ 98
390
+ 00:03:39,400 --> 00:03:43,480
391
+ content of the model but one thing you
392
+
393
+ 99
394
+ 00:03:41,640 --> 00:03:46,560
395
+ can't argue about they will sit there
396
+
397
+ 100
398
+ 00:03:43,480 --> 00:03:48,680
399
+ for hours and play that and learn and
400
+
401
+ 101
402
+ 00:03:46,560 --> 00:03:51,080
403
+ we've got to get our models better and
404
+
405
+ 102
406
+ 00:03:48,680 --> 00:03:52,680
407
+ better and more sophisticated but that
408
+
409
+ 103
410
+ 00:03:51,080 --> 00:03:54,159
411
+ is an interactive way of learning that
412
+
413
+ 104
414
+ 00:03:52,680 --> 00:03:57,519
415
+ none of us ever had when we were growing
416
+
417
+ 105
418
+ 00:03:54,159 --> 00:04:00,079
419
+ up and again thousands of individual
420
+
421
+ 106
422
+ 00:03:57,519 --> 00:04:03,000
423
+ experiences but all based on that one
424
+
425
+ 107
426
+ 00:04:00,079 --> 00:04:07,519
427
+ set of underlying
428
+
429
+ 108
430
+ 00:04:03,000 --> 00:04:09,560
431
+ principles when I was um going to school
432
+
433
+ 109
434
+ 00:04:07,519 --> 00:04:13,560
435
+ I um had a few great teachers and a lot
436
+
437
+ 110
438
+ 00:04:09,560 --> 00:04:15,359
439
+ of mediocre teachers and the thing that
440
+
441
+ 111
442
+ 00:04:13,560 --> 00:04:17,799
443
+ that probably kept me out of jail was
444
+
445
+ 112
446
+ 00:04:15,359 --> 00:04:21,199
447
+ books because I could go read what
448
+
449
+ 113
450
+ 00:04:17,799 --> 00:04:23,320
451
+ Aristotle wrote or what Plato wrote uh
452
+
453
+ 114
454
+ 00:04:21,199 --> 00:04:25,800
455
+ and uh I didn't have to have an
456
+
457
+ 115
458
+ 00:04:23,320 --> 00:04:28,639
459
+ intermediary in the
460
+
461
+ 116
462
+ 00:04:25,800 --> 00:04:30,360
463
+ way and a book was a phenomenal thing it
464
+
465
+ 117
466
+ 00:04:28,639 --> 00:04:32,199
467
+ got right from the source to the
468
+
469
+ 118
470
+ 00:04:30,360 --> 00:04:35,120
471
+ destination without anything in the
472
+
473
+ 119
474
+ 00:04:32,199 --> 00:04:37,800
475
+ middle the problem was you can't ask
476
+
477
+ 120
478
+ 00:04:35,120 --> 00:04:40,039
479
+ Aristotle a
480
+
481
+ 121
482
+ 00:04:37,800 --> 00:04:42,840
483
+ question and I think as we look towards
484
+
485
+ 122
486
+ 00:04:40,039 --> 00:04:45,880
487
+ the next 50 to 100 years if we really
488
+
489
+ 123
490
+ 00:04:42,840 --> 00:04:48,120
491
+ can come up with these machines that can
492
+
493
+ 124
494
+ 00:04:45,880 --> 00:04:49,759
495
+ capture an underlying Spirit or an
496
+
497
+ 125
498
+ 00:04:48,120 --> 00:04:51,919
499
+ underlying set of principles or an
500
+
501
+ 126
502
+ 00:04:49,759 --> 00:04:53,440
503
+ underlying way of looking at the world
504
+
505
+ 127
506
+ 00:04:51,919 --> 00:04:55,680
507
+ then when the next Aristotle comes
508
+
509
+ 128
510
+ 00:04:53,440 --> 00:04:57,759
511
+ around maybe if he carries around one of
512
+
513
+ 129
514
+ 00:04:55,680 --> 00:04:59,919
515
+ these machines with him his whole life
516
+
517
+ 130
518
+ 00:04:57,759 --> 00:05:02,240
519
+ his or her whole life and types in all
520
+
521
+ 131
522
+ 00:04:59,919 --> 00:05:04,240
523
+ this stuff then maybe someday after the
524
+
525
+ 132
526
+ 00:05:02,240 --> 00:05:05,759
527
+ person's dead and gone we can ask this
528
+
529
+ 133
530
+ 00:05:04,240 --> 00:05:08,440
531
+ machine hey what what would aerostyle
532
+
533
+ 134
534
+ 00:05:05,759 --> 00:05:11,000
535
+ have said what about this and maybe we
536
+
537
+ 135
538
+ 00:05:08,440 --> 00:05:14,680
539
+ won't get the right answer but maybe we
540
+
541
+ 136
542
+ 00:05:11,000 --> 00:05:16,080
543
+ will and that's really exciting to me
544
+
545
+ 137
546
+ 00:05:14,680 --> 00:05:18,560
547
+ and that's one of the reasons I'm doing
548
+
549
+ 138
550
+ 00:05:16,080 --> 00:05:21,759
551
+ what I'm doing so what do you want to
552
+
553
+ 139
554
+ 00:05:18,560 --> 00:05:21,759
555
+ talk about
556
+
557
+ 140
558
+ 00:05:22,070 --> 00:05:24,850
559
+ [Applause]
560
+
update_demo.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ from pipeline import run_livestream_pipeline
4
+
5
+ def main():
6
+ video_id = "xLljoibgUvk"
7
+ pdf_path = "sample/44271_2026_Article_402.pdf"
8
+ srt_path = "sample/v=xLljoibgUvk.srt.txt"
9
+
10
+ print(f"Reading manual transcript from {srt_path}...")
11
+ with open(srt_path, "r", encoding="utf-8") as f:
12
+ srt_text = f.read()
13
+
14
+ print(f"Running pipeline for {video_id} with {pdf_path}...")
15
+ try:
16
+ chat_data = run_livestream_pipeline(
17
+ video_id=video_id,
18
+ doc_path=pdf_path,
19
+ transcript_text=srt_text
20
+ )
21
+
22
+ out_path = "sample/demo_chat.json"
23
+ print(f"Saving output to {out_path}...")
24
+ with open(out_path, "w", encoding="utf-8") as f:
25
+ json.dump(chat_data, f, indent=2, ensure_ascii=False)
26
+
27
+ print("Done!")
28
+ except Exception as e:
29
+ print(f"Pipeline execution failed: {e}")
30
+
31
+ if __name__ == "__main__":
32
+ main()