Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
  • Berlin, Heidelberg : Springer Berlin Heidelberg  (24)
  • Baden-Baden :Nomos,  (18)
  • Boston, MA : Safari
  • Washington, D.C : The World Bank
  • Computer Science  (60)
Material
Language
  • 1
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484253649
    Language: English
    Pages: 1 online resource (316 pages)
    Edition: 2nd edition
    Parallel Title: Erscheint auch als Ketkar, Nikhil Deep learning with Python
    RVK:
    RVK:
    Keywords: Electronic books ; local ; Electronic books ; Deep learning ; Python ; PyTorch
    Abstract: Master the practical aspects of implementing deep learning solutions with PyTorch, using a hands-on approach to understanding both theory and practice. This updated edition will prepare you for applying deep learning to real world problems with a sound theoretical foundation and practical know-how with PyTorch, a platform developed by Facebook’s Artificial Intelligence Research Group. You'll start with a perspective on how and why deep learning with PyTorch has emerged as an path-breaking framework with a set of tools and techniques to solve real-world problems. Next, the book will ground you with the mathematical fundamentals of linear algebra, vector calculus, probability and optimization. Having established this foundation, you'll move on to key components and functionality of PyTorch including layers, loss functions and optimization algorithms. You'll also gain an understanding of Graphical Processing Unit (GPU) based computation, which is essential for training deep learning models. All the key architectures in deep learning are covered, including feedforward networks, convolution neural networks, recurrent neural networks, long short-term memory networks, autoencoders and generative adversarial networks. Backed by a number of tricks of the trade for training and optimizing deep learning models, this edition of Deep Learning with Python explains the best practices in taking these models to production with PyTorch. What You'll Learn Review machine learning fundamentals such as overfitting, underfitting, and regularization. Understand deep learning fundamentals such as feed-forward networks, convolution neural networks, recurrent neural networks, automatic differentiation, and stochastic gradient descent. Apply in-depth linear algebra with PyTorch Explore PyTorch fundamentals and its building blocks Work with tuning and optimizing models Who This Book Is For Beginners with a working knowledge of Python who want to understand Deep Learning in a practical, hands-on manner.
    Note: Online resource; Title from title page (viewed April 9, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Manning Publications | Boston, MA : Safari
    ISBN: 9781617294556
    Language: English
    Pages: 1 online resource (456 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als McNamara, Tim Rust in action
    DDC: 005.133
    RVK:
    Keywords: Electronic books ; local ; Rust ; Systemprogrammierung ; Parallelverarbeitung
    Abstract: Rust in Action is a hands-on guide to systems programming with Rust. Written for inquisitive programmers, it presents real-world use cases that go far beyond syntax and structure. You’ll explore Rust implementations for file manipulation, networking, and kernel-level programming and discover awesome techniques for parallelism and concurrency. Along the way, you’ll master Rust’s unique borrow checker model for memory management without a garbage collector.
    Note: Online resource; Title from title page (viewed August 4, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Wiley | Boston, MA : Safari
    ISBN: 9781119740759
    Language: English
    Pages: 1 online resource (400 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Big data analytics for Internet of things
    DDC: 005.7
    RVK:
    Keywords: Electronic books ; local ; Big Data ; Datenverarbeitung ; Internet der Dinge
    Abstract: BIG DATA ANALYTICS FOR INTERNET OF THINGS Discover the latest developments in IoT Big Data with a new resource from established and emerging leaders in the field Big Data Analytics for Internet of Things delivers a comprehensive overview of all aspects of big data analytics in Internet of Things (IoT) systems. The book includes discussions of the enabling technologies of IoT data analytics, types of IoT data analytics, challenges in IoT data analytics, demand for IoT data analytics, computing platforms, analytical tools, privacy, and security. The distinguished editors have included resources that address key techniques in the analysis of IoT data. The book demonstrates how to select the appropriate techniques to unearth valuable insights from IoT data and offers novel designs for IoT systems. With an abiding focus on practical strategies with concrete applications for data analysts and IoT professionals, Big Data Analytics for Internet of Things also offers readers: A thorough introduction to the Internet of Things, including IoT architectures, enabling technologies, and applications An exploration of the intersection between the Internet of Things and Big Data, including IoT as a source of Big Data, the unique characteristics of IoT data, etc. A discussion of the IoT data analytics, including the data analytical requirements of IoT data and the types of IoT analytics, including predictive, descriptive, and prescriptive analytics A treatment of machine learning techniques for IoT data analytics Perfect for professionals, industry practitioners, and researchers engaged in big data analytics related to IoT systems, Big Data Analytics for Internet of Things will also earn a place in the libraries of IoT designers and manufacturers interested in facilitating the efficient implementation of data analytics strategies.
    Note: Online resource; Title from title page (viewed April 20, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781800208117
    Language: English
    Pages: 1 online resource (464 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Pikus, Fedor G. The art of writing efficient programs
    RVK:
    Keywords: Electronic books
    Abstract: Get to grips with various performance improvement techniques such as concurrency, lock-free programming, atomic operations, parallelism, and memory management Key Features Understand the limitations of modern CPUs and their performance impact Find out how you can avoid writing inefficient code and get the best optimizations from the compiler Learn the tradeoffs and costs of writing high-performance programs Book Description The great free lunch of "performance taking care of itself" is over. Until recently, programs got faster by themselves as CPUs were upgraded, but that doesn't happen anymore. The clock frequency of new processors has almost peaked. New architectures provide small improvements to existing programs, but this only helps slightly. Processors do get larger and more powerful, but most of this new power is consumed by the increased number of processing cores and other "extra" computing units. To write efficient software, you now have to know how to program by making good use of the available computing resources, and this book will teach you how to do that. The book covers all the major aspects of writing efficient programs, such as using CPU resources and memory efficiently, avoiding unnecessary computations, measuring performance, and how to put concurrency and multithreading to good use. You'll also learn about compiler optimizations and how to use the programming language (C++) more efficiently. Finally, you'll understand how design decisions impact performance. By the end of this book, you'll not only have enough knowledge of processors and compilers to write efficient programs, but you'll also be able to understand which techniques to use and what to measure while improving performance. At its core, this book is about learning how to learn. What you will learn Discover how to use the hardware computing resources in your programs effectively Understand the relationship between memory order and memory barriers Familiarize yourself with the performance implications of different data structures and organizations Assess the performance impact of concurrent memory accessed and how to minimize it Discover when to use and when not to use lock-free programming techniques Explore different ways to improve the effectiveness of compiler optimizations Design APIs for concurrent data structures and high-performance data structures to avoid inefficiencies Who this book is for This book is for experienced developers and programmers who work ...
    Note: Online resource; Title from title page (viewed October 22, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : No Starch Press | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (464 pages)
    Edition: 3rd edition
    Parallel Title: Erscheint auch als Ward, Brian, 1972 - How Linux works
    DDC: 005.432
    RVK:
    Keywords: Electronic books ; local ; LINUX
    Abstract: Unlike some operating systems, Linux doesn’t try to hide the important bits from you—it gives you full control of your computer. But to truly master Linux, you need to understand its internals, like how the system boots, how networking works, and what the kernel actually does. In this third edition of the bestselling How Linux Works , author Brian Ward peels back the layers of this well-loved operating system to make Linux internals accessible. This edition has been thoroughly updated and expanded with added coverage of Logical Volume Manager (LVM), virtualization, and containers. You'll learn: •How Linux boots, from boot loaders to init (systemd) •How the kernel manages devices, device drivers, and processes •How networking, interfaces, firewalls, and servers work •How development tools work and relate to shared libraries •How to write effective shell scripts You’ll also explore the kernel and examine key system tasks inside user space, including system calls, input and output, and filesystems. With its combination of background, theory, real-world examples, and patient explanations, How Linux Works , 3rd edition will teach you what you need to know to solve pesky problems and take control of your operating system.
    Note: Online resource; Title from title page (viewed April 13, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    ISBN: 9780136523796
    Language: English
    Pages: 1 online resource (336 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Erder, Murat Continuous architecture in practice
    RVK:
    Keywords: Electronic books ; local
    Abstract: Revamp Your Architectural Practices for New Challenges, Environments, and Stakeholder Expectations "This book recognizes that software architecture is not the merely conceptual domain of disconnected experts but is the . . . give-and-take daily tussle of team members who have to balance trade-offs and competing forces to deliver resilient, high-performing, secure applications. . . . [It] bridges the significant gap between the 'Earth from orbit' view and the pavement-level view of refactoring microservice code." --Kurt Bittner, VP, Enterprise Solutions, Scrum.org Authors Murat Erder, Pierre Pureur, and Eoin Woods have taken their extensive enterprise architecture experience and applied it to the practical aspects of continuous architecture in real-world environments. Continuous Architecture in Practice provides hands-on advice for leveraging continuous architecture in real-world environments and illuminates architecture's changing role in the age of Agile, DevSecOps, and cloud platforms. This guide will help technologists update their architecture practice for new application challenges. As part of the Vaughn Vernon Addison-Wesley Signature Series, this title was hand-selected for the practical, delivery-oriented knowledge that architects and software engineers can quickly apply. It includes in-depth guidance for addressing today's key quality attributes, including cross-cutting concerns such as security, performance, scalability, resilience, data, and innovation. Each key technique is demonstrated through a start-to-finish case study reflecting the authors' deep experience evolving complex software environments. Create sustainable, coherent systems that meet functional requirements and the quality attributes stakeholders care about Understand team-based software architecture and architecture as a "flow of decisions" Reflect varied data technologies and crucial issues of data management, integration, and change Architect for security, including continuous threat modeling and mitigation Use architecture to improve performance in continuous delivery environments Architect for scalability and scale microservices and serverless environments Use architecture to apply emerging technologies more successfully
    Note: Online resource; Title from title page (viewed June 7, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (300 pages)
    Edition: 2nd edition
    Parallel Title: Erscheint auch als Downey, Allen B. Think Bayes
    RVK:
    Keywords: Electronic books ; local
    Abstract: If you know how to program, you're ready to tackle Bayesian statistics. With this book, you'll learn how to solve statistical problems with Python code instead of mathematical formulas, using discrete probability distributions rather than continuous mathematics. Once you get the math out of the way, the Bayesian fundamentals will become clearer and you'll begin to apply these techniques to real-world problems. Bayesian statistical methods are becoming more common and more important, but not many resources are available to help beginners. Based on undergraduate classes taught by author Allen Downey, this book's computational approach helps you get a solid start. Use your programming skills to learn and understand Bayesian statistics Work with problems involving estimation, prediction, decision analysis, evidence, and Bayesian hypothesis testing Get started with simple examples, using coins, dice, and a bowl of cookies Learn computational methods for solving real-world problems
    Note: Online resource; Title from title page (viewed May 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    ISBN: 978-3-7489-2714-3
    Language: German
    Pages: 1 Online-Ressource (446 Seiten) : , Illustrationen, Diagramme.
    Edition: 1. Auflage
    Series Statement: Nomos Universitätsschriften. Volkswirtschaftslehre Band 8
    Series Statement: Nomos Universitätsschriften. Volkswirtschaftslehre
    Parallel Title: Erscheint auch als
    Dissertation note: Dissertation Europa-Universität Flensburg 2021
    RVK:
    RVK:
    Keywords: Rawls, John ; Digitalisierung ; Freiheit ; CSR ; Justice ; Corporate Social Responsibility ; Ungleichheit ; Welfare ; Data Sharing ; Schleier des Nichtwissens ; Veil of Ignorance ; Unterschiedsprinzip ; Digitale Revolution. ; Big Data. ; Gerechtigkeit. ; Hochschulschrift ; Digitale Revolution ; Big Data ; 1921-2002 Rawls, John ; Gerechtigkeit
    Abstract: Was würde John Rawls zu einer datenbasierten Wirtschaft sagen? Das rege Interesse an Big Data ist getrieben von der Möglichkeit, aus großen Datenmengen Informationen über Verhalten und Präferenzen zu generieren und somit Kunden z. B. passgenau Produkte zu präsentieren. Allerdings beinhaltet Big Data zugleich Risiken, insbesondere im Kontext von Privatheit. Ausgehend hiervon finden Diskussionen im Bereich von Gerechtigkeit statt, denn zumeist verfügen Akteure der Datenwirtschaft über ungleiche Macht und Eingriffsmöglichkeiten. Mit Rawls’ Theorie wird dieser Problematik nachgegangen und untersucht, welchen Einfluss Big Data auf eine Gesellschaft hat. Das Buch richtet sich an alle, die am Diskurs zur Gestaltung der digitalen Wirtschaft interessiert sind
    Abstract: What would John Rawls say about a data-based economy? The lively interest in big data is driven by the possibility of generating information about behaviour and preferences from large volumes of data and thus presenting customers with products that are precisely tailored to their needs, for example. However, big data also involves risks, especially in the context of privacy. Based on this, discussions are taking place in the area of justice because, for the most part, actors in the data economy have unequal power and opportunities for intervention. Using Rawls' theory, this study explores this issue and examines the impact big data has on a society. The book is intended for anyone interested in the discourse shaping the digital economy
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    ISBN: 978-3-8487-5665-0 , 3-8252-3781-8
    Language: German
    Pages: 275 Seiten : , Illustrationen, Diagramme.
    Edition: 3., vollständig überarbeitete Auflage
    Series Statement: Studienkurs Sozialwirtschaft
    Parallel Title: Erscheint auch als
    Former Title: 2. Auflage Kreidenweis, Helmut Lehrbuch Sozialinformatik
    DDC: 361.30285
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Sozialwesen. ; Datenverarbeitung. ; Informationsmanagement. ; Sozialwesen ; Datenverarbeitung ; Informationsmanagement
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : mitp Verlag | Boston, MA : Safari
    Language: English , German
    Pages: 1 online resource (376 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Russell, Stuart J., 1962 - Human compatible
    DDC: 006.3
    RVK:
    Keywords: Electronic books ; local ; Informationsgesellschaft ; Technischer Fortschritt ; Künstliche Intelligenz ; Kontrolle ; Gesellschaft ; Entwicklung ; Zukunft ; Künstliche Intelligenz ; Kontrolle ; Informationsgesellschaft ; Technischer Fortschritt ; Mensch-Maschine-Kommunikation
    Abstract: Der bekannte KI-Pionier Stuart Russell zeigt die Chancen und Risiken der Künstlichen Intelligenz auf Eine Superintelligenz als Zukunftsszenario - wie wir es schaffen, die Kontrolle zu behalten Eine realistische und kritische Betrachtung der KI mit anschaulichen Analogien und konkreten Lösungsvorschlägen In diesem bahnbrechenden Buch über die größte Frage bei der Entwicklung der KI zeigt der bekannte KI-Forscher Stuart Russell, wieso er sein eigenes Forschungsgebiet als Bedrohung für die menschliche Spezies ansieht und wie wir den aktuellen Kurs ändern können, bevor es zu spät ist. Niemand könnte die Chancen und Risiken dieser Zukunftstechnologie besser beurteilen als Stuart Russell, der seit mehr als einer Dekade an vorderster Front der KI-Forschung steht. Mit brillanten Analogien erklärt er, wie KI genau funktioniert und welche enormen Chancen sie mit sich bringt. Doch wir müssen sicherstellen, dass wir niemals die Kontrolle über diese Maschinen verlieren, die mächtiger sind als wir selbst. Russell zeigt auf, wie wir die schlimmsten Bedrohungen abwenden, indem wir die Grundlagen der KI neu denken, um zu garantieren, dass die Maschinen unsere Ziele verfolgen, nicht ihre. Fundiert, eindringlich und visionär ist Human Compatible ein Buch, das jeder lesen sollte, um die Zukunft zu verstehen, die schneller kommt, als wir denken. Über den Autor: Stuart Russell ist Professor der Informatik am Lehrstuhl Engineering der University of California, Berkeley. Er hat als stellvertretender Vorsitzender des Councils über Künstliche Intelligenz und Robotik des Weltwirtschaftsforums und Berater für die Rüstungskontrolle der Vereinten Nationen fungiert. Darüber hinaus ist er Fellow von Andrew Carnegie sowie der Association for Computing Machinery und der American Association for the Advancement of Science.
    Note: Online resource; Title from title page (viewed June 19, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 11
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781800208988
    Language: English
    Pages: 1 online resource (750 pages)
    Edition: 2nd edition
    Parallel Title: Erscheint auch als Bancila, Marius Modern C++ programming cookbook
    DDC: 005.133
    RVK:
    Keywords: Electronic books ; local ; C++ ; C++20
    Abstract: A pragmatic recipe book for acquiring a comprehensive understanding of the complexities and core fundamentals of C++ programming Key Features Explore the latest language and library features of C++20 such as modules, coroutines, concepts, and ranges Shed new light on the core concepts in C++ programming, including functions, algorithms, threading, and concurrency, through practical self-contained recipes Leverage C++ features like smart pointers, move semantics, constexpr, and more for increased robustness and performance Book Description C++ has come a long way to be one of the most widely used general-purpose languages that is fast, efficient, and high-performance at its core. The updated second edition of Modern C++ Programming Cookbook addresses the latest features of C++20, such as modules, concepts, coroutines, and the many additions to the standard library, including ranges and text formatting. The book is organized in the form of practical recipes covering a wide range of problems faced by modern developers. The book also delves into the details of all the core concepts in modern C++ programming, such as functions and classes, iterators and algorithms, streams and the file system, threading and concurrency, smart pointers and move semantics, and many others. It goes into the performance aspects of programming in depth, teaching developers how to write fast and lean code with the help of best practices. Furthermore, the book explores useful patterns and delves into the implementation of many idioms, including pimpl, named parameter, and attorney-client, teaching techniques such as avoiding repetition with the factory pattern. There is also a chapter dedicated to unit testing, where you are introduced to three of the most widely used libraries for C++: Boost.Test, Google Test, and Catch2. By the end of the book, you will be able to effectively leverage the features and techniques of C++11/14/17/20 programming to enhance the performance, scalability, and efficiency of your applications. What you will learn Understand the new C++20 language and library features and the problems they solve Become skilled at using the standard support for threading and concurrency for daily tasks Leverage the standard library and work with containers, algorithms, and iterators Solve text searching and replacement problems using regular expressions Work with different types of strings and learn the various aspects of compilation Take advantage of the file sys...
    Note: Online resource; Title from title page (viewed September 11, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 12
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : For Dummies | Boston, MA : Safari
    ISBN: 9781119546658
    Language: English
    Pages: 1 online resource (320 pages)
    Edition: 2nd edition
    Parallel Title: Erscheint auch als Kirsch, Daniel D. Cloud computing
    RVK:
    Keywords: Electronic books ; local ; Cloud Computing ; Virtuelle Maschine ; Computersimulation ; Cloud Computing
    Abstract: Get your head —and your business—into the Cloud Cloud computing is no longer just a clever new toy in the world of IT infrastructure. Despite the nebulous name, it’s become a real and important part of our information architecture—and tech professionals who ignore it or try to skim their way through risk falling behind rapidly. The new edition of Cloud Computing For Dummies gets you up to speed fast, clarifying your Cloud options, showing you where can save you time and money, giving you ways to frame your decisions, and helping you avoid weeks of research. In a friendly, easy-to-follow style, Cloud Computing For Dummies, 2nd Edition demystifies the Cloud’s virtual landscape, breaking up a complex and multi-layered topic into simple explanations that will make the various benefits clear and ultimately guide you toward making the most appropriate choices for your organization. Know the business case for the Cloud Understand hybrid and multi-cloud options Develop your Cloud strategy Get tips on best practices The Cloud is everywhere, and it can deliver amazing benefits to our lives and businesses. Get a much clearer vision of exactly how with Cloud Computing For Dummies —and you’ll begin to see that the sky really is the limit!
    Note: Online resource; Title from title page (viewed August 4, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 13
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484265529
    Language: English
    Pages: 1 online resource (353 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Jean-Baptiste, Lamy Ontologies with Python
    RVK:
    Keywords: Electronic books ; local ; Electronic books
    Abstract: Use ontologies in Python, with the Owlready2 module developed for ontology-oriented programming. You will start with an introduction and refresher on Python and OWL ontologies. Then, you will dive straight into how to access, create, and modify ontologies in Python. Next, you will move on to an overview of semantic constructs and class properties followed by how to perform automatic reasoning. You will also learn about annotations, multilingual texts, and how to add Python methods to OWL classes and ontologies. Using medical terminologies as well as direct access to RDF triples is also covered. Python is one of the most used programming languages, especially in the biomedical field, and formal ontologies are also widely used. However, there are limited resources for the use of ontologies in Python. Owlready2, downloaded more than 60,000 times, is a response to this problem, and this book is the first one on the topic of using ontologies with Python. What You Will Learn Use Owlready2 to access and modify OWL ontologies in Python Publish ontologies on dynamic websites Perform automatic reasoning in Python Use well-known ontologies, including DBpedia and Gene Ontology, and terminological resources, such as UMLS (Unified Medical Language System) Integrate Python methods in OWL ontologies Who Is This Book For Beginner to experienced readers from biomedical sciences and artificial intelligence fields would find the book useful.
    Note: Online resource; Title from title page (viewed December 17, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 14
    Online Resource
    Online Resource
    Heidelberg : dpunkt.verlag | Boston, MA : Safari
    ISBN: 9783969100660
    Language: English , German
    Pages: 1 Online-Ressource (608 pages)
    Edition: 6., überarbeitete und erweiterte Auflage
    Parallel Title: Erscheint auch als Saake, Gunter, 1960 - Algorithmen und Datenstrukturen
    RVK:
    Keywords: Electronic books ; local ; Lehrbuch ; Datenstruktur ; Algorithmus ; Java ; Datenstruktur ; Algorithmus ; Java ; Algorithmus ; Datenstruktur
    Abstract: Algorithmen und Datenstrukturen sind Grundbausteine eines jeden Informatikstudiums. Das Buch behandelt diese Thematik in Verbindung mit der Programmiersprache Java. Darüber hinaus werden grundlegende Konzepte angesprochen wie formale und alternative Algorithmenmodelle, Korrektheit und Komplexität. Einen weiteren Schwerpunkt bilden fundamentale Datenstrukturen sowie deren objektorientierte Implementierung mit modernen Methoden der Softwareentwicklung. Die 6. Auflage führt einige neue Algorithmen ein und berücksichtigt die Neuerungen der aktuellen Java-Versionen, u.a. zu Themen wie Parallelisierung.
    Note: Online resource; Title from title page (viewed October 28, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 15
    Language: English , German
    Pages: 1 Online-Ressource (xiii, 125 Seiten)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Yablonski, Jon Laws of UX
    RVK:
    Keywords: Electronic books ; local ; Mensch-Maschine-Kommunikation ; Webdesign ; Gebrauchsgrafik ; Benutzerfreundlichkeit ; Verhaltenspsychologie
    Abstract: Jon Yablonski erklärt in diesem Buch, wie UX-Designerinnen Grundprinzipien aus der Psychologie nutzen können, um eine bessere User Experience zu generieren. Anstatt Benutzerinnen zu zwingen, sich an das Design eines Produkts (z. B. App) anzupassen, hilft dieser praktische Leitfaden dabei, das Design danach auszurichten, wie Benutzer*innen sich verhalten und mit digitalen Schnittstellen interagieren, um ihre Nutzung einfacher und angenehmer zu gestalten. Dabei greift der Autor auf bekannte Regeln und Prinzipien aus der psychologischen Forschung zurück und überträgt sie in die UX-Design-Welt. So sprechen wir beispielsweise einer App mit schönem Design mehr Kompetenz zu und verzeihen ihr eher Fehler, oder erwarten von einem Onlineshop, dass der Kaufprozess so funktionieren, wie wir es von anderen Shops gewohnt sind. Außerdem können wir eine große Menge an Informationen besser speichern und verarbeiten, wenn sie in Chunks gegliedert sind, weshalb etwa Texte, die mithilfe von Überschriften und Absätzen gegliedert sind, eine höhere UX generieren als ein langer Fließtext, der die User überfordert. Nachdem der Autor die verschiedenen Prinzipien erklärt und an anschaulichen, einfach nachzuvollziehenden Beispielen demonstriert hat, zeigt er, wie man diese Prinzipien praktisch für die eigene Arbeit und im Team nutzen kann. Zusätzlich geht er auch auf die ethischen Komponenten ein (Beispiele: Endlos-Scrollen, Like-Button).
    Note: Online resource; Title from title page (viewed September 30, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 16
    ISBN: 978-3-8452-9810-8
    Language: German
    Pages: 1 Online-Ressource (275 Seiten) : , Illustrationen, Diagramme.
    Edition: 3., vollständig überarbeitete Auflage
    Series Statement: Studienkurs Sozialwirtschaft
    Parallel Title: Erscheint auch als
    Former Title: Vorangegangen ist Kreidenweis, Helmut Lehrbuch Sozialinformatik
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Soziale Arbeit ; Technik ; Digitalisierung ; Sozialwirtschaft ; Management ; Sozialinformatik ; Informationstechnologie ; Soziale Organisationen ; IT-Management ; Sozialwesen. ; Datenverarbeitung. ; Informationsmanagement. ; Sozialwesen ; Datenverarbeitung ; Informationsmanagement
    Abstract: Digitale Technologien bieten sozialen Organisationen viele Chancen, sie bergen aber auch Risiken. Die 3., komplett überarbeitete Auflage des Lehrbuchs Sozialinformatik führt in grundlegende und aktuelle Themen der Informatik ein, erklärt Sinn und Zweck der Sozialinformatik und erläutert die Dynamik des digitalen Wandels und seine Auswirkungen auf soziale Organisationen. Es zeigt Entwicklung und Stand der IT-Nutzung in diesem Feld auf und erläutert wichtige Zukunftstrends wie Mobility, Cloud Computing, Big Data und Künstliche Intelligenz. Darüber hinaus bietet es didaktisch aufbereitetes Praxiswissen mit 115 Abbildungen zur Entwicklung von Digitalisierungsstrategien, zum IT- und Prozessmanagement in sozialen Organisationen, zur Nutzung von Digitaltechnologien in der Sozialen Arbeit sowie zu Datenschutz und IT-Sicherheit. Ein Verzeichnis weiterführender Links sowie Übungssaufgaben und zugehörige Lösungen zu jedem Kapitel runden den Band ab. Quelle: Verlagsangabe.
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 17
    ISBN: 978-3-8452-8809-3
    Language: German , English
    Pages: 1 Online-Ressource (301 Seiten) : , Diagramme.
    Edition: 1st edition
    Series Statement: Wirtschafts- und Sozialpolitik Band 20
    Series Statement: Wirtschafts- und Sozialpolitik
    Parallel Title: Erscheint auch als
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Digitale Revolution. ; Sozioökonomischer Wandel. ; Politik. ; Deutschland. ; Schweden. ; Spanien. ; Italien. ; Digitale Revolution ; Sozioökonomischer Wandel ; Politik
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 18
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (170 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Calavera, David Linux observability with BPF
    RVK:
    Keywords: Electronic books ; local ; LINUX ; Programmierung ; Leistungsbewertung
    Abstract: Want to master the BPF virtual machine in the Linux Kernel? This practical guide shows you how to write applications that use BPF to observe and modify the kernel’s behavior on demand—without having prior knowledge of Linux Kernel development. David Calavera and Lorenzo Fontana introduce concepts to help systems engineers understand the BPF program lifecycle. If you have knowledge about performance optimization, networking, and security, this book shows you how to inject code to monitor, trace, and observe events in the kernel in a secure way—without the need to recompile the kernel or reboot the system. You’ll find code examples in C, Go, and Python.
    Note: Online resource; Title from title page (viewed September 25, 2019)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 19
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (693 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Gregg, Brendan BPF performance tools
    RVK:
    Keywords: Electronic books ; local ; LINUX
    Abstract: BPF and related observability tools give software professionals unprecedented visibility into software, helping them analyze operating system and application performance, troubleshoot code, and strengthen security. BPF Performance Tools: Linux System and Application Observability is the industry's most comprehensive guide to using these tools for observability. Brendan Gregg, author of the industry's definitive guide to system performance, introduces powerful new methods and tools for doing analysis that leads to more robust, reliable, and safer code. This authoritative guide: Explores a wide spectrum of software and hardware targets Thoroughly covers open source BPF tools from the Linux Foundation iovisor project's bcc and bpftrace repositories Summarizes performance engineering and kernel internals you need to understand Provides and discusses 150+ bpftrace tools, including 80 written specifically for this book: tools you can run as-is, without programming — or customize and develop further, using diverse interfaces and the bpftrace front-end You'll learn how to use BPF (eBPF) tracing tools to analyze CPUs, memory, disks, file systems, networking, languages, applications, containers, hypervisors, security, and the Linux kernel. You'll move from basic to advanced tools and techniques, producing new metrics, stack traces, custom latency histograms, and more. It's like having a superpower: with Gregg's guidance and tools, you can analyze virtually everything that impacts system performance, so you can improve virtually any Linux operating system or application.
    Note: Online resource; Title from title page (viewed November 6, 2019)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 20
    ISBN: 978-3-8487-5250-8
    Language: German
    Pages: 315 Seiten : , Illustrationen, Diagramme, Karte.
    Edition: 1. Auflage
    Series Statement: Blätter der Wohlfahrtspflege: Sonderband 2018
    Series Statement: Sozialwirtschaft: Sonderband 2018
    Parallel Title: Erscheint auch als
    RVK:
    RVK:
    RVK:
    Keywords: Fürsorge. ; Wohlfahrtsverband. ; Zielgruppe. ; Digitalisierung. ; Sozialwesen. ; Nonprofit-Bereich. ; Teilhabe. ; Soziokultureller Wandel. ; Gesellschaft ; Partizipation ; Teilnahme ; Aktivität ; Sozialwesen ; Aufsatzsammlung ; Fürsorge ; Wohlfahrtsverband ; Zielgruppe ; Digitalisierung ; Sozialwesen ; Nonprofit-Bereich ; Digitalisierung ; Teilhabe ; Soziokultureller Wandel
    Abstract: Mehr Partizipation gilt als ein großes Versprechen der Digitalisierung. Wo sind Ansatzpunkte, wo liegen Risiken der Marginalisierung sozialer Gruppen? Welche Aufgaben fallen den Wohlfahrtsverbänden, den sozialen Diensten und Einrichtungen sowie Politik und Verwaltung zu? Die Autorinnen und Autoren gehen auf politische, technische und ethische Fragen ein. Sie zeigen auf, welche Strukturen zu mehr Beteiligung und Teilhabe führen und nehmen die konkrete Ausgestaltung u.a. für Familien, Jugendliche, Menschen mit Behinderung, Menschen mit Migrationshintergrund und Menschen in Arbeitslosigkeit in den Blick. Der Sonderband ermöglicht einen umfassenden Einblick in die Thematik der Partizipation als einen zentralen Aspekt der digitalen Transformation. Für die Stärkung von Teilhabe und Beteiligung werden Entwicklungslinien und konkrete Handlungsansätze aufgezeigt.
    Note: Titel wurde angekündigt unter: Digitalisierung - da kann ich mitmachen!
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 21
    ISBN: 978-3-7489-0103-7
    Language: German
    Pages: 1 Online-Ressource (379 Seiten) : , Diagramme.
    Edition: 1. Auflage
    Series Statement: Reihe Rezeptionsforschung Band 41
    Series Statement: Reihe Rezeptionsforschung
    Uniform Title: Selektives Googeln
    Parallel Title: Erscheint auch als
    Dissertation note: Dissertation Ludwig-Maximilians-Universität München 2018
    RVK:
    RVK:
    Keywords: Suchmaschine. ; Informationsauswahl. ; Medienkonsum. ; Information. ; Online-Kommunikation ; Information ; Glaubwürdigkeit ; Einstellungskonsistenz ; Rezeptionsforschung ; Automatisierte Beobachtung ; Suchmaschinen ; selektive Zuwendung ; Hochschulschrift ; Suchmaschine ; Informationsauswahl ; Medienkonsum ; Information
    Note: Dissertation eingereicht unter dem Titel: "Selektives Googeln. Die Online-Informationssuche zwischen Glaubwürdigkeit, Einstellungskonsistenz und Bequemlichkeit"
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 22
    ISBN: 978-3-8452-8283-1
    Language: German , English
    Pages: 1 Online-Ressource (280 Seiten) : , Illustrationen.
    Edition: 1. Auflage
    Parallel Title: Erscheint auch als
    RVK:
    RVK:
    RVK:
    Keywords: Drogenmissbrauch. ; Organisiertes Verbrechen. ; Drogenerziehung. ; Electronic Commerce. ; Darknet. ; Rauschgifthandel. ; Aufsatzsammlung ; Drogenmissbrauch ; Organisiertes Verbrechen ; Drogenerziehung ; Electronic Commerce ; Darknet ; Darknet ; Rauschgifthandel ; Organisiertes Verbrechen
    Note: Literaturangaben , Beiträge überwiegend deutsch, teilweise englisch
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 23
    ISBN: 978-3-8487-3929-5 , 3-8487-3929-1
    Language: German
    Pages: 291 Seiten : , Diagramme , Illustrationen.
    Edition: 1. Auflage
    Series Statement: edition sigma
    Parallel Title: Erscheint auch als
    DDC: 303.4833
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Neue Medien. ; Digitale Revolution. ; Informationstechnik. ; Autonomie. ; Problembewusstsein ; Technologie ; Transformationsprozess ; gesellschaftlicher Diskurs ; Kreation und Gestaltung ; Smart Contracts ; Aufsatzsammlung ; Aufsatzsammlung ; Neue Medien ; Digitale Revolution ; Informationstechnik ; Digitale Revolution ; Informationstechnik ; Neue Medien ; Autonomie
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 24
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : mitp Verlag | Boston, MA : Safari
    ISBN: 9783958452756
    Language: English , German
    Pages: 1 online resource (520 pages)
    Edition: 2nd edition
    Parallel Title: Erscheint auch als Harich, Thomas W. IT-Sicherheitsmanagement
    DDC: 005.80218
    RVK:
    RVK:
    Keywords: Electronic books ; local ; BSI ; ISMS ; ISO-27001 ; IT-System ; Compliance ; Monitoring ; Sicherheit ; Controlling ; Datenschutz ; Richtlinien ; DIN-NIA-01-27 ; IT-Compliance ; IT-Sicherheit ; Risikofaktoren ; Cloud Computing ; Datensicherheit ; Risikobewertung ; Datenschutzrecht ; Penetrationstest ; Softwareprojekte ; Geschäftsprozesse ; Notfallmanagement ; digitale Signatur ; Balanced Scorecard ; IT-Risikomanagement ; Softwareentwicklung ; Identitätsmanagement ; Informationssicherheit ; Business Impact-Analyse ; IT-Sicherheitsverfahren ; Risikomanagementprozess ; IT-Sicherheitsmanagement ; ISO/IEC 27001 ; Europäische Union Datenschutz-Grundverordnung ; Computersicherheit ; Rechnernetz ; Systemverwaltung ; Datensicherung ; Computersicherheit
    Abstract: Praxiswissen für IT Security Manager Mit einem durchdachten IT-Sicherheitskonzept zu mehr Informationssicherheit IT Compliance, Business Continuity Management, Risikomanagement oder Security Audit – alle Bereiche des IT Security Managers praxisnah erklärt Aufbau eines Information Security Management Systems (ISMS) nach ISO 27001 und BSI – unter Berücksichtigung der neuen DSGVO Immer mehr Daten werden in Public Clouds verarbeitet, auf Mobiltelefonen gespeichert, über Chat-Apps geteilt oder im Rahmen von Industrie 4.0 in einer Größenordnung erhoben, die bislang kaum denkbar war. Die entsprechenden Maßnahmen der IT-Security müssen sich an diese Veränderungen anpassen. Ebenso wie an die EU-Datenschutz-Grundverordnung, das IT-Sicherheitsgesetz oder das China Cybersecurity Law. Alle diese Regelungen haben immense Auswirkungen darauf, wie Unternehmen Daten erfassen, verarbeiten, speichern oder austauschen dürfen. In der Fülle und der Bandbreite der neuen Regelungen liegt aber immer auch die Gefahr, etwas falsch zu machen. Dieser Praxisleitfaden wird Ihnen dabei helfen, von der schieren Menge an Einzelthemen und Aufgaben, mit denen sich der (angehende) IT Security Manager auseinanderzusetzen hat, nicht erschlagen zu werden und den richtigen Weg zu wählen, um mit all diesen Anforderungen umzugehen. Jedes Kapitel dieses Buches beschreibt einen zusammenhängenden Bereich der IT Security. Die notwendige theoretische Fundierung wechselt sich dabei ab mit Tipps aus der Praxis für die Praxis, mit für den Berufsalltag typischen Fragestellungen, vielen konkreten Beispielen und hilfreichen Checklisten. Alle Teilgebiete werden abschließend in einem Kapitel zusammengeführt, das die Einführung und Weiterentwicklung eines IT-Sicherheitsmanagements auf Basis der ISO-27000-Normen-Familie unter Beachtung der datenschutzrechtlichen Bestimmungen der EU-DSGVO behandelt. So erhalten Sie sowohl einen kompetenten Praxisleitfaden (auch für den Berufseinstieg) als auch ein umfassendes Nachschlagewerk für Ihre tägliche Arbeit. Aus dem Inhalt: Umfang und Aufgabe des IT-Security-Managements Organisation der IT-Security IT-Compliance Organisation von Richtlinien Betrieb der IT-Security IT Business Continuity Management IT-Notfallmanagement Verfügbarkeitsmanagement Technische IT-Security IT-Risikomanagement Sicherheitsmonitoring IT-Security-Audit Management von Sicherheitsereignissen und IT-Forensik Kennzahlen Praxis: Aufbau eines ISMS Awareness und Schulung Über den Autor: T...
    Note: Online resource; Title from title page (viewed June 26, 2018)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 25
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : mitp Verlag | Boston, MA : Safari
    ISBN: 9783958455481 , 9783958455474
    Language: English , German
    Pages: 1 online resource (432 pages)
    Edition: 1st edition
    Series Statement: Mitp Business
    Parallel Title: Erscheint auch als Provost, Foster, 1964 - Data Science für Unternehmen
    DDC: 658.403802856312
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Data mining ; Big data ; Business Data processing ; Management Data processing ; Electronic books ; local ; Exploration de données (Informatique) ; Données volumineuses ; Gestion ; Informatique ; Management ; Data processing ; Big data ; Business ; Data processing ; Data mining ; Unternehmen ; Datenmanagement ; Data Mining ; Datenanalyse
    Abstract: Die grundlegenden Konzepte der Data Science verstehen, Wissen aus Daten ziehen und für Vorhersagen und Entscheidungen nutzen Die wichtigsten Data-Mining-Verfahren gezielt und gewinnbringend einsetzen Zahlreiche Praxisbeispiele zur Veranschaulichung Die anerkannten Data-Science-Experten Foster Provost und Tom Fawcett stellen in diesem Buch die grundlegenden Konzepte der Data Science vor, die für den effektiven Einsatz im Unternehmen von Bedeutung sind. Sie erläutern das datenanalytische Denken, das erforderlich ist, damit Sie aus Ihren gesammelten Daten nützliches Wissen und geschäftlichen Nutzen ziehen können. Sie erfahren detailliert, welche Methoden der Data Science zu hilfreichen Erkenntnissen führen, so dass auf dieser Grundlage wichtige Entscheidungsfindungen unterstützt werden können. Dieser Leitfaden hilft Ihnen dabei, die vielen zurzeit gebräuchlichen Data-Mining-Verfahren zu verstehen und gezielt und gewinnbringend anzuwenden. Sie lernen u.a., wie Sie: Data Science in Ihrem Unternehmen nutzen und damit Wettbewerbsvorteile erzielen Daten als ein strategisches Gut behandeln, in das investiert werden muss, um echten Nutzen daraus zu ziehen Geschäftliche Aufgaben datenanalytisch angehen und den Data-Mining-Prozess nutzen, um auf effiziente Weise sinnvolle Daten zu sammeln Das Buch beruht auf einem Kurs für Betriebswirtschaftler, den Provost seit rund zehn Jahren an der New York University unterrichtet, und nutzt viele Beispiele aus der Praxis, um die Konzepte zu veranschaulichen. Das Buch richtet sich an Führungskräfte und Projektmanager, die Data-Science-orientierte Projekte managen, an Entwickler, die Data-Science-Lösungen implementieren sowie an alle angehenden Data Scientists und Studenten. Aus dem Inhalt: Datenanalytisches Denken lernen Der Data-Mining-Prozess Überwachtes und unüberwachtes Data Mining Einführung in die Vorhersagemodellbildung: von der Korrelation zur überwachten Segmentierung Anhand der Daten optimale Modellparameter finden mit Verfahren wie lineare und logistische Regression sowie Support Vector Machines Prinzip und Berechnung der Ähnlichkeit Nächste-Nachbarn-Methoden und Clustering Entscheidungsanalyse I: Was ist ein gutes Modell Visualisierung der Leistung von Modellen Evidenz und Wahrscheinlichkeiten Texte repräsentieren und auswerten Entscheidungsanalyse II: Analytisches Engineering Data Science und Geschäftsstrategie
    Note: Online resource; Title from title page (viewed October 27, 2017) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 26
    ISBN: 978-3-8452-8510-8
    Language: German
    Pages: 1 Online-Ressource (348 Seiten) : , Illustrationen.
    Edition: 1. Auflage
    Series Statement: Edition Sozialwirtschaft Bd. 43
    Series Statement: Edition Sozialwirtschaft
    Parallel Title: Erscheint auch als
    DDC: 330
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Social entrepreneurship. ; Sozioökonomischer Wandel. ; Digitalisierung. ; Innovation. ; Nachhaltigkeit. ; Gemeinnützige Arbeit. ; Kommerzialisierung. ; Gesellschaft. ; Vernetzung. ; Soziale Verantwortung. ; Digitalisierung ; Ökonomisierung ; Soziale Vernetzung ; Nachhaltigkeit ; Innovation ; Demographie ; Konferenzschrift 2017 ; Social entrepreneurship ; Sozioökonomischer Wandel ; Digitalisierung ; Innovation ; Nachhaltigkeit ; Gemeinnützige Arbeit ; Kommerzialisierung ; Gesellschaft ; Vernetzung ; Digitalisierung ; Innovation ; Soziale Verantwortung
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 27
    ISBN: 978-3-8452-8312-8
    Language: German
    Pages: 1 Online-Ressource (268 Seiten).
    Edition: 1. Auflage
    Parallel Title: Erscheint auch als
    DDC: 330
    RVK:
    RVK:
    RVK:
    Keywords: Sozialethik. ; Sozialer Wandel. ; Globalisierung. ; Electronic Commerce. ; Sozialdienst. ; Nonprofit-Bereich. ; Digitale Revolution. ; Digitale Ethik ; Soziale Arbeit ; Sozialwirtschaft ; Bildung ; Diversität ; Digitalisierung ; Ethik ; Ökonomie ; Sozioinformatik ; Soziales ; Sozialinformatik ; Sozialethik ; Sozialer Wandel ; Globalisierung ; Electronic Commerce ; Sozialdienst ; Nonprofit-Bereich ; Digitale Revolution
    Abstract: Epochale Umbrüche sind in der Geschichte der Menschheit nicht neu. Scheinbar eigenständige Entwicklungen verstärken sich gegenseitig und schaffen eine unübersichtliche Zeit des Übergangs, die trotzdem in eine eindeutige Richtung weist. Damit verändert sich nicht nur die Soziale Arbeit. Es verändern sich auch ihre Rahmenbedingungen sowie der normative Horizont, vor dem sie stattfindet. Quelle: Klappentext.
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 28
    ISBN: 9783662540336
    Language: English
    Pages: 1 Online-Ressource (xii, 261 Seiten)
    Series Statement: The Frontiers Collection
    Parallel Title: Erscheint auch als The technological singularity
    Parallel Title: Print version Callaghan, Victor The Technological Singularity : Managing the Journey
    DDC: 100
    RVK:
    Keywords: Computer science ; Electronic books ; Einzigkeit ; Technischer Fortschritt ; Wissenschaftsethik ; Künstliche Intelligenz ; Risikomanagement
    Abstract: Foreword -- References -- Acknowledgements -- Contents -- 1 Introduction to the Technological Singularity -- 1.1 Why the "Singularity" Is Important -- 1.2 Superintelligence, Superpowers -- 1.3 Danger, Danger! -- 1.4 Uncertainties and Safety -- References -- Risks of, and Responses to, the Journey to the Singularity -- 2 Risks of the Journey to the Singularity -- 2.1 Introduction -- 2.2 Catastrophic AGI Risk -- 2.2.1 Most Tasks Will Be Automated -- 2.2.2 AGIs Might Harm Humans -- 2.2.3 AGIs May Become Powerful Quickly -- 2.2.3.1 Hardware Overhang -- 2.2.3.2 Speed Explosion -- 2.2.3.3 Intelligence Explosion -- References -- 3 Responses to the Journey to the Singularity -- 3.1 Introduction -- 3.2 Post-Superintelligence Responses -- 3.3 Societal Proposals -- 3.3.1 Do Nothing -- 3.3.1.1 AI Is Too Distant to Be Worth Our Attention -- 3.3.1.2 Little Risk, no Action Needed -- 3.3.1.3 Let Them Kill Us -- 3.3.1.4 "Do Nothing" Proposals-Our View -- 3.3.2 Integrate with Society -- 3.3.2.1 Legal and Economic Controls -- 3.3.2.2 Foster Positive Values -- 3.3.2.3 "Integrate with Society" Proposals-Our View -- 3.3.3 Regulate Research -- 3.3.3.1 Review Boards -- 3.3.3.2 Encourage Research into Safe AGI -- 3.3.3.3 Differential Technological Progress -- 3.3.3.4 International Mass Surveillance -- 3.3.3.5 "Regulate Research" Proposals-Our View -- 3.3.4 Enhance Human Capabilities -- 3.3.4.1 Would We Remain Human? -- 3.3.4.2 Would Evolutionary Pressures Change Us? -- 3.3.4.3 Would Uploading Help? -- 3.3.4.4 "Enhance Human Capabilities" Proposals-Our View -- 3.3.5 Relinquish Technology -- 3.3.5.1 Outlaw AGI -- 3.3.5.2 Restrict Hardware -- 3.3.5.3 "Relinquish Technology" Proposals-Our View -- 3.4 External AGI Constraints -- 3.4.1 AGI Confinement -- 3.4.1.1 Safe Questions -- 3.4.1.2 Virtual Worlds -- 3.4.1.3 Resetting the AGI -- 3.4.1.4 Checks and Balances
    Abstract: 3.4.1.5 "AI Confinement" Proposals-Our View -- 3.4.2 AGI Enforcement -- 3.4.2.1 "AGI Enforcement" Proposals-Our View -- 3.5 Internal Constraints -- 3.5.1 Oracle AI -- 3.5.1.1 Oracles Are Likely to Be Released -- 3.5.1.2 Oracles Will Become Authorities -- 3.5.1.3 "Oracle AI" Proposals-Our View -- 3.5.2 Top-Down Safe AGI -- 3.5.2.1 Three Laws -- 3.5.2.2 Categorical Imperative -- 3.5.2.3 Principle of Voluntary Joyous Growth -- 3.5.2.4 Utilitarianism -- 3.5.2.5 Value Learning -- 3.5.2.6 Approval-Directed Agents -- 3.5.2.7 "Top-Down Safe AGI" Proposals-Our View -- 3.5.3 Bottom-up and Hybrid Safe AGI -- 3.5.3.1 Evolutionary Invariants -- 3.5.3.2 Evolved Morality -- 3.5.3.3 Reinforcement Learning -- 3.5.3.4 Human-like AGI -- 3.5.3.5 "Bottom-up and Hybrid Safe AGI" Proposals-Our View -- 3.5.4 AGI Nanny -- 3.5.4.1 "AGI Nanny" Proposals-Our View -- 3.5.5 Motivational Scaffolding -- 3.5.6 Formal Verification -- 3.5.6.1 "Formal Verification" Proposals-Our View -- 3.5.7 Motivational Weaknesses -- 3.5.7.1 High Discount Rates -- 3.5.7.2 Easily Satiable Goals -- 3.5.7.3 Calculated Indifference -- 3.5.7.4 Programmed Restrictions -- 3.5.7.5 Legal Machine Language -- 3.5.7.6 "Motivational Weaknesses" Proposals-Our View -- 3.6 Conclusion -- Acknowledgementss -- References -- Managing the Singularity Journey -- 4 How Change Agencies Can Affect Our Path Towards a Singularity -- 4.1 Introduction -- 4.2 Pre-singularity: The Dynamic Process of Technological Change -- 4.2.1 Paradigm Shifts -- 4.2.2 Technological Change and Innovation Adoption -- 4.2.3 The Change Agency Perspective -- 4.2.3.1 Business Organisations as Agents of Change in Innovation Practice -- 4.2.3.2 Social Networks as Agents of Change -- 4.2.3.3 The Influence of Entrepreneurs as Agents of Change -- 4.2.3.4 Nation States as Agents of Change -- 4.3 Key Drivers of Technology Research and Their Impact
    Abstract: 4.4 The Anti-singularity Postulate -- 4.5 Conclusions -- References -- 5 Agent Foundations for Aligning Machine Intelligence with Human Interests: A Technical Research Agenda -- 5.1 Introduction -- 5.1.1 Why These Problems? -- 5.2 Highly Reliable Agent Designs -- 5.2.1 Realistic World-Models -- 5.2.2 Decision Theory -- 5.2.3 Logical Uncertainty -- 5.2.4 Vingean Reflection -- 5.3 Error-Tolerant Agent Designs -- 5.4 Value Specification -- 5.5 Discussion -- 5.5.1 Toward a Formal Understanding of the Problem -- 5.5.2 Why Start Now? -- References -- 6 Risk Analysis and Risk Management for the Artificial Superintelligence Research and Development Process -- 6.1 Introduction -- 6.2 Key ASI R&D Risk and Decision Issues -- 6.3 Risk Analysis Methods -- 6.3.1 Fault Trees -- 6.3.2 Event Trees -- 6.3.3 Estimating Parameters for Fault Trees and Event Trees -- 6.3.4 Elicitation of Expert Judgment -- 6.3.5 Aggregation of Data Sources -- 6.4 Risk Management Decision Analysis Methods -- 6.5 Evaluating Opportunities for Future Research -- 6.6 Concluding Thoughts -- Acknowledgements -- References -- 7 Diminishing Returns and Recursive Self Improving Artificial Intelligence -- 7.1 Introduction -- 7.2 Self-improvement -- 7.2.1 Evolutionary Algorithms -- 7.2.2 Learning Algorithms -- 7.3 Limits of Recursively Improving Intelligent Algorithms -- 7.3.1 Software Improvements -- 7.3.2 Hardware Improvements -- 7.4 The Takeaway -- References -- 8 Energy, Complexity, and the Singularity -- 8.1 A Contradiction -- 8.2 Challenges -- 8.2.1 Climate Change -- 8.2.2 Biodiversity and Ecosystem Services -- 8.2.3 Energy-or, Where's My Jetsons Car? -- 8.2.4 The Troubles with Science -- 8.3 Energy and Complexity -- 8.4 Exponentials and Feedbacks -- 8.5 Ingenuity, not Data Processing -- 8.6 In Summary -- Acknowledgements -- References
    Abstract: 9 Computer Simulations as a Technological Singularity in the Empirical Sciences -- 9.1 Introduction -- 9.2 The Anthropocentric Predicament -- 9.3 The Reliability of Computer Simulations -- 9.3.1 Verification and Validation Methods -- 9.4 Final Words -- References -- 10 Can the Singularity Be Patented? (And Other IP Conundrums for Converging Technologies) -- 10.1 Introduction -- 10.2 A Singular Promise -- 10.3 Intellectual Property -- 10.3.1 Some General IP Problems in Converging Technologies -- 10.3.2 Some Gaps in IP Relating to the Singularity -- 10.4 Limits to Ownership and Other Monopolies -- 10.5 Owning the Singularity -- 10.6 Ethics, Patents and Artificial Agents -- 10.7 The Open Alternative -- References -- 11 The Emotional Nature of Post-Cognitive Singularities -- 11.1 Technological Singularity: Key Concepts -- 11.1.1 Tools and Methods -- 11.1.2 Singularity: Main Hypotheses -- 11.1.3 Implications of Post-singularity Entities with Advanced, Meta-cognitive Intelligence Ruled by Para-emotions -- 11.2 Post-cognitive Singularity Entities and their Physical Nature -- 11.2.1 Being a Singularity Entity -- 11.2.1.1 Super-intelligent Entities -- 11.2.1.2 Transhumans -- 11.2.2 Post Singularity Entities as Living Systems? -- 11.3 Para-emotional Systems -- 11.4 Conclusions -- Acknowledgements -- References -- 12 A Psychoanalytic Approach to the Singularity: Why We Cannot Do Without Auxiliary Constructions -- 12.1 Introduction -- 12.2 AI and Intelligence -- 12.3 Consciousness -- 12.4 Reason and Emotion -- 12.5 Psychoanalysis -- 12.6 Conclusion -- References -- Reflections on the Journey -- 13 Reflections on the Singularity Journey -- 13.1 Introduction -- 13.2 Eliezer Yudkowsky -- 13.2.1 The Event Horizon -- 13.2.2 Accelerating Change -- 13.2.3 The Intelligence Explosion -- 13.2.4 MIRI and LessWrong -- 13.3 Scott Aaronson -- 13.4 Stuart Armstrong
    Abstract: 13.5 Too Far in the Future -- 13.6 Scott Siskind -- 13.6.1 Wireheading -- 13.6.2 Work on AI Safety Now -- 14 Singularity Blog Insights -- 14.1 Three Major Singularity Schools -- 14.2 AI Timeline Predictions: Are We Getting Better? -- 14.3 No Time Like the Present for AI Safety Work -- 14.4 The Singularity Is Far -- Appendix -- The Coming Technological Singularity: How to Survive in the Post-human Era (reprint) -- References -- References -- Titles in this Series
    URL: Volltext  (lizenzpflichtig)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 29
    ISBN: 978-3-8487-2910-4 , 3-8487-2910-5
    Language: German
    Pages: 162 Seiten ; , 23 cm.
    Edition: 1. Auflage
    Series Statement: TTN-Studien Band 5
    Series Statement: TTN - Ethik interdisziplinär
    Parallel Title: Erscheint auch als
    DDC: 100
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Mensch-Maschine-Kommunikation. ; Roboter. ; Cyborg. ; Assistenzsystem. ; Techniksoziologie. ; Interdisziplinarität. ; Technikphilosophie. ; Computer. ; Hybride. ; Aufsatzsammlung ; Konferenzschrift ; Mensch-Maschine-Kommunikation ; Roboter ; Cyborg ; Assistenzsystem ; Techniksoziologie ; Interdisziplinarität ; Technikphilosophie ; Roboter ; Computer ; Hybride
    Note: Literaturangaben
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 30
    ISBN: 978-3-8487-2844-2
    Language: German
    Pages: 255 Seiten.
    Edition: 1. Auflage
    Series Statement: Policy-Analyse Band 9
    Series Statement: Policy-Analyse
    Parallel Title: Erscheint auch als
    Dissertation note: Dissertation Technische Universität Carolo-Wilhelmina zu Braunschweig 2015
    DDC: 320
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Geschichte 2005-2011 ; Internet. ; Regulierung. ; Deutschland. ; Hochschulschrift ; Internet ; Regulierung ; Geschichte 2005-2011
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 31
    ISBN: 978-3-8487-2278-5
    Language: German
    Pages: 388 Seiten : , Illustrationen, Diagramme.
    Edition: 3. aktualisierte und erweiterte Auflage
    Parallel Title: Erscheint auch als
    DDC: 659.202854678
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Online-Marketing. ; Soziales Netzwerk. ; Social Media. ; Soziale Software. ; World Wide Web 2.0. ; Online-Medien. ; Aufsatzsammlung ; Online-Marketing ; Soziales Netzwerk ; Social Media ; Soziale Software ; World Wide Web 2.0 ; Soziales Netzwerk ; Social Media ; Online-Marketing ; Soziales Netzwerk ; Social Media ; Soziale Software ; World Wide Web 2.0 ; Soziales Netzwerk ; Social Media ; Online-Medien
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 32
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Ann Arbor, Michigan : ProQuest
    ISBN: 9783662483831
    Language: German
    Pages: 1 Online-Ressource (230 pages)
    DDC: 306
    RVK:
    RVK:
    RVK:
    Keywords: Mensch-Maschine-System ; Mensch-Maschine-Schnittstelle ; Assistenzsystem ; Mensch-Maschine-Kommunikation ; Akzeptanz ; Aufsatzsammlung
    Note: Description based on publisher supplied metadata and other sources
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 33
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Ann Arbor, Michigan : ProQuest
    ISBN: 9783642135071
    Language: German
    Pages: 1 Online-Ressource (391 pages)
    Edition: 2nd ed.
    Series Statement: X.media.press
    DDC: 302.231
    RVK:
    Keywords: Mensch-Maschine-Kommunikation ; Softwareergonomie ; Informationsverarbeitung ; Faktor Mensch ; Benutzerfreundlichkeit ; Benutzerführung ; Benutzeroberfläche ; Multimedia ; Dialogsystem
    Abstract: Jeder hat schon die Erfahrung gemacht, dass Webseiten nicht lesbar sind oder Programme unverst ndliche Meldungen hervorbringen. Kurz: Die Software ist nicht gebrauchstauglich. Ausgehend von der menschlichen Informationsverarbeitung legt der Autor dar, wie Schnittstellen beschaffen sein m ssen und wie bei der Entwicklung vorgegangen werden muss, damit die Software gebrauchstauglich wird. Dabei werden neueste Normen und Vorschriften ber cksichtigt. Die begleitende Website bietet weitere Beispiele und bungsaufgaben, L sungen und weiterf hrende Links.
    Note: Description based on publisher supplied metadata and other sources
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 34
    ISBN: 978-3-8487-0961-8
    Language: German
    Pages: 183 Seiten : , Illustrationen, Diagramme.
    Edition: 1. Aufl.
    Series Statement: Schriften zur Medienwirtschaft und zum Medienmanagement Band 34
    Series Statement: Schriften zur Medienwirtschaft und zum Medienmanagement
    Parallel Title: Erscheint auch als
    Dissertation note: Dissertation Philosophische Fakultät III, Humboldt-Universität Berlin 2013
    DDC: 300
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Medizin. ; Internet. ; Recherche. ; Patient. ; Gesundheitskommunikation. ; Gesundheitswesen. ; Auswirkung. ; Medizinische Versorgung. ; Social Media. ; Deutschland. ; Hochschulschrift ; Medizin ; Internet ; Recherche ; Patient ; Gesundheitskommunikation ; Internet ; Gesundheitswesen ; Auswirkung ; Medizinische Versorgung ; Patient ; Social Media
    Note: Literaturverzeichnis
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 35
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg
    ISBN: 9783642453588
    Language: English
    Pages: Online-Ressource (XXIV, 459 p. 61 illus., 23 illus. in color, online resource)
    Series Statement: Theory and Applications of Natural Language Processing
    Series Statement: SpringerLink
    Series Statement: Bücher
    Parallel Title: Druckausg. Natural language processing of semitic languages
    RVK:
    Keywords: Computer science ; Computer Science ; Translators (Computer programs) ; Computational linguistics ; Computer science ; Translators (Computer programs) ; Computational linguistics ; Aufsatzsammlung ; Semitische Sprachen ; Natürliche Sprache
    Abstract: Part I Natural Language Processing Core-Technologies -- 1.Linguistic Introduction: The Orthography, Morphology and Syntax of Semitic Languages. R.Fabri, M.Gasser, N. Habash, G. Kiraz and S.Wintner -- 2.Morphological Processing of Semitic Languages. S.Wintner -- 3.Syntax and Parsing of Semitic Languages. R. Tsarfaty -- 4.Semantic Processing of Semitic Languages. M. Diab and Y.Marton -- 5.Language Modeling. I. Heintz -- Part II Natural Language Processing Applications -- 6.Statistical Machine Translation. H. Hassan and K.Darwish -- 7.Named Entity Recognition. B.Mohit -- 8.Anaphora Resolution. K.M. Seddik and A. Farghaly -- 9.Relation Extraction. V. Castelli and I. Zitouni -- 10.Information Retrieval. K. Darwish -- 11.Question Answering. Y. Benajiba, P. Rosso, L. Abouenour, O. Trigui, K.Bouzoubaa and L.H. Belguith -- 12.Automatic Summarization -- L.H. Belguith, M. Ellouze, M.H. Maaloul, M. Jaoua, F. Kallel Jaoua and P. Blache -- 13.Automatic Speech Recognition. H. Soltau, G. Saon, L. Mangu, H-K.Kuo, B.Kingsbury, S. Chu and F. Biadsy
    Abstract: Research in Natural Language Processing (NLP) has rapidly advanced in recent years, resulting in exciting algorithms for sophisticated processing of text and speech in various languages. Much of this work focuses on English; in this book we address another group of interesting and challenging languages for NLP research: the Semitic languages. The Semitic group of languages includes Arabic (206 million native speakers), Amharic (27 million), Hebrew (7 million), Tigrinya (6.7 million), Syriac (1 million) and Maltese (419 thousand). Semitic languages exhibit unique morphological processes, challenging syntactic constructions, and various other phenomena that are less prevalent in other natural languages. These challenges call for unique solutions, many of which are described in this book. The 13 chapters presented in this book bring together leading scientists from several universities and research institutes worldwide. While this book devotes some attention to cutting-edge algorithms and techniques, its primary purpose is a thorough explication of best practices in the field. Furthermore, every chapter describes how the techniques discussed apply to Semitic languages. The book covers both statistical approaches to NLP, which are dominant across various applications nowadays, and the more traditional, rule-based approaches, that were proven useful for several other application domains. We hope that this book will provide a "one-stop-shop'' for all the requisite background and practical advice when building NLP applications for Semitic languages
    Description / Table of Contents: Preface; Acknowledgments; Technical Review Committee; Contents; About the Editor; Part I Natural Language Processing Core-Technologies; Chapter1 Linguistic Introduction: The Orthography, Morphology and Syntax of Semitic Languages; 1.1 Introduction; 1.2 Amharic; 1.2.1 Orthography; 1.2.2 Derivational Morphology; Lexicon; Root and Pattern Processes; Other Derivational Processes; 1.2.3 Inflectional Morphology; Verbs; Nominals; 1.2.4 Basic Syntactic Structure; Noun Phrases; Clauses; 1.3 Arabic; 1.3.1 Orthography; Arabic Script; Arabic Spelling; 1.3.2 Morphology; Templatic Morphology
    Description / Table of Contents: Concatenative MorphologyDerivational Morphology; Inflectional Morphology; Form-Function Independence; Dialectal Arabic Morphology; Morphological Ambiguity; 1.3.3 Basic Syntactic Structure; Morphology and Syntax; Sentence Structure; Nominal Phrase Structure; Relative Clauses; Arabic Dialect Syntax; 1.4 Hebrew; 1.4.1 Orthography; 1.4.2 Derivational Morphology; Root and Pattern Processes; Other Derivational Processes; 1.4.3 Inflectional Morphology; Verbs; Nominals; Other Closed-Class Items; 1.4.4 Morphological Ambiguity; 1.4.5 Basic Syntactic Structure; 1.5 Maltese; 1.5.1 Orthography
    Description / Table of Contents: 1.5.2 Derivational MorphologyMixed Root-Based and Stem-Based Morphology; 1.5.3 Inflectional Morphology; Verbs; Nominals; Other Closed Class Items; 1.5.4 Basic Syntactic Structure; 1.6 Syriac; 1.6.1 Orthography; 1.6.2 Derivational Morphology; 1.6.3 Inflectional Morphology; 1.6.4 Syntax; 1.7 Contrastive Analysis; 1.7.1 Orthography; 1.7.2 Phonology; 1.7.3 Morphology; 1.7.4 Syntax; 1.7.5 Lexicon; 1.8 Conclusion; References; Chapter2 Morphological Processing of Semitic Languages; 2.1 Introduction; 2.2 Basic Notions; 2.3 The Challenges of Morphological Processing
    Description / Table of Contents: 2.4 Computational Approaches to Morphology2.4.1 Two-Level Morphology; 2.4.2 Multi-tape Automata; 2.4.3 The Xerox Approach; 2.4.4 Registered Automata; 2.4.5 Analysis by Generation; 2.4.6 Functional Morphology; 2.5 Morphological Analysis and Generation of Semitic Languages; 2.5.1 Amharic; 2.5.2 Arabic; 2.5.3 Hebrew; 2.5.4 Other Languages; 2.5.5 Related Applications; 2.6 Morphological Disambiguation of Semitic Languages; 2.7 Future Directions; References; Chapter3 Syntax and Parsing of Semitic Languages; 3.1 Introduction; 3.1.1 Parsing Systems; Syntactic Analysis; Models and Algorithms
    Description / Table of Contents: 3.1.2 Semitic LanguagesScript and Orthography; Morphology; Syntax; 3.1.3 The Main Challenges; The Architectural Challenge; The Modeling Challenge; The Lexical Challenge; 3.1.4 Summary and Conclusion; 3.2 Case Study: Generative Probabilistic Parsing; 3.2.1 Formal Preliminaries; Probabilistic Grammars; Training; Decoding; Evaluation; 3.2.2 An Architecture for Parsing Semitic Languages; Preliminaries; Joint Probabilistic Modeling; Lattice-Based Decoding; Evaluation; Summary and Conclusion; 3.2.3 The Syntactic Model; PCFG Refinements; Constrained Parsing; Discriminative Approaches
    Description / Table of Contents: 3.2.4 The Lexical Model
    Note: Description based upon print version of record
    URL: Cover
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 36
    ISBN: 9783642372100 , 3642372104
    Language: English
    Pages: 1 Online-Ressource (XVI, 535 Seiten) , 166 illus.
    Edition: 1st edition 2013
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 7812
    Parallel Title: Erscheint auch als Social Computing, Behavioral-Cultural Modeling and Prediction
    DDC: 303.4834
    RVK:
    Keywords: Soziale Software ; Social Media ; Soziales Netzwerk ; Kollektives Verhalten ; Verteilte künstliche Intelligenz ; Computersimulation ; Computers and civilization ; Social sciences Data processing ; Electronic data processing Management ; Data mining ; Computer networks  ; Application software ; Computers and Society ; Computer Application in Social and Behavioral Sciences ; IT Operations ; Data Mining and Knowledge Discovery ; Computer Communication Networks ; Computer and Information Systems Applications ; Konferenzschrift 2013
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 37
    ISBN: 9783642368189 , 3642368182
    Language: English
    Pages: 1 Online-Ressource (XVI, 552 Seiten) , 170 illus.
    Edition: 1st edition 2013
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 7804
    Parallel Title: Erscheint auch als Information and Communication Technology
    DDC: 303.4834
    RVK:
    Keywords: Cloud Computing ; Internet ; Netzwerktopologie ; Rechnernetz ; Zuverlässigkeit ; Computersicherheit ; Datensicherung ; Kryptologie ; Software Engineering ; E-Government ; Computers and civilization ; Data protection ; Information storage and retrieval systems ; Application software ; Cryptography ; Data encryption (Computer science) ; Computer networks  ; Computers and Society ; Data and Information Security ; Information Storage and Retrieval ; Computer and Information Systems Applications ; Cryptology ; Computer Communication Networks ; Konferenzschrift 2013
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 38
    ISBN: 978-3-8329-7121-2 , 3-8329-7121-1
    Language: German
    Pages: 358 Seiten : , Illustrationen, Diagramme.
    Edition: 2., aktualisierte und erweiterte Auflage
    DDC: 659.202854678
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Online-Marketing. ; Soziales Netzwerk. ; Social Media. ; Soziale Software. ; World Wide Web 2.0. ; Online-Medien. ; Aufsatzsammlung ; Online-Marketing ; Soziales Netzwerk ; Social Media ; Soziale Software ; World Wide Web 2.0 ; Soziales Netzwerk ; Social Media ; Online-Medien
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 39
    Online Resource
    Online Resource
    Baden-Baden :Nomos,
    ISBN: 978-3-8329-7121-2 , 3-8329-7121-1 , 9783845227245
    Language: German
    Pages: 1 Online-Ressource (358 S.) : , Ill., graph. Darst.
    Edition: 2., aktualisierte u. erw. Aufl.
    DDC: 659.202854678
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Online-Marketing. ; Soziales Netzwerk. ; Social Media. ; Soziale Software. ; World Wide Web 2.0. ; Online-Medien. ; Aufsatzsammlung ; Online-Marketing ; Soziales Netzwerk ; Social Media ; Soziale Software ; World Wide Web 2.0 ; Soziales Netzwerk ; Social Media ; Online-Medien
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 40
    ISBN: 9783642228780 , 364222878X
    Language: English
    Pages: 1 Online-Ressource (XVI, 466 Seiten)
    Edition: 1st edition 2011
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6846
    Parallel Title: Erscheint auch als Electronic Government
    DDC: 303.4834
    RVK:
    RVK:
    RVK:
    Keywords: E-Government ; World Wide Web 2.0 ; Informationsmanagement ; Computers and civilization ; Electronic data processing Management ; Computers Law and legislation ; Information technology Law and legislation ; Computer networks  ; User interfaces (Computer systems) ; Human-computer interaction ; Information technology Management ; Computers and Society ; IT Operations ; Legal Aspects of Computing ; Computer Communication Networks ; User Interfaces and Human Computer Interaction ; Computer Application in Administrative Data Processing ; Delft ; Konferenzschrift 2011
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 41
    ISBN: 9783642196560 , 364219656X
    Language: English
    Pages: 1 Online-Ressource (XIII, 384 Seiten)
    Edition: 1st edition 2011
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6589
    Parallel Title: Erscheint auch als Social Computing, Behavioral-Cultural Modeling and Prediction
    DDC: 303.4834
    RVK:
    Keywords: Soziale Software ; Social Media ; Soziales Netzwerk ; Kollektives Verhalten ; Verteilte künstliche Intelligenz ; Computersimulation ; Computers and civilization ; Social sciences Data processing ; Electronic data processing Management ; Data mining ; Computer networks  ; Application software ; Computers and Society ; Computer Application in Social and Behavioral Sciences ; IT Operations ; Data Mining and Knowledge Discovery ; Computer Communication Networks ; Computer and Information Systems Applications ; Konferenzschrift 2011
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 42
    ISBN: 9783642229619 , 3642229611
    Language: English
    Pages: 1 Online-Ressource (XIV, 410 Seiten)
    Edition: 1st edition 2011
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6866
    Parallel Title: Erscheint auch als Electronic Government and the Information Systems Perspective
    DDC: 303.4834
    RVK:
    Keywords: E-Government ; Informationsmanagement ; Computers and civilization ; Electronic data processing Management ; Application software ; Computer networks  ; Artificial intelligence ; User interfaces (Computer systems) ; Human-computer interaction ; Computers and Society ; IT Operations ; Computer and Information Systems Applications ; Computer Communication Networks ; Artificial Intelligence ; User Interfaces and Human Computer Interaction ; Toulouse ; Konferenzschrift 2011
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 43
    ISBN: 9783642217968 , 3642217966
    Language: English
    Pages: 1 Online-Ressource (XX, 388 Seiten) , 92 illus., 58 illus. in color.
    Edition: 1st edition 2011
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6778
    Parallel Title: Erscheint auch als Online Communities and Social Computing
    DDC: 303.4834
    RVK:
    Keywords: Social Media ; Soziales Netzwerk ; Soziale Software ; Benutzerfreundlichkeit ; Anwendungssystem ; Informationsmanagement ; Systemplattform ; Computers and civilization ; Education Data processing ; Electronic data processing Management ; Microcomputers ; Computer networks  ; Application software ; Computers and Society ; Computers and Education ; IT Operations ; Personal Computing ; Computer Communication Networks ; Computer and Information Systems Applications ; Konferenzschrift 2011
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 44
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Cham : Springer International Publishing AG
    ISBN: 9783642190506 , 3642190502
    Language: English
    Pages: 1 Online-Ressource (800 Seiten) , 105 illus., 58 illus. in color.
    Edition: 1st ed. 2011
    Series Statement: Security and Cryptology 6545
    Parallel Title: Erscheint auch als Digital Privacy
    DDC: 303.4834
    RVK:
    Keywords: Identitätsverwaltung ; Privatsphäre ; Benutzerorientierung ; Trusted Computing ; Anonymisierung ; Systemplattform ; Computers and civilization ; Electronic data processing Management ; Application software ; Computer science ; Information technology Management ; Cryptography ; Data encryption (Computer science) ; Computers and Society ; IT Operations ; Computer and Information Systems Applications ; Models of Computation ; Computer Application in Administrative Data Processing ; Cryptology ; Aufsatzsammlung
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 45
    ISBN: 978-3-8329-6324-8
    Language: German
    Pages: 331 S. : , Ill., graph. Darst.
    Edition: 1. Aufl.
    Series Statement: Internet research 40
    Series Statement: Internet research
    Dissertation note: Zugl.: Trier, Univ., Diss., 2010
    DDC: 302.231
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Second Life. ; Identitätsentwicklung. ; Selbstdarstellung. ; Hochschulschrift ; Hochschulschrift ; Hochschulschrift ; Hochschulschrift ; Hochschulschrift ; Hochschulschrift ; Second Life ; Identitätsentwicklung ; Selbstdarstellung
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 46
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Tantor Media, Inc. | Boston, MA : Safari
    ISBN: 9781452621814
    Language: English
    Pages: 1 online resource (27185 pages)
    Edition: 1st edition
    Parallel Title: Erscheint auch als Pariser, Eli, 1980 - The filter bubble
    Parallel Title: Erscheint auch als Pariser, Eli, 1980 - The filter bubble
    DDC: 004.678
    RVK:
    RVK:
    RVK:
    Keywords: Audiobooks ; Internet ; Internet ; Social aspects ; Invisible Web ; Internet ; Censorship ; Web search engines ; Target marketing ; Selective dissemination of information ; Infomediaries ; Influence ; Online information services industry ; Political activity ; Internet ; Informationsfilterung ; Soziologie ; Filter
    Abstract: In December 2009, Google began customizing its search results for each user. Instead of giving you the most broadly popular result, Google now tries to predict what you are most likely to click on. According to MoveOn.org board president Eli Pariser, Google's change in policy is symptomatic of the most significant shift to take place on the Web in recent years-the rise of personalization. In this groundbreaking investigation of the new hidden Web, Pariser uncovers how this growing trend threatens to control how we consume and share information as a society-and reveals what we can do about it. Though the phenomenon has gone largely undetected until now, personalized filters are sweeping the Web, creating individual universes of information for each of us. Facebook-the primary news source for an increasing number of Americans-prioritizes the links it believes will appeal to you so that if you are a liberal, you can expect to see only progressive links. Even an old-media bastion like The Washington Post devotes the top of its home page to a news feed with the links your Facebook friends are sharing. Behind the scenes, a burgeoning industry of data companies is tracking your personal information to sell to advertisers, from your political leanings to the color you painted your living room to the hiking boots you just browsed on Zappos. In a personalized world, we will increasingly be typed and fed only news that is pleasant, familiar, and confirms our beliefs-and because these filters are invisible, we won't know what is being hidden from us. Our past interests will determine what we are exposed to in the future, leaving less room for the unexpected encounters that spark creativity, innovation, and the democratic exchange of ideas. While we all worry that the Internet is eroding privacy or shrinking our attention spans, Pariser uncovers a more pernicious and far-reaching trend and shows how we can-and must-change course. With vivid detail and remarkable scope, The Filter Bubble reveals how personalization undermines the Internet's original purpose as an open platform for the spread of ideas and could leave us all in an isolated, echoing world.
    Note: Online resource; Title from title page (viewed May 12, 2011) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 47
    Book
    Book
    Baden-Baden :Nomos,
    ISBN: 978-3-8329-5470-3 , 3-8329-5470-8
    Language: German
    Pages: 327 Seiten : , Illustrationen, Diagramme.
    Edition: 1. Auflage
    DDC: 659.202854678
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Online-Marketing. ; Soziales Netzwerk. ; Social Media. ; Soziale Software. ; World Wide Web 2.0. ; Online-Medien. ; Aufsatzsammlung ; Online-Marketing ; Soziales Netzwerk ; Social Media ; Soziale Software ; World Wide Web 2.0 ; Soziales Netzwerk ; Social Media ; Online-Medien
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 48
    ISBN: 9783642120794 , 3642120792
    Language: English
    Pages: 1 Online-Ressource (XV, 426 Seiten) , 126 illus.
    Edition: 1st edition 2010
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6007
    Parallel Title: Erscheint auch als Advances in Social Computing
    DDC: 303.4834
    RVK:
    Keywords: World Wide Web 2.0 ; Soziale Software ; Benutzerverhalten ; Sozioökonomischer Wandel ; Computers and civilization ; Computer networks  ; Social sciences Data processing ; Electronic data processing Management ; Data mining ; Application software ; Computers and Society ; Computer Communication Networks ; Computer Application in Social and Behavioral Sciences ; IT Operations ; Data Mining and Knowledge Discovery ; Computer and Information Systems Applications ; Konferenzschrift 2010
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 49
    ISBN: 9783642151729 , 3642151728
    Language: English
    Pages: 1 Online-Ressource (XIV, 266 Seiten) , 155 illus.
    Edition: 1st edition 2010
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 6267
    Parallel Title: Erscheint auch als Electronic Government and the Information Systems Perspective
    DDC: 303.4834
    RVK:
    Keywords: E-Government ; Computers and civilization ; Electronic data processing Management ; Computer networks  ; Application software ; Artificial intelligence ; User interfaces (Computer systems) ; Human-computer interaction ; Computers and Society ; IT Operations ; Computer Communication Networks ; Computer and Information Systems Applications ; Artificial Intelligence ; User Interfaces and Human Computer Interaction ; Konferenzschrift 2010
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 50
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Cham : Springer International Publishing AG
    ISBN: 9783642122286 , 3642122280
    Language: German
    Pages: 1 Online-Ressource (XVI, 412 Seiten) , 5 Abb. in Farbe.
    Edition: 1st ed. 2010
    Series Statement: Statistik und ihre Anwendungen
    Parallel Title: Erscheint auch als Wollschläger, Daniel Grundlagen der Datenanalyse mit R
    DDC: 301.01
    RVK:
    RVK:
    RVK:
    Keywords: Datenanalyse ; Statistik ; Statistische Analyse ; R ; Sociology Methodology ; Epidemiology ; Psychometrics ; Social sciences Statistical methods ; Biometry ; Sociological Methods ; Epidemiology ; Psychometrics ; Statistics in Social Sciences, Humanities, Law, Education, Behavorial Sciences, Public Policy ; Biostatistics
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 51
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Ann Arbor, Michigan : ProQuest
    ISBN: 9783540482505
    Language: German
    Pages: 1 Online-Ressource (607 pages)
    Edition: 4th ed.
    DDC: 303.48
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Mensch-Maschine-Kommunikation ; Zukunft ; Alltag ; Arbeitswelt
    Abstract: Mit einem Nachwort des Autors.
    Note: Description based on publisher supplied metadata and other sources
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 52
    ISBN: 9783540857358 , 3540857354
    Language: English
    Pages: 1 Online-Ressource (X, 205 Seiten)
    Edition: 1st edition 2008
    Series Statement: Security and Cryptology 5185
    Parallel Title: Erscheint auch als Trust, Privacy and Security in Digital Business
    DDC: 303.4834
    RVK:
    Keywords: Electronic Commerce ; Datensicherung ; Computers and civilization ; Electronic data processing Management ; Cryptography ; Data encryption (Computer science) ; Computer networks  ; Data protection ; Business information services ; Computers and Society ; IT Operations ; Cryptology ; Computer Communication Networks ; Data and Information Security ; IT in Business ; Konferenzschrift 2008
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 53
    ISBN: 9783540744092 , 3540744096
    Language: English
    Pages: 1 Online-Ressource (XIII, 294 Seiten)
    Edition: 1st edition 2007
    Series Statement: Security and Cryptology 4657
    Parallel Title: Erscheint auch als Trust, Privacy and Security in Digital Business
    DDC: 303.4834
    RVK:
    RVK:
    Keywords: Electronic Commerce ; Datensicherung ; Computers and civilization ; Electronic data processing Management ; Cryptography ; Data encryption (Computer science) ; Computer networks  ; Data protection ; Business information services ; Computers and Society ; IT Operations ; Cryptology ; Computer Communication Networks ; Data and Information Security ; IT in Business ; Konferenzschrift 2007
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 54
    ISBN: 9783540732570 , 3540732578
    Language: English
    Pages: 1 Online-Ressource (XVII, 526 Seiten)
    Edition: 1st edition 2007
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 4564
    Parallel Title: Erscheint auch als Online Communities and Social Computing
    DDC: 303.4834
    RVK:
    Keywords: Social Media ; Soziales Netzwerk ; Softwareplattform ; Benutzerfreundlichkeit ; Wissensmanagement ; Systemplattform ; Soziale Software ; Benutzeroberfläche ; Computers and civilization ; Computers Law and legislation ; Information technology Law and legislation ; Electronic data processing Management ; Microcomputers ; Computer networks  ; Application software ; Computers and Society ; Legal Aspects of Computing ; IT Operations ; Personal Computing ; Computer Communication Networks ; Computer and Information Systems Applications ; Konferenzschrift 2007
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 55
    ISBN: 9783540457718 , 3540457712 , 3540457690 , 3540830898
    Language: English
    Pages: 1 Online-Ressource (VIII, 240 Seiten)
    Edition: 1st edition 2006
    Series Statement: Lecture Notes in Artificial Intelligence 4211
    Parallel Title: Erscheint auch als Symbol Grounding and Beyond
    DDC: 306.44
    RVK:
    Keywords: Computerlinguistik ; Sociolinguistics ; Artificial intelligence ; Computer simulation ; Computer science ; Natural language processing (Computer science) ; Social sciences Data processing ; Sociolinguistics ; Artificial Intelligence ; Computer Modelling ; Theory of Computation ; Natural Language Processing (NLP) ; Computer Application in Social and Behavioral Sciences ; Konferenzschrift 2006
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 56
    ISBN: 9783540317371 , 3540317376 , 3540284664 , 3540814736
    Language: English
    Pages: 1 Online-Ressource (XIII, 317 Seiten)
    Edition: 1st edition 2005
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 3591
    Parallel Title: Erscheint auch als Electronic Government
    DDC: 303.4834
    RVK:
    Keywords: E-Government ; Computers and civilization ; Electronic data processing Management ; Computers Law and legislation ; Information technology Law and legislation ; Computer networks  ; User interfaces (Computer systems) ; Human-computer interaction ; Information technology Management ; Computers and Society ; IT Operations ; Legal Aspects of Computing ; Computer Communication Networks ; User Interfaces and Human Computer Interaction ; Computer Application in Administrative Data Processing ; Konferenzschrift 2005
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 57
    ISBN: 9783540317968 , 3540317961 , 3540282246 , 3540814094
    Language: English
    Pages: 1 Online-Ressource (XII, 332 Seiten)
    Edition: 1st edition 2005
    Series Statement: Security and Cryptology 3592
    Parallel Title: Erscheint auch als Trust, Privacy, and Security in Digital Business
    DDC: 303.4834
    RVK:
    Keywords: Electronic Commerce ; Datensicherung ; Computers and civilization ; Electronic data processing Management ; Computer networks  ; Operating systems (Computers) ; Cryptography ; Data encryption (Computer science) ; Business information services ; Computers and Society ; IT Operations ; Computer Communication Networks ; Operating Systems ; Cryptology ; IT in Business ; Konferenzschrift 2005
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 58
    ISBN: 9783540318088 , 3540318089 , 3540278303 , 3540813217
    Language: English
    Pages: 1 Online-Ressource (XX, 370 Seiten)
    Edition: 1st edition 2005
    Series Statement: Information Systems and Applications, incl. Internet/Web, and HCI 3597
    Parallel Title: Erscheint auch als Web and Communication Technologies and Internet-Related Social Issues - HSI 2005
    DDC: 303.4834
    RVK:
    Keywords: Internetdienst ; Web Services ; Internet ; Anwendungssystem ; Authentifikation ; Datensicherung ; World Wide Web ; Kommunikationsprotokoll ; Dienstgüte ; Mobile Computing ; Telekommunikationsnetz ; Computers and civilization ; Computers Law and legislation ; Information technology Law and legislation ; Electronic data processing Management ; Microcomputers ; Computer networks  ; Application software ; Computers and Society ; Legal Aspects of Computing ; IT Operations ; Personal Computing ; Computer Communication Networks ; Computer and Information Systems Applications ; Konferenzschrift 2005
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 59
    Online Resource
    Online Resource
    Berlin, Heidelberg : Springer Berlin Heidelberg | Cham : Springer International Publishing AG
    ISBN: 9783540316138 , 3540316132 , 3540307079 , 3540818464
    Language: English
    Pages: 1 Online-Ressource (X, 315 Seiten)
    Edition: 1st ed. 2005
    Series Statement: Lecture Notes in Artificial Intelligence 3413
    Parallel Title: Erscheint auch als Socionics
    DDC: 301
    RVK:
    Keywords: Sozionik ; Verteilte künstliche Intelligenz ; Künstliche Gesellschaft ; Komplexes System ; Soziales System ; Selbst organisierendes System ; Mehragentensystem ; Sociology ; Artificial intelligence ; Computer science ; Computers, Special purpose ; Social sciences Data processing ; Computers and civilization ; Sociology ; Artificial Intelligence ; Theory of Computation ; Special Purpose and Application-Based Systems ; Computer Application in Social and Behavioral Sciences ; Computers and Society ; Aufsatzsammlung
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 60
    ISBN: 9783540209232
    Language: English
    Pages: Online-Ressource
    Series Statement: Lecture Notes in Computer Science 2934
    Series Statement: SpringerLink
    Series Statement: Bücher
    Series Statement: Lecture notes in computer science
    Parallel Title: Buchausg. u.d.T. Regulated agent-based social systems
    DDC: 303.4834
    RVK:
    Keywords: Artificial intelligence ; Computer Communication Networks ; Computer science ; Computer simulation ; Social sciences_xData processing ; Computer Science ; Konferenzschrift 2002 ; Mehragentensystem ; Autonomer Agent ; Soziales System ; Selbst organisierendes System
    URL: Cover
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...