Buy linux-fans.com ?

Products related to Survey:


  • Linux Kernel Development
    Linux Kernel Development

    Linux Kernel Development details the design and implementation of the Linux kernel, presenting the content in a manner that is beneficial to those writing and developing kernel code, as well as to programmers seeking to better understand the operating system and become more efficient and productive in their coding. The book details the major subsystems and features of the Linux kernel, including its design, implementation, and interfaces.It covers the Linux kernel with both a practical and theoretical eye, which should appeal to readers with a variety of interests and needs. The author, a core kernel developer, shares valuable knowledge and experience on the 2.6 Linux kernel.Specific topics covered include process management, scheduling, time management and timers, the system call interface, memory addressing, memory management, the page cache, the VFS, kernel synchronization, portability concerns, and debugging techniques.This book covers the most interesting features of the Linux 2.6 kernel, including the CFS scheduler, preemptive kernel, block I/O layer, and I/O schedulers. The third edition of Linux Kernel Development includes new and updated material throughout the book: An all-new chapter on kernel data structuresDetails on interrupt handlers and bottom halvesExtended coverage of virtual memory and memory allocationTips on debugging the Linux kernelIn-depth coverage of kernel synchronization and lockingUseful insight into submitting kernel patches and working with the Linux kernel community

    Price: 36.99 £ | Shipping*: 0.00 £
  • Learning eBPF : Programming the Linux Kernel for Enhanced Observability, Networking, and Security
    Learning eBPF : Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    What is eBPF? With this revolutionary technology, you can write custom code that dynamically changes the way the kernel behaves.It's an extraordinary platform for building a whole new generation of security, observability, and networking tools. This practical book is ideal for developers, system administrators, operators, and students who are curious about eBPF and want to know how it works.Author Liz Rice, chief open source officer with cloud native networking and security specialists Isovalent, also provides a foundation for those who want to explore writing eBPF programs themselves. With this book, you will:Learn why eBPF has become so important in the past couple of yearsWrite basic eBPF code, and manipulate eBPF programs and attach them to eventsExplore how eBPF components interact with Linux to dynamically change the operating system's behaviorLearn how tools based on eBPF can instrument applications without changes to the apps or their configurationDiscover how this technology enables new tools for observability, security, and networking

    Price: 44.99 £ | Shipping*: 0.00 £
  • Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security
    Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    Learning eBPF: Programming the Linux Kernel for Enhanced Observability, Networking, and Security

    Price: 42.74 € | Shipping*: 0.00 €
  • Survey
    Survey

    When architects visit a building, and want to record or identify what they see, they take out a bundle of folded sheets in search of a blank piece of paper.These sheets may be ground plans, diagrams, sketches and ordnance maps.In one way or another, all are survey drawings, operating as both documentation and analysis, enabling an architect to examine certain conditions of the built environment, whether geometric, relational, material or technical. This book explores the history of the survey and its multiple forms in order to understand how the methods of recording what already exists can also be used to imagine what might be.Lavishly illustrated, with works from the collection of Drawing Matter and beyond, it addresses the multiple forms of the survey through focused studies - on John Soane (1753-1837), Charles Robert Cockerell (1788-1863), and Detmar Blow (1867-1939); French architects Louis-Hippolyte Lebas (1782-1867), Henri Labrouste (1801-1875), and Eugene Viollet-le-Duc (1814-1879); and Swiss-based Peter Markli (born 1953) - and an extensive section of plates with commentaries by contemporary architects.In doing so, it maintains that while all surveys begin with the site, the outcomes are as idiosyncratic as their authors - and their methods have much to offer as tools in design practice. The book is the first in the Architecture Iconographies series, published in collaboration with Drawing Matter, an organisation based in Wincanton, Somerset, that explores the role of drawing in architectural thought and practice.They consider the image-making of architecture through its typologies and unique approaches to drawing.Exploring their resonance in the history of the profession, as well as their relationship to the architects themselves, the series aims to open up further possibilities for their use in both practice and teaching.

    Price: 42.00 £ | Shipping*: 0.00 £
  • What is the survey for Kpop fans?

    The survey for Kpop fans is a questionnaire designed to gather information and opinions from fans of Korean pop music. It may include questions about favorite Kpop groups, songs, albums, concerts attended, merchandise purchased, and overall satisfaction with the Kpop industry. The survey aims to understand the preferences and behaviors of Kpop fans to help improve marketing strategies, product offerings, and fan engagement within the Kpop community.

  • What is the survey for the football fans?

    The survey for football fans aims to gather information about their preferences, opinions, and behaviors related to football. It may include questions about favorite teams, players, game-watching habits, and overall engagement with the sport. The survey could also seek to understand fans' attitudes towards various aspects of football, such as rule changes, player controversies, or the impact of the sport on society. The data collected from the survey can be used to inform marketing strategies, improve fan experiences, and gain insights into the football fan demographic.

  • Which distro do you use, Linux users?

    As an AI, I do not have personal preferences or the ability to use operating systems. However, Linux users often choose their distribution based on their specific needs and preferences. Some popular distributions include Ubuntu for its user-friendly interface, Fedora for its focus on the latest technologies, and Debian for its stability and reliability. Ultimately, the choice of distribution depends on the user's requirements and level of expertise.

  • Survey for music fans: Which of these bands is the best?

    As an AI, I don't have personal opinions, but the best band is subjective and varies depending on individual preferences. Some music fans might consider bands like The Beatles, Led Zeppelin, or Queen as the best due to their influence, innovation, and timeless music. Others might prefer more contemporary bands like Arctic Monkeys, Radiohead, or Tame Impala for their modern sound and relevance. Ultimately, the best band is a matter of personal taste and can differ greatly among music fans.

