Domain internetviews.de kaufen?
Produkt zum Begriff Language:
-
Language as Hope
Language as Hope , Ludwig Lejzer Zamenhof (1859-1917) was not the only one promoting the idea of a constructed language in his time. Numerous efforts - drawing inspiration from different sources - have shown a strong desire during the late 19th and early 20th century to create a mode of communication carried by universal humanitarianism. Esperanto, however, is unique in its influence. The articles collected in this volume debate the question of the extent to which this unique potential can be attributed to Jewish, cosmopolitan and pacifist traditions of thought. All contributions have resulted from the lectures of the international workshop "The heritage and legacy of Ludwik Lejzer Zamenhof between Judaism and Esperanto", that took place in the Museum Polin - Museum of the History of Polish Jews in Warsaw. , Nachschlagewerke & Lexika > Fachbücher, Lernen & Nachschlagen
Preis: 29.00 € | Versand*: 0 € -
C Programming Language
The definitive reference guide to C programming from K&R for writing good code that works and is easy to modifyLearn how to program in C from the developers of C, Brian Kernighan and Dennis Ritchie. Intended for those with at least some experience with one other language (even if you are a novice), this book contains a tutorial introduction to get new users started as soon as possible and separate chapters on each major feature:Types, operators, and expressionsControl flowFunctions and program structurePointers and arraysStructuresInput and outputThis second edition of The C Programming Language describes C as defined by the ANSI standard and includes a reference manual that conveys the essentials of the standard in a smaller space for easy comprehension for programmers."K&R is one of my favorite books. The style of the tutorial chapters is so deceptively light and simple and the manual so crisp. Much of C's reputation of simplicity comes from the clarity and great little examples from this book. My 1978 copy has lost its cover and my K&R2 is somewhat dog eared. Above all, K&R is a useful book."Bjarne Stroustrup, designer and original implementer of C++, and author of The C++ Programming Language
Preis: 52.42 € | Versand*: 0 € -
OpenGL Shading Language
OpenGL® Shading Language, Third Edition, extensively updated for OpenGL 3.1, is the experienced application programmer’s guide to writing shaders. Part reference, part tutorial, this book thoroughly explains the shift from fixed-functionality graphics hardware to the new era of programmable graphics hardware and the additions to the OpenGL API that support this programmability. With OpenGL and shaders written in the OpenGL Shading Language, applications can perform better, achieving stunning graphics effects by using the capabilities of both the visual processing unit and the central processing unit. In this book, you will find a detailed introduction to the OpenGL Shading Language (GLSL) and the new OpenGL function calls that support it. The text begins by describing the syntax and semantics of this high-level programming language. Once this foundation has been established, the book explores the creation and manipulation of shaders using new OpenGL function calls. OpenGL® Shading Language, Third Edition, includes updated descriptions for the language and all the GLSL entry points added though OpenGL 3.1, as well as updated chapters that discuss transformations, lighting, shadows, and surface characteristics. The third edition also features shaders that have been updated to OpenGL Shading Language Version 1.40 and their underlying algorithms, including Traditional OpenGL fixed functionality Stored textures and procedural textures Image-based lighting Lighting with spherical harmonics Ambient occlusion and shadow mapping Volume shadows using deferred lighting Ward’s BRDF model The color plate section illustrates the power and sophistication of the OpenGL Shading Language. The API Function Reference at the end of the book is an excellent guide to the API entry points that support the OpenGL Shading Language.
Preis: 43.86 € | Versand*: 0 € -
Day, Jeremy: Language Hub
Language Hub , Zielniveau B1 plus Language Hub ist ein sechsbändiges, allgemeinsprachliches Englisch-Lehrwerk für Erwachsene in Volkshochschulen, privaten Sprachenschulen oder an Universitäten. Das Lehrwerk führt von Niveau A1 (Beginner) zu C1 (Advanced) nach dem Europäischen Referenzrahmen in der revidierten Fassung von 2018. Die perfekte Kombination von Buch und digitalen Medien ermöglicht das Lernen, wo und wann Sie wollen. Das Student's Book bietet: . 12 Lektionen mit abwechslungsreichen, gesellschaftsrelevanten Themen . magazinartige Einstiegsseiten mit Angabe klarer Lernziele . je 2 unterhaltsame Videos pro Lektion . Vertiefung der Schreibfähigkeiten für Alltag und Beruf (Writing Bank) . zusätzliche Aktivitäten in den Rubriken Vocabulary, Grammar und Communication Hub . je eine Sprechaktivität, fakultative Partner- und Gruppenübungen (Café Hub) und Review Section am Ende jeder Lektion . Student's App mit ergänzenden Grammatik- und Vokabelübungen, Audios und Videos , Studium & Erwachsenenbildung > Fachbücher, Lernen & Nachschlagen
Preis: 35.50 € | Versand*: 0 €
Ähnliche Suchbegriffe für Language:
-
Language of SQL, The
This is the eBook of the printed book and may not include any media, website access codes, or print supplements that may come packaged with the bound book. The Language of SQL, Second Edition Many SQL texts attempt to serve as an encyclopedic reference on SQL syntax -- an approach that is often counterproductive, because that information is readily available in online references published by the major database vendors. For SQL beginners, it’s more important for a book to focus on general concepts and to offer clear explanations and examples of what various SQL statements can accomplish. This is that book. A number of features make The Language of SQL unique among introductory SQL books. First, you will not be required to download software or sit with a computer as you read the text. The intent of this book is to provide examples of SQL usage that can be understood simply by reading. Second, topics are organized in an intuitive and logical sequence. SQL keywords are introduced one at a time, allowing you to grow your understanding as you encounter new terms and concepts. Finally, this book covers the syntax of three widely used databases: Microsoft SQL Server, MySQL, and Oracle. Special “Database Differences” sidebars clearly show you any differences in syntax among these three databases, and instructions are included on how to obtain and install free versions of the databases. This is the only book you need to gain a quick working knowledge of SQL and relational databases. ·Learn How To... Use SQL to retrieve data from relational databases Apply functions and calculations to data Group and summarize data in a variety of useful ways Use complex logic to retrieve only the data you need Update data and create new tables Design relational databases so that data retrieval is easy and intuitive Use spreadsheets to transform your data into meaningful displays Retrieve data from multiple tables via joins, subqueries, views, and set logic Create, modify, and execute stored procedures Install Microsoft SQL Server, MySQL, or Oracle
Preis: 19.25 € | Versand*: 0 € -
Go Programming Language, The
The Go Programming Language is the authoritative resource for any programmer who wants to learn Go. It shows how to write clear and idiomatic Go to solve real-world problems. The book does not assume prior knowledge of Go nor experience with any specific language, so you’ll find it accessible whether you’re most comfortable with JavaScript, Ruby, Python, Java, or C++. The first chapter is a tutorial on the basic concepts of Go, introduced through programs for file I/O and text processing, simple graphics, and web clients and servers. Early chapters cover the structural elements of Go programs: syntax, control flow, data types, and the organization of a program into packages, files, and functions. The examples illustrate many packages from the standard library and show how to create new ones of your own. Later chapters explain the package mechanism in more detail, and how to build, test, and maintain projects using the go tool. The chapters on methods and interfaces introduce Go’s unconventional approach to object-oriented programming, in which methods can be declared on any type and interfaces are implicitly satisfied. They explain the key principles of encapsulation, composition, and substitutability using realistic examples. Two chapters on concurrency present in-depth approaches to this increasingly important topic. The first, which covers the basic mechanisms of goroutines and channels, illustrates the style known as communicating sequential processes for which Go is renowned. The second covers more traditional aspects of concurrency with shared variables. These chapters provide a solid foundation for programmers encountering concurrency for the first time. The final two chapters explore lower-level features of Go. One covers the art of metaprogramming using reflection. The other shows how to use the unsafe package to step outside the type system for special situations, and how to use the cgo tool to create Go bindings for C libraries. The book features hundreds of interesting and practical examples of well-written Go code that cover the whole language, its most important packages, and a wide range of applications. Each chapter has exercises to test your understanding and explore extensions and alternatives. Source code is freely available for download from http://gopl.io/ and may be conveniently fetched, built, and installed using the go get command.
Preis: 18.18 € | Versand*: 0 € -
The AWK Programming Language
Awk was developed in 1977 at Bell Labs, and it's still a remarkably useful tool for solving a wide variety of problems quickly and efficiently. In this update of the classic Awk book, the creators of the language show you what Awk can do and teach you how to use it effectively. Here's what programmers today are saying: "I love Awk." "Awk is amazing." "It is just so damn good." "Awk is just right." "Awk is awesome." "Awk has always been a language that I loved." It's easy: "Simple, fast and lightweight." "Absolutely efficient to learn because there isn't much to learn." "3-4 hours to learn the language from start to finish." "I can teach it to new engineers in less than 2 hours." It's productive: "Whenever I need to do a complex analysis of a semi-structured text file in less than a minute, Awk is my tool." "Learning Awk was the best bang for buck investment of time in my entire career." "Designed to chew through lines of text files with ease, with great defaults that minimize the amount of code you actually have to write to do anything." It's always available: "AWK runs everywhere." "A reliable Swiss Army knife that is always there when you need it." "Many systems lack Perl or Python, but include Awk." Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.
Preis: 32.09 € | Versand*: 0 € -
Lampe Opjet Language PM
Tischlampe im Laternenstil. Elle besteht aus satiniertem weissem Glas (D.14xH.20,5cm) und einem Sockel (D.12xH.2,5cm) aus satiniertem goldfarbenem Metall. E27-Fassung für eine Leistung von max. 12W (Glühbirne nicht im Lieferumfang enthalten). Nur für den Innenbereich geeignet.
Preis: 51.69 € | Versand*: 0.00 €
* Alle Preise verstehen sich inklusive der gesetzlichen Mehrwertsteuer und ggf. zuzüglich Versandkosten. Die Angebotsinformationen basieren auf den Angaben des jeweiligen Shops und werden über automatisierte Prozesse aktualisiert. Eine Aktualisierung in Echtzeit findet nicht statt, so dass es im Einzelfall zu Abweichungen kommen kann.