File | Size |
---|---|
AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/0 - Introduction/01 - Algorithms power the world.mp4 | 4.13 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/0 - Introduction/02 - What you should know.mp4 | 3.14 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/1 - 1. Overview/03 - What are algorithms.mp4 | 4.27 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/1 - 1. Overview/04 - Common algorithms in programming.mp4 | 9.77 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/1 - 1. Overview/05 - Measuring algorithm performance.mp4 | 6.26 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/06 - Introduction to data structures.mp4 | 4.47 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/07 - Arrays.mp4 | 4.27 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/08 - Linked lists.mp4 | 5.65 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/09 - Linked lists walkthrough.mp4 | 18.63 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/10 - Stacks and queues.mp4 | 5.96 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/11 - Stacks and queues walkthrough.mp4 | 12.46 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/2 - 2. Common Data Structures/12 - Hash tables.mp4 | 18.67 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/3 - 3. Recursion/13 - Understanding recursion.mp4 | 8.63 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/3 - 3. Recursion/14 - Simple recursion example.mp4 | 6.16 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/3 - 3. Recursion/15 - Power and factorial.mp4 | 8.82 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/16 - Overview of sorting.mp4 | 4.75 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/17 - The bubble sort.mp4 | 12.15 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/18 - The merge sort.mp4 | 5.65 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/19 - Implement the merge sort.mp4 | 12.80 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/20 - The quicksort.mp4 | 8.26 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/4 - 4. Sorting Data/21 - Implement the quicksort.mp4 | 14.29 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/5 - 5. Searching Data/22 - Unordered list search.mp4 | 7.56 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/5 - 5. Searching Data/23 - Ordered list search.mp4 | 11.93 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/5 - 5. Searching Data/24 - Determine if a list is sorted.mp4 | 7.69 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/6 - 6. Other Algorithms/25 - Unique filtering with hash table.mp4 | 7.17 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/6 - 6. Other Algorithms/26 - Value counting with hash table.mp4 | 6.24 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/6 - 6. Other Algorithms/27 - Find max value recursively.mp4 | 9.14 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/7 - Conclusion/28 - Next steps.mp4 | 2.93 MB |
Lynda - Programming Foundations - Algorithms [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/1 Introduction/gcd_finished.py | 381.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/1 Introduction/gcd_start.py | 233.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Hash Table/hashtable_finished.py | 495.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Hash Table/hashtable_start.py | 238.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/LinkedList/linklist_finished.py | 1.89 kB |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/LinkedList/linklist_start.py | 1.50 kB |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Queues/queue_finished.py | 368.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Queues/queue_start.py | 231.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Stacks/stack_finished.py | 277.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/2 Data Structures/Stacks/stack_start.py | 178.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/3 Recursion/countdown_finished.py | 194.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/3 Recursion/countdown_start.py | 95.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/3 Recursion/recursion_finished.py | 540.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/3 Recursion/recursion_start.py | 338.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/BubbleSort/bubble_finished.py | 642.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/BubbleSort/bubble_start.py | 310.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/MergeSort/mergesort_finished.py | 1.17 kB |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/MergeSort/mergesort_start.py | 701.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/Quicksort/quicksort_finished.py | 1.46 kB |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/4 Sorting/Quicksort/quicksort_start.py | 1.09 kB |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/issorted_finished.py | 481.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/issorted_start.py | 266.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/ordered_finished.py | 824.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/ordered_start.py | 641.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/unordered_finished.py | 372.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/5 Searching/unordered_start.py | 269.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/Filter_finished.py | 517.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/Filter_start.py | 439.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/findmax_finished.py | 621.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/findmax_start.py | 443.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/ValueCounter_finished.py | 545.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Exercise Files/6 Other Algorithms/ValueCounter_start.py | 443.00 B |
Lynda - Programming Foundations - Algorithms [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/1 - Introduction/01 - Communicate on the web using services.mp4 | 24.24 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 23.63 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/2 - 1. Understanding Web Services/03 - Web services overview.mp4 | 13.01 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/2 - 1. Understanding Web Services/04 - Advantages of web services.mp4 | 6.09 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/2 - 1. Understanding Web Services/05 - Considerations of web services.mp4 | 12.06 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/2 - 1. Understanding Web Services/06 - Secure web services.mp4 | 64.36 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/2 - 1. Understanding Web Services/07 - Web services, APIs, and microservices.mp4 | 45.40 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/08 - REST overview.mp4 | 56.38 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/09 - Benefits of REST.mp4 | 37.74 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/10 - HATEOAS overview.mp4 | 29.43 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/11 - Consume a RESTful API.mp4 | 15.57 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/12 - Consume a RESTful API via Postman.mp4 | 4.29 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/13 - Create a RESTful API.mp4 | 14.33 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/3 - 2. Using RESTful APIs and HATEOAS/14 - Document an API.mp4 | 14.66 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/4 - 3. Using SOAP-Based Web Services/15 - SOAP overview.mp4 | 71.34 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/4 - 3. Using SOAP-Based Web Services/16 - History and future of SOAP.mp4 | 39.54 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/4 - 3. Using SOAP-Based Web Services/17 - Consume a SOAP web service.mp4 | 13.47 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/4 - 3. Using SOAP-Based Web Services/18 - Consume a SOAP web service via SoapUI.mp4 | 8.07 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/4 - 3. Using SOAP-Based Web Services/19 - Create a web service.mp4 | 13.47 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/5 - 4. Developing APIs Using GraphQL/20 - GraphQL overview.mp4 | 36.58 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/5 - 4. Developing APIs Using GraphQL/21 - The structure of GraphQL queries.mp4 | 61.45 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/5 - 4. Developing APIs Using GraphQL/22 - Consume a GraphQL API.mp4 | 15.17 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/5 - 4. Developing APIs Using GraphQL/23 - Create an API with GraphQL.mp4 | 10.82 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/6 - Conclusion/24 - Next steps.mp4 | 19.19 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes.xcodeproj/project.pbxproj | 21.36 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes.xcodeproj/project.xcworkspace/contents.xcworkspacedata | 162.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes.xcodeproj/project.xcworkspace/xcuserdata/keshawilliams.xcuserdatad/UserInterfaceState.xcuserstate | 25.84 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes.xcodeproj/xcuserdata/keshawilliams.xcuserdatad/xcschemes/xcschememanagement.plist | 340.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/AppDelegate.swift | 2.14 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Assets.xcassets/AppIcon.appiconset/Contents.json | 1.55 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Assets.xcassets/Contents.json | 62.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Assets.xcassets/smiley.imageset/Contents.json | 303.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Assets.xcassets/smiley.imageset/smiley.png | 27.44 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Base.lproj/LaunchScreen.storyboard | 1.64 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Base.lproj/Main.storyboard | 6.05 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/Info.plist | 1.43 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokes/ViewController.swift | 2.00 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokesTests/Info.plist | 701.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokesTests/programming_jokesTests.swift | 1,016.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokesUITests/Info.plist | 701.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/programming-jokesUITests/programming_jokesUITests.swift | 1.25 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_04/programming-jokes/smiley.png | 27.44 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/.gitignore | 249.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/.mvn/wrapper/maven-wrapper.jar | 46.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/.mvn/wrapper/maven-wrapper.properties | 110.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/mvnw | 6.32 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/mvnw.cmd | 4.88 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/pom.xml | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/README.md | 202.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/bootstrap/BugtrackerApplicationLoader.java | 2.16 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/BugtrackerApplication.java | 415.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.java | 645.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/config/WebConfiguration.java | 620.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/domain/Ticket.java | 1.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/java/com/keysoft/bugtracker/repositories/TicketRepository.java | 235.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/resources/application.properties | 605.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/createAPI/src/test/java/com/keysoft/bugtracker/BugtrackerApplicationTests.java | 343.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_06/Web Service Foundations.postman_collection.json | 996.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/.gitignore | 249.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/.mvn/wrapper/maven-wrapper.jar | 46.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/.mvn/wrapper/maven-wrapper.properties | 110.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/lib/hamcrest-core-1.3.jar | 43.97 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/lib/junit-4.12.jar | 307.55 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/ApplicationCatalogApplication.java | 577.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/bootstrap/ApplicationCatalogApplicationLoader.java | 1.57 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.java | 675.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/config/SwaggerConfig.java | 1.69 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/config/WebConfiguration.java | 630.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/controller/ApplicationCatalogController.java | 3.52 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/domain/Application.java | 1.88 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/java/com/keysoft/bugtracker/repositories/ApplicationRepository.java | 266.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/resources/application.properties | 457.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/test/main/java/com/keysoft/bugtracker/ApplicationCatalogApplicationTests.java | 361.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/test/main/java/com/keysoft/bugtracker/controller/ApplicationCatalogControllerTests.java | 1.76 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/ApplicationCatalog/src/test/main/java/com/keysoft/bugtracker/repositories/ApplicationRepositoryTests.java | 2.93 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/mvnw | 6.32 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/mvnw.cmd | 4.88 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/ApplicationCatalogApplication.class | 879.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/bootstrap/ApplicationCatalogApplicationLoader.class | 2.38 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.class | 884.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/config/SwaggerConfig.class | 2.81 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/config/WebConfiguration.class | 1.02 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/controller/ApplicationCatalogController.class | 6.05 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/domain/Application.class | 2.38 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/java/com/keysoft/bugtracker/repositories/ApplicationRepository.class | 400.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/resources/application.properties | 457.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/ApplicationCatalog/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/bootstrap/TicketManagementApplicationLoader.class | 5.71 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.class | 884.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/config/SwaggerConfig.class | 2.81 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/config/WebConfiguration.class | 1.02 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/domain/Ticket.class | 1.96 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/repositories/TicketRepository.class | 1.10 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/java/com/keysoft/bugtracker/TicketManagementApplication.class | 873.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/resources/application.properties | 458.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/TicketManagement/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/bootstrap/UserManagementApplicationLoader.class | 2.26 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.class | 884.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/config/WebConfiguration.class | 1.02 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/domain/Person.class | 1.43 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/repositories/PersonRepository.class | 385.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/java/com/keysoft/bugtracker/UserManagementApplication.class | 867.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/resources/application.properties | 474.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/production/UserManagement/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/test/ApplicationCatalog/main/java/com/keysoft/bugtracker/ApplicationCatalogApplicationTests.class | 696.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/test/ApplicationCatalog/main/java/com/keysoft/bugtracker/controller/ApplicationCatalogControllerTests.class | 2.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/out/test/ApplicationCatalog/main/java/com/keysoft/bugtracker/repositories/ApplicationRepositoryTests.class | 4.18 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/pom.xml | 2.70 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/README.md | 566.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/lib/hamcrest-core-1.3.jar | 43.97 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/lib/junit-4.12.jar | 307.55 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/bootstrap/TicketManagementApplicationLoader.java | 6.02 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.java | 675.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/config/SwaggerConfig.java | 1.58 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/config/WebConfiguration.java | 630.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/domain/Ticket.java | 1.48 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/repositories/TicketRepository.java | 1.02 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/java/com/keysoft/bugtracker/TicketManagementApplication.java | 512.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/resources/application.properties | 458.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/TicketManagement/src/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/lib/hamcrest-core-1.3.jar | 43.97 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/lib/junit-4.12.jar | 307.55 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/bootstrap/UserManagementApplicationLoader.java | 1.42 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/config/RepositoryConfiguration.java | 675.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/config/WebConfiguration.java | 630.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/domain/Person.java | 852.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/repositories/PersonRepository.java | 468.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/java/com/keysoft/bugtracker/UserManagementApplication.java | 443.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/resources/application.properties | 474.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/02_07/documentAPI/UserManagement/src/main/resources/log4j.properties | 290.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/.name | 6.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/artifacts/javaee_war.xml | 281.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/artifacts/javaee_war_exploded.xml | 2.08 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/compiler.xml | 622.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_5.xml | 632.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_5.xml | 583.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml | 611.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_base_2_9_5.xml | 629.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_json_provider_2_9_5.xml | 692.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_jaxb_annotations_2_9_5.xml | 724.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_github_fge_jackson_coreutils_1_0.xml | 556.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_github_fge_json_patch_1_3.xml | 507.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_google_guava_guava_14_0.xml | 487.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_google_protobuf_protobuf_java_2_6_0.xml | 562.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__com_sun_mail_javax_mail_1_5_0.xml | 513.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__javax_activation_activation_1_1.xml | 515.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__javax_javaee_api_7_0.xml | 471.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__mysql_mysql_connector_java_8_0_11.xml | 562.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__net_jcip_jcip_annotations_1_0.xml | 525.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/libraries/Maven__org_jboss_resteasy_resteasy_jackson2_provider_3_6_1_Final.xml | 691.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/misc.xml | 586.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/modules.xml | 252.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/vcs.xml | 183.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/.idea/workspace.xml | 31.34 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/javaee.iml | 2.92 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/javaee7-essentials-pom.iml | 2.94 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/javaee7.iml | 1.87 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/pom.xml | 1.09 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/config/RestApplicationConfig.java | 203.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/model/Application.java | 1.14 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/model/Ticket.java | 985.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/provider/JacksonJsonProvider.java | 899.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberConversion.java | 3.38 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberConversionSoapType.java | 2.38 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToDollars.java | 1.52 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToDollarsResponse.java | 1.67 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToWords.java | 1.63 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToWordsResponse.java | 1.65 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/ObjectFactory.java | 1.66 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/package-info.class | 362.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/package-info.java | 234.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/src/main/java/src/main/java/com/keysoft/soap/NumberToWordClient.java | 385.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/model/Application.class | 1.80 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/model/Ticket.class | 1.39 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/provider/JacksonJsonProvider.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberConversion.class | 3.01 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberConversionSoapType.class | 1.35 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToDollars.class | 1.00 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToDollarsResponse.class | 1.10 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToWords.class | 1.07 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/NumberToWordsResponse.class | 1.09 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/ObjectFactory.class | 1.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/dataaccess/webservicesserver/package-info.class | 389.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/classes/src/main/java/com/keysoft/soap/NumberToWordClient.class | 1.11 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0.war | 5.87 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/META-INF/MANIFEST.MF | 94.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/HelloWorldService.class | 2.29 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/model/Application.class | 1.80 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/model/Ticket.class | 1.39 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/provider/JacksonJsonProvider.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/rest/ApplicationResource.class | 4.72 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/ApplicationClient.class | 1.44 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/ApplicationService.class | 718.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/ApplicationClientGen.class | 1.14 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/ApplicationServiceSOAP.class | 2.93 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/GetAll.class | 542.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/GetAllResponse.class | 918.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/IApplicationService.class | 787.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/ObjectFactory.class | 2.13 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/generated/package-info.class | 284.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/IApplicationService.class | 291.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/utils/Database.class | 1.11 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/guava-14.0.jar | 2.09 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-annotations-2.9.5.jar | 65.41 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-core-2.9.5.jar | 314.05 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-coreutils-1.0.jar | 22.18 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-databind-2.9.5.jar | 1.28 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-jaxrs-base-2.9.5.jar | 31.61 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-jaxrs-json-provider-2.9.5.jar | 15.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jackson-module-jaxb-annotations-2.9.5.jar | 31.85 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/jcip-annotations-1.0.jar | 2.20 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/json-patch-1.3.jar | 32.09 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/mysql-connector-java-8.0.11.jar | 1.94 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/protobuf-java-2.6.0.jar | 582.46 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee-7.0/WEB-INF/lib/resteasy-jackson2-provider-3.6.1.Final.jar | 22.12 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0.war | 2.36 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0/META-INF/MANIFEST.MF | 94.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0/WEB-INF/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0/WEB-INF/classes/HelloWorldService.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0/WEB-INF/lib/mysql-connector-java-8.0.11.jar | 1.94 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_03/project/target/javaee7-essentials-pom-7.0/WEB-INF/lib/protobuf-java-2.6.0.jar | 582.46 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_04/NumberToDollars-soapui-project.xml | 10.42 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/.name | 6.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/artifacts/javaee_war.xml | 281.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/artifacts/javaee_war_exploded.xml | 2.08 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/compiler.xml | 622.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_9_5.xml | 632.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_9_5.xml | 583.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_9_5.xml | 611.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_base_2_9_5.xml | 629.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_json_provider_2_9_5.xml | 692.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_jaxb_annotations_2_9_5.xml | 724.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_github_fge_jackson_coreutils_1_0.xml | 556.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_github_fge_json_patch_1_3.xml | 507.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_google_guava_guava_14_0.xml | 487.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_google_protobuf_protobuf_java_2_6_0.xml | 562.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__com_sun_mail_javax_mail_1_5_0.xml | 513.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__javax_activation_activation_1_1.xml | 515.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__javax_javaee_api_7_0.xml | 471.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__mysql_mysql_connector_java_8_0_11.xml | 562.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__net_jcip_jcip_annotations_1_0.xml | 525.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/libraries/Maven__org_jboss_resteasy_resteasy_jackson2_provider_3_6_1_Final.xml | 691.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/misc.xml | 586.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/modules.xml | 252.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/vcs.xml | 183.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/.idea/workspace.xml | 21.94 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/CustomSOAPAPI-soapui-project.xml | 4.63 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/javaee.iml | 2.94 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/javaee7-essentials-pom.iml | 2.94 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/javaee7.iml | 1.87 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/pom.xml | 1.45 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/config/RestApplicationConfig.java | 203.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/src/main/java/com/keysoft/model/Application.java | 1.14 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/src/main/java/com/keysoft/model/Ticket.java | 985.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/src/main/java/com/keysoft/provider/JacksonJsonProvider.java | 899.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/src/main/java/com/keysoft/soap/ApplicationService.java | 468.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/src/main/java/src/main/java/com/keysoft/soap/IApplicationService.java | 284.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/src/main/java/com/keysoft/model/Application.class | 1.80 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/src/main/java/com/keysoft/model/Ticket.class | 1.39 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/src/main/java/com/keysoft/provider/JacksonJsonProvider.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/src/main/java/com/keysoft/soap/ApplicationService.class | 698.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/classes/src/main/java/com/keysoft/soap/IApplicationService.class | 291.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0.war | 5.86 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/META-INF/MANIFEST.MF | 94.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/HelloWorldService.class | 2.29 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/model/Application.class | 1.80 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/model/Ticket.class | 1.39 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/provider/JacksonJsonProvider.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/ApplicationService.class | 698.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/classes/src/main/java/com/keysoft/soap/IApplicationService.class | 291.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/guava-14.0.jar | 2.09 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-annotations-2.9.5.jar | 65.41 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-core-2.9.5.jar | 314.05 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-coreutils-1.0.jar | 22.18 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-databind-2.9.5.jar | 1.28 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-jaxrs-base-2.9.5.jar | 31.61 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-jaxrs-json-provider-2.9.5.jar | 15.49 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jackson-module-jaxb-annotations-2.9.5.jar | 31.85 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/jcip-annotations-1.0.jar | 2.20 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/json-patch-1.3.jar | 32.09 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/mysql-connector-java-8.0.11.jar | 1.94 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/protobuf-java-2.6.0.jar | 582.46 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee-7.0/WEB-INF/lib/resteasy-jackson2-provider-3.6.1.Final.jar | 22.12 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0.war | 2.36 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0/META-INF/MANIFEST.MF | 94.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0/WEB-INF/classes/config/RestApplicationConfig.class | 407.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0/WEB-INF/classes/HelloWorldService.class | 2.28 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0/WEB-INF/lib/mysql-connector-java-8.0.11.jar | 1.94 MB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/03_05/project/target/javaee7-essentials-pom-7.0/WEB-INF/lib/protobuf-java-2.6.0.jar | 582.46 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/04_04/package-lock.json | 14.62 kB |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/04_04/package.json | 339.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Exercise Files/04_04/server.js | 578.00 B |
Lynda - Programming Foundations - APIs and Web Services [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/1 - Introduction/01 - Broadening your knowledge of programming fundamentals.mp4 | 23.44 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 5.63 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/1 - Introduction/03 - Configuring your environment.mp4 | 20.77 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/10 - 9. Advanced Topics/38 - Advanced topics in programming.mp4 | 8.91 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/10 - 9. Advanced Topics/39 - Memory management across languages.mp4 | 28.70 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/10 - 9. Advanced Topics/40 - Introduction to multithreading.mp4 | 14.24 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/10 - 9. Advanced Topics/41 - Introduction to algorithms.mp4 | 31.81 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/11 - Conclusion/42 - Continuing your programming quest.mp4 | 13.09 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/04 - Understanding collections.mp4 | 13.55 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/05 - Creating simple collections.mp4 | 14.88 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/06 - Creating more complex collections.mp4 | 13.04 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/07 - Working with collections.mp4 | 18.71 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/08 - Collections in other languages.mp4 | 9.46 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/09 - Challenge - Working with a collection.mp4 | 20.87 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/2 - 1. Collections/10 - Solution - Working with a collection.mp4 | 103.28 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/3 - 2. Iteration/11 - Introduction to iteration.mp4 | 10.38 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/3 - 2. Iteration/12 - Iterating through collections.mp4 | 20.89 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/3 - 2. Iteration/13 - Iterating to a custom endpoint.mp4 | 12.09 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/3 - 2. Iteration/14 - Challenge - Creating a for loop.mp4 | 13.79 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/3 - 2. Iteration/15 - Solution - Creating a for loop.mp4 | 50.37 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/4 - 3. Using External Code/16 - Comparing types of external code.mp4 | 20.39 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/4 - 3. Using External Code/17 - Working with a module.mp4 | 14.63 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/4 - 3. Using External Code/18 - Understanding libraries and frameworks.mp4 | 14.77 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/5 - 4. Working with Strings/19 - Combining and manipulating strings.mp4 | 20.68 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/5 - 4. Working with Strings/20 - Finding patterns in strings.mp4 | 21.94 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/5 - 4. Working with Strings/21 - Creating regular expressions.mp4 | 17.82 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/5 - 4. Working with Strings/22 - Challenge - Strings.mp4 | 16.89 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/5 - 4. Working with Strings/23 - Solution - Strings.mp4 | 68.03 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/6 - 5. Planning a Program/24 - Choosing a code style.mp4 | 26.77 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/6 - 5. Planning a Program/25 - Writing pseudocode.mp4 | 13.67 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/7 - 6. Input and Output/26 - Introduction to input and output.mp4 | 15.40 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/7 - 6. Input and Output/27 - Working with file input and output.mp4 | 20.32 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/28 - Introduction to debugging.mp4 | 18.92 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/29 - Debugging code in an IDE.mp4 | 15.25 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/30 - Interpreting error messages.mp4 | 14.93 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/31 - Debugging without error messages.mp4 | 15.78 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/32 - Creating a test case.mp4 | 26.27 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/33 - Challenge - Debugging.mp4 | 28.11 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/8 - 7. Debugging/34 - Solution - Debugging.mp4 | 48.90 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/9 - 8. Object Orientation/35 - Introduction to object-oriented programming.mp4 | 22.40 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/9 - 8. Object Orientation/36 - Using built-in classes.mp4 | 14.84 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/9 - 8. Object Orientation/37 - Creating custom classes and objects.mp4 | 27.11 MB |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_02/begin/list.py | 73.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_02/end/list.py | 176.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_03/begin/dictionary.py | 147.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_03/end/dictionary.py | 301.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_04/begin/dictionary.py | 301.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_04/begin/list.py | 176.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_04/end/dictionary.py | 337.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_04/end/list.py | 193.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_06/begin/collections.py | 309.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_07/begin/collections.py | 309.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch01/01_07/end/collections.py | 675.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_02/begin/for_loop.py | 68.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_02/end/for_loop.py | 141.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_03/end/while_loop.py | 104.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_04/begin/for_loop_challenge.py | 107.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_05/begin/for_loop_challenge.py | 107.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch02/02_05/end/for_loop_challenge.py | 174.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch03/03_02/begin/testmodule.py | 49.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch03/03_02/end/app.py | 41.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch03/03_02/end/testmodule.py | 49.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch03/03_02/end/__pycache__/testmodule.cpython-37.pyc | 383.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_01/begin/app.py | 47.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_01/end/app.py | 178.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_02/begin/app.py | 80.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_02/end/app.py | 304.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_03/begin/app.py | 96.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_03/end/app.py | 297.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_04/begin/app.py | 89.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_05/begin/app.py | 89.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch04/04_05/end/app.py | 206.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch06/06_02/begin/add-values.py | 276.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch06/06_02/begin/values.txt | 13.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch06/06_02/end/add-values.py | 276.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch06/06_02/end/values-totaled.txt | 27.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch06/06_02/end/values.txt | 13.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_02/begin/count.py | 41.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_02/end/count.py | 59.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_03/begin/compare.py | 57.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_03/end/compare.py | 53.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_04/begin/count.py | 45.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_04/end/count.py | 45.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_05/begin/forecast.py | 201.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_05/end/forecast.py | 246.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_06/begin/plant.py | 256.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_07/begin/plant.py | 256.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch07/07_07/end/plant.py | 265.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch08/08_02/begin/list.py | 78.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch08/08_02/end/list.py | 125.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch08/08_03/begin/class.py | 386.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Exercise Files/Ch08/08_03/end/class.py | 560.00 B |
Lynda - Programming Foundations - Beyond the Fundamentals [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Data Structures [AhLaN]/1 - Introduction/01 - Understand data structures.mp4 | 27.16 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 3.89 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/03 - Introduction to data and data types.mp4 | 6.41 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/04 - Numerical data types.mp4 | 12.96 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/05 - Booleans and characters.mp4 | 7.24 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/06 - Primitive types in memory.mp4 | 10.84 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/07 - Introduction to data structures.mp4 | 16.89 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/08 - Strings.mp4 | 6.83 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/2 - 1. Introduction to Data Structures/09 - Primitive vs. reference types in memory.mp4 | 15.31 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/10 - What are arrays.mp4 | 11.76 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/11 - Use arrays in Swift.mp4 | 15.62 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/12 - Multidimensional arrays.mp4 | 7.69 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/13 - Multidimensional arrays in JavaScript.mp4 | 9.11 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/14 - Jagged arrays.mp4 | 3.78 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/15 - Jagged arrays in C#.mp4 | 7.87 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/16 - Resizable arrays and language support.mp4 | 15.94 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/17 - Search arrays.mp4 | 15.51 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/18 - Sort arrays.mp4 | 10.86 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/3 - 2. Arrays/19 - Big O notation.mp4 | 15.50 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/20 - What are linked lists.mp4 | 10.79 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/21 - Operations on linked lists.mp4 | 6.12 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/22 - Build a linked list in Java.mp4 | 10.33 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/23 - Use linked lists in Java.mp4 | 14.58 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/24 - Singly vs. doubly linked lists.mp4 | 3.40 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/25 - Lists in other languages.mp4 | 10.26 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/4 - 3. Lists/26 - Pros and cons of lists.mp4 | 9.35 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/27 - What are stacks.mp4 | 5.06 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/28 - Implement stacks in Swift.mp4 | 15.20 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/29 - Use stacks in Swift for LIFO.mp4 | 6.13 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/30 - Error tracing with stacks.mp4 | 11.98 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/31 - What are queues.mp4 | 5.29 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/32 - Implement queues in Swift.mp4 | 10.90 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/33 - Use queues in Swift for FIFO.mp4 | 6.06 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/34 - Queues in other languages.mp4 | 7.95 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/35 - Specialized queues.mp4 | 12.63 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/5 - 4. Stacks and Queues/36 - Pros and cons of stacks and queues.mp4 | 10.95 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/37 - What are associative arrays.mp4 | 9.77 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/38 - Understanding hash functions.mp4 | 20.89 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/39 - Understanding hash tables.mp4 | 12.05 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/40 - Using dictionaries in Python.mp4 | 4.67 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/41 - Language support for hashing.mp4 | 8.73 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/42 - Language support for hash tables.mp4 | 8.01 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/6 - 5. Hash-Based Data Structures/43 - Pros and cons of hash-based structures.mp4 | 7.39 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/44 - What are sets.mp4 | 13.10 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/45 - Sets in Python 3.mp4 | 7.48 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/46 - Introduction to tree data structures.mp4 | 9.78 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/47 - Understand binary search trees.mp4 | 16.67 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/48 - Understand heaps.mp4 | 11.80 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/7 - 6. Trees and Graphs/49 - Pros and cons of tree data structures.mp4 | 6.20 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/8 - Conclusion/50 - Wrap-up.mp4 | 3.15 MB |
Lynda - Programming Foundations - Data Structures [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/02_02/02_02_swiftarrays.swift | 399.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/02_04/02_04_javascriptmultiarrays.js | 450.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/02_06/02_06_jaggedarrays.cs | 433.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/03_03/03_03_javaLinkedList.java | 742.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/03_04/03_04_linkedListJavaClass.java | 981.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/04_02/04_02_implementstacksswift.swift | 572.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/04_03/04_03_swiftLIFO.swift | 855.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/04_04/04_04_ErrorTracing.java | 164.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/04_06/04_06_queueImplement.swift | 598.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/04_07/04_07_queueFIFO.swift | 786.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/05_04/05_04_dictionaries.py | 168.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Exercise Files/06_02/06_02_pythonsets.py | 257.00 B |
Lynda - Programming Foundations - Data Structures [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Databases [AhLaN]/1 - Introduction/01 - Why use a database.mp4 | 20.80 MB |
Lynda - Programming Foundations - Databases [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 4.38 MB |
Lynda - Programming Foundations - Databases [AhLaN]/1 - Introduction/03 - Understanding databases - Benefits of spreadsheets.mp4 | 14.93 MB |
Lynda - Programming Foundations - Databases [AhLaN]/1 - Introduction/04 - Understanding databases - Benefits of structured data.mp4 | 8.53 MB |
Lynda - Programming Foundations - Databases [AhLaN]/2 - 1. Database Foundations/05 - Relational databases.mp4 | 6.42 MB |
Lynda - Programming Foundations - Databases [AhLaN]/2 - 1. Database Foundations/06 - Keys and unique values.mp4 | 8.33 MB |
Lynda - Programming Foundations - Databases [AhLaN]/2 - 1. Database Foundations/07 - Relationships.mp4 | 9.59 MB |
Lynda - Programming Foundations - Databases [AhLaN]/2 - 1. Database Foundations/08 - ACID and transactions.mp4 | 15.43 MB |
Lynda - Programming Foundations - Databases [AhLaN]/2 - 1. Database Foundations/09 - Basic SQL.mp4 | 15.72 MB |
Lynda - Programming Foundations - Databases [AhLaN]/3 - 2. Tables/10 - Modeling and planning a database.mp4 | 9.45 MB |
Lynda - Programming Foundations - Databases [AhLaN]/3 - 2. Tables/11 - Naming tables.mp4 | 5.50 MB |
Lynda - Programming Foundations - Databases [AhLaN]/3 - 2. Tables/12 - Columns and data types.mp4 | 12.11 MB |
Lynda - Programming Foundations - Databases [AhLaN]/3 - 2. Tables/13 - Numbers and other types.mp4 | 14.71 MB |
Lynda - Programming Foundations - Databases [AhLaN]/3 - 2. Tables/14 - Primary and foreign keys.mp4 | 10.66 MB |
Lynda - Programming Foundations - Databases [AhLaN]/4 - 3. Relationships/15 - Creating relationships.mp4 | 6.45 MB |
Lynda - Programming Foundations - Databases [AhLaN]/4 - 3. Relationships/16 - One-to-many relationships.mp4 | 12.04 MB |
Lynda - Programming Foundations - Databases [AhLaN]/4 - 3. Relationships/17 - Many-to-many relationships.mp4 | 11.01 MB |
Lynda - Programming Foundations - Databases [AhLaN]/4 - 3. Relationships/18 - One-to-one relationships.mp4 | 6.55 MB |
Lynda - Programming Foundations - Databases [AhLaN]/4 - 3. Relationships/19 - Relationship rules and referential integrity.mp4 | 7.79 MB |
Lynda - Programming Foundations - Databases [AhLaN]/5 - 4. Database Optimization/20 - Normalization.mp4 | 5.78 MB |
Lynda - Programming Foundations - Databases [AhLaN]/5 - 4. Database Optimization/21 - First normal form.mp4 | 8.82 MB |
Lynda - Programming Foundations - Databases [AhLaN]/5 - 4. Database Optimization/22 - Second normal form.mp4 | 5.55 MB |
Lynda - Programming Foundations - Databases [AhLaN]/5 - 4. Database Optimization/23 - Third normal form.mp4 | 7.93 MB |
Lynda - Programming Foundations - Databases [AhLaN]/5 - 4. Database Optimization/24 - Denormalization.mp4 | 8.47 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/25 - Creating a database.mp4 | 9.77 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/26 - Creating tables.mp4 | 4.30 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/27 - Writing SQL queries.mp4 | 5.35 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/28 - Narrowing query results.mp4 | 6.45 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/29 - Sorting results.mp4 | 4.45 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/30 - Aggregate functions.mp4 | 4.19 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/31 - Joining tables.mp4 | 7.59 MB |
Lynda - Programming Foundations - Databases [AhLaN]/6 - 5. Querying a Database/32 - Modifying data.mp4 | 10.08 MB |
Lynda - Programming Foundations - Databases [AhLaN]/7 - 6. Querying a Database/33 - Indexes, transactions, and stored procedures.mp4 | 12.80 MB |
Lynda - Programming Foundations - Databases [AhLaN]/7 - 6. Querying a Database/34 - Access control, compliance, and injection.mp4 | 12.63 MB |
Lynda - Programming Foundations - Databases [AhLaN]/7 - 6. Querying a Database/35 - Software options.mp4 | 10.69 MB |
Lynda - Programming Foundations - Databases [AhLaN]/8 - Conclusion/36 - Next steps.mp4 | 8.41 MB |
Lynda - Programming Foundations - Databases [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Databases [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/1 - Introduction/01 - Don't reinvent the wheel.mp4 | 23.27 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 11.71 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/2 - 1. Design Patterns/03 - Object-oriented design experience.mp4 | 14.47 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/2 - 1. Design Patterns/04 - What are design patterns.mp4 | 9.99 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/2 - 1. Design Patterns/05 - What are design principles.mp4 | 5.72 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/06 - Revisiting inheritance.mp4 | 8.95 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/07 - Limitations of inheritance.mp4 | 10.79 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/08 - Trying interfaces.mp4 | 6.05 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/09 - Get inspiration from design principles.mp4 | 9.17 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/10 - Programming to an interface.mp4 | 4.65 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/11 - Applying the principles.mp4 | 13.08 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/12 - Exploring the strategy pattern.mp4 | 4.80 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/13 - Why HAS-A is better than IS-A.mp4 | 5.91 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/14 - Challenge - The Strategy pattern.mp4 | 5.94 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/3 - 2. The Strategy Pattern/15 - Solution - The Strategy pattern.mp4 | 2.20 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/4 - 3. The Adapter Pattern/16 - Understanding the adapter pattern.mp4 | 9.62 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/4 - 3. The Adapter Pattern/17 - The Adapter pattern defined.mp4 | 4.35 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/4 - 3. The Adapter Pattern/18 - Using the Adapter pattern.mp4 | 12.44 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/4 - 3. The Adapter Pattern/19 - Challenge - The Adapter pattern.mp4 | 2.57 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/4 - 3. The Adapter Pattern/20 - Solution - The Adapter pattern.mp4 | 4.67 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/21 - Understanding the Observer pattern.mp4 | 11.02 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/22 - The Observer pattern defined.mp4 | 5.25 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/23 - Using the Observer pattern.mp4 | 7.42 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/24 - The Observer pattern and loose coupling.mp4 | 2.53 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/25 - Challenge - The Observer pattern.mp4 | 2.81 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/5 - 4. The Observer Pattern/26 - Solution - The Observer pattern.mp4 | 2.65 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/27 - Creating chaos with inheritance.mp4 | 24.11 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/28 - Understanding the open-closed principle.mp4 | 6.90 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/29 - Extending behavior with composition.mp4 | 6.96 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/30 - Understanding the decorator pattern.mp4 | 5.38 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/31 - Using the Decorator pattern.mp4 | 16.23 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/32 - Challenge - The Decorator pattern.mp4 | 1.91 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/6 - 5. The Decorator Pattern/33 - Solution - The Decorator pattern.mp4 | 3.45 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/34 - Encapsulating iteration.mp4 | 8.37 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/35 - Understanding the Iterator pattern.mp4 | 6.88 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/36 - Using the Iterator pattern.mp4 | 11.42 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/37 - Using built-in iterators.mp4 | 3.23 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/38 - The single responsibility principle.mp4 | 4.26 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/39 - The iterator pattern as language feature.mp4 | 5.68 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/40 - Challenge - The Iterator pattern.mp4 | 2.70 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/7 - 6. The Iterator Pattern/41 - Solution - The Iterator pattern.mp4 | 2.36 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/8 - 7. The Factory Patterns/42 - The need for factory patterns.mp4 | 18.87 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/8 - 7. The Factory Patterns/43 - The Factory Method pattern.mp4 | 9.23 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/8 - 7. The Factory Patterns/44 - Using the Factory Method pattern.mp4 | 7.51 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/8 - 7. The Factory Patterns/45 - Challenge - The simple Factory pattern.mp4 | 3.81 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/8 - 7. The Factory Patterns/46 - Solution - The simple Factory pattern.mp4 | 3.63 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/9 - Conclusion/47 - Applying patterns.mp4 | 39.74 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/9 - Conclusion/48 - Where to go from here.mp4 | 6.46 MB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/BasicCameraApp.java | 182.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/CameraPlusApp.java | 194.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/Email.java | 176.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/PhoneCameraApp.java | 444.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/PhotoWithPhone.java | 817.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/ShareStrategy.java | 132.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/Social.java | 192.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/challenge/Txt.java | 172.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/DecoyDuck.java | 250.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/Duck.java | 518.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/FakeQuack.java | 152.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/FlyBehavior.java | 97.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/FlyNoWay.java | 154.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/FlyRocketPowered.java | 175.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/FlyWithWings.java | 159.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/MallardDuck.java | 261.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/MiniDuckSimulator.java | 609.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/MiniDuckSimulator1.java | 344.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/ModelDuck.java | 243.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/MuteQuack.java | 161.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/Quack.java | 149.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/QuackBehavior.java | 101.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/RedHeadDuck.java | 264.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/RubberDuck.java | 461.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/02_StrategyPattern/ducks/Squeak.java | 151.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/challenge/Drone.java | 160.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/challenge/DroneAdapter.java | 352.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/challenge/SuperDrone.java | 311.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/Duck.java | 117.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/DuckAdapter.java | 357.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/DuckTestDrive.java | 876.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/MallardDuck.java | 213.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/Turkey.java | 120.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/TurkeyAdapter.java | 307.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/TurkeyTestDrive.java | 342.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/03_AdapterPattern/ducks/WildTurkey.java | 240.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/simple/Example.java | 277.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/simple/Observer.java | 113.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/simple/SimpleObserver.java | 431.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/simple/SimpleSubject.java | 641.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/simple/Subject.java | 196.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/CurrentConditionsDisplay.java | 639.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/DisplayElement.java | 112.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/ForecastDisplay.java | 871.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/HeatIndexDisplay.java | 1.10 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/Observer.java | 147.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/StatisticsDisplay.java | 762.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/Subject.java | 197.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/WeatherData.java | 1.04 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/WeatherStation.java | 555.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/04_ObserverPattern/weather/WeatherStationHeatIndex.java | 631.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/Cheese.java | 314.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/Olives.java | 303.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/Pizza.java | 216.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/PizzaStore.java | 336.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/ThickcrustPizza.java | 234.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/ThincrustPizza.java | 231.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/pizza/ToppingDecorator.java | 164.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Beverage.java | 227.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/CondimentDecorator.java | 158.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/DarkRoast.java | 204.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Decaf.java | 192.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Espresso.java | 198.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/HouseBlend.java | 207.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Milk.java | 334.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Mocha.java | 340.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Soy.java | 331.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/StarbuzzCoffee.java | 709.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/05_DecoratorPattern/starbuzz/Whip.java | 338.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/AlternatingDinerMenuIterator.java | 628.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/ArrayIterator.java | 472.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/ArrayListIterator.java | 496.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/DinerMenu.java | 1.51 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/DinerMenuIterator.java | 480.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/Iterator.java | 124.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/Menu.java | 117.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/MenuItem.java | 716.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/MenuTestDrive.java | 1.76 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/PancakeHouseMenu.java | 1.11 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/PancakeHouseMenuIterator.java | 510.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/dinermerger/Waitress.java | 1.85 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/DinerMenu.java | 1.45 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/DinerMenuIterator.java | 830.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/Menu.java | 152.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/MenuItem.java | 625.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/MenuTestDrive.java | 349.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/PancakeHouseMenu.java | 1.08 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/06_IteratorPattern/implicit/Waitress.java | 870.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/Calendar.java | 394.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/CalendarTestDrive.java | 371.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/PacificCalendar.java | 417.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/Zone.java | 207.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/ZoneCentral.java | 166.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/ZoneEastern.java | 166.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/ZoneFactory.java | 437.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/ZoneMountain.java | 169.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/challenge/ZonePacific.java | 166.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/ChicagoPizzaStore.java | 555.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/ChicagoStyleCheesePizza.java | 393.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/ChicagoStyleClamPizza.java | 427.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/ChicagoStylePepperoniPizza.java | 513.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/ChicagoStyleVeggiePizza.java | 472.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/DependentPizzaStore.java | 1.02 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/NYPizzaStore.java | 451.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/NYStyleCheesePizza.java | 283.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/NYStyleClamPizza.java | 320.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/NYStylePepperoniPizza.java | 427.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/NYStyleVeggiePizza.java | 382.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/Pizza.java | 1.04 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/PizzaStore.java | 359.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzafm/PizzaTestDrive.java | 1.09 kB |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/CheesePizza.java | 270.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/ClamPizza.java | 262.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/PepperoniPizza.java | 311.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/Pizza.java | 865.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/PizzaStore.java | 372.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/PizzaTestDrive.java | 503.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/SimplePizzaFactory.java | 441.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Exercise Files/07_FactoryPattern/pizzas/VeggiePizza.java | 409.00 B |
Lynda - Programming Foundations - Design Patterns [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/1 - Introduction/01 - Welcome.mp4 | 23.13 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 1.61 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/1 - Introduction/03 - Using the exercise files.mp4 | 1.77 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/2 - 1. Discrete Math Uses/04 - Basics of discrete mathematics.mp4 | 5.28 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/2 - 1. Discrete Math Uses/05 - Discrete math for programming.mp4 | 5.44 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/2 - 1. Discrete Math Uses/06 - Real-world discrete math.mp4 | 5.44 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/2 - 1. Discrete Math Uses/07 - Abstract discrete math.mp4 | 4.31 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/08 - Objects as sets.mp4 | 6.88 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/09 - Set notation.mp4 | 8.48 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/10 - Set operations.mp4 | 7.19 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/11 - Power sets.mp4 | 9.92 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/12 - Sequences and sums.mp4 | 15.73 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/13 - Recursion.mp4 | 19.10 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/14 - Cardinality, disjointness, and partitions.mp4 | 5.31 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/15 - Sets from Cartesian products.mp4 | 4.56 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/16 - Challenge - Practice with sets.mp4 | 1.94 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/3 - 2. Sets/17 - Solution - Practice with sets.mp4 | 15.59 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/18 - Functional programming.mp4 | 6.93 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/19 - Datatypes.mp4 | 6.42 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/20 - Characters and strings.mp4 | 7.88 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/21 - Recursive functions.mp4 | 7.47 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/22 - Challenge - Learn SML.mp4 | 3.84 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/4 - 3. Setting Up SML/23 - Solution - Create new data types.mp4 | 3.77 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/5 - 4. Analyzing Data Sequences/24 - Use SML to create lists.mp4 | 8.17 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/5 - 4. Analyzing Data Sequences/25 - Perform functions on lists.mp4 | 6.94 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/5 - 4. Analyzing Data Sequences/26 - Create datatypes that use lists.mp4 | 4.96 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/5 - 4. Analyzing Data Sequences/27 - Challenge - Model a lunch order.mp4 | 2.65 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/5 - 4. Analyzing Data Sequences/28 - Solution - Model a lunch order.mp4 | 6.96 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/29 - Valid reasoning and inference.mp4 | 16.00 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/30 - Truth tables.mp4 | 10.45 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/31 - Identify and evaluate predicates.mp4 | 15.39 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/32 - Conditional propositions.mp4 | 12.41 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/33 - Valid arguments.mp4 | 9.66 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/34 - Rules of inference.mp4 | 10.13 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/35 - Prove logical equivalence.mp4 | 9.83 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/36 - Challenge - Write truth tables.mp4 | 2.25 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/6 - 5. Effective Arguments and Defensible Decisions/37 - Solution - Write truth tables.mp4 | 10.49 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/38 - Write a general outline for a proof.mp4 | 91.39 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/39 - Write subset proofs.mp4 | 6.81 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/40 - Evaluate conditional proofs.mp4 | 20.89 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/41 - Understand biconditional proofs.mp4 | 9.22 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/42 - Prove with mathematical induction.mp4 | 24.61 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/43 - Challenge - Write a proof.mp4 | 2.01 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/7 - 6. Proofs Made Easy/44 - Solution - Write a proof.mp4 | 9.86 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/45 - Visualize data with graph theory.mp4 | 5.61 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/46 - Network optimization with trees.mp4 | 5.74 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/47 - Event probability.mp4 | 8.02 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/48 - Cryptography.mp4 | 45.42 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/49 - Challenge - Advanced techniques.mp4 | 2.29 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/8 - 7. Advanced Discrete Math Topics/50 - Solution - Advanced techniques.mp4 | 12.25 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/9 - Conclusion/51 - Next steps.mp4 | 11.67 MB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch02/02_09/02_09 Challenge.pdf | 110.41 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch02/02_10/02_10 Solution.pdf | 123.96 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch05/05_08/05_08_Challenge.pdf | 78.00 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch05/05_09/05_09_Solution.pdf | 236.91 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch06/06_06/06_06_Challenge.pdf | 221.10 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch06/06_07/06_07_Solution.pdf | 43.99 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch07/07_05/07_05 Challenge.pdf | 41.46 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Ch07/07_06/07_06_Solution.pdf | 181.21 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Reference/Logic Reference.pdf | 111.61 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Reference/Set Identities.pdf | 66.47 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Exercise Files/Reference/Set Theory.pdf | 113.41 kB |
Lynda - Programming Foundations - Discrete Mathematics [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/1 - Introduction/01 - The fundamentals of programming.mp4 | 18.15 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/1 - Introduction/02 - Following along with the course.mp4 | 7.53 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/2 - 1. Programming Basics/03 - What is programming.mp4 | 16.93 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/2 - 1. Programming Basics/04 - What is a programming language.mp4 | 20.37 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/2 - 1. Programming Basics/05 - Writing source code.mp4 | 13.91 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/2 - 1. Programming Basics/06 - Running your code.mp4 | 20.71 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/2 - 1. Programming Basics/07 - Using an IDE.mp4 | 21.96 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/08 - Why Python.mp4 | 12.42 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/09 - Installing Python on a Mac.mp4 | 20.76 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/10 - Installing Python on Windows.mp4 | 8.95 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/11 - Running Python on the command line.mp4 | 18.04 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/12 - Installing Visual Studio Code on a Mac.mp4 | 17.00 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/13 - Installing Visual Studio Code on Windows.mp4 | 19.55 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/14 - Running Python in an IDE.mp4 | 23.71 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/15 - Basic statements and expressions.mp4 | 22.16 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/3 - 2. Programming Syntax/16 - Troubleshooting issues.mp4 | 28.20 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/17 - Introduction to variables and data types.mp4 | 19.12 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/18 - Variables across languages.mp4 | 22.49 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/19 - Working with numbers.mp4 | 28.18 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/20 - Working with strings.mp4 | 12.56 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/21 - Properly using whitespace.mp4 | 29.51 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/22 - Working with comments.mp4 | 21.09 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/23 - Challenge - What's the output.mp4 | 6.39 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/4 - 3. Variables and Data Types/24 - Solution - What's the output.mp4 | 33.31 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/25 - Making decisions in code.mp4 | 30.35 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/26 - Exploring conditional code.mp4 | 29.95 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/27 - Working with simple conditions.mp4 | 23.90 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/28 - Conditionals across languages.mp4 | 11.68 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/29 - Challenge - Guessing game.mp4 | 8.55 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/5 - 4. Conditional Code/30 - Solution - Guessing game.mp4 | 13.49 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/31 - Introduction to functions.mp4 | 26.36 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/32 - Creating and calling functions.mp4 | 26.49 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/33 - Setting parameters and arguments.mp4 | 36.18 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/34 - Returning values from functions.mp4 | 22.31 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/35 - Functions across languages.mp4 | 17.35 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/36 - Challenge - Favorite cities.mp4 | 8.78 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/6 - 5. Modular Code/37 - Solution - Favorite cities.mp4 | 11.61 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/7 - Conclusion/38 - Exploring languages.mp4 | 23.54 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/7 - Conclusion/39 - Next steps.mp4 | 12.85 MB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Boolean Expressions and Relational Operators Practice Worksheet.pdf | 28.66 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap01/01_03.py | 21.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap02/02_01.py | 187.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap02/02_07_begin.py | 46.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap02/02_07_end.py | 46.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap02/02_09.py | 116.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap02/Troubleshooting Installation Issues.docx | 6.86 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_01_end.py | 120.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_02_end.py | 224.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_05_begin.py | 232.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_05_end.py | 234.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_06_begin.py | 237.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_06_end.py | 288.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_07.py | 306.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap03/03_08_solution | 71.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap04/04_02.py | 217.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap04/04_03_begin.py | 139.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap04/04_03_end.py | 140.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap04/04_06.py | 169.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap04/Boolean Expressions and Relational Operators Practice Worksheet.docx | 6.94 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_01_begin.py | 150.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_01_end.py | 203.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_02_begin.py | 82.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_02_end.py | 83.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_03_begin.py | 199.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_03_end.py | 302.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_04_begin.py | 206.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_04_end.py | 298.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Chap05/05_07.py | 245.00 B |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Practice Exercises.pdf | 34.88 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Software Lingo.pdf | 29.71 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Exercise Files/Troubleshooting Installation Issues.pdf | 26.40 kB |
Lynda - Programming Foundations - Fundamentals [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/1 - Introduction/01 - Welcome.mp4 | 3.94 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 1.95 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/2 - 1. A Brief Word on Ambiguity/03 - What is ambiguity.mp4 | 7.99 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/2 - 1. A Brief Word on Ambiguity/04 - Computer logic vs. human logic.mp4 | 8.77 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/2 - 1. A Brief Word on Ambiguity/05 - Computers forced us to think logically.mp4 | 4.00 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/2 - 1. A Brief Word on Ambiguity/06 - Issues with logical thinking.mp4 | 11.74 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/3 - 2. Discovery of Fuzzy Set Theory/07 - Origins of fuzzy logic.mp4 | 7.72 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/3 - 2. Discovery of Fuzzy Set Theory/08 - Definition of fuzzy set theory.mp4 | 9.52 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/3 - 2. Discovery of Fuzzy Set Theory/09 - More ways to think about data.mp4 | 10.09 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/3 - 2. Discovery of Fuzzy Set Theory/10 - Membership function.mp4 | 9.54 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/3 - 2. Discovery of Fuzzy Set Theory/11 - Why do we need fuzzy data.mp4 | 7.81 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/4 - 3. Applications of Fuzzy Set Theory/12 - Information retrieval.mp4 | 17.45 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/4 - 3. Applications of Fuzzy Set Theory/13 - Fuzzy inference.mp4 | 10.30 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/4 - 3. Applications of Fuzzy Set Theory/14 - Machine learning and artificial intelligence (AI).mp4 | 12.63 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/4 - 3. Applications of Fuzzy Set Theory/15 - Expert systems and simulations.mp4 | 5.12 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/6 - Conclusion/16 - Next steps.mp4 | 2.03 MB |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Fuzzy Logic [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/1 - Introduction/01 - Learn object-oriented design principles.mp4 | 27.78 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 15.10 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/03 - Object-oriented thinking.mp4 | 29.79 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/04 - Objects.mp4 | 33.22 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/05 - Classes.mp4 | 19.81 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/06 - Abstraction.mp4 | 17.48 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/07 - Encapsulation.mp4 | 24.14 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/08 - Inheritance.mp4 | 11.87 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/09 - Polymorphism.mp4 | 32.08 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/10 - Analysis, design, and programming.mp4 | 13.53 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/2 - 1. Object-Oriented Fundamentals/11 - Unified modeling language (UML).mp4 | 13.27 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/3 - 2. Requirements/12 - Defining requirements.mp4 | 40.56 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/3 - 2. Requirements/13 - FURPS+ requirements.mp4 | 8.71 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/3 - 2. Requirements/14 - Challenge - Jukebox requirements.mp4 | 8.01 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/3 - 2. Requirements/15 - Solution - Jukebox requirements.mp4 | 17.72 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/16 - Use cases.mp4 | 32.42 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/17 - Identifying the actors.mp4 | 25.32 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/18 - Identifying the scenarios.mp4 | 26.05 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/19 - Diagramming use cases.mp4 | 24.24 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/20 - User stories.mp4 | 26.45 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/21 - Challenge - Jukebox use cases.mp4 | 5.22 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/4 - 3. Use Cases and User Stories/22 - Solution - Jukebox use cases.mp4 | 15.42 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/23 - Identifying the objects.mp4 | 26.70 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/24 - Identifying class relationships.mp4 | 28.83 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/25 - Identifying class responsibilities.mp4 | 38.86 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/26 - CRC cards.mp4 | 22.40 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/27 - Challenge - Jukebox conceptual model.mp4 | 8.22 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/5 - 4. Domain Modeling/28 - Solution - Jukebox conceptual model.mp4 | 29.63 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/29 - Creating class diagrams - Attributes.mp4 | 16.26 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/30 - Creating class diagrams - Behaviors.mp4 | 24.59 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/31 - Converting class diagrams into code.mp4 | 23.53 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/32 - Instantiating classes.mp4 | 14.16 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/33 - Class with multiple constructors.mp4 | 19.38 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/34 - Static attributes and methods.mp4 | 29.04 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/35 - Challenge - Jukebox class diagrams.mp4 | 8.66 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/6 - 5. Class Diagrams/36 - Solution - Jukebox class diagrams.mp4 | 33.09 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/37 - Identifying inheritance situations.mp4 | 27.88 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/38 - Using inheritance.mp4 | 10.97 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/39 - Abstract and concrete classes.mp4 | 15.48 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/40 - Interfaces.mp4 | 19.28 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/41 - Aggregation.mp4 | 15.41 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/42 - Composition.mp4 | 12.95 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/43 - Challenge - Jukebox class relationships.mp4 | 7.48 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/7 - 6. Inheritance and Composition/44 - Solution - Jukebox class relationships.mp4 | 18.81 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/8 - 7. Software Development/45 - OOP support in different languages.mp4 | 13.05 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/8 - 7. Software Development/46 - General development principles.mp4 | 26.24 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/8 - 7. Software Development/47 - Software testing.mp4 | 35.47 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/8 - 7. Software Development/48 - Design patterns.mp4 | 33.58 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/9 - Conclusion/49 - Next steps.mp4 | 8.48 MB |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Object-Oriented Design [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/1 - Introduction/01 - Welcome.mp4 | 17.89 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/1 - Introduction/02 - What you should know before watching this course.mp4 | 2.21 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/1 - Introduction/03 - Disclaimer.mp4 | 1.32 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/2 - 1. Licensing and Open-Source Fundamentals/04 - What is a license.mp4 | 8.54 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/2 - 1. Licensing and Open-Source Fundamentals/05 - The role of copyrights, patents, and trademarks.mp4 | 6.81 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/2 - 1. Licensing and Open-Source Fundamentals/06 - Introduction to open source and open-source principles.mp4 | 7.59 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/07 - What is a software license.mp4 | 3.16 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/08 - The first open-source license - BSD.mp4 | 4.58 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/09 - Open-source licenses vs. the public domain.mp4 | 3.11 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/10 - The three basic licenses - GPL.mp4 | 13.94 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/11 - The three basic licenses - MIT.mp4 | 6.15 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/12 - The three basic licenses - Apache.mp4 | 3.56 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/13 - Permissive vs. copyleft open-source licenses.mp4 | 4.73 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/3 - 2. Software Licensing/14 - Choosing the right open-source license.mp4 | 3.41 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/15 - Nonsoftware works and the Creative Commons.mp4 | 15.87 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/16 - Multiple open-source license scenarios and compatibility.mp4 | 2.67 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/17 - Dual licensing.mp4 | 3.74 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/18 - Contributor license agreements.mp4 | 3.32 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/19 - The role of patent licenses and promises.mp4 | 4.40 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/4 - 3. Additional Topics/20 - Establishing a business entity for your project.mp4 | 5.21 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/5 - Conclusion/21 - Next steps.mp4 | 1.32 MB |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Open-Source Licensing [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/1 - Introduction/01 - Welcome.mp4 | 28.32 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/2 - 1. Programming for Kids/02 - Programming is fun!.mp4 | 4.81 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/2 - 1. Programming for Kids/03 - Graphical vs. coding-based languages.mp4 | 8.17 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/3 - 2. How Kids Learn/04 - Exploring learning styles - Auditory, kinesthetic, and visual.mp4 | 7.37 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/3 - 2. How Kids Learn/05 - Piaget's four stages of cognitive development.mp4 | 14.51 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/4 - 3. Graphical Programming on the iPad/06 - iPad apps for very young kids.mp4 | 52.25 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/4 - 3. Graphical Programming on the iPad/07 - Making things move - Daisy the Dinosaur.mp4 | 11.33 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/4 - 3. Graphical Programming on the iPad/08 - Conquering challenges - Move the Turtle.mp4 | 21.15 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/4 - 3. Graphical Programming on the iPad/09 - Learning about algorithms - Hopscotch.mp4 | 21.55 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/5 - 4. Graphical Programming on Personal Computers/10 - Programming animations - Scratch.mp4 | 25.24 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/5 - 4. Graphical Programming on Personal Computers/11 - Programming Android apps - MIT App Inventor.mp4 | 33.06 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/5 - 4. Graphical Programming on Personal Computers/12 - Programming games - GameSalad.mp4 | 24.54 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/6 - 5. Getting Started with Coding/13 - A first real programming language - Logo.mp4 | 19.20 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/6 - 5. Getting Started with Coding/14 - Programming virtual robots - RoboMind.mp4 | 20.14 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/6 - 5. Getting Started with Coding/15 - Learning JavaScript - Crunchzilla Code Monster.mp4 | 16.28 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/6 - 5. Getting Started with Coding/16 - Learning Java - Greenfoot.mp4 | 25.69 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/7 - 6. Programming in the Real World/17 - When programming gets real.mp4 | 35.26 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/7 - 6. Programming in the Real World/18 - Building and controlling a real robot - LEGO Mindstorms.mp4 | 104.75 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/7 - 6. Programming in the Real World/19 - Programming real robots - LEGO Mindstorms.mp4 | 34.42 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/7 - 6. Programming in the Real World/20 - Joining a club - FIRST Robotics Competition.mp4 | 19.25 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/7 - 6. Programming in the Real World/21 - Programming hardware - Arduino and Raspberry Pi.mp4 | 134.27 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/8 - Conclusion/22 - Next steps.mp4 | 3.42 MB |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Programming for Kids [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/1 - Introduction/01 - Welcome.mp4 | 18.08 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 13.28 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/1 - Introduction/03 - Using the exercise files.mp4 | 1.82 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/1 - Introduction/04 - Installing Python 3 for Windows.mp4 | 5.03 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/1 - Introduction/05 - Installing Python 3 for Mac.mp4 | 4.90 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/10 - 9. Conditional Execution/29 - If_else-if chains.mp4 | 23.64 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/10 - 9. Conditional Execution/30 - Switch and case statements.mp4 | 25.39 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/11 - 10. Loops/31 - For loops.mp4 | 21.34 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/11 - 10. Loops/32 - While loops.mp4 | 17.59 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/11 - 10. Loops/33 - Break statements.mp4 | 16.73 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/12 - 11. Error Handling/34 - Error catching.mp4 | 29.22 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/12 - 11. Error Handling/35 - Validate external input.mp4 | 18.83 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/12 - 11. Error Handling/36 - Custom errors.mp4 | 19.55 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/13 - 12. Polling and Event-Driven Programming/37 - Polling for a condition.mp4 | 36.95 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/13 - 12. Polling and Event-Driven Programming/38 - Event driven programming.mp4 | 31.51 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/14 - Conclusion/39 - Next steps.mp4 | 8.56 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/2 - 1. Functions/06 - Cook with functions.mp4 | 31.82 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/2 - 1. Functions/07 - Code reuse.mp4 | 16.48 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/2 - 1. Functions/08 - Add new input parameters.mp4 | 19.66 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/2 - 1. Functions/09 - Local and global variables.mp4 | 27.84 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/3 - 2. Objects/10 - Clothing as objects.mp4 | 37.29 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/3 - 2. Objects/11 - Custom objects.mp4 | 18.49 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/3 - 2. Objects/12 - Naming objects.mp4 | 21.54 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/3 - 2. Objects/13 - Mutable and immutable data.mp4 | 21.61 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/4 - 3. Class Inheritance/14 - Inheriting classes.mp4 | 29.10 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/4 - 3. Class Inheritance/15 - Override inherited methods.mp4 | 13.25 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/5 - 4. Modules and Packages/16 - Select tools from modules.mp4 | 31.81 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/5 - 4. Modules and Packages/17 - Import tools from packages.mp4 | 19.74 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/6 - 5. Lists and Tuples/18 - Parking with lists.mp4 | 22.76 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/6 - 5. Lists and Tuples/19 - Multidimensional lists.mp4 | 21.32 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/6 - 5. Lists and Tuples/20 - Tuples.mp4 | 15.10 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/7 - 6. Queues and Stacks/21 - Queues.mp4 | 31.99 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/7 - 6. Queues and Stacks/22 - Stacks.mp4 | 15.08 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/8 - 7. Sets/23 - Create and combine sets.mp4 | 10.86 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/8 - 7. Sets/24 - Sort sets.mp4 | 19.80 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/8 - 7. Sets/25 - Add and remove items from sets.mp4 | 15.66 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/9 - 8. Dictionaries/26 - Dictionaries.mp4 | 20.95 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/9 - 8. Dictionaries/27 - Add items to dictionaries.mp4 | 23.09 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/9 - 8. Dictionaries/28 - Reverse lookup issues.mp4 | 20.45 MB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_01/end_01_01_breakfast_functions.py | 422.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_01/start_01_01_breakfast_functions.py | 235.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_02/end_01_02_breakfast_functions.py | 559.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_02/start_01_02_breakfast_functions.py | 572.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_03/end_01_03_breakfast_functions.py | 896.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_03/start_01_03_breakfast_functions.py | 487.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_04/end_01_04_breakfast_functions.py | 829.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch01/01_04/start_01_04_breakfast_functions.py | 667.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_01/commands_02_01_object_anatomy.py | 408.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_02/end_02_02_creating_jeans.py | 755.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_02/start_02_02_creating_jeans.py | 508.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_03/end_02_03_naming_shirts.py | 893.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_03/start_02_03_naming_shirts.py | 213.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch02/02_04/commands_02_04_outfits_and_words.py | 465.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch03/03_01/end_03_01_class_inheritance.py | 1.28 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch03/03_01/start_03_01_class_inheritance.py | 886.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch03/03_02/end_03_02_class_inheritance.py | 1.21 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch03/03_02/start_03_02_class_inheritance.py | 886.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch04/04_01/commands_04_01_modules.py | 502.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch04/04_02/commands_04_02_packages.py | 211.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch05/05_01/commands_05_01_row_of_cars.py | 602.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch05/05_02/end_05_02_parking_lots.py | 1.26 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch05/05_02/start_05_02_parking_lots.py | 584.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch05/05_03/end_05_03_coordinates.py | 342.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch05/05_03/start_05_03_coordinates.py | 342.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch06/06_01/commands_06_01_queues.py | 606.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch06/06_02/commands_06_02_stacks.py | 445.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_01/end_07_01_combining_sets.py | 781.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_01/start_07_01_combining_sets.py | 367.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_02/end_07_02_sorting_friends.py | 1.21 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_02/start_07_02_sorting_friends.py | 787.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_03/end_07_03_adding_removing_friends.py | 539.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch07/07_03/start_07_03_adding_removing_friends.py | 131.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_01/end_08_01_rolodex.py | 470.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_01/start_08_01_rolodex.py | 360.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_02/end_08_02_rolodex.py | 913.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_02/start_08_02_rolodex.py | 360.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_03/end_08_01_rolodex.py | 697.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch08/08_03/start_08_03_rolodex.py | 360.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_01/end_09_01_choose_pizza.py | 361.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_01/start_09_01_choose_pizza.py | 361.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_02/end_09_02_specials_dictionary.py | 456.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_02/end_09_02_specials_ifelif.py | 517.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_02/start_09_02_specials_dictionary.py | 404.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch09/09_02/start_09_02_specials_ifelif.py | 517.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_01/end_10_01_for_dishes.py | 246.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_01/start_10_01_for_dishes.py | 170.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_02/end_10_02_while_dirty.py | 401.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_02/start_10_02_while_dirty.py | 396.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_03/end_10_03_for_break.py | 547.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch10/10_03/start_10_03_for_break.py | 547.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_01/end_11_01_web_error.py | 253.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_01/start_11_01_web_error.py | 181.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_02/end_11_02_circuit_breaker.py | 946.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_02/start_11_02_circuit_breaker.py | 338.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_03/end_11_03_custom_errors.py | 1.06 kB |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch11/11_03/start_11_03_custom_errors.py | 770.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch12/12_01/end_12_01_polling_for_pizza.py | 438.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch12/12_01/front_door.txt | 22.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch12/12_01/start_12_01_polling_for_pizza.py | 384.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch12/12_02/end_12_02_alarms_and_doorbells.py | 687.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Exercise Files/Ch12/12_02/start_12_02_alarms_and_doorbells.py | 655.00 B |
Lynda - Programming Foundations - Real-World Examples [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/1 - Introduction/01 - Implement secure code with your team.mp4 | 24.79 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/1 - Introduction/02 - What you need to know.mp4 | 11.37 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/2 - 1. Security and Risk Overview/03 - The goal of secure coding.mp4 | 15.10 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/2 - 1. Security and Risk Overview/04 - Understand an attacker.mp4 | 13.82 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/2 - 1. Security and Risk Overview/05 - Break what you build.mp4 | 14.53 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/2 - 1. Security and Risk Overview/06 - Understand your risks.mp4 | 18.60 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/2 - 1. Security and Risk Overview/07 - Document what you understand.mp4 | 21.90 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/3 - 2. Web Client Server Interaction Code Issues/08 - Input validation issues.mp4 | 24.55 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/3 - 2. Web Client Server Interaction Code Issues/09 - Communication channel issues.mp4 | 24.50 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/3 - 2. Web Client Server Interaction Code Issues/10 - Session management issues.mp4 | 22.80 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/11 - Error handling issues.mp4 | 22.42 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/12 - Logging and output issues.mp4 | 22.28 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/13 - Internal data management issues.mp4 | 17.97 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/14 - Configuration issues.mp4 | 33.97 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/15 - Database issues.mp4 | 18.88 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/16 - File and I_O issues.mp4 | 20.32 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/17 - Memory management issues.mp4 | 21.41 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/4 - 3. Thick App and Client-Server Interaction Issues/18 - Dependency issues.mp4 | 14.63 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/5 - 4. Crypto and Security Misuse Issues/19 - Authentication and password issues.mp4 | 26.67 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/5 - 4. Crypto and Security Misuse Issues/20 - Authorization and access control issues.mp4 | 19.28 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/5 - 4. Crypto and Security Misuse Issues/21 - Cryptography issues.mp4 | 32.58 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/6 - 5. Security in the SDLC/22 - Embrace security in design.mp4 | 14.99 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/6 - 5. Security in the SDLC/23 - Embrace security in development.mp4 | 14.86 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/6 - 5. Security in the SDLC/24 - Embrace security in testing.mp4 | 20.64 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/6 - 5. Security in the SDLC/25 - Embrace security in deployment.mp4 | 14.66 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/6 - 5. Security in the SDLC/26 - Implement best practices.mp4 | 16.49 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/7 - Conclusion/27 - Next steps.mp4 | 14.81 MB |
Lynda - Programming Foundations - Secure Coding [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Secure Coding [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/1 - Introduction/01 - Set the standard with quality assurance (QA).mp4 | 19.93 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/1 - Introduction/02 - What is quality assurance.mp4 | 5.01 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/1 - Introduction/03 - How to ensure quality.mp4 | 6.62 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/2 - 1. The Role of QA/04 - Roles and responsibilities.mp4 | 16.39 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/2 - 1. The Role of QA/05 - Get involved throughout the SDLC.mp4 | 9.31 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/2 - 1. The Role of QA/06 - Collaborate with the team.mp4 | 7.05 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/2 - 1. The Role of QA/07 - Set expectations and goals.mp4 | 14.83 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/3 - 2. Test Planning/08 - Create a test strategy.mp4 | 14.16 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/3 - 2. Test Planning/09 - Make a test plan.mp4 | 16.53 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/3 - 2. Test Planning/10 - Write acceptance criteria.mp4 | 9.76 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/3 - 2. Test Planning/11 - Identify when testing is complete.mp4 | 14.02 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/12 - Box testing.mp4 | 14.02 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/13 - Manual testing.mp4 | 9.85 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/14 - UI automation testing.mp4 | 12.15 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/15 - Integration testing.mp4 | 7.98 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/16 - Performance testing.mp4 | 9.42 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/4 - 3. Types of Testing QA Focuses On/17 - Security testing.mp4 | 18.43 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/18 - Identify bugs.mp4 | 8.29 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/19 - Report bugs.mp4 | 12.87 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/20 - Triage bugs.mp4 | 9.96 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/21 - Communicate bugs to the team.mp4 | 6.74 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/22 - Getting bugs fixed.mp4 | 10.10 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/5 - 4. Bug Reporting/23 - Have bug bashes.mp4 | 9.07 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/6 - Conclusion/24 - Next steps.mp4 | 5.97 MB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/Exercise Files/Bug Report Template.pdf | 35.55 kB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/Exercise Files/Sample Test Plan.pdf | 46.43 kB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/Exercise Files/Sample Test Strategy.pdf | 35.35 kB |
Lynda - Programming Foundations - Software Testing_QA [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/1 - Introduction/01 - Small steps to great things.mp4 | 23.49 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 3.02 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/1 - Introduction/03 - What is test-driven development (TDD).mp4 | 51.20 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/1 - Introduction/04 - xUnit and JUnit.mp4 | 6.06 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/1 - Introduction/05 - Writing test cases.mp4 | 19.43 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/06 - TDD and agile.mp4 | 32.49 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/07 - Where to start.mp4 | 23.32 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/08 - The iterative red-green-refactor cycle.mp4 | 16.78 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/09 - Refactor to improve the design.mp4 | 14.50 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/10 - ✓ Challenge - Functionality.mp4 | 31.79 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/2 - 1. TDD Methodology/11 - ✓ Solution - Functionality.mp4 | 14.36 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/3 - 2. TDD Structure and Syntax/12 - Test structure.mp4 | 11.76 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/3 - 2. TDD Structure and Syntax/13 - Assertions.mp4 | 10.95 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/3 - 2. TDD Structure and Syntax/14 - Testing exceptions.mp4 | 19.70 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/3 - 2. TDD Structure and Syntax/15 - ✓ Challenge - Performance.mp4 | 37.96 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/3 - 2. TDD Structure and Syntax/16 - ✓ Solution - Performance.mp4 | 24.29 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/17 - TDD tools and frameworks.mp4 | 3.64 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/18 - Assertion frameworks.mp4 | 12.79 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/19 - Test doubles.mp4 | 12.77 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/20 - Mocking.mp4 | 14.51 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/21 - ✓ Challenge - Database.mp4 | 25.06 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/4 - 3. Scaling TDD/22 - ✓ Solution - Database.mp4 | 24.36 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/5 - Conclusion/23 - Next steps.mp4 | 1.16 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_begin/bin/main/Hangman.class | 623.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_begin/bin/test/TestHangman.class | 750.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/bin/main/Hangman.class | 623.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/bin/test/TestHangman.class | 750.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/src/main/Hangman.java | 227.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/00_05_end/src/test/TestHangman.java | 388.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/bin/main/Hangman.class | 623.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/bin/test/TestHangman.class | 750.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/src/main/Hangman.java | 409.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_begin/src/test/TestHangman.java | 542.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/bin/main/Hangman.class | 1,009.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/bin/test/TestHangman.class | 1.41 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/src/main/Hangman.java | 761.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_01_end/src/test/TestHangman.java | 1.05 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/bin/main/Hangman.class | 1,009.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/bin/test/TestHangman.class | 1.41 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/src/main/Hangman.java | 767.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/src/test/TestHangman.java | 1.05 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_begin/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/bin/main/Hangman.class | 1.79 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/bin/test/TestHangman.class | 1.92 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/src/main/Hangman.java | 1.21 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/src/test/TestHangman.java | 1.53 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_02_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/bin/main/Hangman.class | 1.79 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/bin/test/TestHangman.class | 1.92 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/src/main/Hangman.java | 1.21 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/src/test/TestHangman.java | 1.53 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_begin/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/bin/main/Hangman.class | 2.19 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/bin/test/TestHangman.class | 1.75 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/src/main/Hangman.java | 1.36 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/src/test/TestHangman.java | 1.42 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_03_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/bin/main/Hangman.class | 2.27 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/bin/test/TestHangman.class | 1.66 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/src/main/Hangman.java | 1.63 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/src/test/TestHangman.java | 1.49 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_begin/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/bin/main/Hangman.class | 2.99 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/bin/test/TestHangman.class | 2.38 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/src/main/Hangman.java | 2.13 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/src/test/TestHangman.java | 2.14 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/01_06_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/bin/main/Hangman.class | 2.99 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/bin/test/TestHangman.class | 2.51 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/src/main/Hangman.java | 2.59 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/src/test/TestHangman.java | 2.50 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_begin/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/bin/main/Hangman.class | 3.11 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/bin/test/TestHangman.class | 3.83 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/src/main/Hangman.java | 2.74 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/src/test/TestHangman.java | 2.94 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_03_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/.project | 387.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/bin/main/Hangman.class | 3.11 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/bin/test/TestHangman.class | 3.83 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/src/main/Hangman.java | 2.74 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/src/test/TestHangman.java | 2.94 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_begin/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/.classpath | 474.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/.project | 385.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/.settings/org.eclipse.jdt.core.prefs | 642.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/bin/main/Hangman.class | 3.28 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/bin/test/TestHangman.class | 4.68 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/src/main/Hangman.java | 3.04 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/src/test/TestHangman.java | 4.10 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/02_05_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/.classpath | 1.48 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/.project | 561.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/.settings/org.eclipse.jdt.core.prefs | 781.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/.settings/org.eclipse.m2e.core.prefs | 90.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/pom.xml | 538.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/src/main/java/main/Hangman.java | 3.34 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/src/main/java/main/MockScoreDB.java | 103.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/src/test/java/test/TestHangman.java | 4.61 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/target/classes/main/Hangman.class | 3.64 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/target/classes/main/MockScoreDB.class | 156.00 B |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/target/test-classes/test/TestHangman.class | 5.32 kB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Exercise Files/03-06_end/WordSource.txt | 2.60 MB |
Lynda - Programming Foundations - Test-Driven Development [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/1 - Introduction/01 - Don't lose work.mp4 | 26.12 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/1 - Introduction/02 - What you should know.mp4 | 1.05 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/1 - Introduction/03 - Working with the exercise files.mp4 | 1.05 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/04 - Why you need version control.mp4 | 7.97 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/05 - What is version control.mp4 | 5.86 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/06 - What is Git.mp4 | 8.85 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/07 - The command line vs. the GUI.mp4 | 3.01 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/08 - Git concepts and terminology.mp4 | 9.72 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/09 - Hosting services.mp4 | 10.17 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/10 - Git workflow.mp4 | 13.41 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/11 - Installing Git on Mac.mp4 | 5.19 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/2 - 1. Introduction to Version Control/12 - Installing Git on PC.mp4 | 5.79 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/13 - Using the command line.mp4 | 6.54 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/14 - Command line basics.mp4 | 6.80 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/15 - Configure Git settings.mp4 | 7.78 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/16 - Setting up a local repository.mp4 | 5.40 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/17 - Setting up a remote repository.mp4 | 7.62 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/18 - Adding changes with Git add and commit.mp4 | 10.92 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/19 - Keep repositories up to date with Git pull and push.mp4 | 10.16 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/20 - Deleting a repository or branch.mp4 | 1.12 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/21 - Challenge - Putting it all together.mp4 | 2.92 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/3 - 2. Git and the Command Line/22 - Solution - Putting it all together.mp4 | 12.84 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/23 - Using GUIs.mp4 | 8.05 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/24 - Install GUI.mp4 | 12.35 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/25 - Working with a repository.mp4 | 6.29 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/26 - Adding changes and keeping up to date.mp4 | 7.64 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/27 - What is Git branching.mp4 | 5.66 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/28 - Working with branches.mp4 | 10.92 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/29 - Merging branches.mp4 | 8.63 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/30 - Challenge - Putting it all together.mp4 | 1.85 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/4 - 3. Git and Graphical User Interfaces (GUI)/31 - Solution - Putting it all together.mp4 | 6.58 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/5 - Conclusion/32 - Git for collaboration.mp4 | 5.30 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/5 - Conclusion/33 - Next steps.mp4 | 1.78 MB |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Version Control with Git [AhLaN]/Seed Me!!.png | 42.05 kB |
Lynda - Programming Foundations - Web Security [AhLaN]/1 - Introduction/01 - The importance of security.mp4 | 20.40 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/2 - 1. Security Overview/02 - What is security.mp4 | 17.18 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/2 - 1. Security Overview/03 - Why security matters.mp4 | 12.29 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/2 - 1. Security Overview/04 - What is a hacker.mp4 | 18.48 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/2 - 1. Security Overview/05 - Threat models.mp4 | 19.93 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/2 - 1. Security Overview/06 - Total security is unachievable.mp4 | 16.80 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/07 - Least privilege.mp4 | 22.02 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/08 - Simple is more secure.mp4 | 17.32 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/09 - Never trust users.mp4 | 19.75 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/10 - Expect the unexpected.mp4 | 11.53 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/11 - Defense in depth.mp4 | 22.03 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/12 - Security through obscurity.mp4 | 23.32 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/13 - Deny lists and allow lists.mp4 | 20.38 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/3 - 2. General Security Principles/14 - Map exposure points and data passageways.mp4 | 19.14 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/15 - Regulate requests.mp4 | 24.53 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/16 - Validate input.mp4 | 22.16 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/17 - Sanitize data.mp4 | 37.40 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/18 - Label variables.mp4 | 6.24 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/19 - Keep code private.mp4 | 14.74 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/20 - Keep credentials private.mp4 | 23.81 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/21 - Keep error messages vague.mp4 | 14.11 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/4 - 3. Filter Input, Control Output/22 - Smart logging.mp4 | 18.20 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/23 - Types of credential attacks.mp4 | 29.38 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/24 - Strong passwords.mp4 | 28.09 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/25 - URL manipulation and insecure direct object reference (IDOR).mp4 | 26.29 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/26 - SQL injection.mp4 | 33.19 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/27 - Cross-site scripting (XSS).mp4 | 34.34 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/28 - Cross-site request forgery (CSRF).mp4 | 25.93 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/29 - Cross-site request protections.mp4 | 22.75 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/30 - Cookie visibility and theft.mp4 | 27.13 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/31 - Session hijacking.mp4 | 33.96 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/32 - Session fixation.mp4 | 17.88 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/33 - Remote code execution.mp4 | 14.69 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/34 - File upload abuse.mp4 | 13.70 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/5 - 4. The Most Common Attacks/35 - Denial of service.mp4 | 29.32 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/6 - Conclusion/36 - Next steps.mp4 | 13.96 MB |
Lynda - Programming Foundations - Web Security [AhLaN]/AhLaN.txt | 175.00 B |
Lynda - Programming Foundations - Web Security [AhLaN]/Seed Me!!.png | 42.05 kB |
Seed Me!!.png | 42.05 kB |
Thumbnails.png | 269.71 kB |
@ThomasKhan Thank you for sharing great courses.:love could you please share Stefan Mumaw's courses from Lynda.com with english captions https://www.lynda.com/Stefan-Mumaw/1921385-1.html John McWade's courses - Learning Catalog Design, Magazine Design Start to Finish: The Inside Pages, Before & After: Less is More, https://www.lynda.com/John-McWade/688518-1.html https://www.lynda.com/Craig-Smallish/1755777-1.html |