Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- Historia 1,454
- Development 1,382
- Java (Computer program language) 1,307
- Application software 1,225
- JavaScript (Computer program language) 876
- Història 818
- Engineering & Applied Sciences 746
- Web site development 670
- Computer Science 606
- Web sites 386
- Computer programming 384
- Java (Lenguaje de programación) 368
- Design 365
- Web applications 329
- Internet programming 298
- Biblia 295
- Cajas de ahorros 284
- Computer software 274
- Computer programs 225
- Caza 211
- Programming languages (Electronic computers) 208
- Programming 200
- History 186
- HTML (Document markup language) 183
- Universidad Pontificia de Salamanca (España) 181
- Android (Electronic resource) 179
- Casas, Bartolomé de las 168
- Arquitectura 167
- Crítica e interpretación 167
- Software engineering 162
-
1021
-
1022Publicado 2015Tabla de Contenidos: “…Chapter 4: Client/Server DevelopmentThe HTTP protocol structure; The nature of HTTP messages; Initial request line format; Header lines; Message body; Client/Server interaction example; Java socket support for HTTP client/server applications; Building a simple HTTP server; Building a simple HTTP client; Client/server development using standard Java classes; Using the HttpURLConnection class; URL encoding; Using the HTTPServer class; Implementing a simple HTTPServer class; Managing response headers; Open source Java HTTP servers; Server configuration; Handling cookies; Summary…”
Libro electrónico -
1023Publicado 2015Materias: “…JavaScript (Computer program language)…”
Libro electrónico -
1024por Rinehart, Martin. authorTabla de Contenidos: “…1. Objects -- 2. JavaScript Objects -- 3. Object Programming -- 4. …”
Publicado 2015
Libro electrónico -
1025
-
1026Publicado 2015Tabla de Contenidos: “…About the Author; Brief Contents; Contents in Detail; Acknowledgments; Introduction; The Book's Philosophy; The Book's Contents; Source Code for Examples; Chapter 1: Graphing Data; Creating a Basic Bar Chart; Step 1: Include the Required JavaScript; Step 2: Set Aside a Element to Hold the Chart; Step 3: Define the Data; Step 4: Draw the Chart; Step 5: Fix the Vertical Axis; Step 6: Fix the Horizontal Axis; Step 7: Adjust the Styling; Step 8: Vary the Bar Color; Step 9: Work Around flotr2 "Bugs"; Plotting Continuous Data with a Line Chart; Step 1: Define the Data…”
Libro electrónico -
1027por Mardan, Azat. author“…This is a hands-on book which introduces you to agile JavaScript web and mobile software development using the latest cutting-edge front-end and back-end technologies including: Node.js, MongoDB, Backbone.js, Parse.com, Heroku and Windows Azure. …”
Publicado 2015
Libro electrónico -
1028Publicado 2015Materias: “…JavaScript (Computer program language)…”
-
1029Tabla de Contenidos: “…Contents at a Glance; Contents; About the Authors; About the Technical Reviewers; Acknowledgments; Chapter 1: Professional JavaScript Techniques; How Did We Get Here?; Modern JavaScript; The Rise of Libraries ; More Than a Note about Mobile; Where Do We Go from Here?…”
Libro electrónico -
1030
-
1031Publicado 2017Tabla de Contenidos:Libro electrónico
-
1032Publicado 2017Tabla de Contenidos: “…Cover -- Copyright -- Credits -- About the Author -- About the Reviewer -- www.PacktPub.com -- Customer Feedback -- Table of Contents -- Preface -- Chapter 1: Getting Started with Java 9 -- Getting started with Java -- Installing Java -- Installation on Windows -- Installation on MAC OS X -- Installation on Linux -- Setting JAVA_HOME -- Executing jshell -- Looking at the byte code -- Packaging classes into a JAR file -- Managing the running Java application -- Using an IDE -- NetBeans -- Eclipse -- IntelliJ -- IDE services -- IDE screen structure -- Editing files -- Managing projects -- Build the code and run it -- Debugging Java -- Summary -- Chapter 2: The First Real Java Program - Sorting Names -- Getting started with sorting -- Bubble sort -- Getting started with project structure and build tools -- Make -- Ant -- Installing Ant -- Using Ant -- Maven -- Installing Maven -- Using Maven -- Gradle -- Installing Gradle -- Setting up the project with Maven -- Coding the sort -- Understanding the algorithm and language constructs -- Blocks -- Variables -- Types -- Arrays -- Expressions -- Loops -- Conditional execution -- Final variables -- Classes -- Inner, nested, local, and anonymous classes -- Packages -- Methods -- Interfaces -- Argument passing -- Fields -- Modifiers -- Object initializers and constructors -- Compiling and running the program -- Summary -- Chapter 3: Optimizing the Sort - Making Code Professional -- The general sorting program -- A brief overview of various sorting algorithms -- Quick sort -- Project structure and build tools -- Maven dependency management -- Code the sort -- Creating the interfaces -- Creating BubbleSort -- Amending the interfaces -- Architectural considerations -- Creating unit tests -- Adding JUnit as dependency -- Writing the BubbleSortTest class -- Good unit tests -- A good unit test is readable…”
Libro electrónico -
1033
-
1034
-
1035
-
1036Publicado 2018Materias: “…Java (Computer program language)…”
Libro electrónico -
1037Publicado 2017Tabla de Contenidos: “…Cover -- Credits -- About the Author -- About the Reviewer -- www.PacktPub.com -- Customer Feedback -- Table of Contents -- Preface -- Chapter 1: Obtaining and Cleaning Data -- Introduction -- Retrieving all filenames from hierarchical directories using Java -- Getting ready -- How to do it... -- Retrieving all filenames from hierarchical directories using Apache Commons IO -- Getting ready -- How to do it... -- Reading contents from text files all at once using Java 8 -- How to do it... -- Reading contents from text files all at once using Apache Commons IO -- Getting ready -- How to do it... -- Extracting PDF text using Apache Tika -- Getting ready -- How to do it... -- Cleaning ASCII text files using Regular Expressions -- How to do it... -- Parsing Comma Separated Value (CSV) Files using Univocity -- Getting ready -- How to do it... -- Parsing Tab Separated Value (TSV) file using Univocity -- Getting ready -- How to do it... -- Parsing XML files using JDOM -- Getting ready -- How to do it... -- Writing JSON files using JSON.simple -- Getting ready -- How to do it... -- Reading JSON files using JSON.simple -- Getting ready -- How to do it ... -- Extracting web data from a URL using JSoup -- Getting ready -- How to do it... -- Extracting web data from a website using Selenium Webdriver -- Getting ready -- How to do it... -- Reading table data from a MySQL database -- Getting ready -- How to do it... -- Chapter 2: Indexing and Searching Data -- Introduction -- Indexing data with Apache Lucene -- Getting ready -- How to do it... -- How it works... -- Searching indexed data with Apache Lucene -- Getting ready -- How to do it... -- Chapter 3: Analyzing Data Statistically -- Introduction -- Generating descriptive statistics -- How to do it... -- Generating summary statistics -- How to do it... -- Generating summary statistics from multiple distributions -- How to do it... -- There's more...…”
Libro electrónico -
1038Publicado 2023Tabla de Contenidos: “…Questions and answers -- Further reading -- Part 2: TDD Techniques -- Chapter 4: Building an Application Using TDD -- Technical requirements -- Preparing our development environment -- Installing the IntelliJ IDE -- Setting up the Java project and libraries -- Introducing the Wordz application -- Describing the rules of Wordz -- Exploring agile methods -- Reading user stories - the building block of planning -- Combining agile development with TDD -- Summary -- Questions and answers -- Further reading -- Chapter 5: Writing Our First Test -- Technical requirements -- Starting TDD: Arrange-Act-Assert -- Defining the test structure -- Working backward from outcomes -- Increasing workflow efficiency -- Defining a good test -- Applying the FIRST principles -- Using one assert per test -- Deciding on the scope of a unit test -- Catching common errors -- Asserting exceptions -- Only testing public methods -- Preserving encapsulation -- Learning from our tests -- A messy Arrange step -- A messy Act step -- A messy Assert step -- Limitations of unit tests -- Code coverage - an often-meaningless metric -- Writing the wrong tests -- Beginning Wordz -- Summary -- Questions and answers -- Chapter 6: Following the Rhythms of TDD -- Technical requirements -- Following the RGR cycle -- Starting on red -- Keep it simple - moving to green -- Refactoring to clean code -- Writing our next tests for Wordz -- Summary -- Questions and answers -- Further reading -- Chapter 7: Driving Design - TDD and SOLID -- Technical requirements -- Test guide - we drive the design -- SRP - simple building blocks -- Too many responsibilities make code harder to work with -- Ability to reuse code -- Simplified future maintenance -- Counter-example - shapes code that violates SRP -- Applying SRP to simplify future maintenance -- Organizing tests to have a single responsibility…”
Libro electrónico -
1039
-
1040Publicado 2017Tabla de Contenidos: “…Introduction -- Part 1: Getting Started with Java Programming -- Chapter 1: Getting Started -- Chapter 2: Setting Up Your Computer -- Chapter 3: Running Programs -- Part 2: Writing Your Own Java Programs -- Chapter 4: Exploring the Parts of a Program -- Chapter 5: Composing a Program -- Chapter 6: Using the Building Blocks: Variables, Values, and Types -- Chapter 7: Numbers and Types -- Chapter 8: Numbers? …”
Libro electrónico