Similar search terms for Survey:


  • Understanding the Linux Kernel
    Understanding the Linux Kernel

    In order to thoroughly understand what makes Linux tick and why it works so well on a wide variety of systems, you need to delve deep into the heart of the kernel.The kernel handles all interactions between the CPU and the external world, and determines which programs will share processor time, in what order.It manages limited memory so well that hundreds of processes can share the system efficiently, and expertly organizes data transfers so that the CPU isn't kept waiting any longer than necessary for the relatively slow disks.The third edition of Understanding the Linux Kernel takes you on a guided tour of the most significant data structures, algorithms, and programming tricks used in the kernel.Probing beyond superficial features, the authors offer valuable insights to people who want to know how things really work inside their machine. Important Intel-specific features are discussed. Relevant segments of code are dissected line by line.But the book covers more than just the functioning of the code; it explains the theoretical underpinnings of why Linux does things the way it does.This edition of the book covers Version 2.6, which has seen significant changes to nearly every kernel subsystem, particularly in the areas of memory management and block devices.The book focuses on the following topics: * Memory management, including file buffering, process swapping, and Direct memory Access (DMA) * The Virtual Filesystem layer and the Second and Third Extended Filesystems * Process creation and scheduling * Signals, interrupts, and the essential interfaces to device drivers * Timing * Synchronization within the kernel * Interprocess Communication (IPC) * Program execution Understanding the Linux Kernel will acquaint you with all the inner workings of Linux, but it's more than just an academic exercise.You'll learn what conditions bring out Linux's best performance, and you'll see how it meets the challenge of providing good system response during process scheduling, file access, and memory management in a wide variety of environments.This book will help you make the most of your Linux system.

    Price: 55.99 £ | Shipping*: 0.00 £
  • Survey Methodology
    Survey Methodology

    Praise for the First Edition: "The book makes a valuable contribution by synthesizing current research and identifying areas for future investigation for each aspect of the survey process." —Journal of the American Statistical Association "Overall, the high quality of the text material is matched by the quality of writing . . ." —Public Opinion Quarterly ". . . it should find an audience everywhere surveys are being conducted." —Technometrics This new edition of Survey Methodology continues to provide a state-of-the-science presentation of essential survey methodology topics and techniques.The volume's six world-renowned authors have updated this Second Edition to present newly emerging approaches to survey research and provide more comprehensive coverage of the major considerations in designing and conducting a sample survey. Key topics in survey methodology are clearly explained in the book's chapters, with coverage including sampling frame evaluation, sample design, development of questionnaires, evaluation of questions, alternative modes of data collection, interviewing, nonresponse, post-collection processing of survey data, and practices for maintaining scientific integrity.Acknowledging the growing advances in research and technology, the Second Edition features: Updated explanations of sampling frame issues for mobile telephone and web surveys New scientific insight on the relationship between nonresponse rates and nonresponse errors Restructured discussion of ethical issues in survey research, emphasizing the growing research results on privacy, informed consent, and confidentiality issues The latest research findings on effective questionnaire development techniques The addition of 50% more exercises at the end of each chapter, illustrating basic principles of survey design An expanded FAQ chapter that addresses the concerns that accompany newly established methods Providing valuable and informative perspectives on the most modern methods in the field, Survey Methodology, Second Edition is an ideal book for survey research courses at the upper-undergraduate and graduate levels.It is also an indispensable reference for practicing survey methodologists and any professional who employs survey research methods.

    Price: 76.95 £ | Shipping*: 0.00 £
  • The Who, What, and Where of America : Understanding the American Community Survey
    The Who, What, and Where of America : Understanding the American Community Survey

    The Who, What, and Where of America is designed to provide a sampling of key demographic information.It covers the United States, every state, each metropolitan statistical area, and all the counties and cities with a population of 20,000 or more.Who: Age, Race and Ethnicity, and Household StructureWhat: Education, Employment, and IncomeWhere: Migration, Housing, and TransportationEach part is preceded by highlights and ranking tables that show how areas diverge from the national norm.These research aids are invaluable for understanding data from the ACS and for highlighting what it tells us about who we are, what we do, and where we live. Each topic is divided into four tables revealing the results of the data collected from different types of geographic areas in the United States, generally with populations greater than 20,000. ·Table A. States·Table B. Counties·Table C. Metropolitan Areas·Table D. CitiesIn this edition, you will find social and economic estimates on the ways American communities are changing with regard to the following:·Age and race·Health care coverage·Marital history·Education attainment·Income and occupation·Commute time to work·Employment status·Home values and monthly costs·Veteran status·Size of home or rental unitThis title is the latest in the County and City Extra Series of publications from Bernan Press.Other titles include County and City Extra, County and City Extra: Special Decennial Census Edition, and Places, Towns, and Townships.

    Price: 119.00 £ | Shipping*: 0.00 £
  • Linux System Programming
    Linux System Programming

    Write software that draws directly on services offered by the Linux kernel and core system libraries.With this comprehensive book, Linux kernel contributor Robert Love provides you with a tutorial on Linux system programming, a reference manual on Linux system calls, and an insider's guide to writing smarter, faster code.Love clearly distinguishes between POSIX standard functions and special services offered only by Linux. With a new chapter on multithreading, this updated and expanded edition provides an in-depth look at Linux from both a theoretical and applied perspective over a wide range of programming topics, including: A Linux kernel, C library, and C compiler overview Basic I/O operations, such as reading from and writing to files Advanced I/O interfaces, memory mappings, and optimization techniques The family of system calls for basic process management Advanced process management, including real-time processes Thread concepts, multithreaded programming, and Pthreads File and directory management Interfaces for allocating memory and optimizing memory access Basic and advanced signal interfaces, and their role on the system Clock management, including POSIX clocks and high-resolution timers

    Price: 55.99 £ | Shipping*: 0.00 £
  • What is the survey upon joining a server on Discord?

    When joining a server on Discord, users may encounter a survey or questionnaire that asks for information such as their interests, age, location, and preferred language. This survey helps server administrators understand their community better and tailor the server's content and activities to suit the interests of its members. It also allows users to connect with like-minded individuals and find relevant channels or groups within the server. Overall, the survey serves as a way to enhance the user experience and foster a sense of community within the server.

  • Which pet? Survey.

    According to a survey, the most popular pet in the United States is the dog. Dogs are known for their loyalty, companionship, and ability to provide emotional support to their owners. They also come in a wide variety of breeds, sizes, and temperaments, making it easier for people to find a dog that fits their lifestyle. Additionally, dogs are often seen as a great way to encourage physical activity and social interaction.

  • Survey for women

    A survey for women is a research tool designed to gather information and opinions specifically from women on a particular topic. It may include questions related to women's experiences, perspectives, and preferences. The goal of a survey for women is to better understand their unique needs and concerns in order to inform decision-making, product development, or policy changes. By targeting women as the primary respondents, researchers can ensure that their voices are heard and their input is taken into account.

  • 'Survey for women'

    A survey for women is a research tool designed to gather information and opinions from women on a specific topic. It typically includes questions related to women's experiences, preferences, and perspectives. The goal of a survey for women is to collect data that can help researchers, organizations, or businesses better understand the needs and concerns of women and tailor their services or products accordingly. By targeting women specifically, surveys can provide valuable insights that may not be captured in more general surveys.

* All prices are inclusive of VAT and, if applicable, plus shipping costs. The offer information is based on the details provided by the respective shop and is updated through automated processes. Real-time updates do not occur, so deviations can occur in individual cases.