27 results on '"Justin Smith"'
Search Results
2. Head and neck cancers: Monitoring quality and reporting outcomes
- Author
-
Justin Smith, Madhavi Chilkuri, and Venkat N. Vangaveti
- Subjects
medicine.medical_specialty ,Quality management ,business.industry ,medicine.medical_treatment ,media_common.quotation_subject ,Head and neck cancer ,medicine.disease ,Radiation therapy ,Oncology ,Head and Neck Neoplasms ,Cohort ,Emergency medicine ,medicine ,Carcinoma, Squamous Cell ,Smoking cessation ,Humans ,Radiology, Nuclear Medicine and imaging ,Cumulative incidence ,Quality (business) ,Neoplasm Recurrence, Local ,Head and neck ,business ,media_common ,Retrospective Studies - Abstract
INTRODUCTION Head and neck cancers (HNC) require high level multidisciplinary care to achieve optimal outcomes. Reporting of quality indicators (QIs) has been instigated by some health services in an effort to improve quality of care. The aim of this study was to determine the quality of care provided to patients with HNC at a single institution by analysing compliance with QIs and to explore the feasibility and utility of collecting this data. METHODS This was a single institution retrospective chart review of all patients with squamous cell HNC at Townsville Hospital who were treated with curative intent between June 2011 and June 2019. Data was entered into a RedCap database and then exported to Stata V16 for analysis. RESULTS A total of 537 patients were included in the overall study, with six patients who had a synchronous non-HNC and two patients who received previous radiotherapy (RT) to the head and neck region excluded from the outcome analysis. Overall, compliance with pre-treatment, treatment and post-treatment QIs was high, with the exception of smoking cessation support (66%), post-treatment dental review and time to post-operative RT (33% of patients within 6 weeks). The 5-year overall survival was 69.4% (CI; 64-73.2%). The cumulative incidence of locoregional relapse for the overall study cohort was 18% (CI; 14.8-21.4%). CONCLUSION Collecting and evaluating quality metrics is feasible and helps identify areas for improvement. Centres treating HNC patients should strive towards monitoring quality against benchmarks and demonstrate transparency in outcome data.
- Published
- 2021
3. Field Study on Usability and Security Perceptions Surrounding Social Robots
- Author
-
Shivam Thakrar, Justin Smith, Subhash Rajapaksha, Haochen Sun, Matt Kinzler, and Debbie Perouli
- Subjects
Social robot ,business.industry ,Computer science ,Field (Bourdieu) ,media_common.quotation_subject ,Usability ,Special Interest Group ,User experience design ,Human–computer interaction ,Perception ,Survey data collection ,business ,Humanoid robot ,media_common - Abstract
The rise of smart speakers connected to voice-controlled virtual assistants has increased the potential of more elaborate robotic devices to enter personal spaces as evidenced by the number of companies building such products. Of special interest are the so called social robots, which are intended to interact with humans in a manner that resembles more a friendly companion rather than a mere device. We organized controlled, group sessions during which a total of 97 participants of diverse ages and genders interacted with five devices: two smart speakers, two programmable artificially intelligent humanoids, and one social robot. From the analysis of survey data, we report on the opinions of our participants regarding both the usability and security features of these devices, and compare to conclusions from related studies, when applicable. To the best of our knowledge, our study is the first to look at the user experience with social robots focusing on security and privacy.
- Published
- 2021
- Full Text
- View/download PDF
4. Black for a Day: White Fantasies of Race and Empathy
- Author
-
Justin Smith
- Subjects
Cultural Studies ,White (horse) ,Sociology and Political Science ,media_common.quotation_subject ,Art history ,Empathy ,Art ,Race (biology) ,Arts and Humanities (miscellaneous) ,Nothing ,Chapel ,computer ,media_common ,computer.programming_language - Abstract
Black for a Day takes on “white-to-Black” racial passing through five readings of first-hand accounts. While it would be simple enough to bring up such examples of passing as nothing more than farc...
- Published
- 2020
- Full Text
- View/download PDF
5. How Students Unit Test: Perceptions, Practices, and Pitfalls
- Author
-
Kathryn T. Stolee, Justin Smith, and Gina R. Bai
- Subjects
Medical education ,Source code ,Unit testing ,Test design ,Computer science ,media_common.quotation_subject ,Code coverage ,Exploratory research ,Job design ,020207 software engineering ,02 engineering and technology ,01 natural sciences ,Happy path ,010305 fluids & plasmas ,Test (assessment) ,0103 physical sciences ,0202 electrical engineering, electronic engineering, information engineering ,media_common - Abstract
Unit testing is reported as one of the skills that graduating students lack, yet it is an essential skill for professional software developers. Understanding the challenges students face during testing can help inform practices for software testing education. To that end, we conduct an exploratory study to reveal students' perceptions of unit testing and challenges students encounter when practicing unit testing. We surveyed 54 students from two universities and gave them two testing tasks, one involving black-box test design and one involving white-box test implementation. For the tasks, we used two software projects from prior work in studying test-first development among software developers. We quantitatively analyzed the survey responses and test code properties, and qualitatively identified the mistakes and smells in the test code. We further report on our experience running this study with students. Our results regarding student perceptions show that students believe code coverage is the most important outcome for test suites. For testing practices, most students were ineffective in finding known defects. This may be due to the task design and/or challenges with understanding the source code. For testing pitfalls, we identified six test smells from student-written test code; the most common were ignoring setups in the test code and testing happy path only. These results suggest the students needed more introduction to these common testing concepts and practices in advance of the study activity. Through this experience, we have identified testing concepts that require emphasis for more effective future studies on testing behavior among students.
- Published
- 2021
- Full Text
- View/download PDF
6. MatchingRef
- Author
-
Justin Smith, Shokhzodbek Saidov, and Thuc Nhi Le
- Subjects
Class (computer programming) ,Computer science ,Programming language ,media_common.quotation_subject ,05 social sciences ,020207 software engineering ,02 engineering and technology ,computer.software_genre ,Online help ,Identifier ,Variable (computer science) ,Java compiler ,Documentation ,Debugging ,0202 electrical engineering, electronic engineering, information engineering ,0501 psychology and cognitive sciences ,Compiler ,computer ,050107 human factors ,media_common - Abstract
Debugging compiler errors is essential to programming and can be challenging for novice programmers. In introductory computer science courses, challenging errors can discourage students. One reason these errors are difficult to resolve is that most online help systems do not match a student's code. For example, online reference pages use different variable names, identifiers, and method names compared with a student's particular code. To utilize existing resources, students must wade through other people's code (which is often too advanced for novices to comprehend). This is time-consuming and does not provide novices with solutions. To address this problem, we developed MatchingRef -a reference system that helps novices resolve compiler errors. It is a web-based reference guide that catalogs common Processing/Java compiler errors. MatchingRef integrates with the Processing programming environment to provide users with explanations and that match users' particular code. It includes a list of strategies to fix each error, accompanied by one or more concrete examples. Importantly, the key feature that distinguishes MatchingRef from prior reference systems (e.g., Decaf [1], HelpMeOut [4], CodeWrite [2]) is that MatchingRef examples are all dynamically generated using variable, method, and class names from users' programming environments. There are four guiding design principles behind MatchingRef. First is readability, which is listed as a criterion that good error messages should exhibit [5]. The description from Java documentation is usually technical and causes confusion for novice programmers. Hence, we provide explanations that are less cryptic and more familiar in wording. Second is learning by examples. Examples have been shown to be effective way to learn and fix programming errors, such as in online forum like Stack Overflow [7]. Therefore, we include examples in each suggestion so that users can have a concrete idea on how to fix the problems. Third is familiarity, a common design principle across domains [3]. MatchingRef matches elements in the fixing examples with the original code of the users. Finally, our system is intended to reduce cognitive load by customizing the pages to users' code to show the relevant information. According to Cognitive Load Theory (CLT), humans have a finite ability to efficiently process input [6]. As MatchingRef provide users with matching error messages and matching names, their brain only needs to process useful information such as ways to fix the errors or roots of the errors. Users can avoid reading some information in the page multiple times such as variable names or class names because they are already familiar with them. We conducted a within-subjects pilot study (n = 4) to evaluate whether MatchingRef improved novices' performance and comprehension while debugging compiler errors. Participants interacted with two designs of our system, one with matching variable names in the examples and one without this feature. Otherwise, the systems were identical. The participants were students in introductory computer science courses that use Processing. Due to the small sample size, we could not detect significant differences in task completion time. Although the conclusions we can draw are limited, we are encouraged to evaluate MatchingRef in a more formal study.
- Published
- 2020
- Full Text
- View/download PDF
7. Complexity Leadership in the Nursing Context
- Author
-
Mary Uhl-Bien, Danika Meyer, and Justin Smith
- Subjects
ComputingMilieux_THECOMPUTINGPROFESSION ,030504 nursing ,Leadership and Management ,business.industry ,Nurse leaders ,media_common.quotation_subject ,General Medicine ,Burnout ,Adaptability ,Organizational Innovation ,03 medical and health sciences ,Leadership ,0302 clinical medicine ,Consolidation (business) ,Nursing ,Mergers and acquisitions ,Health care ,Humans ,030212 general & internal medicine ,Bureaucracy ,0305 other medical science ,business ,Nursing Process ,Strategic move ,media_common - Abstract
Consolidation through mergers and acquisitions is occurring across health care as a strategic move to address the disruptive forces of complexity. While consolidation is improving the overall fitness and viability of health care organizations, it is having the opposite effect on the professionals working within them who are reporting increasing rates of burnout from ongoing complexity in the health care environment. This happens in all organizations that try to respond to complexity with traditional bureaucratic leadership approaches. What is needed is to replace bureaucratic leadership with the networked approach of complexity leadership. The idea is not to "do more with less" but to "do things better." In this article, we show how to do this by applying complexity leadership to the nursing context. Complexity leadership is a framework for enabling people and organizations for adaptability. It views leaders not as managerial implementers of top-down directives but as collaborators who work together to enhance the overall adaptability and fitness of the system. From a complexity leadership perspective, the role of nurse leaders should be not only to help the system run but also to help it run better by increasing organizational adaptability.
- Published
- 2020
8. Lesbian and gay parents in early childhood settings: A systematic review of the research literature
- Author
-
Archana V. Hegde, Justin Smith, and Paige Averett
- Subjects
Gay parent ,Early childhood education ,Health (social science) ,business.industry ,media_common.quotation_subject ,05 social sciences ,050301 education ,Research needs ,Teacher education ,Education ,Developmental psychology ,Developmental and Educational Psychology ,0501 psychology and cognitive sciences ,Electronic publishing ,Homosexuality ,Early childhood ,Lesbian ,Psychology ,business ,0503 education ,050104 developmental & child psychology ,media_common - Abstract
This article presents the first systematic review of all the existing peer-reviewed literature (n = 20) on gay and lesbian parents and their children in early childhood education settings. The review includes articles that were empirical or pedagogical practice oriented, focused exclusively on early childhood education (Birth to 5 years), and concentrated on gay and lesbian parents and their children. Considering the date range of the articles (1990–2012) and their similar content, indications are that the field of early childhood has not progressed very far in the thinking and practices in relation to gay and lesbian parents and their children. Recommendations made in 1990 are being put forth as still needed today. Implications for pedagogical change and future research needs are provided.
- Published
- 2016
- Full Text
- View/download PDF
9. The Power of Play: A Pediatric Role in Enhancing Development in Young Children
- Author
-
Michael, Yogman, Andrew, Garner, Jeffrey, Hutchinson, Kathy, Hirsh-Pasek, Roberta Michnick, Golinkoff, and Justin, Smith
- Subjects
Adult ,Male ,Parents ,media_common.quotation_subject ,education ,Attunement ,Developmental psychology ,03 medical and health sciences ,Child Development ,0302 clinical medicine ,Promotion (rank) ,030225 pediatrics ,Humans ,Medicine ,0501 psychology and cognitive sciences ,Pediatricians ,Early childhood ,Parent-Child Relations ,Child ,Curriculum ,media_common ,business.industry ,05 social sciences ,Brain ,Infant ,Peer group ,Self-control ,Child development ,Play and Playthings ,Prosocial behavior ,Child, Preschool ,Pediatrics, Perinatology and Child Health ,Female ,business ,050104 developmental & child psychology - Abstract
Children need to develop a variety of skill sets to optimize their development and manage toxic stress. Research demonstrates that developmentally appropriate play with parents and peers is a singular opportunity to promote the social-emotional, cognitive, language, and self-regulation skills that build executive function and a prosocial brain. Furthermore, play supports the formation of the safe, stable, and nurturing relationships with all caregivers that children need to thrive. Play is not frivolous: it enhances brain structure and function and promotes executive function (ie, the process of learning, rather than the content), which allow us to pursue goals and ignore distractions. When play and safe, stable, nurturing relationships are missing in a child’s life, toxic stress can disrupt the development of executive function and the learning of prosocial behavior; in the presence of childhood adversity, play becomes even more important. The mutual joy and shared communication and attunement (harmonious serve and return interactions) that parents and children can experience during play regulate the body’s stress response. This clinical report provides pediatric providers with the information they need to promote the benefits of play and and to write a prescription for play at well visits to complement reach out and read. At a time when early childhood programs are pressured to add more didactic components and less playful learning, pediatricians can play an important role in emphasizing the role of a balanced curriculum that includes the importance of playful learning for the promotion of healthy child development.
- Published
- 2018
- Full Text
- View/download PDF
10. Assessing Peer Leader Skill Acquisition and Group Dynamics in a First-Year Calculus Course
- Author
-
Nicholas B. Hammond, Justin Smith, Rebecca Glover, and Dalyana Guerra
- Subjects
Cooperative learning ,leader development ,media_common.quotation_subject ,journals ,PLTL ,Assessment ,01 natural sciences ,lcsh:LB5-3640 ,Course (navigation) ,Dreyfus model of skill acquisition ,Mathematics education ,medicine ,ComputingMilieux_COMPUTERSANDEDUCATION ,Calculus (medicine) ,media_common ,Teamwork ,Calculus ,010405 organic chemistry ,05 social sciences ,Leader development ,050301 education ,Group dynamic ,medicine.disease ,0104 chemical sciences ,lcsh:Theory and practice of education ,Content analysis ,Workshops ,Psychology ,0503 education - Abstract
Peer-led team learning (PLTL), specifically the model known as ‘Workshops’, has been shown to contribute positively and significantly to student success in STEM courses across subjects (Gosser et al., 2001). Our research adds to the SOTL literature describing the effectiveness of Workshops by reporting on the changes in student leaders. We examine the level to which leaders acquired new skills in effective teaching and describe the pedagogical interactions in the groups they led as a result of the combination of training and experience facilitating first-year Calculus Workshop sections. This was a semester-long study on twenty-two Workshop leaders for two multi-section, introductory calculus courses at a small research university. Our method is a novel overlay of two metrics that allows, with some forethought, a robust analysis of Workshop leader outcomes that would complement any assessment of PLTL implementation faculty might choose to undertake.
- Published
- 2018
11. Does income inequality increase charitable giving?
- Author
-
A. Abigail Payne and Justin Smith
- Subjects
Economics and Econometrics ,Labour economics ,Inequality ,business.industry ,media_common.quotation_subject ,1. No poverty ,Distribution (economics) ,Public good ,Income inequality metrics ,Economic inequality ,Economics ,sense organs ,business ,Neighbourhood (mathematics) ,media_common - Abstract
Do households react to changes in the distribution of income in their localities by changing their charitable giving? The theoretical prediction of the effects of income inequality on giving is unclear. We study how changes in income inequality measured at the neighbourhood and municipality levels affect charitable giving by households in Canada between 1991 and 2006. We find that increases in inequality increase giving. Results are sensitive to the geographic dispersion of low- and high-income households in neighbourhoods within a municipality. The effect on donations is smaller in areas with high levels of inequality at both neighbourhood and municipality levels.
- Published
- 2015
- Full Text
- View/download PDF
12. 'Comparable to MTV - but better': The impact of The Chart Show on British music video culture, 1986-1998
- Author
-
Justin Smith
- Subjects
Range (music) ,MTV ,Visual Arts and Performing Arts ,media_common.quotation_subject ,ITV ,Journalism and Media ,Context (language use) ,APC-PAID ,Broadcasting ,Channel 4 ,Lingua franca ,GeneralLiterature_MISCELLANEOUS ,The Chart Show ,060404 music ,Visual arts ,060104 history ,Popular music ,Chart ,Research information ,0601 history and archaeology ,computer.programming_language ,media_common ,business.industry ,Communication ,Keith Macmillan ,Media studies ,RCUK ,06 humanities and the arts ,Art ,AH/M003515/1 ,Music Video ,Computer Graphics and Computer-Aided Design ,Channel (broadcasting) ,business ,computer ,0604 arts ,Music - Abstract
Open access article The Chart Show was a weekly UK TV programme showcasing music videos from the Media Research Information Bureau (MRIB) Network Chart and a range of independent and specialist pop music charts. It began broadcasting on Friday evenings on Channel 4 in April 1986 and ran for three series until September 1988. Its production company, Video Visuals, subsequently found a new home for The Chart Show with Yorkshire Television on ITV, where it went out on Saturday mornings between January 1989 and August 1998. What made the show unique in the British broadcasting context was that it was the first presenter-less pop chart programme that showcased popular music exclusively in video form. Beginning at a time when MTV was still unavailable in the UK, The Chart Show was innovatory in consolidating music video as the lingua franca of the pop singles market. Drawing on archival sources from Channel 4, and the trade and popular music presses, this article shows how The Chart Show helped shape the form of music video, contributed to its commercial status, boosted singles sales, and drove industry demand and production schedules. It argues that an appreciation of music video is dependent upon the historical specificity of its broadcast context.
- Published
- 2017
- Full Text
- View/download PDF
13. Do Developers Read Compiler Error Messages?
- Author
-
Emerson Murphy-Hill, Titus Barik, Elisabeth Holmes, Jing Feng, Chris Parnin, Justin Smith, and Kevin Lubick
- Subjects
Reading disability ,Source code ,Java ,Multimedia ,Computer science ,Programming language ,media_common.quotation_subject ,05 social sciences ,020207 software engineering ,02 engineering and technology ,computer.software_genre ,Visualization ,Task (project management) ,Reading (process) ,0202 electrical engineering, electronic engineering, information engineering ,0501 psychology and cognitive sciences ,Compiler ,computer ,050107 human factors ,media_common ,computer.programming_language - Abstract
In integrated development environments, developers receive compiler error messages through a variety of textual and visual mechanisms, such as popups and wavy red underlines. Although error messages are the primary means of communicating defects to developers, researchers have a limited understanding on how developers actually use these messages to resolve defects. To understand how developers use error messages, we conducted an eye tracking study with 56 participants from undergraduate and graduate software engineering courses at our university. The participants attempted to resolve common, yet problematic defects in a Java code base within the Eclipse development environment. We found that: 1) participants read error messages and the difficulty of reading these messages is comparable to the difficulty of reading source code, 2) difficulty reading error messages significantly predicts participants' task performance, and 3) participants allocate a substantial portion of their total task to reading error messages (13%--25%). The results of our study offer empirical justification for the need to improve compiler error messages for developers.
- Published
- 2017
- Full Text
- View/download PDF
14. The long-run impacts of early childhood education: Evidence from a failed policy experiment
- Author
-
Philip DeCicca and Justin Smith
- Subjects
Low income ,Early childhood education ,Economics and Econometrics ,Variation (linguistics) ,Reading (process) ,media_common.quotation_subject ,education ,Education ,Demography ,media_common - Abstract
We investigate short and long-term effects of early childhood education using variation created by a policy experiment in British Columbia, Canada. Our findings imply being in kindergarten longer increases the probability of repeating the third grade, and decreases tenth grade math and reading scores. Effects are highest for low income students and males. Estimates suggest that more time in kindergarten may have a detrimental effect on future outcomes.
- Published
- 2013
- Full Text
- View/download PDF
15. The Responsibilities of Engineers
- Author
-
Colleen Murphy, Paolo Gardoni, and Justin Smith
- Subjects
Social Responsibility ,Philosophy of science ,Engineering ,Health (social science) ,Virtue ,ComputingMilieux_THECOMPUTINGPROFESSION ,Norway ,business.industry ,Health Policy ,media_common.quotation_subject ,Foundation (evidence) ,Context (language use) ,Research Personnel ,Ethics, Professional ,Philosophy ,Issues, ethics and legal aspects ,Work (electrical) ,Management of Technology and Innovation ,Humans ,Engineering ethics ,business ,media_common - Abstract
Knowledge of the responsibilities of engineers is the foundation for answering ethical questions about the work of engineers. This paper defines the responsibilities of engineers by considering what constitutes the nature of engineering as a particular form of activity. Specifically, this paper focuses on the ethical responsibilities of engineers qua engineers. Such responsibilities refer to the duties acquired in virtue of being a member of a group. We examine the practice of engineering, drawing on the idea of practices developed by philosopher Alasdair MacIntyre, and show how the idea of a practice is important for identifying and justifying the responsibilities of engineers. To demonstrate the contribution that knowledge of the responsibilities of engineers makes to engineering ethics, a case study from structural engineering is discussed. The discussion of the failure of the Sleipner A Platform off the coast of Norway in 1991 demonstrates how the responsibilities of engineers can be derived from knowledge of the nature of engineering and its context.
- Published
- 2013
- Full Text
- View/download PDF
16. Resolving input validation vulnerabilities by retracing taint flow through source code
- Author
-
Justin Smith
- Subjects
Source code ,Process (engineering) ,Computer science ,business.industry ,media_common.quotation_subject ,Data validation ,020207 software engineering ,Context (language use) ,Static program analysis ,Software maintenance ,02 engineering and technology ,Computer security ,computer.software_genre ,Electronic mail ,Data flow diagram ,Software ,Work (electrical) ,Software bug ,020204 information systems ,0202 electrical engineering, electronic engineering, information engineering ,Software engineering ,business ,computer ,Secure coding ,media_common - Abstract
Various security-oriented static analysis tools are designed to detect potential input validation vulnerabilities early in the development process. To verify and resolve these vulnerabilities, developers must retrace problematic data flows through the source code. My thesis proposes that existing tools do not adequately support the navigation of these traces. In this work I will explore the strategies developers use to navigate tainted data flow in source code and work toward solutions that support successful strategies.
- Published
- 2016
- Full Text
- View/download PDF
17. Identifying successful strategies for resolving static analysis notifications
- Author
-
Justin Smith
- Subjects
Source code ,business.industry ,Computer science ,Process (engineering) ,media_common.quotation_subject ,020207 software engineering ,Access control ,Static program analysis ,02 engineering and technology ,Static analysis ,computer.software_genre ,Software ,Software bug ,020204 information systems ,0202 electrical engineering, electronic engineering, information engineering ,Code (cryptography) ,Data mining ,business ,Software engineering ,computer ,media_common - Abstract
Although static analysis tools detect potential code defects early in the development process, they do not fully support developers in resolving those defects. To accurately and efficiently resolve defects, developers must orchestrate several complex tasks, such as determining whether the defect is a false positive and updating the source code without introducing new defects. Without good defect resolution strategies developers may resolve defects erroneously or inefficiently. In this work, I perform a preliminary analysis of the successful and unsuccessful strategies developers use to resolve defects. Based on the successful strategies identified, I then outline a tool to support developers throughout the defect resolution process.
- Published
- 2016
- Full Text
- View/download PDF
18. Underground USA: Filmmaking Beyond the Hollywood Canon
- Author
-
Justin Smith
- Subjects
Literature ,Hollywood ,business.industry ,media_common.quotation_subject ,Filmmaking ,Taste (sociology) ,Art history ,Art ,Movie theater ,George (robot) ,Knight ,Performance art ,business ,Cult ,media_common - Published
- 2004
- Full Text
- View/download PDF
19. Channel 4 and the red triangle:a case study in film curation and censorship on television
- Author
-
Justin Smith
- Subjects
special discretion required ,History ,Visual Arts and Performing Arts ,business.industry ,NVALA ,Communication ,media_common.quotation_subject ,Feature film ,Censorship ,RCUK ,Channel 4 ,Visual arts ,Movie theater ,Symbol ,AHRC ,warning symbol ,Film and Television ,Channel (broadcasting) ,IBA ,business ,Period (music) ,media_common - Abstract
This article charts the history of an experiment, conducted during the autumnand winter of 1986–7, in which Channel 4 trialled an on-screen visual warningsymbol to accompany screenings of a series of international art-house films. Theso-called ‘red triangle’ experiment, though short-lived, will be considered as acase study for exploring a number of related themes. Firstly, it demonstratesChannel 4’s commitment during the 1980s to fulfilling its remit to experimentand innovate in programme form and content, in respect of its acquiredfeature film provision. Channel 4’s acquisitions significantly enlarged the rangeof international classic and art-house cinema broadcast on British television.Secondly, it reflects contemporary tensions between the new broadcaster, itsregulator the IBA, campaigners for stricter censorship of television and policymakers.The mid-1980s was a period when progressive developments in UKfilm and television culture (from the rise of home video to the advent ofChannel 4 itself) polarised opinions about freedom and regulation, which weregreatly exacerbated by the press. Thirdly, it aims to shed light on the paradoxthat, while over thirty years of audience research has consistently revealed thedesire on the part of television viewers for an on-screen ratings system, the UKis not among some forty countries that currently employ such devices on anysystematic basis. In this way the history of a specific advisory experiment maybe seen to have a bearing on current policy trends.
- Published
- 2014
- Full Text
- View/download PDF
20. Mark Jancovich and Lucy Faire with Sarah Stubbings, The Place of the Audience: Cultural Geographies of Film Consumption
- Author
-
Justin Smith
- Subjects
Visual Arts and Performing Arts ,Communication ,media_common.quotation_subject ,Media studies ,Art ,Consumption (sociology) ,media_common - Published
- 2005
- Full Text
- View/download PDF
21. Vincent Price and Cult Performance
- Author
-
Justin Smith
- Subjects
History ,media_common.quotation_subject ,Political economy ,Performance art ,Cult ,media_common - Published
- 2013
- Full Text
- View/download PDF
22. Vincent Price and cult performance: the case of Witchfinder General
- Author
-
Justin Smith, Egan, K., and Thomas, S.
- Subjects
Floating signifier ,Aesthetics ,media_common.quotation_subject ,Reception theory ,Film and Television ,Performance art ,Sociology ,Picture plane ,Cult ,Key (music) ,Task (project management) ,media_common - Abstract
The key difficulty with the appellation ‘cult’ is that it remains in the gift of the giver and not the receiver. Cult is inescapably part of the discourse of reception studies, where it is couched as a floating signifier conferring status through a shared, though seldom well-defined, understanding. Concerns about cult appreciation as subcultural practice have, therefore, tended to overshadow the necessary examination of texts (films, directors, actors). The critical task must be to see if it is possible to find textual evidence for cult affiliation.
- Published
- 2012
23. Making Ben-Hur look like an epic: Monty Python at the movies
- Author
-
Laraine Porter, L. Napper, Justin Smith, and I. Q. Hunter
- Subjects
business.industry ,media_common.quotation_subject ,Art ,Musical ,Comics ,Python (programming language) ,Comedy ,Visual arts ,Holy Grail ,Movie theater ,business ,computer ,Meaning of life ,Cult ,media_common ,computer.programming_language - Abstract
Between 1971 and 1983 the British comedy team Monty Python made four feature-length films for the cinema: 'And Now for Something Completely Different' (1971), 'Monty Python and the Holy Grail' (1974), 'Monty Python's Life of Brian' (1979) and 'Monty Python's the Meaning of Life' (1983). The first and last of these exploited the sketch format on which their original BBC television show, 'Monty Python's Flying Circus', was based (four series, 1969-74). But from the early 1970s, the cult appeal of their distictive brand of surreal British humour was also marketed through audio recordings, books and live shows, gaining international recognition over 40 years culminating in the recent of the stage musical 'Spamalot'. It is the purpose of this chapter to examine the role of the Monty Python films in transforming the innovative work of a group of comedy writers and performers into worldwide popular comic currency. This affords an oppotunity to reassess the unique contribution of Monty Python to British comedy cinema.
- Published
- 2012
- Full Text
- View/download PDF
24. How Important are School Principals in the Production of Student Achievement?
- Author
-
Elizabeth Dhuey and Justin Smith
- Subjects
Economics and Econometrics ,Percentile ,4. Education ,media_common.quotation_subject ,Principal (computer security) ,jel:I21 ,Standard deviation ,jel:I20 ,Economics of education, principals, education ,jel:I2 ,Reading (process) ,Student achievement ,Mathematics education ,Production (economics) ,Quality (business) ,media_common ,Mathematics - Abstract
As school leaders, principals can influence student achievement in a number of ways, such as hiring and firing of teachers, monitoring instruction and maintaining student discipline, among many others. We measure the effect of individual principals on gains in math and reading achievement between grades 4 and 7 using a value-added framework. We estimate that a one standard deviation improvement in principal quality can boost student performance by 0.289 to 0.408 standard deviations in reading and math, while the principal at the 75th percentile improves scores by 0.170 to 0.193 relative to the median principal. Our results imply that isolating the most effective principals and allocating them accordingly between schools can have a significant positive effect on reducing achievement gaps.
- Published
- 2011
25. Can Regression Discontinuity Help Answer an Age-Old Question in Education? The Effect of Age on Elementary and Secondary School Achievement
- Author
-
Justin Smith
- Subjects
Economics and Econometrics ,Age differences ,media_common.quotation_subject ,education ,Economics, Econometrics and Finance (miscellaneous) ,School entry ,Affect (psychology) ,Degree (music) ,Developmental psychology ,Test (assessment) ,Numeracy ,Reading (process) ,Regression discontinuity design ,Psychology ,media_common - Abstract
Single-date school entry systems create large age differences between children in the same grade. Older students have been shown in the literature to outperform younger students along many elementary school outcomes, and some post-schooling outcomes. Little evidence exists about the size of these advantages in high school. Data from British Columbia, Canada are used to estimate the effect of age on test scores in grades 4, 7, and 10. I estimate that older students still have a sizable skill advantage in grade 10 across numeracy, reading, and writing tests. The advantage is strongest for girls and low-income students. The results suggest a certain degree of permanence to age related skill differences, which may spill over and affect adult outcomes.
- Published
- 2009
- Full Text
- View/download PDF
26. Glam, Spam and Uncle Sam: Funding Diversity in 1970s British Film Production
- Author
-
Justin Smith
- Subjects
Engineering ,business.industry ,media_common.quotation_subject ,Production (economics) ,Advertising ,Marketing ,business ,Diversity (politics) ,media_common - Published
- 2008
- Full Text
- View/download PDF
27. Diversity and Donations: The Effect of Religious and Ethnic Diversity on Charitable Giving
- Author
-
David Karp, Justin Smith, James Andreoni, and A. Abigail Payne
- Subjects
Organizational Behavior and Human Resource Management ,Economics and Econometrics ,Labour economics ,media_common.quotation_subject ,Religious diversity ,Ethnic group ,jel:H41 ,Business economics ,Race (biology) ,Political science ,Cultural diversity ,0502 economics and business ,050602 political science & public administration ,jel:R23 ,050207 economics ,10. No inequality ,media_common ,05 social sciences ,1. No poverty ,High education ,Public good ,respiratory system ,0506 political science ,diversity, giving, charitable donations ,jel:J11 ,Demographic economics ,human activities ,Diversity (politics) - Abstract
We explore the effects of local ethnic and religious diversity on individual donations to private charities. Using 10-year neighborhood-level panels derived from personal tax records in Canada, we find that diversity has a detrimental effect on charitable donations. A 10 percentage point increase in ethnic diversity reduces donations by 14%, and a 10 percentage point increase in religious diversity reduces donations by 10%. The ethnic diversity effect is driven by a within-group disposition among non-minorities, and is most evident in high income, but low education areas. The religious diversity effect is driven by a within-group disposition among Catholics, and is concentrated in high income and high education areas. Despite these large effects on amount donated, we find no evidence that increasing diversity affects the fraction of households that donate. Over the period studied, ethnic diversity rises by 6 percentage points and religious diversity rises by 4 percentage points; our results suggest that charities receive about 12% less in total donations. As areas like North America continue to grow more diverse over time, our results imply that these demographic changes may have significant implications for the charitable sector.
Catalog
Discovery Service for Jio Institute Digital Library
For full access to our library's resources, please sign in.