
Edward Elgar Publishing UN iLibrary HeinOnline Directory of Open Access Books SAGE Journals ASTM Compass
From this page you can:
Home |
Descriptors



Analyzing requirements and defining Microsoft .NET solution architectures
Title : Analyzing requirements and defining Microsoft .NET solution architectures : exam 70-300, Microsoft .NET. Material Type: printed text Publisher: Redmond, Washington : Microsoft Press Publication Date: 2003 Pagination: xxv, 490 p. Layout: ill. Size: 24 cm ISBN (or other code): 978-0-7356-1894-7 General note: Includes index (p. 469-490) Languages : English (eng) Original Language : English (eng) Descriptors: Application software
Business enterprises
Microsoft .NET Framework
Microsoft softwareClass number: 005.276 Abstract: Now you can build real-world programming skills as you prepare for MCP Exam 70-300—the only exam every MCSD certification candidate must pass. Work at your own pace through the scenario-based lessons and hands-on labs to learn how to analyze requirements and define a Microsoft .NET solution architecture for a software development project. This official Microsoft study guide maps one-to-one with the MCP exam objectives, including envisioning the solution; gathering and analyzing business requirements; developing specifications; creating the conceptual, logical, and physical designs; and creating standards and processes. As you develop proficiency in these critical skill areas, you’re also preparing for MCSD certification for Microsoft .NET. Contents note: Introduction to Designing Business Solutions; Gathering and Analyzing Information; Envisioning the Solution; Analyzing Requirements and Defining Microsoft .NET Solution Architectures; Creating the Conceptual Design; Creating the Logical Design; Creating the Physical Design; Designing the Presentation Layer; Designing the Data Layer; Designing Security Specifications; Completing the Planning Phase; Record link: https://library.seeu.edu.mk/index.php?lvl=notice_display&id=17264 Hold
Place a hold on this item
Copies
Barcode Call number Media type Location Section Status 1702-001975 005.276 Analyzi 2003 General Collection Library "Max van der Stoel" English Available Building Web Applications with Erlang / Zachary Kessin
Title : Building Web Applications with Erlang Material Type: printed text Authors: Zachary Kessin, Author Publisher: Beijing : O'Reilly Publication Date: 2012 Pagination: xvi, 133 p. Size: 24 cm ISBN (or other code): 978-1-449-30996-1 General note: Includes index (p. 227-234) Languages : English (eng) Original Language : English (eng) Descriptors: Application software
ERLANG (Computer program language)
Web servicesClass number: 005.8 Abstract: Why choose Erlang for web applications? Discover the answer hands-on by building a simple web service with this book. If you’re an experienced web developer who knows basic Erlang, you’ll learn how to work with REST, dynamic content, web sockets, and concurrency through several examples. In the process, you’ll see first-hand that Erlang is ideal for building business-critical services. Erlang was designed for fault-tolerant, non-stop telecom systems, and building applications with it requires a large set of skills. By the end of the book, you’ll have the information you need to build a basic web service and get it running.
*Explore the power of Erlang and REST for building web services
*Serve static and dynamic content with the Yaws web server
*Use different methods for outputting data to user, such as encoding Erlang data structures into JSON or XML
*Build an application to listen for HTTP requests, process them, store data, and return useful data
*Go beyond the request-response model—push data to clients with web sockets
*Use Erlang and Yaws to stream data from the server to a client
"A book which is truly needed and will help get Erlang to the next level."Contents note: Building Scalable system with Erlang and REST; Getting Started with Yaws; Appmods: Dynamic Content in Yaws; Implementing REST; File Upload; WebSockets; Streaming; Using the HTTP Client; Building and Application with OTP; Record link: https://library.seeu.edu.mk/index.php?lvl=notice_display&id=17157 Hold
Place a hold on this item
Copies
Barcode Call number Media type Location Section Status 1702-001896 005.8 Kes-Bui 2012 General Collection Library "Max van der Stoel" English Available Inside Microsoft Windows communication foundation / Justin Smith
Title : Inside Microsoft Windows communication foundation Material Type: printed text Authors: Justin Smith, Author Publisher: Redmond, Washington : Microsoft Press Publication Date: 2007 Pagination: xx, 280 p. Layout: ill. Size: 24 cm ISBN (or other code): 978-0-7356-2306-4 General note: Includes index (p. 273-280) Languages : English (eng) Original Language : English (eng) Descriptors: Application software
Microsoft Windows
Web servicesClass number: 005.4 Abstract: Dive deep into the operation of Windows Communication Foundation with this practical, hands-on book-and learn the intricacies of Windows Communication Foundation and service-oriented concepts and implementations. Fundamentally, services are not objects. Given the prevalence of the object-oriented paradigm over the past 20 years, experienced developers need to explore a new way of thinking about architecting solutions. Concise and practical, this guide explains the fundamentals of applications built with a service-oriented architecture and how the international standards for Web services are implemented in Windows Communication Foundation. Each chapter includes at least two practical code samples in Visual C#. Contents note: Introduction to WCF; The Moon Is Blue; Service Orientation; Message Exchange Patterns, Topologies, and Choreographies; WCF 101; WCF in the Channel Layer; Messages; Channels; Channel Managers; WCF in the ServiceModel Layer; Bindings; Contracts; Dispatchers and Clients; Record link: https://library.seeu.edu.mk/index.php?lvl=notice_display&id=17262 Hold
Place a hold on this item
Copies
Barcode Call number Media type Location Section Status 1702-001973 005.4 Smi-Ins 2007 General Collection Library "Max van der Stoel" English Available Python and algorithmic thinking for the complete beginner / Aristides S. Bouras
Title : Python and algorithmic thinking for the complete beginner : learn to think like a programmer Material Type: printed text Authors: Aristides S. Bouras, Author Publisher: CreateSpace Independent Publishing Platform Publication Date: 2015 Pagination: 732 p. Layout: ill. Size: 26 cm ISBN (or other code): 978-1-514-80216-8 General note: Inlcudes index Languages : English (eng) Original Language : English (eng) Descriptors: Algorithms
Application software
Python (Computer program language)Class number: 006.3 Abstract: "Python and algorithmic thinking for the complete beginner"- This book is for anyone who wants to learn computer programming and knows absolutely nothing about it. Of course, if you are wondering whether this book is going to teach you how to create amazing applets or incredible desktop or mobile applications, the answer is "no"-that is a job for other books. So many books out there can teach you those skills in Python, C#, or Java. Many of them even claim that they can teach you in 24 hours! Don t laugh! They probably can do that, but all of them take one thing for granted-that the reader knows some basics about computer programming. None of those books, unfortunately, bothers to teach you the first thing that a novice programmer needs to learn, which is "Algorithmic Thinking." Algorithmic Thinking involves more than just learning code. It is a problem solving process that involves learning how to code. With over 700 pages, and containing more than 300 solved and 400 unsolved exercises, over 450 true/false, 150 multiple choice, and 180 review. Contents note: How a computer works; Python; Software packages to install; Introduction to basic algorithm concepts; Variables and constants; Handling input and output; Operators; Trace tables; Using eclipse; Introduction to sequence control structures; Manipulating numbers; Complex mathematical expression; exercises with a quotient and a remainder; Manipulating strings; Introduction to decision control structures; The single alternative decision structure; The dual alternative decision structure; The multiple alternative decision structure; Nested decision control structures; Tips and tricks with decision control structures; Flowcharts with decision control structures; More exercises with decision control structures; Introduction to loop control structures; The while loop; The for loop; Nested loop control structures; Tips and tricks with loop control structures; Flowcharts with loop control structures; More exercises with loop control structures; Introduction to lists; One dimensional lists; Two dimensional lists; Tips and tricks with lists; Flowcharts with lists; More exercises with lists; Introduction to subprograms; User defined functions; User defined procedures; Tips and tricks with subprograms; Flowcharts with subprograms; More exercises with subprograms; Record link: https://library.seeu.edu.mk/index.php?lvl=notice_display&id=17513 Copies
Barcode Call number Media type Location Section Status 1702-002293 006.3 Bou-Pyt 2015 General Collection SEEU Library Skopje English Not for loan Swift programming / Matthew Mathias
Title : Swift programming : the Big Nerd Ranch guide Material Type: printed text Authors: Matthew Mathias, Author ; John Gallagher, Author Edition statement: 2nd edition Publisher: Big Nerd Ranch, (Atlanta, GA) Publication Date: 2016 Pagination: xix, 459 p. Layout: ill. Size: 26 cm ISBN (or other code): 978-0-13-461061-0 General note: Includes index (p. 449-459) Languages : English (eng) Original Language : English (eng) Descriptors: Application software
iOS (Electronic resource)
Mobile computing - Programming
Swift (Computer program language)Class number: 005.25 Abstract: "Swift programming"-Through the authors' carefully constructed explanations and examples, you will develop an understanding of Swift grammar and the elements of effective Swift style. Updated for Swift 3.0, the book is also compatible with Swift 2.1. You will also learn how to navigate Xcode 8 and get the most out of Apple's documentation. Throughout the book, the authors share their insights into Swift to ensure that you understand the how's and whys of Swift and can put that understanding to use in different contexts. After working through this book, you will have the knowledge and confidence to develop your own solutions to a wide range of programming challenges using Swift. Contents note: Getting Started; Types, Constants, and Variables; Conditionals; Numbers; Switch; Loops; Strings; Optional; Arrays; Dictionaries11. Sets; Functions; Closures; Enumerations; Structs and Classes; Properties; Initialization; Value vs. Reference Types; Protocols; Error Handling; Extensions; Generics; Protocol Extensions; Memory Management and ARC; Equitable and Comparable; Your First Cocoa Application; Your First iOS Application; Interoperability; Conclusion; Record link: https://library.seeu.edu.mk/index.php?lvl=notice_display&id=17089 Hold
Place a hold on this item
Copies
Barcode Call number Media type Location Section Status 1702-001915 005.25 Mat-Swi 2006 General Collection Library "Max van der Stoel" English Available Visual Studio 6 - / Džon Pol Mjuler
PermalinkWireless Internet applications and architecture / Mark Beaulieu
Permalink