1 - 20
Next
- Bell, Jason (Computer scientist), author.
- Hoboken : John Wiley & Sons, 2014.
- Description
- Book — 1 online resource (336 pages)
- Summary
-
- Machine generated contents note: ch. 1 What Is Machine Learning?
- History of Machine Learning
- Alan Turing
- Arthur Samuel
- Tom M. Mitchell
- Summary Definition
- Algorithm Types for Machine Learning
- Supervised Learning
- Unsupervised Learning
- The Human Touch
- Uses for Machine Learning
- Software
- Spam Detection
- Voice Recognition
- Stock Trading
- Robotics
- Medicine and Healthcare
- Advertising
- Retail and E-commerce
- Gaming Analytics
- The Internet of Things
- Languages for Machine Learning
- Python
- R
- Matlab
- Scala
- Ruby
- Software Used in This Book
- Checking the Java Version
- Weka Toolkit
- DeepLearning4J
- Kafka
- Spark and Hadoop
- Text Editors and IDEs
- Data Repositories
- UC Irvine Machine Learning Repository
- Kaggle
- Summary
- ch. 2 Planning for Machine Learning
- The Machine Learning Cycle
- It All Starts with a Question
- I Don't Have Data!
- Starting Local
- Transfer Learning
- Competitions
- One Solution Fits All?
- Defining the Process
- Planning
- Developing
- Testing
- Reporting
- Refining
- Production
- Avoiding Bias
- Building a Data Team
- Mathematics and Statistics
- Programming
- Graphic Design
- Domain Knowledge
- Data Processing
- Using Your Computer
- A Cluster of Machines
- Cloud-Based Services
- Data Storage
- Physical Discs
- Cloud-Based Storage
- Data Privacy
- Cultural Norms
- Generational Expectations
- The Anonymity of User Data
- Don't Cross the "Creepy Line"
- Data Quality and Cleaning
- Presence Checks
- Type Checks
- Length Checks
- Range Checks
- Format Checks
- The Britney Dilemma
- What's in a Country Name?
- Dates and Times
- Final Thoughts on Data Cleaning
- Thinking About Input Data
- Raw Text
- Comma-Separated Variables
- JSON
- YAML
- XML
- Spreadsheets
- Databases
- Images
- Thinking About Output Data
- Don't Be Afraid to Experiment
- Summary
- ch. 3 Data Acquisition Techniques
- Scraping Data
- Copy and Paste
- Google Sheets
- Using an API
- Acquiring Weather Data
- Using the Command Line
- Using Java
- Using Clojure
- Migrating Data
- Installing Embulk
- Using the Quick Run
- Installing Plugins
- Migrating Files to Database
- Bulk Converting CSV to JSON
- Summary
- ch. 4 Statistics, Linear Regression, and Randomness
- Working with a Basic Dataset
- Loading and Converting the Dataset
- Loading Data with Clojure
- Loading Data with Java
- Introducing Basic Statistics
- Minimum and Maximum Values
- Mathematical Notation
- Clojure
- Java
- Sum
- Mathematical Notation
- Clojure
- Java
- Mean
- Arithmetic Mean
- Harmonic Mean
- Geometric Mean
- The Relationship Between the Three Averages
- Clojure
- Java
- Mode
- Clojure
- Java
- Median
- Clojure
- Java
- Range
- Clojure
- Java
- Interquartile Ranges
- Clojure
- Java
- Variance
- Clojure
- Java
- Standard Deviation
- Clojure
- Java
- Using Simple Linear Regression
- Using Your Spreadsheet
- Using Excel
- Loading the CSV Data
- Creating a Scatter Plot
- Showing the Trendline
- Showing the Equation and R2 Value
- Making a Prediction
- Writing a Program
- Embracing Randomness
- Finding Pi with Random Numbers
- Using Monte Carlo Pi in Clojure
- Is the Dart Within the Circle?
- Now Throw Lots of Darts!
- Summary
- ch. 5 Working with Decision Trees
- The Basics of Decision Trees
- Uses for Decision Trees
- Advantages of Decision Trees
- Limitations of Decision Trees
- Different Algorithm Types
- ID3
- C4.5
- CHAID
- MARS
- How Decision Trees Work
- Building a Decision Tree
- Manually Walking Through an Example
- Calculating Entropy
- Information Gain
- Rinse and Repeat
- Decision Trees in Weka
- The Requirement
- Training Data
- Relation
- Attributes
- Data
- Using Weka to Create a Decision Tree
- Creating Java Code from the Classification
- Testing the Classifier Code
- Thinking About Future Iterations
- Summary
- ch. 6 Clustering
- What Is Clustering?
- Where Is Clustering Used?
- The Internet
- Business and Retail
- Law Enforcement
- Computing
- Clustering Models
- How the K-Means Works
- Initialization
- Assignments
- Update
- Calculating the Number of Clusters in a Dataset
- The Rule of Thumb Method
- The Elbow Method
- The Cross-Validation Method
- The Silhouette Method
- K-Means Clustering with Weka
- Preparing the Data
- The Workbench Method
- Loading Data
- Clustering the Data
- Visualizing the Data
- The Command-Line Method
- Converting CSV File to ARFF
- The First Run
- Refining the Optimum Clusters
- Name That Cluster
- The Coded Method
- Create the Project
- The Cluster Code
- Printing the Cluster Information
- Making Predictions
- The Final Code Listing
- Running the Program
- Further Development
- Summary
- ch. 7 Association Rules Learning
- Where Is Association Rules Learning Used?
- Web Usage Mining
- Beer and Diapers
- How Association Rules Learning Works
- Support
- Confidence
- Lift
- Conviction
- Defining the Process
- Algorithms
- Apriori
- FP-Growth
- Mining the Baskets
- A Walk-Through
- The Raw Basket Data
- Using the Weka Application
- Inspecting the Results
- Summary
- ch. 8 Support Vector Machines
- What Is a Support Vector Machine?
- Where Are Support Vector Machines Used?
- The Basic Classification Principles
- Binary and Multiclass Classification
- Linear Classifiers
- Confidence
- Maximizing and Minimizing to Find the Line
- How Support Vector Machines Approach Classification
- Using Linear Classification
- Using Non-Linear Classification
- Using Support Vector Machines in Weka
- Installing LibSVM
- Weka LibSVM Installation
- A Classification Walk-Through
- Setting the Options
- Running the Classifier
- Dealing with Errors from LibSVM
- Saving the Model
- Implementing LibSVM with Java
- Converting csv Data to .arff Format
- Setting Up the Project and Libraries
- Training and Predicting with the Existing Data
- Summary
- ch. 9 Artificial Neural Networks
- What Is a Neural Network?
- Artificial Neural Network Uses
- High-Frequency Trading
- Credit Applications
- Data Center Management
- Robotics
- Medical Monitoring
- Trusting the Black Box
- Breaking Down the Artificial Neural Network
- Perceptrons
- Activation Functions
- Multilayer Perceptrons
- Back Propagation
- Data Preparation for Artificial Neural Networks
- Artificial Neural Networks with Weka
- Generating a Dataset
- Loading the Data into Weka
- Configuring the Multilayer Perceptron
- Learning Rate
- Hidden Layers
- Training Time
- Training the Network
- Altering the Network
- Which Bit Is Which?
- Adding Nodes
- Connecting Nodes
- Removing Connections
- Removing Nodes
- Increasing the Test Data Size
- Implementing a Neural Network in Java
- Creating the Project
- Writing the Code
- Converting from CSV to Arff
- Running the Neural Network
- Developing Neural Networks with DeepLearning4J
- Modifying the Data
- Viewing Maven Dependencies
- Handling the Training Data
- Normalizing Data
- Building the Model
- Evaluating the Model
- Saving the Model
- Building and Executing the Program
- Summary
- ch. 10 Machine Learning with Text Documents
- Preparing Text for Analysis
- Apache Tika
- Downloading Tika
- Tika from the Command Line
- Tika Within an Application
- Cleaning the Text Data
- Convert Words to Lowercase
- Remove Punctuation
- Stopwords
- Stemming
- N-grams
- TF/IDF
- Loading the Documents
- Calculating the Term Frequency
- Calculating the Inverse Document Frequency
- Computing the TF/IDF Score
- Reviewing the Final Code Listing
- Word2Vec
- Loading the Raw Text Data
- Tokenizing the Strings
- Creating the Model
- Evaluating the Model
- Reviewing the Final Code
- Basic Sentiment Analysis
- Loading Positive and Negative Words
- Loading Sentences
- Calculating the Sentiment Score
- Reviewing the Final Code
- Performing a Test Run
- Further Development
- Summary
- ch. 11 Machine Learning with Images
- What Is an Image?
- Introducing Color Depth
- Images in Machine Learning
- Basic Classification with Neural Networks
- Basic Settings
- Loading the MNIST Images
- Model Configuration
- Model Training
- Model Evaluation
- Convolutional Neural Networks
- How CNNs Work
- Feature Extraction
- Activation Functions
- Pooling
- Classification
- CNN Demonstration
- Downloading the Image Data
- Basic Setup
- Handling the Training and Test Data
- Image Preparation
- CNN Model Configuration
- Model Training
- Model Evaluation
- Saving the Model
- Transfer Learning
- Summary
- ch. 12 Machine Learning Streaming with Kafka
- What You Will Learn in This Chapter
- From Machine Learning to Machine Learning Engineer
- From Batch Processing to Streaming Data Processing
- What Is Kafka?
- How Does It Work?
- Fault Tolerance
- Further Reading
- Installing Kafka
- Kafka as a Single-Node Cluster
- Starting Zookeeper
- Starting Kafka
- Kafka as a Multinode Cluster
- Starting the Multibroker Cluster
- Topics Management
- Creating Topics
- Finding Out Information About Existing Topics
- Deleting Topics
- Sending Messages from the Command Line
- Receiving Messages from the Command Line
- Kafka Tool UI
- Writing Your Own Producers and Consumers
- Producers in Java
- Properties
- The Producer
- Messages
- The Final Code
- Message Acknowledgments
- Consumers in Java
- Properties
- Windows
- Linux
- Your First Run
- Installing R-Studio
- The R Basics
- Variables and Vectors
- Matrices
- Lists
- Data Frames
- Installing Packages
- Loading in Data
- CSV Files
- MySQL Queries
- Creating Random Sample Data
- Plotting Data
- Bar Charts
- Pie Charts
- Dot Plots
- Line Charts
- Simple Statistics
- Simple Linear Regression
- Creating the Data
- The Initial Graph
- Regression with the Linear Model
- Making a Prediction
- Note continued: Basic Sentiment Analysis
- Using Functions to Load in Word Lists
- Writing a Function to Score Sentiment
- Testing the Function
- Apriori Association Rules
- Installing the arules Package
- Gathering the Training Data
- Importing the Transaction Data
- Running the Apriori Algorithm
- Inspecting the Results
- Accessing R from Java
- Installing the rJava Package
- Creating Your First Java Code in R
- Calling R from Java Programs
- Setting Up an Eclipse Project
- Creating the Java/R Class
- Running the Example
- Extending Your R Implementations
- Connecting to Social Media with R
- Summary
- Appendix A Kafka Quick Start
- Installing Kafka
- Starting Zookeeper
- Starting Kafka
- Creating Topics
- Listing Topics
- Describing a Topic
- Deleting Topics
- Running a Console Producer
- Running a Console Consumer
- Appendix B The Twitter API Developer Application Configuration
- Appendix C Useful Unix Commands
- Using Sample Data
- Showing the Contents: cat, more, and less
- Example Command
- Expected Output
- Filtering Content: grep
- Example Command for Finding Text
- Example Output
- Sorting Data: sort
- Example Command for Basic Sorting
- Example Output
- Finding Unique Occurrences: uniq
- Showing the Top of a File: head
- Counting Words: wc
- Locating Anything: find
- Combining Commands and Redirecting Output
- Picking a Text Editor
- Colon Frenzy: Vi and Vim
- Nano
- Emacs
- Appendix D Further Reading
- Machine Learning
- Statistics
- Big Data and Data Science
- Visualization
- Making Decisions
- Datasets
- Blogs
- Useful Websites
- The Tools of the Trade.
(source: Nielsen Book Data)
2. Microsoft Excel 2013 [2013]
- Frye, Curtis, 1968-
- Sebastopol, California : O'Reilly Media, Inc., [2013]
- Description
- Book — xvi, 484 pages : illustrations ; 23 cm.
- Summary
-
- Getting Started with Excel 2013 Working with data and Excel tables Performing calculations on data Changing workbook appearance Focusing on specific data by using filters Reordering and summarizing data Combining data from multiple sources Analyzing data and alternative data sets Creating charts and graphics Using PivotTables and PivotCharts Printing worksheets and charts Working with macros and forms Working with other Office programs.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- Online
SAL3 (off-campus storage)
SAL3 (off-campus storage) | Status |
---|---|
Stacks | Request (opens in new tab) |
HF5548.4 .M523 F7873 2013 | Available |
- Montfort, Nick author.
- Cambridge, Massachusetts : The MIT Press, [2016]
- Description
- Book — xiv, 314 pages ; 24 cm
- Summary
-
- Modifying a program
- Calculating
- Double, double
- Programming fundamentals
- Standard starting points
- Text I
- Text II
- Image I
- Image II
- Text III
- Statistics and visualization
- Animation
- Sound
- Interaction
- Onward
- Appendix A: Why program?
- Appendix B: Contexts for learning
- Online
SAL3 (off-campus storage)
SAL3 (off-campus storage) | Status |
---|---|
Stacks | Request (opens in new tab) |
QA76.6 .M664 2016 | Available |
- Bell, Jason (Computer scientist), author.
- Hoboken : John Wiley & Sons, 2014.
- Description
- Book — 1 online resource (336 pages)
- Summary
-
- What is machine learning?
- Planning machine learning
- Working with decision trees
- Bayesian networks
- Artificial neural networks
- Association rules learning
- Support vector machines
- Clustering
- Machine learning in real time with Spring XD
- Maching learning as a batch process
- Apache Spark
- Machine learning with R.
(source: Nielsen Book Data)
5. Excel 2013 simplified [2013]
- McFedries, Paul.
- Indianapolis, Ind. : Wiley, 2013.
- Description
- Book — 1 online resource (275 pages) : illustrations.
- Summary
-
- Chapter 1 Working with Excel Getting to Know Excel 4 Start Excel 6 Tour the Excel Window 8 Work with the Excel Ribbon 9 Work with the Excel Galleries 10 Customize the Quick Access Toolbar 12 Customize the Ribbon 14 Change the View 16 Configure Excel Options 18 Add Excel to the Windows Taskbar 20 Quit Excel 21
- Chapter 2 Entering Data Learning the Layout of a Worksheet 24 Understanding the Types of Data You Can Use 25 Enter Text into a Cell 26 Enter a Number into a Cell 28 Enter a Date or Time into a Cell 30 Insert a Symbol 32 Edit Cell Data 34 Delete Data from a Cell 36
- Chapter 3 Working with Ranges Select a Range 40 Fill a Range with the Same Data 42 Fill a Range with a Series of Values 44 Flash Fill a Range 46 Move or Copy a Range 48 Insert a Row or Column 50 Insert a Cell or Range 52 Delete Data from a Range 54 Delete a Range 56 Hide a Row or Column 58 Freeze Rows or Columns 60 Merge Two or More Cells 62 Transpose Rows and Columns 64
- Chapter 4 Working with Range Names Understanding the Benefits of Using Range Names 68 Define a Range Name 70 Use Worksheet Text to Define a Range Name 72 Navigate a Workbook Using Range Names 74 Change a Range Name 76 Delete a Range Name 78
- Chapter 5 Formatting Excel Ranges Change the Font and Font Size 82 Apply Font Effects 84 Change the Font Color 86 Align Text Within a Cell 88 Center Text Across Multiple Columns 90 Rotate Text Within a Cell 92 Add a Background Color to a Range 94 Apply a Number Format 96 Change the Number of Decimal Places Displayed 98 Apply an AutoFormat to a Range 100 Apply a Conditional Format to a Range 102 Apply a Style to a Range 104 Change the Column Width 106 Change the Row Height 108 Wrap Text Within a Cell 110 Add Borders to a Range 112
- Chapter 6 Building Formulas Understanding Excel Formulas 116 Build a Formula 118 Understanding Excel Functions 120 Add a Function to a Formula 122 Add a Row or Column of Numbers 124 Build an AutoSum Formula 126 Add a Range Name to a Formula 128 Reference Another Worksheet Range in a Formula 130 Move or Copy a Formula 132
- Chapter 7 Manipulating Worksheets Navigate a Worksheet 136 Rename a Worksheet 137 Create a New Worksheet 138 Move a Worksheet 140 Copy a Worksheet 142 Delete a Worksheet 144 Change the Gridline Color 146 Toggle Worksheet Gridlines On and Off 148 Toggle Worksheet Headings On and Off 149
- Chapter 8 Dealing with Workbooks Create a New Blank Workbook 152 Create a New Workbook from a Template 154 Save a Workbook 156 Open a Workbook 157 Arrange Workbook Windows 158 Find Text in a Workbook 160 Replace Text in a Workbook 162
- Chapter 9 Formatting Workbooks Modify the Workbook Colors 166 Set the Workbook Fonts 168 Choose Workbook Effects 170 Apply a Workbook Theme 172 Add a Workbook Header 174 Add a Workbook Footer 176
- Chapter 10 Working with Tables Understanding Tables 180 Get to Know Table Features 181 Convert a Range to a Table 182 Select Table Data 184 Insert a Table Row 186 Insert a Table Column 187 Delete a Table Row 188 Delete a Table Column 189 Add a Column Subtotal 190 Convert a Table to a Range 192 Apply a Table Style 193 Build a Custom Table Style 194
- Chapter 11 Analyzing Data Sort a Range or Table 198 Filter a Range or Table 200 Set Data Validation Rules 202 Create a Data Table 204 Summarize Data with Subtotals 206 Group Related Data 208 Analyze Data with Goal Seek 210 Analyze Data with Scenarios 212 Remove Duplicate Values from a Range or Table 216
- Chapter 12 Visualizing Data with Charts Examine Chart Elements 220 Understanding Chart Types 221 Create a Chart 222 Create a Recommended Chart 224 Add Chart Titles 226 Add Data Labels 227 Position the Chart Legend 228 Display Chart Gridlines 229 Display a Data Table 230 Change the Chart Layout and Style 231 Select a Different Chart Type 232 Change the Chart Source Data 234 Move or Resize a Chart 236
- Chapter 13 Collaborating with Others Add a Comment to a Cell 240 Protect a Worksheet s Data 242 Protect a Workbook s Structure 244 Share a Workbook with Other Users 246 Track Workbook Changes 248 Accept or Reject Workbook Changes 250 Save a Workbook to Your SkyDrive 252 Send a Workbook as an E-Mail Attachment 254 Save Excel Data as a Web Page 256 Make a Workbook Compatible with Earlier Versions of Excel 258 Mark Up a Worksheet with a Digital Pen 260 Collaborate on a Workbook Online 262.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
6. Microsoft Excel 2013 [2013]
- Frye, Curtis, 1968-
- Redmond, Wash. : Microsoft ; Farnham : O'Reilly, 2013.
- Description
- Book — 1 online resource
- Summary
-
The smart way to learn Excel 2013-one step at a time! Experience learning made easy-and quickly teach yourself how to manage, analyze, and present data with Excel 2013. With Step by Step, you set the pace-building and practicing the skills you need, just when you them! Includes downloadable practice files and companion eBook. Discover how to: Work with Excel 2013 in touch mode Write formulas, create macros, and organize data Present data visually and add images to worksheets Consolidate multiple sets of data into a single workbook Analyze data using the Quick Analysis Lens Collaborate with colleagues and present workbooks online.
(source: Nielsen Book Data)
- Swindon : BCS, c2012.
- Description
- Book — xiv, 111 p. : ill ; 25 cm.
- Summary
-
- 1. The ideas men.
- 2. Ivory towers and tea rooms.
- 3. The Manchester machines
- 4. Meanwhile, in deepest Hertfordshire
- 5. One man in a barn
- 6. Aces and Deuces
- 7. Into the market place
- 8. Hindsight and foresight: Turing's legacy
- 9. Bibliography and references
- 10. Timeline: Alan Turing's life with computers.
- 11. Index.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
SAL3 (off-campus storage)
SAL3 (off-campus storage) | Status |
---|---|
Stacks | Request (opens in new tab) |
QA76.17 .A423 2012 | Available |
8. Deep learning [2016]
- Goodfellow, Ian, author.
- Cambridge, Massachusetts : The MIT Press, [2016]
- Description
- Book — xxii, 775 pages : illustrations (some color) ; 24 cm
- Summary
-
- Introduction
- Applied math and machine learning basics. Linear algebra
- Probability and information theory
- Numerical computation
- Machine learning basics
- Deep networks: modern practices. Deep feedforward networks
- Regularization for deep learning
- Optimization for training deep models
- Convolutional networks
- Sequence modeling: recurrent and recursive nets
- Practical methodology
- Applications
- Deep learning research. Linear factor models
- Autoencoders
- Representation learning
- Structured probabilistic models for deep learning
- Monte Carlo methods
- Confronting the partition function
- Approximate inference
- Deep generative models
- Online
SAL3 (off-campus storage)
SAL3 (off-campus storage) | Status |
---|---|
Stacks | Request (opens in new tab) |
Q325.5 .G66 2016 | Available |
9. Designing with the mind in mind : simple guide to understanding user interface design rules [2010]
- Johnson, Jeff (Consultant)
- Amsterdam ; Boston : Morgan Kaufmann Publishers/Elsevier, ©2010.
- Description
- Book — 1 online resource (xiv, 186 pages) : illustrations (chiefly color), color maps
- Summary
-
- Acknowledgments Foreword Introduction Chapter 1 We Perceive What We Expect Chapter 2 Our Vision is Optimized to See Structure Chapter 3 We Seek and Use Visual Structure Chapter 4 Reading is Unnatural Chapter 5 Our Color Vision is Limited Chapter 6 Our Peripheral Vision is Poor Chapter 7 Our Attention is Limited
- Our Memory is Imperfect Chapter 8 Limits on Attention, Shape, Thought and Action Chapter 9 Recognition are Easy
- Recall is Hard Chapter 10 Learning from Experience and Performing Learned Actions are Easy
- Problem Solving and Calculation are Hard Chapter 11 Many Factors Affect Learning Chapter 12 We Have Time Requirements Epilogue Appendix Bibliography Index.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
10. Microsoft Access 2013 plain & simple [2013]
- Couch, Andrew.
- [Place of publication not identified] : Microsoft, 2013.
- Description
- Book — 1 online resource
- Summary
-
- Chapter 1: About this book
- Chapter 2: Creating a custom Web App
- Chapter 3: Modifying a Web App
- Chapter 4: Creating a desktop database
- Chapter 5: Working with data in datasheets
- Chapter 6: Selecting data using queries
- Chapter 7: Modifying data using queries
- Chapter 8: Improving presentations with forms
- Chapter 9: Using controls effectively
- Chapter 10: Preparing data to print using reports
- Chapter 11: Exchanging data
- Chapter 12: Introducing the power of macros
- Chapter 13: Administrating a database About the Author.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- New Castle upon Tyne : Cambridge Scholars, 2012.
- Description
- Book — 1 online resource (x, 335 pages) : illustrations
- Summary
-
- Invitation to a Journey in the ERA of Cloud Computing / Dana Petcu
- Part I: Cloud Services
- 1. Open Computing Infrastructures for Elastic Services: Contrail Cloud Federation / Piyush Harsh, Yvon Jégou, Roberto G. Cascella and Christine Morin
- 2. Towards Autonomic Transactional Replication for Cloud Environments / Maria Couceiro, Paolo Romano and Luís Rodrigues
- 3. Data-intensive Storage Services on Clouds: Limitations, Challenges and Enablers / Elliot K. Kolodner, Alexandra Shulman-Peleg, Dalit Naor, Per Brand, Michel Dao, Albert Eckert, Spyridon V. Gogouvitis, Danny Harnik, Michael C. Jaeger, Dimosthenis P. Kyriazis, Mirko Lorenz, Alberto Messina, Aidan Shribman, Sivan Tal, Athanasios S. Voulodimos and Yaron Wolfsthal
- 4. Migrating Legacy Applications to the Service Cloud Paradigm: The REMICS Project / Parastoo Mohagheghi, Franck Barbier, Arne J. Berre, Brice Morin, Andrey Sadovykh, Thor Sæther, Alexis Henry, Antonin Abhervé, Tom Ritter, Christian Hein and Michał Śmiałek
- Part II: Cloud Management
- 5. Towards Holistic Cloud Management / Johan Tordsson, Karim Djemame, Daniel Espling, Gregory Katsaros, Wolfgang Ziegler, Oliver Wäldrich, Kleopatra Konstanteli, Ali Sajjad, Muttukrishnan Rajarajan, Georgina Gallizo and Srijith Nair
- 6. TClouds: Privacy and Resilience for Internet-scale Critical Infrastructures / Alysson Bessani, Imad M. Abbadi, Sven Bugiel, Emanuele Cesena, Mina Deng, Michael Gröne, Ninja Marnau, Stefan Nürnberger, Marcelo Pasin and Norbert Schirmer
- Part III: Cloud Automation
- 7. Agent Based Services for Negotiation, Monitoring and Reconfiguration of Cloud Resources / Salvatore Venticinque
- 8. Design for Self-adaptation in Service-oriented Systems in the Cloud / Antonio Bucchiarone, Cinzia Cappiello, Elisabetta Di Nitto, Sergei Gorlatch, Dominique Meiländer and Andreas Metzger
- 9. Service Level Management and Service Delivery Management: Challenges in Federated e-Infrastructures / Matti Heikkurinen and Owen Appleton
- Part IV: Cloud Adoption
- 10. StratusLab Cloud Distribution / Charles Loomis, Mohammed Airaj, Marc-Elian Bégin, Evangelos Floros, Stuart Kenny and David O'Callaghan
- 11. Business Application Governance and SLA Management in PaaS Context / Francesco D'Andria, Ilknur Chulani and Philipp Strube
- 12. Reducing Time to Market with the Platform as a Service Cloud of the Future / José Luis Vázquez-Poletti, Eduardo Oliveros, Rafael Moreno-Vozmediano, Ignacio M. Llorente, Sebastian Ortega, Miguel Jimenez, Javier Soriano and Andreas Menychtas.
(source: Nielsen Book Data)
- Jackson, Chris (Chris B.)
- 2nd ed. - Burlington, MA ; Oxford, UK : Focal Press, ©2010.
- Description
- Book — 1 online resource (xii, 300 pages) : illustrations (chiefly color)
- Summary
-
- Part I: Bridging Flash and After Effects: Getting Started in After Effects
- From Flash to After Effects
- From After Effects to Flash
- Part II: Enhancing Flash Through After Effects: Alpha Channels
- Motion Graphics
- The Third Dimension
- Character Animation
- Visual Effects
- Shapes and Sounds
- Expressions and ActionScript
- Part III: Publishing: Optimization and Rendering.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
Flash Designers: push Flash to the next level with After Effects' robust toolset. CS5 delivers more complete integration of these two powerhouse applications-so you can expand your multimedia horizons. Flash + After Effects gives you a working understanding of the AE toolset and professional techniques that raise the design bar for web, HD broadcast, or CD/DVD delivery. The companion web site contains project media for hands-on practice of essential production skills, including:.
(source: Nielsen Book Data)
- Garrett, Jesse James.
- 2nd ed. - Berkeley, CA : New Riders, ©2011.
- Description
- Book — 1 online resource (xviii, 172 pages) : illustrations Digital: text file.
- Summary
-
- chapter 1 User Experience and Why It Matters
- chapter 2 Meet the Elements
- chapter 3 The Strategy Plane Product Objectives and User Needs
- chapter 4 The Scope Plane Functional Specifications and Content Requirements
- chapter 5 The Structure Plane Interaction Design and Information Architecture
- chapter 6 The Skeleton Plane Interface Design, Navigation Design, and Information Design
- chapter 7 The Surface Plane Sensory Design
- chapter 8 The Elements Applied Index.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- Date, C. J.
- Sebastopol, Calif. : O'Reilly Media, ©2012.
- Description
- Book — 1 online resource (xiii, 260 pages) : illustrations.
- Summary
-
- Part I. Setting the scene
- part II. Functional dependencies, Boyce/Codd normal form, and related matters
- part III. Join dependencies, fifth normal form, and related matters
- part IV. Orthogonality
- part V. Redundancy.
(source: Nielsen Book Data)
- London : Springer, 2010.
- Description
- Book — 1 online resource Digital: text file; PDF.
- Summary
-
- Part I: Cloud Base Tools and Technologies for Building Clouds A Taxonomy, Survey and Issues of Cloud Computing Ecosystems Towards a Taxonomy for Cloud Computing from an e-Science Perspective Examining Cloud Computing from the Perspective of Grid and Computer-Supported Cooperative Work Overview of Cloud Standards Part II: Cloud Seeding Open and Interoperable Clouds: the Cloud@HomeWay A Peer-to-Peer Framework for Supporting MapReduce Applications in Dynamic Cloud Environments Enhanced Network Support for Scalable Computing Clouds YML-PC: A Reference Architecture Based on Workflow for Building Scientific Private Clouds An Efficient Framework for Running Applications on Clusters, Grids and Clouds Resource Management for Hybrid Grid and Cloud Computing Peer-to-Peer Cloud Provisioning: Service Discovery and Load-Balancing Mixing Grids and Clouds: High-throughput Science using the Nimrod Tool Family Part III: Cloud Breaks Cloud Compliance: A Framework for Using Cloud Computing in a Regulated World Cloud Computing: Data Confidentiality and Interoperability Challenges Security Issues to Cloud Computing Securing the Cloud Part IV: Cloud Feedback Technologies for Enforcement and Distribution of Policy in Cloud Architectures The PRISM On-demand Digital Media Cloud Cloud Economics: Principles, Costs and Benefits Towards Application-Specific Service Level Agreements: Experiments in Clouds and Grids.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
16. Pro Node.js for developers [2013]
- Ihrig, Colin J., author.
- [Berkeley, CA] : Apress, [2013]
- Description
- Book — 1 online resource (xx, 308 pages) : illustrations Digital: text file; PDF.
- Summary
-
- Getting Started
- The Node Module System
- The Node Programming Model
- Events and Timers
- The Command Line Interface
- The File System
- Streams
- Binary Data
- Executing Code
- Network Programming
- HTTP
- The Express Framework
- The Real-Time Web
- Databases
- Logging, Debugging, and Testing
- Application Scaling
- JavaScript Object Notation.
(source: Nielsen Book Data)
17. Access 2013 for dummies [2013]
- Ulrich-Fuller, Laurie, 1961-
- Hoboken, NJ : Wiley, ©2013.
- Description
- Book — 1 online resource (xvi, 436 pages) : illustrations
- Summary
-
- Introduction 1 Part I: Getting Started with Access 2013 9
- Chapter 1: Access 2013 Basic Training 11
- Chapter 2: Navigating the Access Workspace 33
- Chapter 3: Database Basics 55
- Part II: Setting the Table 73
- Chapter 4: Table Tune Ups 75
- Chapter 5: Remodeling Your Data 91
- Chapter 6: Types, Masks, and Triggers 109
- Part III: Data Management Mania 131
- Chapter 7: A Form for All Reasons 133
- Chapter 8: Importing and Exporting Data 147
- Chapter 9: Automatic Data Editing 159
- Chapter 10: Access and the Web 171
- Part IV: Ask Your Data, and Ye Shall Receive Answers 193
- Chapter 11: Finding, Filtering, and Sorting Your Data - Fast 195
- Chapter 12: I Was Just Asking for Answers 211
- Chapter 13: I Want These AND Those OR Them 237
- Chapter 14: Number Crunching with the Total Row 245
- Chapter 15: Express Yourself with Formulas 257
- Chapter 16: Take Charge with Action Queries 271
- Part V: Simple and Snazzy Reporting 281
- Chapter 17: Fast and Furious Automatic Reporting 283
- Chapter 18: Professionally Designed Reports Made Easy 305
- Chapter 19: Headers and Footers and Groups, Oh My! 331
- Chapter 20: Magical Mass Mailings 353
- Part VI: More Power to You 361
- Chapter 21: Analyze This! 363
- Chapter 22: Steer Users in the Right Direction with Navigation Forms 375
- Part VII: The Part of Tens 383
- Chapter 23: Ten Common Problems 385
- Chapter 24: Ten Uncommon Tips 397
- Appendix: Getting Help 405
- Index 413.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
18. Powerpoint 2013 for dummies [2013]
- Lowe, Doug.
- Indianapolis, Ind. : John Wiley & Sons, Inc., 2013.
- Description
- Book — 1 online resource (xx, 328 pages) : illustrations. Digital: text file.
- Summary
-
- Introduction 1 Part I: Getting Started with PowerPoint 2013 7
- Chapter 1: Welcome to PowerPoint 2013 9
- Chapter 2: Editing Slides 33
- Chapter 3: Working in Outline View 49
- Chapter 4: Proofi ng Your Presentations 55
- Chapter 5: Don t Forget Your Notes! 65
- Chapter 6: Show Time! 71 Part II: Creating Great-Looking Slides 87
- Chapter 7: All about Fonts and Text Formatting 89
- Chapter 8: Designing Your Slides 105
- Chapter 9: Animating Your Slides 119
- Chapter 10: Masters of the Universe Meet the Templates of Doom 135 Part III: Embellishing Your Slides 155
- Chapter 11: Inserting Pictures 157
- Chapter 12: Drawing on Your Slides 175
- Chapter 13: Charting for Fun and Profit 193
- Chapter 14: Working with SmartArt 211
- Chapter 15: Lights! Camera! Action! (Adding Sound and Video) 223
- Chapter 16: More Things to Insert on Your Slides 235 Part IV: Working with Others 261
- Chapter 17: Collaborating in the Cloud 263
- Chapter 18: Using a Slide Library and Other Ways to Reuse Slides 275
- Chapter 19: Exporting Your Presentation to Other Formats 281 Part V: The Part of Tens 293
- Chapter 20: Ten PowerPoint Commandments 295
- Chapter 21: Ten Tips for Creating Readable Slides 299
- Chapter 22: Ten Tips for Creating Readable Slides 303 Index 307.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- Lambert, Joan, author.
- Redmond, Washington : Microsoft, 2013.
- Description
- Book — 1 online resource (xvi, 207 pages) : illustrations (some color), portrait
- Summary
-
- Introduction Taking a Microsoft Office Specialist exam Exam 77-422 Microsoft PowerPoint 2013
- Chapter 1: Create and Manage Presentations Chapter 2: Insert and Format Slides and Shapes Chapter 3: Create Slide Content Chapter 4: Apply Transitions and Animations Chapter 5: Manage Multiple Presentations
- About the Author.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- Patterson, David A.
- 5th ed. - Boston, MA : Morgan Kaufmann, 2013.
- Description
- Book — 1 v. (various pagings) ; 24 cm.
- Summary
-
- 1. Computer Abstractions and Technology 2. Instructions: Language of the Computer 3. Arithmetic for Computers 4. The Processor 5. Large and Fast: Exploiting Memory Hierarchy 6. Parallel Processors from Client to Cloud APP A Assemblers, Linkers, and the SPIM Simulator APP B The Basics of Logic Design APP C Graphics and Computing GPUs APP D Mapping Control to Hardware
- APP E A Survey of RISC Architectures for Desktop, Server, and Embedded Computers.
- (source: Nielsen Book Data)
(source: Nielsen Book Data)
- Online
Engineering Library (Terman)
Engineering Library (Terman) | Status |
---|---|
Stacks | |
QA76.9 .C643 H46 2013 | In-library use |
Articles+
Journal articles, e-books, & other e-resources
Guides
Course- and topic-based guides to collections, tools, and services.