feed icon rss

Your email was sent successfully. Check your inbox.

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

Proceed reservation?

Export
Filter
  • Berlin International  (133)
  • Bibliothek Lübbenau - Vetschau  (90)
  • Müncheberg ZALF  (13)
  • 2015-2019  (236)
Type of Medium
Region
Library
Year
Access
  • 1
    UID:
    almafu_BV044321367
    Format: 1 DVD-Video (111 min) : , farbig ; , 12 cm.
    Content: "Durch einen Computerfehler erwacht ein Mann während einer interstellaren Passage als Einziger an Bord eines Luxusgleiters aus dem Hyperschlaf. In seiner tiefen Einsamkeit öffnet er die Schlafkammer einer jungen Mitreisenden, will ihr aber sein Geheimnis verschweigen. Dramatische Fehlfunktionen des Raumschiffs erzwingen aber ganz andere Entscheidungen. Der optisch und klanglich eindringliche Science-Fiction-Film stimmt einen spektakulären Abgesang auf die Technikgläubigkeit an und kritisiert vehement den Perfektionswahn. [...] [filmdienst.de]
    Note: Original: USA 2016. - Bonus: am Set mit Chris Pratt ; das Casting der Passagiere ; Gestaltung der Avalon ; Outtakes vom Set ; buchen Sie Ihre Reise: auf der Suche nach einem neuen Lebensstil? Erfahren Sie mehr über die Homestead Company. Lassen Sie sich überraschen.. - Bildformat 2.39:1 (16:9 Vollbild) , Deutsch, Englisch, Französisch, Spanisch - Untertitel: Deutsch, Englisch, Arabisch, Französisch, Holländisch, Spanisch, Türkisch
    Language: German
    Subjects: Engineering , General works
    RVK:
    RVK:
    Keywords: Zweierbeziehung ; Astronaut ; Raumfahrt ; Thriller ; Film ; DVD-Video ; DVD-Video ; Film ; DVD-Video ; Film ; Film ; Spielfilm ; Film
    Author information: Lawrence, Jennifer 1990-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Online Resource
    Online Resource
    Cham : Springer Open
    UID:
    b3kat_BV044334823
    Format: 1 Online-Ressource (xv, 110 Seiten) , Illustrationen, Diagramme
    ISBN: 9783319579665
    Series Statement: SpringerBriefs in energy
    Additional Edition: Erscheint auch als Druck-Ausgabe ISBN 978-3-319-57965-8
    Language: English
    Keywords: Dii GmbH ; Sonnenenergie ; Energieversorgung ; Electronic book. ; Electronic books. ; Electronic books.
    URL: Volltext  (kostenfrei)
    URL: OAPEN
    URL: OAPEN
    URL: OAPEN  (Creative Commons License)
    URL: Image  (Thumbnail cover image)
    URL: Image  (Thumbnail cover image)
    URL: FULL  ((Currently Only Available on Campus))
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    UID:
    almahu_9949602254902882
    Format: 1 online resource (807 pages)
    Edition: 1st ed.
    ISBN: 9781484243985
    Note: Intro -- Table of Contents -- About the Authors -- Acknowledgments -- Preface -- Part 1 -- Chapter 1: Jumping Right In: "Hello, TBB!" -- Why Threading Building Blocks? -- Performance: Small Overhead, Big Benefits for C++ -- Evolving Support for Parallelism in TBB and C++ -- Recent C++ Additions for Parallelism -- The Threading Building Blocks (TBB) Library -- Parallel Execution Interfaces -- Interfaces That Are Independent of the Execution Model -- Using the Building Blocks in TBB -- Let's Get Started Already! -- Getting the Threading Building Blocks (TBB) Library -- Getting a Copy of the Examples -- Writing a First "Hello, TBB!" Example -- Building the Simple Examples -- Steps to Set Up an Environment -- Building on Windows Using Microsoft Visual Studio -- Building on a Linux Platform from a Terminal -- Using the Intel Compiler -- tbbvars and pstlvars Scripts -- Setting Up Variables Manually Without Using the tbbvars Script or the Intel Compiler -- A More Complete Example -- Starting with a Serial Implementation -- Adding a Message-Driven Layer Using a Flow Graph -- Adding a Fork-Join Layer Using a parallel_for -- Adding a SIMD Layer Using a Parallel STL Transform -- Summary -- Chapter 2: Generic Parallel Algorithms -- Functional / Task Parallelism -- A Slightly More Complicated Example: A Parallel Implementation of Quicksort -- Loops: parallel_for, parallel_reduce, and parallel_scan -- parallel_for: Applying a Body to Each Element in a Range -- A Slightly More Complicated Example: Parallel Matrix Multiplication -- parallel_reduce: Calculating a Single Result Across a Range -- A Slightly More Complicated Example: Calculating π by Numerical Integration -- parallel_scan: A Reduction with Intermediate Values -- How Does This Work? -- A Slightly More Complicated Example: Line of Sight -- Cook Until Done: parallel_do and parallel_pipeline. , parallel_do: Apply a Body Until There Are No More Items Left -- A Slightly More Complicated Example: Forward Substitution -- parallel_pipeline: Streaming Items Through a Series of Filters -- A Slightly More Complicated Example: Creating 3D Stereoscopic Images -- Summary -- For More Information -- Chapter 3: Flow Graphs -- Why Use Graphs to Express Parallelism? -- The Basics of the TBB Flow Graph Interface -- Step 1: Create the Graph Object -- Step 2: Make the Nodes -- Step 3: Add Edges -- Step 4: Start the Graph -- Step 5: Wait for the Graph to Complete Executing -- A More Complicated Example of a Data Flow Graph -- Implementing the Example as a TBB Flow Graph -- Understanding the Performance of a Data Flow Graph -- The Special Case of Dependency Graphs -- Implementing a Dependency Graph -- Estimating the Scalability of a Dependency Graph -- Advanced Topics in TBB Flow Graphs -- Summary -- Chapter 4: TBB and the Parallel Algorithms of the C++ Standard Template Library -- Does the C++ STL Library Belong in This Book? -- A Parallel STL Execution Policy Analogy -- A Simple Example Using std::for_each -- What Algorithms Are Provided in a Parallel STL Implementation? -- How to Get and Use a Copy of Parallel STL That Uses TBB -- Algorithms in Intel's Parallel STL -- Capturing More Use Cases with Custom Iterators -- Highlighting Some of the Most Useful Algorithms -- std::for_each, std::for_each_n -- std::transform -- std::reduce -- std::transform_reduce -- A Deeper Dive into the Execution Policies -- The sequenced_policy -- The parallel_policy -- The unsequenced_policy -- The parallel_unsequenced_policy -- Which Execution Policy Should We Use? -- Other Ways to Introduce SIMD Parallelism -- Summary -- For More Information -- Chapter 5: Synchronization: Why and How to Avoid It -- A Running Example: Histogram of an Image -- An Unsafe Parallel Implementation. , A First Safe Parallel Implementation: Coarse-Grained Locking -- Mutex Flavors -- A Second Safe Parallel Implementation: Fine-Grained Locking -- A Third Safe Parallel Implementation: Atomics -- A Better Parallel Implementation: Privatization and Reduction -- Thread Local Storage, TLS -- enumerable_thread_specific, ETS -- combinable -- The Easiest Parallel Implementation: Reduction Template -- Recap of Our Options -- Summary -- For More Information -- Chapter 6: Data Structures for Concurrency -- Key Data Structures Basics -- Unordered Associative Containers -- Map vs. Set -- Multiple Values -- Hashing -- Unordered -- Concurrent Containers -- Concurrent Unordered Associative Containers -- concurrent_hash_map -- Concurrent Support for map/multimap and set/multiset Interfaces -- Built-In Locking vs. No Visible Locking -- Iterating Through These Structures Is Asking for Trouble -- Concurrent Queues: Regular, Bounded, and Priority -- Bounding Size -- Priority Ordering -- Staying Thread-Safe: Try to Forget About Top, Size, Empty, Front, Back -- Iterators -- Why to Use This Concurrent Queue: The A-B-A Problem -- When to NOT Use Queues: Think Algorithms! -- Concurrent Vector -- When to Use tbb::concurrent_vector Instead of std::vector -- Elements Never Move -- Concurrent Growth of concurrent_vectors -- Summary -- Chapter 7: Scalable Memory Allocation -- Modern C++ Memory Allocation -- Scalable Memory Allocation: What -- Scalable Memory Allocation: Why -- Avoiding False Sharing with Padding -- Scalable Memory Allocation Alternatives: Which -- Compilation Considerations -- Most Popular Usage (C/C++ Proxy Library): How -- Linux: malloc/new Proxy Library Usage -- macOS: malloc/new Proxy Library Usage -- Windows: malloc/new Proxy Library Usage -- Testing our Proxy Library Usage -- C Functions: Scalable Memory Allocators for C. , C++ Classes: Scalable Memory Allocators for C++ -- Allocators with std::allocator< -- T> -- Signature -- scalable_allocator -- tbb_allocator -- zero_allocator -- cached_aligned_allocator -- Memory Pool Support: memory_pool_allocator -- Array Allocation Support: aligned_space -- Replacing new and delete Selectively -- Performance Tuning: Some Control Knobs -- What Are Huge Pages? -- TBB Support for Huge Pages -- scalable_allocation_mode(int mode, intptr_t value) -- TBBMALLOC_USE_HUGE_PAGES -- TBBMALLOC_SET_SOFT_HEAP_LIMIT -- int scalable_allocation_command(int cmd, void ∗param) -- TBBMALLOC_CLEAN_ALL_BUFFERS -- TBBMALLOC_CLEAN_THREAD_BUFFERS -- Summary -- Chapter 8: Mapping Parallel Patterns to TBB -- Parallel Patterns vs. Parallel Algorithms -- Patterns Categorize Algorithms, Designs, etc. -- Patterns That Work -- Data Parallelism Wins -- Nesting Pattern -- Map Pattern -- Workpile Pattern -- Reduction Patterns (Reduce and Scan) -- Fork-Join Pattern -- Divide-and-Conquer Pattern -- Branch-and-Bound Pattern -- Pipeline Pattern -- Event-Based Coordination Pattern (Reactive Streams) -- Summary -- For More Information -- Part 2 -- Chapter 9: The Pillars of Composability -- What Is Composability? -- Nested Composition -- Concurrent Composition -- Serial Composition -- The Features That Make TBB a Composable Library -- The TBB Thread Pool (the Market) and Task Arenas -- The TBB Task Dispatcher: Work Stealing and More -- Putting It All Together -- Looking Forward -- Controlling the Number of Threads -- Work Isolation -- Task-to-Thread and Thread-to-Core Affinity -- Task Priorities -- Summary -- For More Information -- Chapter 10: Using Tasks to Create Your Own Algorithms -- A Running Example: The Sequence -- The High-Level Approach: parallel_invoke -- The Highest Among the Lower: task_group -- The Low-Level Task Interface: Part One - Task Blocking. , The Low-Level Task Interface: Part Two - Task Continuation -- Bypassing the Scheduler -- The Low-Level Task Interface: Part Three - Task Recycling -- Task Interface Checklist -- One More Thing: FIFO (aka Fire-and-Forget) Tasks -- Putting These Low-Level Features to Work -- Summary -- For More Information -- Chapter 11: Controlling the Number of Threads Used for Execution -- A Brief Recap of the TBB Scheduler Architecture -- Interfaces for Controlling the Number of Threads -- Controlling Thread Count with task_scheduler_init -- Controlling Thread Count with task_arena -- Controlling Thread Count with global_control -- Summary of Concepts and Classes -- The Best Approaches for Setting the Number of Threads -- Using a Single task_scheduler_init Object for a Simple Application -- Using More Than One task_scheduler_init Object in a Simple Application -- Using Multiple Arenas with Different Numbers of Slots to Influence Where TBB Places Its Worker Threads -- Using global_control to Control How Many Threads Are Available to Fill Arena Slots -- Using global_control to Temporarily Restrict the Number of Available Threads -- When NOT to Control the Number of Threads -- Figuring Out What's Gone Wrong -- Summary -- Chapter 12: Using Work Isolation for Correctness and Performance -- Work Isolation for Correctness -- Creating an Isolated Region with  this_task_arena::isolate -- Oh No! Work Isolation Can Cause Its Own Correctness Issues! -- Even When It Is Safe, Work Isolation Is Not Free -- Using Task Arenas for Isolation: A Double-Edged Sword -- Don't Be Tempted to Use task_arenas to Create Work Isolation for Correctness -- Summary -- For More Information -- Chapter 13: Creating Thread-to-Core and Task-to-Thread Affinity -- Creating Thread-to-Core Affinity -- Creating Task-to-Thread Affinity -- When and How Should We Use the TBB Affinity Features? -- Summary. , For More Information.
    Additional Edition: Print version: Voss, Michael Pro TBB Berkeley, CA : Apress L. P.,c2019 ISBN 9781484243978
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Electronic books. ; Electronic books
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    URL: Full-text  ((OIS Credentials Required))
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    UID:
    b3kat_BV046062880
    Format: 1 Online-Ressource (xxii, 426 Seiten) , 160 Illustrationen, 79 Illustrationen (farbig)
    ISBN: 9783030134990
    Additional Edition: Erscheint auch als Druck-Ausgabe ISBN 978-3-030-13498-3
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Softwareentwicklung ; Informationssystem ; Aufsatzsammlung ; Electronic books
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    URL: Full-text  ((OIS Credentials Required))
    Author information: Reussner, Ralf
    Author information: Hasselbring, Wilhelm 1964-
    Author information: Goedicke, Michael
    Author information: Märtin, Lukas
    Author information: Vogel-Heuser, Birgit 1961-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    UID:
    almafu_BV043560532
    Format: 1 DVD-Video (161 Min.) : , farbig ; , 12 cm.
    Content: "Ein Kopfgeldjäger und seine Gefangene landen mit der Postkutsche in einem verschneiten Städtchen in Wyoming, wo sie ein Schneesturm in eine Hütte zwingt, in der sechs undurchsichtige Gestalten sie in ein Wortgefecht verstricken, das auf eine gewaltsame Eruption zusteuert. Was als (Schnee-)Western beginnt, erinnert in der kunstvollen Mischung aus Klaustrophobie, Paranoia und gegenseitigen Verdächtigungen immer mehr an eine Agatha-Christie-Verfilmung. Die Inszenierung betont durch ihr extremes Breitwandformat die bedrängende Enge, die detailreichen Bilder zeigen jede Pore, die Darsteller haben sichtlich Freude an ihren überzeichneten Rollen. [...]" [film-dienst.de]
    Note: Extras: Beyond the 8: Ein Blick hinter die Kulissen, Der Zauber von 70 mm. - Original: USA 2015 , Deutsch, englisch - Untertitel: deutsch, deutsch für Hörgeschädigte
    Language: English
    Subjects: American Studies , General works
    RVK:
    RVK:
    Keywords: Weibliche Straffällige ; Auslieferung ; Outlaw ; Blizzard ; Film ; DVD-Video ; Film ; Blu-Ray-Disc ; Film ; DVD-Video ; Film
    Author information: Tarantino, Quentin 1963-
    Author information: Morricone, Ennio 1928-2020
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    UID:
    almafu_BV043574287
    Format: 1 DVD-Video (125 min.) : , farbig ; , 12 cm, Behältnis 19 x 14 x 2 cm.
    Content: "Banker, Analysten und Wertpapierhändler verbünden sich, um in der Hochphase des Aktienbooms 2005 auf einen Crash zu spekulieren. Dieser wird drei Jahre später Wirklichkeit, als die US-Immobilienblase platzt. Die surreal aufgekratzte Farce entfaltet rund um die Börsenmanie ein wildes Stakkato unterschiedlicher erzählerischer Mittel, um am Ende in die moralische Forderung zu münden, dass Banken für die volkswirtschaftlichen Schäden aufkommen sollen. Der prominent besetzte Film erzählt wider Willen auch von der Schwierigkeit, politisch verbindliche Kritik am Finanzsystem mit den Mittel des Unterhaltungskinos zu formulieren." [filmdienst.de]
    Note: Original: USA 2015 , Deutsch, Englisch und Spanisch - Untertitel: Deutsch, Englisch, Spanisch und Türkisch
    Language: German
    Subjects: General works
    RVK:
    RVK:
    RVK:
    Keywords: Investment Banking ; Korruption ; Finanzkrise ; Film ; DVD-Video ; Film ; DVD-Video ; Film ; Spielfilm ; Film
    Author information: Pitt, Brad 1963-
    Author information: Gosling, Ryan 1980-
    Author information: Lewis, Michael 1960-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    UID:
    almahu_9948265238202882
    Format: 1 online resource (xvi, 396 p.) ; , cm.
    ISBN: 9781785363481 (e-book)
    Series Statement: ADBI series on Asian economic integration and cooperation
    Content: This book analyses how closer regional connectivity and economic integration between South Asia and Southeast Asia can benefit both regions. With a focus on the role played by infrastructure and public policies in facilitating this process, it provides a detailed and up-to-date discussion of issues, innovations, and progress. Country studies of national connectivity issues and policies cover Bangladesh, India, Myanmar, Nepal, Sri Lanka, and Thailand, examining major developments in trade and investment, economic cooperation, the role of economic corridors, and regional cooperation initiatives. Thematic chapters explore investment in land and sea transport infrastructure, trade facilitation, infrastructure investment financing, supporting national and regional policies, and model-based estimates of the benefits of integration. They also identify significant opportunities for strengthening these integration efforts as a result of the recent opening up of Myanmar in political, economic, and financial terms. For the first time for these regions, the book employs a state-of-the-art computable general equilibrium (CGE) model incorporating heterogeneous firms to estimate the advantages of integration. Providing perspective on the latest thinking on integration policy, Connecting Asia is an essential resource for academics, policymakers, and business people alike.
    Note: pt. I. Hard infrastructure and financing -- pt. II. Soft infrastructure and impacts -- pt. III. National strategies for connectivity.
    Additional Edition: ISBN 9781785363474 (hardback)
    Language: English
    Subjects: Economics
    RVK:
    RVK:
    Keywords: Electronic books. ; Electronic books ; Aufsatzsammlung ; Electronic books ; Electronic books. ; Aufsatzsammlung ; Aufsatzsammlung
    URL: FULL  ((Currently Only Available on Campus))
    URL: Volltext  (URL des Erstveröffentlichers)
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    UID:
    b3kat_BV045903336
    Format: 221 Seiten , 21.5 cm x 13.5 cm
    Edition: 1. Auflage
    ISBN: 9783579014685
    Note: Enthält Literaturangaben Seite 215-221 , Hier auch später erschienene, unveränderte Nachdrucke
    Additional Edition: Erscheint auch als Online-Ausgabe ISBN 9783641240776
    Language: German
    Subjects: Education , Political Science
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Deutschland ; Bildungssystem ; Kind ; Persönlichkeitsentwicklung
    Author information: Winterhoff, Michael 1955-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    Online Resource
    Online Resource
    Northampton, MA :Edward Elgar Pub.,
    UID:
    almahu_9948265330102882
    Format: 1 online resource (776 p.) ; , cm.
    ISBN: 9781785361418 (e-book)
    Series Statement: The international library of critical writings in economics ; 323
    Content: This research review, written by two pioneers of e-commerce, discusses thirty of the most important papers written in the fields of economics, marketing and strategy. Topics covered include evaluation of the benefit to consumers of competition and product variety online, examination of auctions and reputational feedback mechanisms designed to mitigate informational asymmetries in online markets, and the debate on digital property rights including privacy, piracy and the open source movement. The review provides a thoughtful and accessible consideration of the subject of e-commerce, invaluable to scholars and practitioners alike.
    Note: The recommended readings are available in the print version, or may be available via the link to your library's holdings. , Recommended readings (Machine generated): Michael R. Baye and John Morgan (2001), 'Information Gatekeepers on the Internet and the Competitiveness of Homogeneous Product Markets', American Economic Review, 91 (3), June, 454-74 -- Jean-Charles Rochet and Jean Tirole (2003), 'Platform Competition in Two-Sided Markets', Journal of the European Economic Association, 1 (4), June, 990-1029 -- Bernard Caillaud and Bruno Jullien (2003), 'Chicken and Egg: Competition among Intermediation Service Providers', RAND Journal of Economics, 34 (2), Summer, 309-28 -- Mark Armstrong (2006), 'Competition in Two-Sided Markets', RAND Journal of Economics, 37 (3), Autumn, 668-91 -- Andrei Hagiu (2009), 'Two-Sided Platforms: Product Variety and Pricing Structures', Journal of Economics and Management Strategy, 18 (4), Winter, 1011-43 -- Gerard J. Tellis, Eden Yin and Rakesh Niraj (2009), 'Does Quality Win? Network Effects Versus Quality in High-Tech Markets', Journal of Marketing Research, XLVI (2), April, 135-49 -- Erik Brynjolfsson and Michael D. Smith (2000), 'Frictionless Commerce? A Comparison of Internet and Conventional Retailers', Management Science, 46 (4), April, 563-85 -- Michael R. Baye, John Morgan and Patrick Scholten (2004), 'Price Dispersion in the Small and in the Large: Evidence from an Internet Price Comparison Site', Journal of Industrial Economics, LII (4), December, 463-96 -- Michael R. Baye, J. Rupert J. Gatti, Paul Kattuman and John Morgan (2009), 'Clicks, Discontinuities, and Firm Demand Online', Journal of Economics and Management Strategy, 18 (4), Winter, 935-75 -- Glenn Ellison and Sara Fisher Ellison (2009), 'Search, Obfuscation, and Price Elasticities on the Internet', Econometrica, 77 (2), March, 427-52 -- Xavier Gabaix and David Laibson (2006), 'Shrouded Attributes, Consumer Myopia, and Information Suppression in Competitive Markets', Quarterly Journal of Economics, 121 (2), May, 505-40 -- Jennifer Brown, Tanjim Hossain and John Morgan (2010), 'Shrouded Attributes and Information Suppression: Evidence from the Field', Quarterly Journal of Economics, 125 (2), May, 859-76 -- Fiona Scott Morton, Florian Zettelmeyer and Jorge Silva-Risso (2001), 'Internet Car Retailing', Journal of Industrial Economics, XLIX (4), December, 501-19 -- Jeffrey R. Brown and Austan Goolsbee (2002), 'Does the Internet Make Markets More Competitive? Evidence from the Life Insurance Industry', Journal of Political Economy, 110 (3), June, 481-507 -- Erik Brynjolfsson, Yu (Jeffrey) Hu and Michael D. Smith (2003), 'Consumer Surplus in the Digital Economy: Estimating the Value of Increased Product Variety at Online Booksellers', Management Science, 49 (11), November, 1580-96 -- Chris Forman, Anindya Ghose and Avi Goldfarb (2009), 'Competition Between Local and Electronic Markets: How the Benefit of Buying Online Depends on Where You Live', Management Science, 55 (1), January, 47-57 -- Hal R. Varian (2007), 'Position Auctions', International Journal of Industrial Organization, 25 (6), December, 1163-78 -- Benjamin Edelman and Michael Schwarz (2010), 'Optimal Auction Design and Equilibrium Selection in Sponsored Search Auctions', American Economic Review, 100 (2), May, 597-602 -- Patrick Bajari and Ali Hortaçsu (2003), 'The Winner's Curse, Reserve Prices, and Endogenous Entry: Empirical Insights from eBay Auctions', RAND Journal of Economics, 34 (2), Summer, 329-55. , Paul Resnick, Richard Zeckhauser, John Swanson and Kate Lockwood (2006), 'The Value of Reputation on eBay: A Controlled Experiment', Experimental Economics, 9 (2), June, 79-101 -- Daniel Houser and John Wooders (2006), 'Reputation in Auctions: Theory, and Evidence from eBay', Journal of Economics and Management Strategy, 15 (2), Summer, 353-69 -- Gary E. Bolton, Elena Katok and Axel Ockenfels (2004), 'How Effective Are Electronic Reputation Mechanisms? An Experimental Investigation', Management Science, 50 (11), November, 1587-1602 -- Chrysanthos Dellarocas (2003), 'The Digitization of Word of Mouth: Promise and Challenges of Online Feedback Mechanisms', Management Science, 49 (10), October, 1407-24 -- Yan Chen, F. Maxwell Harper, Joseph Konstan and Sherry Xin Li (2010), 'Social Comparisons and Contributions to Online Communities: A Field Experiment on MovieLens', American Economic Review, 100 (4), September, 1358-98 -- Judith A. Chevalier and Dina Mayzlin (2006), 'The Effect of Word of Mouth on Sales: Online Book Reviews' Journal of Marketing Research, XLIII (3), August, 345-54 -- Rafael Rob and Joel Waldfogel (2006), 'Piracy on the High C's: Music Downloading, Sales Displacement, and Social Welfare in a Sample of College Students', Journal of Law and Economics, XLIX (1), April, 29-62 -- Felix Oberholzer-Gee and Koleman Strumpf (2007), 'The Effect of File Sharing on Record Sales: An Empirical Analysis', Journal of Political Economy, 115 (1), February, 1-42 -- Benjamin E. Hermalin and Michael L. Katz (2006), 'Privacy, Property Rights and Efficiency: The Economics of Privacy as Secrecy', Quantitative Marketing and Economics, 4 (3), September, 209-39 -- Avi Goldfarb and Catherine E. Tucker (2011), 'Privacy Regulation and Online Advertising', Management Science, 57 (1), January, 57-71 -- Josh Lerner and Jean Tirole (2002), 'Some Simple Economics of Open Source', Journal of Industrial Economics, L (2), June, 197-234.
    Language: English
    Keywords: Electronic books. ; Electronic books ; Electronic books
    URL: FULL  ((Currently Only Available on Campus))
    URL: Volltext  (URL des Erstveröffentlichers)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    UID:
    almafu_BV044353001
    Format: XXXIII, 2762 Seiten.
    Edition: 10. Auflage
    ISBN: 978-3-472-08974-2
    Series Statement: Luchterhand Kommentare
    Note: Literaturverzeichnis Seite XXVII-XXXIII. - Literaturangaben. - Zitiervorschlag: H/W/G/N/R/H-Bearbeiter
    Language: German
    Subjects: Law
    RVK:
    Keywords: Betriebsverfassungsgesetz ; Betriebsverfassungsgesetz ; Kommentar ; Gesetz ; Kommentar ; Kommentar
    Author information: Hess, Harald
    Author information: Worzalla, Michael 1960-
    Author information: Glock, Dirk
    Author information: Rose, Franz-Josef
    Author information: Nicolai, Andrea
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. Further information can be found on the KOBV privacy pages