491,961 research outputs found

    IS DESIGN A SOLUTION FOR THE SMALL AND MEDIUM ENTERPRISES' FUTURE?

    Get PDF
    This article develops the idea put forward by Washington and Ventresca (2004) that institutions can sustain an emergent strategy in a given field. Ordinarily considered as stable elements of that field, these institutions may be subject to change. This theoretical approach is the object of a case study set in the framework of a contest. Organized by the General Council of the Loire and aimed at SME located in its constituency, the contest goal is to encourage innovation through design. By design, one must understand a creation produced by Man for industrial and commercial use. An emergent strategy is defined as new when situated within a defined context and a specific period of time. An exploratory case study has been conducted in order to help understand how this integration works. It takes into account qualitative data such as the RFID patch project led by the DOING Company within the framework of “Design Concept” Contest. Based on the mechanisms formulated by Washington and Ventresca (2004), this analysis has been elaborated to illustrate how an emergent strategy can be successfully incorporated. Several empirical questions subsequently follow: “What are the characteristics that allow business managers settled in the Loire district to adopt a design strategy? Which fields of activity in the Loire area are the most inclined to be compatible with the design strategy? Which business projects are the most eligible for partnership with designers? How will the General Council choose the subjects for the contest in order to initiate change within institutions?

    Composition and combination‐based object trust evaluation for knowledge management in virtual organizations

    Get PDF
    Purpose – This paper aims to develop a framework for object trust evaluation and related object trust principles to facilitate knowledge management in a virtual organization. It proposes systematic methods to quantify the trust of an object and defines the concept of object trust management. The study aims to expand the domain of subject trust to object trust evaluation in terms of whether an object is correct and accurate in expressing a topic or issue and whether the object is secure and safe to execute (in the case of an executable program). By providing theoretical and empirical insights about object trust composition and combination, this research facilitates better knowledge identification, creation, evaluation, and distribution. Design/methodology/approach This paper presents two object trust principles – trust composition and trust combination. These principles provide formal methodologies and guidelines to assess whether an object has the required level of quality and security features (hence it is trustworthy). The paper uses a component‐based approach to evaluate the quality and security of an object. Formal approaches and algorithms have been developed to assess the trustworthiness of an object in different cases. Findings The paper provides qualitative and quantitative analysis about how object trust can be composed and combined. Novel mechanisms have been developed to help users evaluate the quality and security features of available objects. Originality/value This effort fulfills an identified need to address the challenging issue of evaluating the trustworthiness of an object (e.g. a software program, a file, or other type of knowledge element) in a loosely‐coupled system such as a virtual organization. It is the first of its kind to formally define object trust management and study object trust evaluation

    Adaptive Context-sensitive Analysis for JavaScript

    Get PDF
    Context sensitivity is a technique to improve program analysis precision by distinguishing between function calls. A specific context-sensitive analysis is usually designed to accommodate the programming paradigm of a particular programming language. JavaScript features both the object-oriented and functional programming paradigms. Our empirical study suggests that there is no single context-sensitive analysis that always produces precise results for JavaScript applications. This observation motivated us to design an adaptive analysis, selecting a context-sensitive analysis from multiple choices for each function. Our two-staged adaptive context-sensitive analysis first extracts function characteristics from an inexpensive points-to analysis and then chooses a specialized context-sensitive analysis per function based on the heuristics. The experimental results show that our adaptive analysis achieved more precise results than any single context-sensitive analysis for several JavaScript programs in the benchmarks

    Some preliminary notes on an empirical test of Freud’s theory on depression

    Get PDF
    A review of the literature indicates that empirical researchers have difficulty translating Freud’s theory on depression into appropriate research questions and hypotheses. In their attempt to do so, the level of complexity in Freud’s work is often lost. As a result, what is empirically tested is no more than a caricature of the original theory. To help researchers avoid such problems, this study presents a conceptual analysis of Freud’s theory of depression as it is presented in Mourning and Melancholia (Freud, 1917). In analyzing Freud’s theory on the etiology of depression, it is essential to differentiate between (1) an identification with the satisfying and frustrating aspects of the love object, (2) the inter- and an intrapersonal loss of the love object, and (3) conscious and unconscious dynamics. A schematic representation of the mechanism of depression is put forward and a research design by which this schema can be empirically investigated is outlined

    Technology adoption and management innovation in construction

    Full text link
    © ASCE 2014. This paper examines the adoption of object-based modeling software across design and construction team members during project delivery. Drawing on insights from sociology, management theory and innovation studies, the paper investigates changes surrounding technology adoption and subsequent management-based innovation. Using empirical data from a case study, analysis focuses on adoption of software, the evolution of new digital and social networks, and subsequent innovations in management. The paper has three main contributions. First, it identifies related literature and examines change processes surrounding software adoption and the management innovations that are triggered. Second, it explores rigidities in existing routines that challenge adoption and deployment, highlighting innovations that reconcile change conflicts. Third, it shows how the concept of management innovation in construction is valuable to an understanding IT adoption processes

    Design Strategies and Knowledge in Object-Oriented Programming: Effects of Experience

    Get PDF
    An empirical study was conducted to analyse design strategies and knowledge used in object-oriented software design. Eight professional programmers experienced with procedural programming languages and either experienced or not experienced in object-oriented design strategies related to two central aspects of the object-oriented paradigm: (1) associating actions, i.e., execution steps, of a complex plan to different objects and revising a complex plan, and (2) defining simple plans at different levels in the class hierarchy. As regards the development of complex plans elements attached to different objects, our results show that, for beginners in OOP, the description of objects and the description of actions are not always integrated in an early design phase, particularly for the declarative problem whereas, for the programmers experienced in OOP, the description of objects and the description of actions tend to be integrated in their first drafts of solutions whichever the problem type. The analysis of design strategies reveal the use of different knowledge according to subjects' language experience: (1) schemas related to procedural languages; actions are organized in an execution order, or (2) schemas related to object-oriented languages; actions and objects are integrated, and actions are organised around objects

    Image Analysis and Platform Development for Automated Phenotyping in Cytomics

    Get PDF
    This thesis is dedicated to the empirical study of image analysis in HT/HC screen study. Often a HT/HC screening produces extensive amounts that cannot be manually analyzed. Thus, an automated image analysis solution is prior to an objective understanding of the raw image data. Compared to general application domain, the efficiency of HT/HC image analysis is highly subjected to image quantity and quality. Accordingly, this thesis will address two major procedures, namely image segmentation and object tracking, in the image analysis step of HT/HC screen study. Moreover, this thesis focuses on expending generic computer science and machine learning theorems into the design of dedicated algorithms for HT/HC image analysis. Additionally, this thesis exemplifies a practical implementation of image analysis and data analysis workflow via empirical case studies with different image modalities and experiment settings. However, the data analysis theorem will be generally illustrated without further expansions. Finally, the thesis will briefly address supplementary infrastructures for end-user interaction and data visualization.Netherlands Bioinformatics CentreComputer Systems, Imagery and Medi

    Implicit Invocation Meets Safe, Implicit Concurrency

    Get PDF
    Writing correct and efficient concurrent programs still remains a challenge. Explicit concurrency is difficult, error prone, and creates code which is hard to maintain and debug. This type of concurrency also treats modular program design and concurrency as separate goals, where modularity often suffers. To solve these problems, we are designing a new language that we call Panini. In this work, we focus on Panini\u27s asynchronous, typed events which reconcile the modularity goal promoted by the implicit invocation design style with the concurrency goal of exposing potential concurrency between the execution of subjects and observers. Since modularity is improved and concurrency is implicit in Panini, programs are easier to reason about and maintain. The language incorporates a static analysis to determine potential conflicts between handlers and a dynamic analysis which uses the conflict information to determine a safe order for handler invocation. This mechanism avoids races and deadlocks entirely, yielding programs with a guaranteed deterministic semantics. To evaluate our language design and implementation we show several examples of its usage as well as an empirical study of program performance. We found that not only is developing and understanding programs significantly easier compared to standard concurrent object-oriented programs, but also performance of Panini programs is comparable to their equivalent hand-tuned versions written using Java\u27s fork-join framework
    • 

    corecore