Large-Scale Trustworthy Distributed Collaboration Claudia-Lavinia Ignat

Total Page:16

File Type:pdf, Size:1020Kb

Large-Scale Trustworthy Distributed Collaboration Claudia-Lavinia Ignat Large-scale trustworthy distributed collaboration Claudia-Lavinia Ignat To cite this version: Claudia-Lavinia Ignat. Large-scale trustworthy distributed collaboration. Distributed, Parallel, and Cluster Computing [cs.DC]. Université de Lorraine, 2021. tel-03229173 HAL Id: tel-03229173 https://hal.inria.fr/tel-03229173 Submitted on 18 May 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Ecole´ doctorale IAEM Lorraine Large-scale trustworthy distributed collaboration THESE` pr´esent´eeet soutenue publiquement le 23 avril 2021 pour l'obtention d'une Habilitation de l'Universit´ede Lorraine (mention informatique) par Claudia-Lavinia Ignat Composition du jury Rapporteurs : M. Prasun DEWAN Professeur, University of North Carolina at Chapel Hill Mme Val´erieISSARNY Directrice de Recherche, Inria M. Fran¸coisTAIANI Professeur des Universit´es,Universit´ede Rennes I Examinateurs : Mme Sihem AMER-YAHIA Directrice de Recherche CNRS M. Fran¸coisCHAROY Professeur des Universit´es,Universit´ede Lorraine Mme Isabelle CHRISMENT Professeur des Universit´es,Universit´ede Lorraine M. Fabien GANDON Directeur de Recherche Inria M. Pascal MOLLI Professeur des Universit´es,Universit´ede Nantes Laboratoire Lorrain de Recherche en Informatique et ses Applications | UMR 7503 Mis en page avec la classe thesul. Acknowledgments To begin with, I would like to thank jury members for having accepted my invitation in this difficult period of pandemics. Many thanks to Prasun Dewan, Valérie Issarny and François Taiani for their encouraging reports on my work and their thorough comments and questions during my habilitation defense. Also I would like to thank Sihem Amer-Yahia, François Charoy, Isabelle Chrisment, Fabien Gandon, Pascal Molli for their very interesting and constructive questions during the defense. Special thanks to Isabelle Chrisment for having accepted to be the jury president and for all the administrative work. I would like to express my gratitude to François Charoy as a scientific guarantor for my habilitation but also for being a great team leader and for his support, confidence and freedom he gave me with respect to my research work. The work I report in this habilitation manuscript is the result of collaboration with several people. I would like to thank all my co-authors, specially Valerie Shalin (Wright State University) and Weihai Yu (UiT The Arctic University of Norway) for the fruitful ideas and discussions we had together. I also thank my PhD students Hien Thi Thu Truong, Quang Vinh Dang, Hoang Long Nguyen and Hoai Le Nguyen and all the other students that I supervised for having worked with me on the different parts of my research project. I would like to thank all permanent members of team Coast (Khalid Benali, François Charoy, Claude Godart, Gérald Oster, Olivier Perrin and the others) and all non permanent members (Luc André, Victorien Elvinger, Quentin Laporte-Chabasse, Stéphane Martin, Matthieu Nico- las and all the others that belonged to Ecoo/Score/Coast) for all scientific and non scientific discussions that made a very pleasant working environment. Many thanks to Claude Godart and Pascal Molli that welcomed me in their team at my arrival in France. I would like to thank Moira Norrie, my PhD supervisor, that played an important role in my professional life, for having inspired me with the beauties of a research career. Many special thanks to my husband and colleague Gérald Oster for his valuable support and encouragements during all these years and for the scientific discussions that sometimes expand even in the free time. I thank him as well as to our girls Julie, Natalie and Alexandra for all the love and happiness they bring to my life. Last but not least I would like to thank to my parents and my brother who gave me all their support and love even from far away. I specially dedicate this thesis to my father for his constant interest and concern on the evolution of my career and for his encouragements over the last years to write this manuscript. i ii to my father iii iv Contents 1 Motivation ..................................... 1 2 Research Work ................................... 3 2.1 Collaborative data management ..................... 4 2.2 Trustworthy collaboration ........................ 6 3 My journey ..................................... 6 4 Implication in research projects .......................... 9 5 Organisation of the manuscript .......................... 12 I Collaborative Data Management 13 Chapter 1 Literature Review 17 1.1 Optimistic replication ............................... 17 1.1.1 Last writer wins .............................. 17 1.1.2 Serialisation ................................ 17 1.1.3 Multi-versioning .............................. 18 1.1.4 Operational transformation ........................ 18 1.1.5 CRDT algorithms ............................. 24 1.1.6 Consistency maintenance for complex data ............... 25 1.2 Awareness and conflicts management ...................... 27 1.2.1 Conflicts prevention ............................ 27 1.2.2 Conflicts management ........................... 28 Chapter 2 Operational transformation for complex data 31 2.1 Document model .................................. 32 2.2 Operations ..................................... 34 2.3 Merging algorithm and transformation functions ................ 36 2.4 Complexity discussion ............................... 37 v Contents Chapter 3 Evaluation of optimistic replication approaches 39 3.1 Theoretical complexity of main optimistic replication algorithms ....... 40 3.2 Evaluation of optimistic replication algorithms with real traces of collaboration 41 3.3 Measurement of collaborative editors performance: a user perspective .... 43 3.4 Effect of delay on group performance: an experimental design ........ 46 Chapter 4 CRDTs for ordered sequences 51 4.1 Identifiers ...................................... 53 4.2 Insertion operation ................................. 53 4.3 Deletion operation ................................. 54 4.4 Correctness ..................................... 55 4.5 Implementation .................................. 56 4.5.1 Naive representation (LogootSplitNaive) .............. 56 4.5.2 String-based representation (LogootSplitString) .......... 57 4.5.3 Tree-based representation (LogootSplitAVL) ............ 57 4.5.4 Evaluation ................................. 59 Chapter 5 Conflicts prevention and resolution 61 5.1 Conflicts prevention ................................ 62 5.1.1 Localisation of concurrent changes .................... 62 5.1.2 Trade-off between awareness and privacy ................ 66 5.2 Conflicts management and their resolution (a case study) ........... 68 5.2.1 Integration rate and conflict rate ..................... 68 5.2.2 Conflict types ............................... 69 5.2.3 Conflict resolution ............................. 69 5.2.4 Adjacent-line conflicts ........................... 69 II Trustworthy Collaboration 73 Chapter 1 Literature Review 77 1.1 Contract-based models .............................. 77 1.2 Access control ................................... 78 vi 1.3 Usage Control ................................... 79 1.4 Log auditing .................................... 80 1.5 Trust measurement and trust game ....................... 80 1.6 Log Authentication ................................ 81 Chapter 2 Trust-based collaboration 85 2.1 The C-PPC model ................................. 86 2.1.1 Events and logs .............................. 86 2.1.2 Contracts .................................. 86 2.1.3 Log management and consistency maintenance during collaboration . 91 2.1.4 Log Auditing and Trust Assessment ................... 95 2.2 Experimental evaluation of the C-PPC model and auditing mechanism ... 100 2.2.1 Experiment 1 - Misbehavior detection .................. 100 2.2.2 Experiment 2 - Overhead estimation ................... 102 Chapter 3 Authentication of Logs in Multi-synchronous Collaboration 103 3.1 Description of the Collaboration model ..................... 103 3.2 Security properties to be ensured ......................... 104 3.3 Authenticators structure and construction .................... 106 3.4 Example of authenticators construction ..................... 108 3.5 Authenticators-based log verification ....................... 109 3.6 Space and time complexity for authenticator construction and log verification 110 3.7 Experimental evaluation .............................. 110 Chapter 4 Measuring trust score among users in trust game 113 4.1 Requirements .................................... 113 4.2 Current trust .................................... 113 4.3 Aggregated trust .................................. 114 4.4 Expected trust ................................... 115 4.5 Dealing with fluctuating behaviour ........................ 116 4.6 Evaluation of the trust metric .......................... 117 4.6.1 Simulations ................................. 117 4.6.2 Evaluation with real data ......................... 119 vii Contents Chapter 5 Influence of trust score on user behavior
Recommended publications
  • Assignment of Master's Thesis
    ASSIGNMENT OF MASTER’S THESIS Title: Git-based Wiki System Student: Bc. Jaroslav Šmolík Supervisor: Ing. Jakub Jirůtka Study Programme: Informatics Study Branch: Web and Software Engineering Department: Department of Software Engineering Validity: Until the end of summer semester 2018/19 Instructions The goal of this thesis is to create a wiki system suitable for community (software) projects, focused on technically oriented users. The system must meet the following requirements: • All data is stored in a Git repository. • System provides access control. • System supports AsciiDoc and Markdown, it is extensible for other markup languages. • Full-featured user access via Git and CLI is provided. • System includes a web interface for wiki browsing and management. Its editor works with raw markup and offers syntax highlighting, live preview and interactive UI for selected elements (e.g. image insertion). Proceed in the following manner: 1. Compare and analyse the most popular F/OSS wiki systems with regard to the given criteria. 2. Design the system, perform usability testing. 3. Implement the system in JavaScript. Source code must be reasonably documented and covered with automatic tests. 4. Create a user manual and deployment instructions. References Will be provided by the supervisor. Ing. Michal Valenta, Ph.D. doc. RNDr. Ing. Marcel Jiřina, Ph.D. Head of Department Dean Prague January 3, 2018 Czech Technical University in Prague Faculty of Information Technology Department of Software Engineering Master’s thesis Git-based Wiki System Bc. Jaroslav Šmolík Supervisor: Ing. Jakub Jirůtka 10th May 2018 Acknowledgements I would like to thank my supervisor Ing. Jakub Jirutka for his everlasting interest in the thesis, his punctual constructive feedback and for guiding me, when I found myself in the need for the words of wisdom and experience.
    [Show full text]
  • Customization of an Enterprise Request Management System
    ISSN (Online) 2393-8021 ISSN (Print) 2394-1588 International Advanced Research Journal in Science, Engineering and Technology Vol. 2, Issue 2, February 2015 Customization of an Enterprise request Management System 1 2 3 4 Ashna Shah , Chinmay Balutkar , Bhargavee Singh , Rajesh. B. Singh Student, Computer Department, Sinhgad Institute Of technology, Lonavala, India 1,2,3 Associate Professor, Computer Department, Sinhgad Institute Of technology, Lonavala, India4 Abstract: Information provided in issue reports are relevant and complete in order to help resolve issues quickly. However, often such information trickles to developers after several iterations of communication between End user and reporters. This paper addresses the concerns of Customization of an Enterprise management system by proposing for handling of the issues such as bugs, query and enhancements. As a proof-of-concept, we also demonstrate a prototype interactive enterprise request management system that gathers relevant information from the user and identifies files that need to be fixed to resolve the issues. The main contribution of this application is in the domain of business as we are developing Enterprise request Management System. Keywords: Bugs, Issues, query, enhancement. I. INTRODUCTION The use of Enterprise Request Management Systems as a to the issue and again will report the issue to the reporter. tool to organize maintenance activities is widespread. The Developer then will handle the issues and will fix them. systems serve as a central repository for monitoring the This system will help to manage the issues in the business progress of issue reports, requesting additional information domain by fixing them. The issues might be a bug, query from reporters, and discussing potential solutions for or the enhancement.
    [Show full text]
  • Research Article Constrained Wiki: the Wikiway to Validating Content
    Hindawi Publishing Corporation Advances in Human-Computer Interaction Volume 2012, Article ID 893575, 19 pages doi:10.1155/2012/893575 Research Article Constrained Wiki: The WikiWay to Validating Content Angelo Di Iorio,1 Francesco Draicchio,1 Fabio Vitali,1 and Stefano Zacchiroli2 1 Department of Computer Science, University of Bologna, Mura Anteo Zamboni 7, 40127 Bologna, Italy 2 Universit´e Paris Diderot, Sorbonne Paris Cit´e, PPS, UMR 7126, CNRS, F-75205 Paris, France Correspondence should be addressed to Angelo Di Iorio, [email protected] Received 9 June 2011; Revised 20 December 2011; Accepted 3 January 2012 Academic Editor: Kerstin S. Eklundh Copyright © 2012 Angelo Di Iorio et al. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. The “WikiWay” is the open editing philosophy of wikis meant to foster open collaboration and continuous improvement of their content. Just like other online communities, wikis often introduce and enforce conventions, constraints, and rules for their content, but do so in a considerably softer way, expecting authors to deliver content that satisfies the conventions and the constraints, or, failing that, having volunteers of the community, the WikiGnomes, fix others’ content accordingly. Constrained wikis is our generic framework for wikis to implement validators of community-specific constraints and conventions that preserve the WikiWay and their open collaboration features. To this end, specific requirements need to be observed by validators and a specific software architecture can be used for their implementation, that is, as independent functions (implemented as internal modules or external services) used in a nonintrusive way.
    [Show full text]
  • E-BUG TRACKING SYSTEM GUIDE: Mrs
    E-BUG TRACKING SYSTEM GUIDE: Mrs. Sathya Priya R1 R.B. Babu2, R. Marimuthu3, G. Gowtham4, V. Prakash5 1Assistant Professor, KSR Institute for Engineering and Technology, Tiruchengode. 2,3,4,5Department of Computer Science And Engineering, KSR Institute for Engineering and Technology, Tiruchengode. ABSTRACT This is the world of information. The ever-growing field Information Technology has its many advanced notable features which made it what it was now today. In this world, the information has to be processed, clearly distributed and must be efficiently reachable to the end users intended for that. Otherwise, we know it led to disastrous situations. The other coin of the same phase is it is absolutely necessary to know any bugs that are hither-to face by the end users. The project “e-bug tracking system” aims to provide the solution for that. The Bug Tracker can be made from any two types. The first one being the system side, the other being the services side. Our project deals with the second one. The paper is wholly dedicated to tracking the bugs that are hither- by arise. The administrator maintains the master details regarding to the bugs id, bugs type, bugs description, bugs severity, bugs status, user details. The administrator too has the authority to update the master details of severity level, status level, etc, modules of the paper. The administrator adds the users and assign them responsibility of completing the paper. Finally, on analysing the paper assigned to the particular user, the administrator can track the bugs, and it is automatically added to the tables containing the bugs, by order of severity and status.
    [Show full text]
  • A Library Oriented Wiki Engine (Talk)
    AmuseWiki: a library oriented wiki engine (talk) Marco Pessotto (melmothX) September 3, 2015, Granada . How does it look like? . Scenario Digital library with more than 2000 texts, including full-length books Long term archiving (not fire and forget texts), control revision Quality output required (read: LaTeX output) Imposing of PDF for home-printing EPUB output for mobile devices Preference for a flat file storage (like ikiwiki or MoinMoin) Creation of collections (like on mediawiki) One-man project . The lightweight markup No standard, even if Markdown seems to be the winner (but with dialects) Emacs Muse: project kind of dead, but the markup is compact and expressive, documented, and has a reference implementation. https://www.gnu.org/software/emacs-muse/ Some incompatibilities have been introduced, but they are documented (to address corner cases where the syntax can be confusing). Bottom line: all these markups are easy to use and it takes 5 minutes to learn one of them, as long as it is documented. Our own dialect of Emacs Muse Manual: http://www.amusewiki.org/library/manual Module: Text::Amuse (produces LaTeX and HTML) Ill-suited for technical papers, though. No math support, no syntax highlight, but well-suited for general prose and even poetry. It has every feature one could expect from a lightweight markup: images, sectioning, footnotes, simple tables, bold, italics, subscript, superscript, lists, verbatim, quotations. So far proved itself good and expressive. Importing Legacy library had the texts in filtered HTML People usually have the texts in Word format or copy and paste from HTML pages The javascript HTML editor CKEditor has a “paste from Word” feature http://ckeditor.com/ Need to convert the HTML to Muse, preserving as much as possible the logical structure of the document (and discarding the noise).
    [Show full text]
  • Link IDE : a Real Time Collaborative Development Environment
    San Jose State University SJSU ScholarWorks Master's Projects Master's Theses and Graduate Research Spring 2012 Link IDE : A Real Time Collaborative Development Environment Kevin Grant San Jose State University Follow this and additional works at: https://scholarworks.sjsu.edu/etd_projects Part of the Computer Sciences Commons Recommended Citation Grant, Kevin, "Link IDE : A Real Time Collaborative Development Environment" (2012). Master's Projects. 227. DOI: https://doi.org/10.31979/etd.rqpj-pj3k https://scholarworks.sjsu.edu/etd_projects/227 This Master's Project is brought to you for free and open access by the Master's Theses and Graduate Research at SJSU ScholarWorks. It has been accepted for inclusion in Master's Projects by an authorized administrator of SJSU ScholarWorks. For more information, please contact [email protected]. Link IDE : A Real Time Collaborative Development Environment A Project Report Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements for the Degree Master of Science in Computer Science by Kevin Grant May 2012 1 © 2012 Kevin Grant ALL RIGHTS RESERVED 2 SAN JOSE STATE UNIVERSITY The Undersigned Project Committee Approves the Project Titled Link : A Real Time Collaborative Development Environment by Kevin Grant APPROVED FOR THE DEPARTMENT OF COMPUTER SCIENCE SAN JOSÉ STATE UNIVERSITY May 2012 ------------------------------------------------------------------------------------------------------------ Dr. Soon Tee Teoh, Department
    [Show full text]
  • Organising Sysadmin Documentation Jon Dowland Information Systems and Services Newcastle University Overview
    organising sysadmin documentation Jon Dowland Information Systems and Services Newcastle University Overview • History and first attempt • Findings • Next generation • Conclusion History and first attempt Introduction • Newcastle University o ~4,800 staff; ~20,000 students • Information Systems and Services o ~160 people • Diverse ecosystem ISS UNIX Team small, 5 people widely varying age and experience responsibilities system administration and infrastructure higher-level (user-facing) services sister teams: networks, windows, SAP legacy systems Inherited situation directory full of text files categorization by directory lots of out-of-date information lots of undocumented stuff What do we keep in there? • Procedure documents • HOWTOs Existing experience • wikipedia editing • webteam-based mediawiki hosting service • version control (CVS, SVN) First-cut requirements • import existing data • support reviewing material • version control • online • multimedia • integrated with SSO Mediawiki Mediawiki • <http://www.mediawiki.org/> • powers wikipedia • LAMP • GPL (v2) • CMS SSO integration Shibboleth SSO software <http://shibboleth.internet2.edu/> mediawiki Shibboleth plugin <http://www.mediawiki.org/wiki/Extension:Shibboleth_Authentication> Apache configured with mod_shibd AuthType shibboleth ShibRequireSession On require eppn [email protected] ... Mediawiki markup • simple • proprietary Categories a tagging mechanism adding the following to the 'Sandbox' page [[Category: Example]] yields the page 'Category:Example' Importing data • one
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Devonagentpro
    DEVONagent Pro VERSION 3.11 DOCUMENTATION © 2001-2018 DEVONtechnologies TABLE OF CONTENTS Read Me 4 Menus 29 The DEVONagent Pro Advantage 5 The DEVONagent Pro menu 29 System Requirements 6 The File menu 30 Installing, Updating, Removing 6 The Edit menu 31 Trial Restrictions 6 The Data menu 32 Version history 7 The Sort menu 33 License Agreement 11 The View menu 33 Credits 11 The Web menu 34 The History menu 35 Getting Started 12 The Go menu 36 Why use DEVONagent Pro? 12 The Window menu 36 When to use DEVONagent Pro? 12 The Services menu 37 DEVONagent Pro at a Glance 13 The Scripts menu 37 First steps with DEVONagent Pro 13 The Help menu 37 The Dock menu 38 Common Tasks 14 Windows and panels 39 How to find on the Internet 14 How to search beyond Google 14 Search window 40 How to customize DEVONagent Pro 15 Web browser 46 How to set up a search set to crawl feeds 15 Archive window 52 How to run a search automatically 16 Search sets 54 How to archive search results 16 Plugins and scanners 54 Downloads 56 Queries 18 Preferences 57 Assistant 57 Operators 18 Designing a search query 19 Preferences 59 Search sets 21 General 59 Search 60 What are search sets? 21 Menu extra 61 Choosing a search set 21 Web 62 Creating and managing sets 22 Tabs 63 Sharing sets 23 Bookmarks 64 General tab 23 Email 64 Advanced tab 25 Update 65 Sites tab 25 Plugins tab 26 Menu extra 66 Actions tab 27 Scripts 67 Schedule tab 28 Introduction 67 DEVONagent Pro's Scripts menu 68 Automator 69 DEVONagent Pro 3.11 Documentation, page 2 Plugin Development 70 Creating Your Own
    [Show full text]
  • Stardas Pakalnis) • the Contextit Project
    Streamspin: Mobile Services for The Masses Christian S. Jensen www.cs.aau.dk/~csj Overview • Web 2.0 • The mobile Internet • The Streamspin system • Tracking of moving objects AAU, September 10, 2007 2 Web 2.0 • Web 2.0 captures the sense that there is something qualitatively different about today's web. • Leveraging the collective intelligence of communities • New ways of interacting • Sharing of user-generated content • Text Wiki’s, e.g., Wikipedia Blogs • Photos E.g., Flickr, Plazes, 23 • Video E.g., YouTube AAU, September 10, 2007 3 Web 2.0 • Community concepts abound… • Feedback and rating schemes E.g., ratings of sellers and buyers at auctions, ratings of content • Social tagging, tag clouds, folksonomies • Wiki’s Collaborative authoring • RSS feeds • Active web sites, Ajax • Fueled by Google-like business models Google 2006 revenue: USD 10.6 billion; net income: USD 3.1 billion; 12k employees Microsoft now has 8k people in Online Services AAU, September 10, 2007 4 Flickr • From the Flickr entry on Wikipedia • “In addition to being a popular Web site for users to share personal photographs, the service is widely used by bloggers as a photo repository. Its popularity has been fueled by its innovative online community tools that allow photos to be tagged and browsed by folksonomic means.” • Launched in February 2004. Acquired by Yahoo! in March 2005. Updated from beta to gamma in May 2006. • “On December 29th, 2006 the upload limits on free accounts were increased to 100Mb a month (from 20Mb)” AAU, September 10, 2007 5 YouTube • From the YouTube entry on Wikipedia • “The domain name "YouTube.com" was activated on February 15, 2005…” • “According to a July 16, 2006 survey, 100 million clips are viewed daily on YouTube, with an additional 65,000 new videos uploaded per 24 hours.” • “Currently staffed by 67 employees, the company was named TIME magazine's "Invention of the Year" for 2006.
    [Show full text]
  • Parallelism and Conflicting Changes in Git Version Control Systems Hoai Le Nguyen, Claudia-Lavinia Ignat
    Parallelism and conflicting changes in Git version control systems Hoai Le Nguyen, Claudia-Lavinia Ignat To cite this version: Hoai Le Nguyen, Claudia-Lavinia Ignat. Parallelism and conflicting changes in Git version control systems. IWCES’17 - The Fifteenth International Workshop on Collaborative Editing Systems , Feb 2017, Portland, Oregon, United States. hal-01588482 HAL Id: hal-01588482 https://hal.inria.fr/hal-01588482 Submitted on 16 Sep 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Parallelism and conflicting changes in Git version control systems Hoai Le Nguyen Claudia-Lavinia Ignat Universite´ de Lorraine, F-54000 Inria, F-54600 Inria, F-54600 Universite´ de Lorraine, F-54000 CNRS, F-54500 CNRS, F-54500 [email protected] [email protected] ABSTRACT facilitates detection of a certain problem or recovering of Version control systems such as Git support parallel collabo- deleted contributions. rative work and became very widespread in the open-source As a version control system supports parallel work on the community. While Git oers some very interesting features, same documents, it has to oer support for synchronization resolving collaborative conicts that arise during synchro- of parallel changes on those documents.
    [Show full text]
  • Wiki Technology, Community Dynamics and Community Culture
    Wiki Technology and Community Culture By Mingli Yuan July, 2008 Released under GFDL Contents Introduction − concept / history / jargons / a simple classification / organizations & companies / conferences Technology − implementations / features / principles / easy at first glance / syntax & parser / version control / wysiwyg / adventure of ideas Community Culture − openness & agf / npov / consensus / deletionism vs. inclusionism / controversy Introduction – concept A wiki is web pages anyone who accesses it can contribute or modify content a simplified markup language Introduction – history World Wide − 1994: Ward Cunningham, WikiWikiWeb (1994?) Patrick Mueller, the first WikiWikiClone − 2000: Sunir Shah, MeatballWiki − 2001: January 15, Jimmy Wales, Wikipedia Introduction – history cont. Mainland China Taiwan − 2001-12-27: − Schee / 徐子涵 Softme Studio / 索秘软 − hlb / 薛良斌 件工作室 − Newzilla jWiki as a sub-project of WebPM − 2002 / 5: 中蟒大杂院 Early Blogsphere − 2002 / 10 − Cnblog.org Chinese Wikipedia − Chinese Blogger Conference / − 2002 / 11 中文网志年会 贸大 Wiki Introduction – jargons Basics Community − Sandbox − EditWar − CamelCase − AGF − Wikify − NPOV − RecentChanges − Consensus / Vote − DocumentMode / − Deletionist / Inclusionism TheadMode − Namespace: Article / Talk / Copyright / Copyleft − PD User / Category − − GFDL / Free Signature − CC family − BackLinks − Fair use − InterWiki Introduction – a simple classification Tech related sites Wikimedia Family − c2.com / wikiwikiweb − wikiversity − meatball / usemode − wiktionary
    [Show full text]