Node.Js Et Leap Drone

Total Page:16

File Type:pdf, Size:1020Kb

Node.Js Et Leap Drone UFR DES SCIENCES Node.js et Leap Drone Procédure d’installation et d’utilisation Jaleed RIAZ 12/13/2013 Ce document a pour but de vous pré senter la dé marche per mettant d’installer et utiliser le paquet Node Package Manager (NPM) et Node.js pour pouvoir interagir avec l’AR drone à l’aide du Leap motion. Sommaire Introdution .......................................................................................................................................... 2 Moteur V8 ....................................................................................................................................... 2 Le modèle non bloquant ................................................................................................................. 2 Procédure d’installation et d’utilisation du paquet ............................................................................ 3 Sous Windows ................................................................................................................................. 3 Sous Linux ........................................................................................................................................ 3 Sous Mac ......................................................................................................................................... 3 Leapdrone-master ............................................................................................................................... 4 Connexion en mode sécurisé WPA2 ................................................................................................... 4 Phase de test ....................................................................................................................................... 5 Erreurs ................................................................................................................................................. 6 Erreur 1 : .......................................................................................................................................... 6 Erreur 2 : .......................................................................................................................................... 6 Erreur 3 : .......................................................................................................................................... 7 1 Introdution Node.js est un environnement côté serveur permettant de programmer du JavaScript sur le serveur, donc en dehors du navigateur. Le langage JavaScript étant toujours utilisé côté client jusque-là, grâce à Node.js, le développement côté serveur permettant de générer des pages webs est maintenant possible sans programmer avec les langages serveur. Node.js remplace donc les langages serveur tel que PHP, Java EE, etc. Il ne s’agit pas là d’un framework mais d’un environnement très bas niveau. Étant donné que le langage JavaScript est basé sur les évènements, de ce fait Node.js l’est aussi. C’est pourquoi, la création d’applications comme : un serveur de chat ou un système d’upload très rapide peuvent tirer profit de cet environnement de développement. La rapidité de Node.js vient du moteur V8 et son fonctionnement non bloquant. Pour en savoir plus sur cet environnement, Node.js dispose d’un site web : http://nodejs.org/ Moteur V8 Le moteur V8 est un outil open source crée par Google dont le rôle est d’analyser et exécuter du code JavaScript très rapidement. Avant la sortie de Chrome, les navigateurs perdaient beaucoup de temps à lire le code JavaScript et à le transformer en langage machine compréhensible pour le processeur. Cependant, le moteur V8 de Google Chrome réutilisé par Node.js fonctionne différemment. Il fait ce qu’on appelle de la compilation JIT ( Just In Time ). Il tranforme le code JavaScript très rapidement en code machine et l’optimise en utilisant des procédés complexes ( code inlining, copy elision, etc ). Le modèle non bloquant Prenons un exemple de programme dont le but est de télécharger un fichier sur Internet, d’afficher ce fichier et ensuite effectuer d’autres tâches. Avec le modèle non bloquant, le programme lance le téléchargement du fichier en question, effectue d’autres actions et une fois le téléchargement terminé, affiche le fichier. Une fonction appelée fonction de callback est appelée pour effectuer les actions (pour notre exemple, la fonction de callback va permettre d’afficher le fichier). NPM est le gestionnaire de paquets de Node.js (équivalent de la commande apt sous linux mais pour les extensions Node.js) permettant d’installer de nouveaux modules (ou paquets) développés par la communauté. De plus, NPM gère également les dépendances des paquets, ce qui signifie que si un module requiert l’installation d’un autre module pour fonctionner, alors NPM le téléchargera automatiquement. NPM dispose d’un site web séparé à Node.js : http://npmjs.org 2 Procédure d’installation et d’utilisation du paquet Sous Windows Rendez-vous à l’adresse suivante pour installer Node.js : http://nodejs.org/download/ Choisissez la version correspondant à votre système d’exploitation. Si vous avez un doute, choisissez la version 32 bits. Néanmoins, vous pouvez télécharger le fichier .exe ou le .msi, le résultat restera le même. Une fois le téléchargement effectué, lancez-le et laissez-vous guider par les étapes. Pour l’utiliser, lancez « Node.js command prompt » : il s’agit d’un interpréteur de commande pour Windows. Remarque : À l’installation de Node.js, le gestionnaire de paquets de Node.js (NPM) a également été installé avec. Sous Linux Pour l’installation sous Linux, il est recommandé d’installer plusieurs autres commandes si celles-ci ne figurent pas dans votre système. Il faudra peut-être télécharger installer les paquets python-software-properties, python, g++ et software-properties-common, pour cela, effectuez la ligne de commande suivante : sudo apt-get install python-software-properties python g++ make sudo apt-get install software-properties-common Ce dernier paquet (sotfware-properties-common) permet d’avoir la commande add-apt- repository, utile pour la suite. Sur un terminal, tapez ces quelques commandes pour installer le paquet nodejs : sudo apt-get install python-software-properties python g++ make sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-cache showpkg nodejs sudo apt-get install nodejs Remarque 2 : Le paquet nodejs installe également le gestionnaire de paquets à savoir NPM. Sous Mac La procédure d’installation est quasiment la même que sous Windows. Il suffit de se rendre sur le site de Node.js, sur la page de téléchargements : 3 http://nodejs.org/download/ Choisissez le .pkg, car celui-ci ouvre un assistant d’installation, facile d’utilisation. Leapdrone -master Afin de pouvoir piloter le drone avec le leap motion, il faut télécharger le paquet correspondant à l’adresse suivante : https://github.com/liebeskind/leapdrone Ensuite, il suffit de décompresser l’archive dans un dossier. Si vous ne souhaitez pas établir une connexion sécurisé sur le réseau de votre drone ou bien si vous manipulez sous Windows, alors vous pouvez passer l’étape suivante et vous reporter à la Phase de test. Cette étape consiste à mettre en pratique les différents paquets et configuration mises au point jusque-là. Connexion en mode sécurisé WPA2 La connexion en mode sécurisé WPA sur le réseau du drone est compatible uniquement sous Linux et Mac. Pour ce faire, rendez-vous à l'adresse suivante pour savoir la procédure d’installation du module : https://github.com/daraosn/ardrone-wpa2 Téléchargez le zip et décompressez-le et rendez-vous dans ce dossier. Effectuez les procédures d'installation comme indiqué sur le projet en ligne github à savoir : script/install Si vous rencontrez une erreur du type : « curl : commande introuvable », reportez-vous à l’erreur n°3. Après avoir suivi les instructions indiquées à la section de l’erreur n°3, relancez la commande ci-dessus. Pour effectuer une connexion sécurisée WPA2, vous devez être connecté au réseau du drone au préalable, et effectuez la ligne de commande suivante : script/connect "<essid>" -p "<password>" -a <address> -d <droneip> Pour avoir de l’aide : script/connect -h 4 Phase de test Pour démarrer le drone, voici les étapes à suivre : 1. Sur votre console, vous devez vous rendre dans le dossier leapdrone-master précédemment extrait. 2. Positionnez votre main au-dessus du leap motion 3. Exécutez la commande suivante sur votre console : node server.js 4. Ensuite, vous devez simuler un clic gauche avec l’index de la main situé au-dessus du leap motion pour faire décoller le drone 5. Pour le diriger, une inclinaison de la main vers la droite, gauche, vers l’avant, ou l’arrière devrait avoir un effet notoire sur le drone dans les directions respectives. 6. Pour l’atterrissage, il s’agit de la même étape que pour le décollage : simulation d’un clic gauche avec l’index de la main situé au-dessus du leap motion Pour en savoir plus sur le mode de pilotage, vous pouvez vous rendre à l’adresse suivante, qui explique brièvement en vidéo le fonctionnement : http://startupdestiny.com/2013/11/19/why-i-hacked-an-ar-drone-with-leap-motion-and- node-js-part-1-of-2/comment-page-1/#comment-149 5 Erreurs Erreur 1 : Si vous rencontrez des problèmes du type « npm http 304 … » pour installer un quelconque paquet, effectuez les lignes de commandes suivantes sur un terminal : rm ~/tmp Ou bien sudo npm cache clear sudo npm install –g <votre paquet> Après avoir effectué l’une des deux méthodes, l’installation du
Recommended publications
  • ** OPEN SOURCE LIBRARIES USED in Tv.Verizon.Com/Watch
    ** OPEN SOURCE LIBRARIES USED IN tv.verizon.com/watch ------------------------------------------------------------ 02/27/2019 tv.verizon.com/watch uses Node.js 6.4 on the server side and React.js on the client- side. Both are Javascript frameworks. Below are the licenses and a list of the JS libraries being used. ** NODE.JS 6.4 ------------------------------------------------------------ https://github.com/nodejs/node/blob/master/LICENSE Node.js is licensed for use as follows: """ Copyright Node.js contributors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ This license applies to parts of Node.js originating from the https://github.com/joyent/node repository: """ Copyright Joyent, Inc. and other Node contributors.
    [Show full text]
  • (NASACFZ-1S2/Ot
    (NASACFZ-1s2/ot (1'AS-C-121~fPRELIMAINARY STUDY FOR A NUMERICAL AERODYNAMIC SIMULATION FACILITy. N78-19052 PHASE 1: EXTENSION Control Data Corp., St. Paul, Minn.) 434 p HC A19/MF A01 CSCL 01A Unclas G3/02 08630 PRELIMINARY STUDY FOR A NUMERICAL AERODYNAMIC SIMULATION FACILITY SUMMARY REPORT - PHASE 1 EXTENSION By: N. R. Lincoln FEBRUARY, 1978 Distribution of this report is provided in the interest of information exchang'e. Responsibility for the contents resides in the authors or organization that prepared it. Prepared under Contract No. NAS2-9457 by: CONTROL DATA CORPORATION Research and Advanced Design Laboratory 4290 Fernwood Street St. Paul, Minnesota 55112 for AMES RESEARCH CENTER NATIONAL AERONAUTICS AND SPACE ADMINISTRATION R EPVED ItA SI FACULWM SUMMARY REPORT - PHASE I EXTENSION Phase I of the NASF study which was completed in October 1977 produced several conclusions about the feasibility of construction of a flow model simulation facility. A computer structure was proposed for the Navier-Stokes Solver (NSS), now called the Flow Model Processor (FMP), along with technological and system approaches. Before such a system can enter an intensive design investigation phase several tasks must be accomplished to establish uniformity and control over the remaining design steps, as well as clarifying and amplifying certain portions of the conclusions drawn in Phase 1. In order of priority these were seen as: 1. Establishing a structure and format for documenting the design and implementation of the FMP facility. 2. Developing 'a complete, practically engineered design that would perform as claimed in the Phase 1 report. 3. Creating a design verification tool for NASA analysts, using a computerized simulation system.
    [Show full text]
  • Autotools: an Overview
    Autotools: An Overview Autotools: An Overview Danny Robson 2014-09-24 2014-09-24 Autotools: An Overview Danny Robson Overview Autotools autoconf Autotools: An Overview automake pkg-config Final Words Danny Robson 2014-09-24 Autotools: An Overview About Me Performance systems programming About Me C, C++ Linux GNU autotools Self-taught. Slowly. caveat emptor About Me Ask lots of questions 2014-09-24 Autotools: An Overview Danny Robson Overview Performance systems programming Autotools C, C++ autoconf Linux automake GNU pkg-config autotools Final Words Self-taught. Slowly. caveat emptor Ask lots of questions Autotools: An Overview About Me Performance systems programming About Me C, C++ Linux GNU autotools Self-taught. Slowly. caveat emptor About Me Ask lots of questions 2014-09-24 Autotools: An Overview Danny Robson Overview Performance systems programming Autotools C, C++ autoconf Linux automake GNU pkg-config autotools Final Words Self-taught. Slowly. caveat emptor Ask lots of questions Autotools: An Overview About Me Performance systems programming About Me C, C++ Linux GNU autotools Self-taught. Slowly. caveat emptor About Me Ask lots of questions 2014-09-24 Autotools: An Overview Danny Robson Overview Performance systems programming Autotools C, C++ autoconf Linux automake GNU pkg-config autotools Final Words Self-taught. Slowly. caveat emptor Ask lots of questions Autotools: An Overview What You're In For 1 Overview What You're In For 2 Autotools 3 autoconf What You're In For 4 automake 5 pkg-config 2014-09-24 6 Final Words Autotools:
    [Show full text]
  • Techniques and Challenges in Speech Synthesis Final Report for ELEC4840B
    Techniques and Challenges in Speech Synthesis Final Report for ELEC4840B David Ferris - 3109837 04/11/2016 A thesis submitted in partial fulfilment of the requirements for the degree of Bachelor of Engineering in Electrical Engineering at The University of Newcastle, Australia. Abstract The aim of this project was to develop and implement an English language Text-to-Speech synthesis system. This first involved an extensive study of the mechanisms of human speech production, a review of modern techniques in speech synthesis, and analysis of tests used to evaluate the effectiveness of synthesized speech. It was determined that a diphone synthesis system was the most effective choice for the scope of this project. A diphone synthesis system operates by concatenating sections of recorded human speech, with each section containing exactly one phonetic transition. By using a database that contains recordings of all possible phonetic transitions within a language, or diphones, a diphone synthesis system can produce any word by concatenating the correct diphone sequence. A method of automatically identifying and extracting diphones from prompted speech was designed, allowing for the creation of a diphone database by a speaker in less than 40 minutes. The Carnegie Mellon University Pronouncing Dictionary, or CMUdict, was used to determine the pronunciation of known words. A system for smoothing the transitions between diphone recordings was designed and implemented. CMUdict was then used to train a maximum-likelihood prediction system to determine the correct pronunciation of unknown English language alphabetic words. Using this, the system was able to find an identical or reasonably similar pronunciation for over 76% of the training set.
    [Show full text]
  • Gestión Del Proyecto Chromium
    Gestión del proyecto Chromium Grupo 7 Evolución y Gestión de la Configuración (EGC) Tabla de control de versiones y cambios Descripción Nº de Autores Revisado Fecha de versión modificación Creación del documento 1.0 Jesús Díaz Sí 21/11/2013 Inserción del mapa de 1.1 Jesús Díaz Sí 28/11/2013 herramientas y creación de índice Integración de partes en el 1.2 Jesús Díaz No 03/12/2013 documento Integración de partes en el 1.3 Jesús Díaz No 03/12/2013 documento Gestión del código y ejercicios 1.4 David Romero, Sí 18/12/2013 Sergio Trigos Algunas correcciones 1.5 Jesús Díaz Sí 19/12/2013 Integración de partes faltantes 1.6 Daniel Platas Sí 22/12/2013 Finalización para versión 1.7 Daniel Platas Sí 23/12/2013 entregable Incluir hoja de cambios 1.8 Jesús Díaz Sí 21/01/2014 Integración de partes 1.9 Daniel Platas Sí 06/02/2014 corregidas y actualización 2.0 Versión Actual: 1.9 Tabla 1: Control de versiones y cambios del documento de memoria 2 ÍNDICE 1 Resumen ......................................................................................................................................................... 5 2 Introducción .................................................................................................................................................... 6 3 Gestión del código fuente ............................................................................................................................. 8 3.1 Ramas .....................................................................................................................................................
    [Show full text]
  • Design Mistakes in Node Ryan Dahl JS Conf Berlin June 2018 Background
    Design Mistakes in Node Ryan Dahl JS Conf Berlin June 2018 Background ● I created and managed Node through its initial development. ● My goal was heavily focused on programming event driven HTTP servers. ● That focus turned out to be crucial for Server-Side JavaScript at the time. It wasn't obvious then but server-side JS required an event loop to succeed. Background When I left in 2012, I felt Node had (more or less) achieved my goals for a user friendly non-blocking framework: ○ Core supported many protocols: HTTP, SSL, ... ○ Worked on Windows (using IOCP) Linux (epoll) and Mac (kqueue). ○ A relatively small core with a somewhat stable API. ○ A growing ecosystem of external modules via NPM. But I was quite wrong - there was so much left to do... Critical work has kept Node growing since. ● npm (AKA "Isaac") decoupled the core Node library and allowed the ecosystem to be distributed. ● N-API is beautifully designed binding API ● Ben Noordhuis and Bert Belder built the libuv. ● Mikeal Rogers organized the governance and community. ● Fedor Indutny has had a massive influence across the code base, particularly in crypto. ● And many others: TJ Fontaine, Rod Vagg, Myles Borins, Nathan Rajlich, Dave Pacheco, Robert Mustacchi, Bryan Cantrill, Igor Zinkovsky, Aria Stewart, Paul Querna, Felix Geisendörfer, Tim Caswell, Guillermo Rauch, Charlie Robbins, Matt Ranney, Rich Trott, Michael Dawson, James Snell I have only started using Node again in the last 6 months. These days my goals are different. Dynamic languages are the right tool for scientific computing, where often you do quick one-off calculations.
    [Show full text]
  • How to Use the High Speed Btrieve 2 API from Node.Js
    How to use the high speed Btrieve 2 API from Node.js Application Note Contents Introduction ........................................................................................................................................................ 1 1 About node-gyp ...................................................................................................................................... 3 2 How to create the Node.js AddOn .............................................................................................. 4 3 Building the Environment ................................................................................................................ 5 4 Install Node.js ............................................................................................................................................ 7 5 Create a sample folder ........................................................................................................................ 8 6 Installing SWIG ......................................................................................................................................... 9 7 Compile Native Add-On .................................................................................................................... 11 8 Running the sample program .................................................................................................... 13 Introduction The simplest way to use Actian Zen from Node.js is to access it using SQL via ODBC as described in the appendix. However, to take
    [Show full text]
  • Steven Thomas [email protected] Sunnyvale CA 650-619-2131 Oct 6 2015
    Steven Thomas [email protected] Sunnyvale CA 650-619-2131 Oct 6 2015 Education Drexel University Philadelphia, PA • BS Computer Science, 3.85 GPA Sep 1999 – June 2004 – Internship at Analytical Graphics Inc, Malvern PA, Mar 2001 – Sep 2001, Mar 2003 – Sep 2003 – Internship at Anzus Inc, San Diego CA, Mar 2002 – Sep 2002 – Teaching assistant for several undergraduate CS courses Experience Amazon / Lab126 Cupertino, CA • Senior Software Engineer Aug 2011 – Dec 2014 – Fire TV. Sep 2012 – Dec 2014. ∗ Implemented a lot of the rendering architecture for the core Fire TV user interface ∗ Acted as a mentor for interns and new developers on the team – Kindle Fire HD web browser team. Aug 2011 – Sep 2012. ∗ Did the bulk of the initial porting work to get Chromium compiling and running on Android ∗ Hooked up a rendering path to implement cross-process rendering on Android ∗ Hooked up WebGL and got it working – Interviewed over 50 candidates and was recommended for “bar raiser” training Panasonic Cloud Entertainment Cupertino, CA • Senior Software Engineer Oct 2010 – Jan 2011 – Ostensibly acted as the browser team lead on the Panasonic Jungle. In practice the project was a disaster and I didn’t do much. The project was cancelled in Jan 2011 and all staff laid off. Sony Computer Entertainment Foster City, CA • Software Engineer May 2007 – Sep 2010 – Distributed Network Technology Group. Aug 2008 - Sep 2010. ∗ Developed a UDP-based transport protocol called RUDP (Reliable UDP) ∗ Wrote a C++ library implementation that ships in the PS3 and Vita SDKs ∗ Implemented congestion control, flow control, and lots of other networking features ∗ Worked on an in-game advertising system for PS3 ∗ Worked on a bittorrent-style peer to peer download system for PS3 – Collada team (www.collada.org for info).
    [Show full text]
  • Improving C/C++ Open Source Software Discoverability by Utilizing Rust and Node.Js Ecosystems
    Improving C/C++ Open Source Software Discoverability by Utilizing Rust and Node.js Ecosystems Kyriakos-Ioannis D. Kyriakou1, Nikolaos D. Tselikas1 and Georgia M. Kapitsaki2 1 Communication Networks and Applications Laboratory, Department of Informatics and Telecommunications, University of Peloponnese, End of Karaiskaki Street, 22 100, Tripolis, Greece 2 Department of Computer Science, University of Cyprus, 75 Kallipoleos Street, P.O. Box 20537, CY-1678 Nicosia, Cyprus 1 {kyriakou, ntsel}@uop.gr, 2 [email protected] OSS 2018 14th International Conference on Open Source Systems June 8-10, 2018 | Athens, Greece Motivation Translation of programs written in C/C++ for the Web has been a recent topic of interest in various fields of research The potential of using Rust instead of other systems programming languages is another emerging recent topic Can those technologies be combined? Enhance C/C++ OSS with modern development techniques Improve the state of C/C++ OSS discoverability OSS 2018 14th International Conference on Open Source Systems June 8-10, 2018 | Athens, Greece JavaScript: A Success Story in OSS o Has been declared as the most popular programming language for the fifth consecutive time, Stack Overflow 2017 survey o Was the programming language that appeared most frequently in multi-language projects, GitHub study by TF Bissyandé et al. o The Node.js platform is such a multi-language project, where its components are written in both JS and C/C++ o What is the key to its proliferation in OSS? OSS 2018 14th International Conference on Open Source Systems June 8-10, 2018 | Athens, Greece NPM: Node.js package manager and registry Houses the largest distribution of open source libraries in the world, used in the browser, servers, cross-platform and mobile applications, etc.
    [Show full text]
  • Detecting Incorrect Build Rules
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Apollo Detecting Incorrect Build Rules Nandor´ Licker, Andrew Rice Department of Computer Science and Technology University of Cambridge Cambridge, UK fnl364, [email protected] Abstract—Automated build systems are routinely used by graphs. Instead of manually specifying arguments to compiler software engineers to minimize the number of objects that need invocations in the macro languages of tools like GNU Make to be recompiled after incremental changes to the source files of [1] or Ninja [2], developers provide brief definitions to build a project. In order to achieve efficient and correct builds, devel- opers must provide the build tools with dependency information file generators such as CMake [3], Autotools [4], and SCons between the files and modules of a project, usually expressed in [5], describing the high-level structure of a project. Build files a macro language specific to each build tool. Most build systems are generated out of these definitions, along with dependency offer good support for well-known languages and compilers, but information extracted by partially parsing the source code as projects grow larger, engineers tend to include source files of languages known to the build system generator. Such generated using custom tools. In order to guarantee correctness, the authors of these tools are responsible for enumerating all generators also permit the integration of custom tools, but the files whose contents an output depends on. Unfortunately, require developers to manually enumerate dependencies. this is a tedious process and not all dependencies are captured When engineers write build definitions manually or integrate in practice, which leads to incorrect builds.
    [Show full text]
  • An Investigation Into Reproducible Builds for Aosp
    Author Manuel Pöll 11707301 Submission Institute of Networks and Security Thesis Supervisor Dr. Michael Roland September 23, 2020 AN INVESTIGATION INTO REPRODUCIBLE BUILDS FOR AOSP Bachelor Thesis to obtain the academic degree of Bachelor of Science in the Bachelor’s Program Informatik JOHANNES KEPLER UNIVERSITY LINZ Altenbergerstraße 69 4040 Linz, Österreich www.jku.at DVR 0093696 Abstract Reproducible builds enable the creation of bit identical artifacts by performing a fully deterministic build process. This is especially desireable for any open source project, including Android Open Source Project (AOSP). Initially we cover reproducible builds in general and give an overview of the problem space and typical solutions. Moving forward we present Simple Opinionated AOSP builds by an external Party (SOAP), a simple suite of shell scripts used to perform AOSP builds and compare the resulting artifacts against Google references. This is utulized to create a detailed report of the differences. The qualitative part of this report attempts to find insight into the origin of differences, while the quantitative provides a quick summary. Zusammenfassung Reproducible Builds ermöglichen die Erstellung von bit-identischen Artefakten über einen voll- deterministischen Build-Prozess. Im Falle von Open Source Projekten, wie dem Android Open Source Project (AOSP), ist dies besonders erstrebenswert. Zunächst behandeln wir Reproducible Builds im Allgemeinen und betrachten typische Problemstellungen und deren Lösung. Weiters führen wir Simple Opinionated AOSP builds by an external Party (SOAP) ein, eine einfache Sammlung von Shell- Skripten welche AOSP Builds durchführt und einen Vergleich gegen Google Referenzen erstellt. Dies nutzen wir um einen ausführlichen Bericht zu erstellen. Der qualitative Aspekt versucht sich an der Ursachenfindung, während der quantitative einen schnellen Überblick verschaft.
    [Show full text]
  • Lumada Manufacturing Insights V. 2.1.0 Open Source Software Packages
    Lumada Manufacturing Insights V. 2.1.0 Open Source Software Packages Contact Information: Lumada Manufacturing Insights Project Manager Hitachi Vantara, LLC 2535 Augustine Drive Santa Clara, California 95054 Name of Product/Product Version License Component @babel/code-frame 7.0.0 The MIT License @babel/highlight 7.0.0 The MIT License @babel/runtime 7.0.0 The MIT License @babel/runtime 7.1.2 The MIT License @babel/runtime 7.2.0 The MIT License @brickblock/eslint-config-base 1.0.1 ISC License @brickblock/eslint-config-react 1.0.1 ISC License @findify/change-emitter 0.1.7 The MIT License Apache License, Version 2.0 @hakatashi/rc-test 2.0.0 The MIT License @iamstarkov/jss-sheets-manager 8.0.0 The MIT License @inikulin/jsdom-only-external- 11.1.0 The MIT License scripts @inst/vscode-bin-darwin 0.0.14 ISC License Name of Product/Product Version License Component @karen2105/test-component 0.1.0 The MIT License @material-ui/core 3.3.2 The MIT License @material-ui/icons 3.0.1 The MIT License @platformparity/file-api 1.0.0-wip.1 The MIT License @request/promise-core 1.1.1 ISC License @types/json5 0.0.29 The MIT License @types/jss 9.5.7 The MIT License @types/prop-types 15.5.6 The MIT License @types/react 16.4.18 The MIT License @types/react-dev-utils 5.0.3 The MIT License @types/react-transition-group 2.0.14 The MIT License @unpourtous/react-native-search- 2.0.10 The MIT License list @unpourtous/react-native-search- 2.0.6 The MIT License list ANTLR 2.7.7 ANTLR 2 License Apache Log4j to SLF4J Adapter 2.11.1 Apache License, Version 2.0 Name of Product/Product
    [Show full text]