Using and Programming

Total Page:16

File Type:pdf, Size:1020Kb

Using and Programming Using and Programming Václav Šmilauer, Bruno Chareyre, Jérôme Duriez, Alexander Eulitz, Anton Gladky, Ning Guo, Christian Jakob, Janek Kozicki, François Kneib, Chiara Modenese, Jan Stránský, Klaus Thoeni Yade Documentation 2nd edition, 2015 based on Yade 1.14.0 Citing this document: Šmilauer V. et al. (2015). Using and Programming. In:Yade Documentation 2nd ed. doi:10.5281/zenodo.34043. http://yade-dem.org See also http://yade-dem/doc/citing.html. ii Contents 1 Installation 1 1.1 Packages ............................................. 1 1.2 Source code ............................................ 2 1.3 Yubuntu ............................................. 5 2 Introduction 7 2.1 Getting started .......................................... 7 2.2 Architecture overview ...................................... 11 3 Tutorial 19 3.1 Introduction ........................................... 19 3.2 Hands-on ............................................. 19 3.3 Data mining ........................................... 28 3.4 Towards geomechanics ...................................... 32 3.5 Advanced & more ........................................ 34 3.6 Examples ............................................. 34 4 User’s manual 45 4.1 Scene construction ........................................ 45 4.2 Controlling simulation ...................................... 63 4.3 Postprocessing .......................................... 75 4.4 Python specialties and tricks .................................. 83 4.5 Extending Yade ......................................... 83 4.6 Troubleshooting ......................................... 83 5 Parallel hierarchical multiscale modeling of granular media by coupling FEM and DEM with open-source codes Escript and YADE 87 5.1 Introduction ........................................... 87 5.2 Work on the YADE side ..................................... 87 5.3 Work on the Escript side .................................... 88 5.4 Example tests .......................................... 88 5.5 Disclaim ............................................. 89 6 Programmer’s manual 91 6.1 Build system ........................................... 91 6.2 Development tools ........................................ 92 6.3 Conventions ........................................... 93 6.4 Support framework ....................................... 97 6.5 Simulation framework ...................................... 117 6.6 Runtime structure ........................................ 123 6.7 Python framework ........................................ 124 6.8 Maintaining compatibility .................................... 126 6.9 Debian packaging instructions ................................. 127 7 Yade on GitHub 129 7.1 Fast checkout without GitHub account (read-only) ...................... 129 7.2 Using branches on GitHub (for frequent commits see git/trunk section below) ...... 129 iii 7.3 Working directly on git/trunk (recommended for frequent commits) ............ 131 7.4 General guidelines for pushing to yade/trunk ......................... 131 8 Acknowledging Yade 133 8.1 Citing the Yade Project as a whole (the lazy citation method) ............... 133 8.2 Citing chapters of Yade Documentation ............................ 133 Bibliography 135 iv Chapter 1 Installation Yade can be installed from packages (pre-compiled binaries) or source code. The choice depends on what you need: if you don’t plan to modify Yade itself, package installation is easier. In the contrary case, you must download and install the source code. 1.1 Packages Pre-built packages are provided for all currently supported Debian and Ubuntu versions of distributions and available on yade-dem.org/packages . These are daily versions of packages and are updating regularly and include all the newly added features. To install daily-version one needs to add this repository to your /etc/apt/sources.list, add a PGP-key AA915EEB as a trusted and install yadedaily sudo bash -c 'echo "deb http://www.yade-dem.org/packages/ trusty/" >> /etc/apt/sources.list' wget -O - http://www.yade-dem.org/packages/yadedev_pub.gpg | sudo apt-key add - sudo apt-get update sudo apt-get install yadedaily If you have another distribution, not Ubuntu Trusty (Version 14.04 LTS), be sure to use the correct name in the first line (for instance, precise, jessie or wheezy). For the list of currently supported distributions, please visit yade-dem.org/packages. After that you can normally start Yade using “yadedaily” or “yadedaily-batch” command. yadedaily on older distributions can have some disabled features due to older library versions, shipped with particular distribution. Git-repository for packaging stuff is available on GitHub. Each branch corresponds to one distribution e.g. precise, jessie etc. The scripts for building all of this stuff is here. It uses pbuilder to build packages, so all packages are building in a clean environment. If you do not need yadedaily-package any more, just remove the corresponding line in /etc/apt/sources.list and the package itself: sudo apt-get remove yadedaily To remove our key from keyring, execute the following command: sudo apt-key remove AA915EEB Since 2011 all Ubuntu versions (starting from 11.10, Oneiric) and Debian (starting from Wheezy) are having already Yade in their main repositories. There are only stable releases are placed. To install the program, run the following: sudo apt-get install yade 1 Using and Programming, Release Yade documentation 2nd ed. To check, what version of Yade is in specific distribution, visit the links for Ubuntu and Debian. Debian- Backports repository is updating regularly to bring the newest Yade to a users of stable Debians. Daily and stable Yade versions can coexist without any conflicts. 1.2 Source code Installation from source code is reasonable, when you want to add or modify constitutive laws, engines or functions... Installing the latest trunk version allows one to use newly added features, which are not yet available in packaged versions. 1.2.1 Download If you want to install from source, you can install either a release (numbered version, which is frozen) or the current development version (updated by the developers frequently). You should download the development version (called trunk) if you want to modify the source code, as you might encounter problems that will be fixed by the developers. Release version will not be modified (except for updates due to critical and easy-to-fix bugs), but they are in a more stabilized state that trunk generally. 1. Releases can be downloaded from the download page, as compressed archive. Uncompressing the archive gives you a directory with the sources. 2. developement version (trunk) can be obtained from the code repository at github. We use GIT (the git command) for code management (install the git package in your distribution and create a GitHub account): git clone [email protected]:yade/trunk.git will download the whole code repository of trunk. Check out Yade on GitHub for more. Alternatively, a read-only checkout is possible via https without a GitHub account (easier if you don’t want to modify the main Yade branch): git clone https://github.com/yade/trunk.git For those behind firewall, you can download the sources from our GitHub repository as compressed archive. Release and trunk sources are compiled in the same way. To be notified about new commits into the trunk, use watch option on GitHub. 1.2.2 Prerequisites Yade relies on a number of external software to run; they are checked before the compilation starts. Some of them are only optional. The last ones are only relevant for using the fluid coupling module (FlowEngine). • cmake build system • gcc compiler (g++); other compilers will not work; you need g++>=4.2 for openMP support • boost 1.35 or later • qt4 library • freeglut3 • libQGLViewer • python, numpy, ipython • matplotlib • eigen3 algebra library (minimal required version 3.2.1) 2 Chapter 1. Installation Using and Programming, Release Yade documentation 2nd ed. • gdb debugger • sqlite3 database engine • Loki library • VTK library (optional but recommended) • CGAL library (optional) • SuiteSparse sparse algebra library (fluid coupling, optional, requires eigen>=3.1) • OpenBLAS optimized and parallelized alternative to the standard blas+lapack (fluid coupling, optional) • Metis matrix preconditioning (fluid coupling, optional) Most of the list above is very likely already packaged for your distribution. In case you are confronted with some errors concerning not available packages (e.g. Package libmetis-dev is not available) it may be necessary to add yade external ppa from https://launchpad.net/~yade-users/+archive/external: sudo add-apt-repository ppa:yade-users/external sudo apt-get update The following commands have to be executed in command line of corresponding distributions. Just copy&paste to the terminal. To perform commands you should have root privileges Warning: If you have Ubuntu 12.10 or older, you need to install libqglviewer-qt4-dev package instead of libqglviewer-dev. • Ubuntu, Debian and their derivatives: sudo apt-get install cmake git freeglut3-dev libloki-dev \ libboost-all-dev fakeroot dpkg-dev build-essential g++ \ python-dev ipython python-matplotlib libsqlite3-dev python-numpy python-tk gnuplot \ libgts-dev python-pygraphviz libvtk5-dev python-scientific libeigen3-dev \ python-xlib python-qt4 pyqt4-dev-tools gtk2-engines-pixbuf python-argparse \ libqglviewer-dev python-imaging libjs-jquery python-sphinx python-git python-bibtex \ libxmu-dev libxi-dev libcgal-dev help2man
Recommended publications
  • Expert Python Programming Third Edition
    Expert Python Programming Third Edition Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7 Michał Jaworski Tarek Ziadé BIRMINGHAM - MUMBAI Expert Python Programming Third Edition Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Chaitanya Nair Content Development Editor: Zeeyan Pinheiro Technical Editor: Ketan Kamble Copy Editor: Safis Editing Project Coordinator: Vaidehi Sawant Proofreader: Safis Editing Indexer: Priyanka Dhadke Graphics: Alishon Mendonsa Production Coordinator: Shraddha Falebhai First published: September 2008 Second edition: May 2016 Third edition: April 2019 Production reference: 1270419 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78980-889-6 www.packtpub.com To my beloved wife, Oliwia, for her love, inspiration, and her endless patience.
    [Show full text]
  • Op E N So U R C E Yea R B O O K 2 0
    OPEN SOURCE YEARBOOK 2016 ..... ........ .... ... .. .... .. .. ... .. OPENSOURCE.COM Opensource.com publishes stories about creating, adopting, and sharing open source solutions. Visit Opensource.com to learn more about how the open source way is improving technologies, education, business, government, health, law, entertainment, humanitarian efforts, and more. Submit a story idea: https://opensource.com/story Email us: [email protected] Chat with us in Freenode IRC: #opensource.com . OPEN SOURCE YEARBOOK 2016 . OPENSOURCE.COM 3 ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ OPENSOURCE.COM...... ........ .. .. .. ... .... ........ WRITE FOR US ..... .. .. .. ... .... 7 big reasons to contribute to Opensource.com: Career benefits: “I probably would not have gotten my most recent job if it had not been for my articles on 1 Opensource.com.” Raise awareness: “The platform and publicity that is available through Opensource.com is extremely 2 valuable.” Grow your network: “I met a lot of interesting people after that, boosted my blog stats immediately, and 3 even got some business offers!” Contribute back to open source communities: “Writing for Opensource.com has allowed me to give 4 back to a community of users and developers from whom I have truly benefited for many years.” Receive free, professional editing services: “The team helps me, through feedback, on improving my 5 writing skills.” We’re loveable: “I love the Opensource.com team. I have known some of them for years and they are 6 good people.” 7 Writing for us is easy: “I couldn't have been more pleased with my writing experience.” Email us to learn more or to share your feedback about writing for us: https://opensource.com/story Visit our Participate page to more about joining in the Opensource.com community: https://opensource.com/participate Find our editorial team, moderators, authors, and readers on Freenode IRC at #opensource.com: https://opensource.com/irc .
    [Show full text]
  • Python Programming (13A05806)
    13A05806 Python Programming DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING PYTHON PROGRAMMING (13A05806) YEAR / SEM: IV / II PREPARED BY: Mr. P. Rama Rao Department of CSE-GPCET 13A05806 Python Programming (13A05806) PYTHON PROGRAMMING UNIT – I: Introduction:History of Python, Need of Python Programming, Applications Basics of Python Programming Using the REPL(Shell), Running Python Scripts, Variables, Assignment, Keywords, Input-Output, Indentation. Types - Integers, Strings, Booleans; UNIT – II: Operators and Expressions: Operators- Arithmetic Operators, Comparison (Relational) Operators, Assignment Operators, Logical Operators, Bitwise Operators, Membership Operators, Identity Operators, Expressions and order of evaluations. Data Structures Lists - Operations, Slicing, Methods; Tuples, Sets, Dictionaries, Sequences. Comprehensions. UNIT – III: Control Flow - if, if-elif-else, for, while, break, continue, pass Functions - Defining Functions, Calling Functions, Passing Arguments, Keyword Arguments, Default Arguments, Variable-length arguments, Anonymous Functions, Fruitful Functions(Function Returning Values), Scope of the Variables in a Function - Global and Local Variables. UNIT – IV: Modules: Creating modules, import statement, from ..import statement, name spacing, Python packages, Introduction to PIP, Installing Packages via PIP, Using Python Packages Error and Exceptions: Difference between an error and Exception, Handling Exception, try except block, Raising Exceptions, User Defined Exceptions . Object Oriented Programming OOP in Python: Classes, 'self variable', Methods, Constructor Method, Inheritance, Overriding Methods, Data Hiding, UNIT – V: Brief Tour of the Standard Library - Operating System Interface - String Pattern Matching, Mathematics, Internet Access, Dates and Times, Data Compression, Multi Threading, GUI Programming, Turtle Graphics. Testing: Why testing is required ?, Basic concepts of testing, Unit testing in Python, Writing Test cases, Running Tests. TEXT BOOKS 1. Python Programming: A Modern Approach, Vamsi Kurama, Pearson 2.
    [Show full text]
  • Python Libraries.Pdf
    Astronomy ESFRI & Research Infrastructure Cluster ASTERICS - 653477 2nd ASTERICS-OBELICS International School 4-8 June 2018, Annecy, France. H2020-Astronomy ESFRI and Research Infrastructure Cluster (Grant Agreement number: 653477). ASTERICS-OBELICS School 2018 / Annecy PYTHON LIBRARIES Tamás Gál [email protected] https:/github.com/tamasgal @tamasgal OVERVIEW • Who is this clown? • Python Introduction • Basic Python Internals • Libraries and Tools for Scientific Computing • NumPy • Numba Make it faster! • NumExpr } • SciPy • AstroPy • Pandas • SymPy Tools for scientists! • Matplotlib • Jupyter } • IPython WHO IS THIS CLOWN? • Tamás Gál, born 1985 in Debrecen (Hungary) • PhD candidate in astro particle physics at Erlangen Centre for Astroparticle Physics (ECAP) working on the KM3NeT project • Programming background: • Coding enthusiast since ~1993 • First real application written in Amiga Basic (toilet manager, tons of GOTOs ;) • Python, Julia, JavaScript and C/C+/Obj-C for work • Haskell for fun • Earlier also Java, Perl, PHP, Delphi, MATLAB, whatsoever… • I also like playing around with integrated circuits and Arduino • Some related projects: KM3Pipe (analysis framework in the KM3NeT experiment), RainbowAlga (interactive 3D neutrino event display), ROyWeb (interactive realtime visualisation/graphing) 4 PYTHON BRIEF HISTORY OF PYTHON • Rough idea in the late 1980s • Meant to descend the ABC language • First line of code in December 1989 by Guido van Rossum • Python 2.0 in October 2000 • Python 3.0 in December 2008 6 PYTHONS POPULARITY “Programming language of the year” in 2007 and 2010. 7 POPULAR LANGUAGES (MAY 2017) Python is the fourth most popular language and rocks the top 10 since 2003. 8 POPULAR LANGUAGES (MAY 2018) May 2017 Python is still the fourth most popular language and rocks the top 10 since 2003.
    [Show full text]
  • Comparative Studies of Six Programming Languages
    Comparative Studies of Six Programming Languages Zakaria Alomari Oualid El Halimi Kaushik Sivaprasad Chitrang Pandit Concordia University Concordia University Concordia University Concordia University Montreal, Canada Montreal, Canada Montreal, Canada Montreal, Canada [email protected] [email protected] [email protected] [email protected] Abstract Comparison of programming languages is a common topic of discussion among software engineers. Multiple programming languages are designed, specified, and implemented every year in order to keep up with the changing programming paradigms, hardware evolution, etc. In this paper we present a comparative study between six programming languages: C++, PHP, C#, Java, Python, VB ; These languages are compared under the characteristics of reusability, reliability, portability, availability of compilers and tools, readability, efficiency, familiarity and expressiveness. 1. Introduction: Programming languages are fascinating and interesting field of study. Computer scientists tend to create new programming language. Thousand different languages have been created in the last few years. Some languages enjoy wide popularity and others introduce new features. Each language has its advantages and drawbacks. The present work provides a comparison of various properties, paradigms, and features used by a couple of popular programming languages: C++, PHP, C#, Java, Python, VB. With these variety of languages and their widespread use, software designer and programmers should to be aware
    [Show full text]
  • A Brief Overview of Functional Programming Languages
    electronic Journal of Computer Science and Information Technology (eJCSIT), Vol. 6, No. 1, 2016 A Brief Overview of Functional Programming Languages Jagatheesan Kunasaikaran1, Azlan Iqbal2 1ZALORA Malaysia, Jalan Dua, Chan Sow Lin, Kuala Lumpur, Malaysia e-mail: [email protected] 2College of Computer Science and Information Technology, Universiti Tenaga Nasional, Putrajaya Campus, Selangor, Malaysia e-mail: [email protected] Abstract – Functional programming is an important Common programming paradigms are procedural, object- programming paradigm. It is based on a branch of oriented and functional. Figure 1 illustrates conceptually mathematics known as lambda calculus. In this article, we the differences between the common programming provide a brief overview, aimed at those new to the field, and language paradigms [1]. Procedural and object-oriented explain the progress of functional programming since its paradigms mutate or alter the data along program inception. A selection of functional languages are provided as examples. We also suggest some improvements and speculate execution. On the other hand, in pure functional style, the on the potential future directions of this paradigm. data does not exist by itself or independently. A composition of function calls with a set of arguments Keywords – functional, programming languages, LISP, Python; generates the final result that is expected. Each function is Javascript,Java, Elm, Haskell ‘atomic’ as it only executes operations defined in it to the input data and returns the result of the computation to the ‘callee’. I. INTRODUCTION II. FUNCTIONAL LANGUAGES Programming languages can be classified into the style of programming each language supports. There are multiple Functional programming is based on mathematical logic.
    [Show full text]
  • International Journal of Advance Engineering and Research
    International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 Special Issue SIEICON-2017,April -2017 e-ISSN : 2348-4470 p-ISSN : 2348-6406 Python Programming-Applications and Future Kalyani Adawadkar1 1Head of Department, Department of Information Technology, Sigma Institute of Engineering Abstract — Python is a high-level and powerful object-oriented programming language created by Guido van Rossum. Because of its simple syntax, it is a very good choice for those who are learning programming for the first time. It is used in vast number of applications due to the various standard libraries that come along with it and its capacity to integrate with other languages and use their features. This paper describes the main features of Python programming. It lists out the difference between Python and other language with the help of some code. This paper then discusses applications of Python programming. To end with we will see a few good examples where python programming is being used. Keywords-programming, open source, object-oriented, interoperability, sockets I. INTRODUCTION Python was conceived in late 1980s, while its implementation began in late 1989 by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands. It was implemented as a successor of ABC language capable of exception handling and interfacing with the operating system Amoeba. Van Rossum is Python's principal author, and his continuing central role in deciding the road to development of Python is reflected in the title given to him by the Python community, benevolent dictator for life (BDFL) [4,5,6].
    [Show full text]
  • Learn Python in 7 Days
    Learn Python in 7 Days Get up-and-running with Python Mohit Bhaskar N. Das BIRMINGHAM - MUMBAI Learn Python in 7 Days Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: May 2017 Production reference: 1190517 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78728-838-6 www.packtpub.com Credits Authors Copy Editor Mohit Muktikant Garimella Bhaskar N. Das Reviewer Project Coordinator Rejah Rehim Ulhas Kambali Commissioning Editor Proofreader Kunal Parikh Safis Editing Acquisition Editor Indexer Denim Pinto Pratik Shirodkar Content Development Editor Graphics Anurag Ghogre Abhinash Sahu Technical Editor Production Coordinator Hussain Kanchwala Deepika Naik About the Authors Mohit ([email protected]) is a Python programmer with a keen interest in the field of information security.
    [Show full text]
  • Python Tutorial by Bernd Klein
    Python Tutorial by Bernd Klein bodenseo © 2021 Bernd Klein All rights reserved. No portion of this book may be reproduced or used in any manner without written permission from the copyright owner. For more information, contact address: [email protected] www.python-course.eu Python Course Python Tutorial by Bernd Klein Strings.......................................................................................................................................10 Execute a Python script ............................................................................................................11 Start a Python program.............................................................................................................12 Loops ......................................................................................................................................136 Iterators and Iterables .............................................................................................................150 Coffee, Dictionary and a Loop ...............................................................................................171 Parameters and Arguments.....................................................................................................226 Global, Local and nonlocal Variables.....................................................................................237 Regular Expressions ...............................................................................................................305 Lambda, filter, reduce
    [Show full text]
  • R Programming Module Overview Learning Objectives Learning
    R Programming Module Overview The following module comprises of R programming basics and application of several Statistical Techniques using it. The module aims to provide exposure in terms of Statistical Analysis, Hypothesis Testing, Regression and Correlation using R programming language. Learning Objectives The objective of this module to make students exercise the fundamentals of statistical analysis in R environment. They would be able to analysis data for the purpose of exploration using Descriptive and Inferential Statistics. Students will understand Probability and Sampling Distributions and learn the creative application of Linear Regression in multivariate context for predictive purpose. Learning Outcomes After the successful completion of this module, students will be able to: • Install, Code and Use R Programming Language in R Studio IDE to perform basic tasks on Vectors, Matrices and Data frames. • Describe key terminologies, concepts and techniques employed in Statistical Analysis. • Define, Calculate, Implement Probability and Probability Distributions to solve a wide variety of problems. • Conduct and Interpret a variety of Hypothesis Tests to aid Decision Making. • Understand, Analyse, Interpret Correlation and Regression to analyse the underlying relationships between different variables. Unit I Introduction to R Programming R and R Studio, Logical Arguments, Missing Values, Characters, Factors and Numeric, Help in R, Vector to Matrix, Matrix Access, Data Frames, Data Frame Access, Basic Data Manipulation Techniques, Usage of various apply functions – apply, lapply, sapply and tapply, Outliers treatment. Unit II Descriptive Statistics Types of Data, Nominal, Ordinal, Scale and Ratio, Measures of Central Tendency, Mean, Mode and Median, Bar Chart, Pie Chart and Box Plot, Measures of Variability, Range, Inter-Quartile- Range, Standard Deviation, Skewness and Kurtosis, Histogram, Stem and Leaf Diagram, Standard Error of Mean and Confidence Intervals.
    [Show full text]
  • The Official Ubuntu Book, 7Th Edition.Pdf
    ptg8126969 Praise for Previous Editions of The Official Ubuntu Book “The Official Ubuntu Book is a great way to get you started with Ubuntu, giving you enough information to be productive without overloading you.” —John Stevenson, DZone book reviewer “OUB is one of the best books I’ve seen for beginners.” —Bill Blinn, TechByter Worldwide “This book is the perfect companion for users new to Linux and Ubuntu. It covers the basics in a concise and well-organized manner. General use is covered separately from troubleshooting and error-handling, making the book well-suited both for the beginner as well as the user that needs extended help.” —Thomas Petrucha, Austria Ubuntu User Group “I have recommended this book to several users who I instruct regularly on ptg8126969 the use of Ubuntu. All of them have been satisfied with their purchase and have even been able to use it to help them in their journey along the way.” —Chris Crisafulli, Ubuntu LoCo Council, Florida Local Community Team “This text demystifies a very powerful Linux operating system . In just a few weeks of having it, I’ve used it as a quick reference a half-dozen times, which saved me the time I would have spent scouring the Ubuntu forums online.” —Darren Frey, Member, Houston Local User Group This page intentionally left blank ptg8126969 The Official Ubuntu Book Seventh Edition ptg8126969 This page intentionally left blank ptg8126969 The Official Ubuntu Book Seventh Edition Matthew Helmke Amber Graner With Kyle Rankin, Benjamin Mako Hill, ptg8126969 and Jono Bacon Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]
  • Why Python Rocks for Research...???
    International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 09 | Sep 2019 www.irjet.net p-ISSN: 2395-0072 WHY PYTHON ROCKS FOR RESEARCH....??? Kapish Kumar Student of B.Tech CSE Department, IIMT College of Engg. , Gr.Noida(U.P.)India. ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Python is a high-level and powerful object- documenting the design decisions that have gone into oriented programming language created by Guido van Python. Outstanding PEPs are commented and reviewed by Rossum. Because of its simple syntax, it is a very good choice the Python Community. for those who are learning programming for the first time. It is used in vast number of applications due to the various As of March 2017, Python is the fifth most popular language. standard libraries that come along with it and its capacity to A study carried out on Python found it to be more productive integrate with other languages and use their features. This than conventional languages for problem solving involving paper describes the main features of Python programming. It string manipulation and search in a dictionary. The social lists out the difference between Python and other language news networking site Reddit is written entirely in Python. with the help of some code. This paper then discusses Python has been used in Artificial Intelligence tasks. Python applications of Python programming. To end with we will is often used for Natural Language processing tasks. Many see a few good examples where python programming is Linux distributions use installers written in Python. Python being used. has also extensive use in Information Security Industry.
    [Show full text]