Narrow your search

Library

KBR (317)

KU Leuven (230)

UGent (142)

ULB (95)

ULiège (64)

VUB (63)

Odisee (62)

VIVES (62)

Thomas More Mechelen (59)

UAntwerpen (54)

More...

Resource type

book (683)

digital (160)

audio (52)

film (20)

map (16)

More...

Language

English (735)

French (81)

Dutch (51)

Undetermined (26)

Latin (23)

More...

Year
From To Submit

2024 (1)

2023 (2)

2022 (9)

2021 (9)

2020 (10)

More...
Listing 1 - 10 of 945 << page
of 95
>>
Sort by

Book
The speeches of the Right Honourable William Pitt, in the House of Commons
Author:
Year: 1806 Publisher: London Longman Hurst Rees and Orme

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords


Book
Poems by the celebrated translator of Virgil's Æneid Together with The Jordan, a poem: in imitation of Spenser. By -, Esq;
Author:
Year: 1756 Publisher: Dublin Cengage Gale

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords


Book
Speech of the Right Honourable William Pitt: In the House of Commons, Thursday, Janurary 31, 1799, on Offering to the House the Resolutions which He Proposed as the Basis of an Union between Great Britain and Ireland (5th ed.)
Author:
Year: 1799

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords

Los Angeles A to Z : an encyclopedia of the city and county
Authors: ---
ISBN: 0520202740 Year: 1997 Publisher: Berkeley (Calif.) : University of California press,

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords


Book
The chronological atlas of World War II
Authors: ---
Year: 1989 Publisher: New York (N.Y.): Macmillan

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords

SPC for the rest of us : a personal path to statistical process control
Author:
ISBN: 0201563665 Year: 1994 Publisher: Reading, Mass. Addison-Wesley

Fundamental Networking in Java
Author:
ISBN: 1846280303 1849965455 1846282527 9781846280306 Year: 2006 Publisher: London : Springer London : Imprint: Springer,

Loading...
Export citation

Choose an application

Bookmark

Abstract

This book is an in-depth learning and teaching resource for the understanding and programming of TCP/IP networking in Java. It covers 'everything you can do to a socket in Java' and explains when and why you might - or might not - want to do that. It is addressed both to professional programmers and college students in first or second year networking courses. The book covers TCP and UDP using both blocking streams and non-blocking channels, and also SSL secure sockets in both blocking and non-blocking modes, unravelling the mysteries of the SSLEngine in the process. Particular attention is paid to the neglected topics of multi-homing and multicast. A unique chapter on client and server architectures uses a quantitative approach rather than the usual design-patterns approach, leading to architectures with predictable performance rather than just coding elegance. All you need to know about: - Using Streams and Sockets for blocking TCP/IP - Using Buffers and Channels for non-blocking and multiplexed TCP/IP and UDP - Designing servers for scalability and predictable performance - Working with blocking TLS/SSL using Streams and SSLSockets - Unlocking the mysteries of non-blocking TLS/SSL with the JDK 1.5 SSLEngine - Using DatagramSockets and DatagramPackets for blocking UDP and multicasting - Outlining special programming considerations for multihomed hosts - Managing the transition from IPv4 to IPv6 in Java Features: - Extensive Java index - Accompanying [SVL] website XXXXX with source code download - Comprehensive code samples and some exercises. Esmond Pitt is a Melbourne consultant and author with a distinguished 28-year international career in the design and implementation of systems software products. A well-known Java advisor, he has published a book on Java RMI, and is a member of Sun's Expert Group on Distributed Real-time Java. His IT practice encompasses compiler construction, networking, and security. He is a Fellow of the Australian Computer Society. I was an early reviewer of this book and I admire its economical and thorough but eminently readable style, lucidly describing complex issues without ever outstaying its welcome. This book combines academic rigour with a practical approach deeply informed by real-world experience and I have no hesitation in recommending it to developers of all experience levels. Experienced engineers building network-centric infrastructure or services should not be without this book. In fact, any Java developer building distributed applications such as J2EE, Jini, and Web Services should read this book — at least to understand the fundamental implications of networking on application design and implementation. Michael Geisler, Sun Microsystems.


Book
Standaard geschiedenis van de tweede wereldoorlog
Author:
ISBN: 9002141602 9789002141607 Year: 1980 Publisher: Antwerpen, Amsterdam Standaard Uitgeverij

Loading...
Export citation

Choose an application

Bookmark

Abstract

Keywords


Book
Pro PHP MVC
Author:
ISBN: 1430241640 1430241659 Year: 2012 Publisher: [Berkeley] : Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

Model View Controller (MVC) is becoming the definitive architecture of website development frameworks due to the stability, extensibility and predictability it lends to development. It is not just the primary separation of database, business logic and interface components, but includes a wide range of considerations for building high-performing, scalable and secure applications. Deciding which MVC framework best suits the project you are about to begin is one of the biggest challenges you'll face as a developer. If you are part of a team, this decision has probably already been made for you; but in any event, you'll need to know how (and why) the framework authors made it work the way it does. Pro PHP MVC looks at the building blocks that make any good MVC framework, and how they apply to PHP. It exposes all considerations that many developers take for granted when using a popular framework, and teaches you how to make the framework your own.  Over the course of reading this book, you will learn the theoretical implications of the choices you would make when writing your own MVC framework, and how to put the pieces together in a cohesive package. We take a look at the highly modular Zend Framework—how to use its collection of loosely coupled classes to build a unified system. We also look at CakePHP, learning from its automated build system (Bakery) and highly intuitive approach to rapid development. This book will lay bare all the secret parts of MVC for you.


Book
Typed PHP : Stronger Types For Cleaner Code
Author:
ISBN: 1484221133 1484221141 Year: 2016 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

Discover how stronger types mean cleaner, more efficient, and optimized PHP applications. This unique book looks at typed PHP: PHP types, strings, regular expressions, and more from PHP 7 as found in standard PHP libraries, user libraries, extensions, and cross-compilers. You'll see how to create a set of reusable tools that unify and ease the scalar types of PHP. PHP has a rich history and a dominant place on the web. It has achieved much despite language inconsistencies and difficulties. Bjarne Stroustrup once said: "There are only two kinds of languages: the ones people complain about and the ones nobody uses". PHP is one of those languages that everybody uses, yet that's often seen as a good reason to ignore the bad parts and just get stuff done. We're all for getting stuff done, and to that end, the author has used Plain Ol' PHP for many years. It's always bugged him how procedural PHP is, in an ecosystem of OOP libraries and frameworks. So he decided to take a deeper look at building a stronger type system on top of PHP. That's the goal of this book. What You'll Learn Discover the fundamentals of PHP strings, regex, underscores, native function inconsistencies, and more Examine the structure of PHP types including boxing, regex, namespace functions, composer autoload, null problem, optional values, and more Work with extensions like vagrant + phansible, provisioning, vagrant commands, SPL types, scalar objects, zephir, and more Design using scalar, SPL, zephir, structure types, resolving types, chaining, combining number types, PHPUnit, packaging, and more Plan for the future using a case study example.

Listing 1 - 10 of 945 << page
of 95
>>
Sort by