Instructional Video16:13
Curated Video

Complete Python Scripting for Automation - Practice-2: Platform independent script to find the java version

Higher Ed
subprocess Module: To execute any Operating System Commands with python: Practice-2: Platform independent script to find the java version This clip is from the chapter "subprocess Module: To execute any Operating System Commands with...
Instructional Video8:14
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Working with User-Defined Functions

Higher Ed
In this session, let's learn how to create user-defined functions. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3 for Data Engineering and Analytics with Python".This section primarily...
Instructional Video2:44
Science360

SOCCER, PAC MAN AND EUGLENA: COMBINING FUN, HANDS-ON BIOLOGY WITH THE CONVENIENCE OF A SMARTPHONE

12th - Higher Ed
In episode 71, Charlie and Jordan discuss a 3-D printed, easily assembled smartphone microscope--called the LudusScope--that provides new ways of interacting with and learning about common microbes. Developed at Stanford University, the...
Instructional Video2:35
Science360

Printable Robots Designed To Be Consumer-Friendly, Inexpensive

12th - Higher Ed
This project envisions a future where 3-D robotic systems can be produced and designed using 2-D desktop technology fabrication methods. If this feat is achieved, it would be possible for the average person to design, customize and print...
Instructional Video11:41
3D Print General

3D Printing with Extremely Fine Nozzles

Higher Ed
In this video, I take another look at my most popular video (and most critiqued) from two years ago on how to print with extremely fine nozzles.
Instructional Video11:44
3D Print General

Actively Heating 3D Printer for High Temp Printing

Higher Ed
In this video I show off how I added active heating to my enclosed 3D printer in order to have higher ambient air temperatures. This machine can now consistently print large, dense ABS and ASA parts, and even print materials like...
Instructional Video8:31
Curated Video

Fix the errors in a computer program or algorithm : Exceptions Handling

Higher Ed
From the section: Errors and Exceptions Handling. In this section, you will learn about Errors and Exception handling in detail. Errors and Exceptions Handling: Exceptions Handling
Instructional Video5:03
Curated Video

Implement different search algorithms : BST from scratch - In-order traversal

Higher Ed
From the section: Algorithms - Search and abstract data structures. This section is about Algorithms. You will learn about Bisection, Binary section etc. Build the in-order traversal method so nodes can be displayed in order based on the...
Instructional Video6:23
3D Print General

Cura Support Settings - PLA

Higher Ed
In this video I play around with honing in some of the support settings for #PLA offered in #Cura.
Instructional Video19:12
Curated Video

Complete Python Scripting for Automation - Dictionaries

Higher Ed
Data Structures of Python: Dictionaries This clip is from the chapter "Data Structures of Python" of the series "Complete Python Scripting for Automation".In this section, the author introduces Data structures and types of Data...
Instructional Video10:27
Curated Video

C++ Developer - Variables and Data Types - Part 1

Higher Ed
This is the first part of a three-part video that explains variables and data types. This clip is from the chapter "Fundamentals of C++" of the series "The Complete C++ Developer Course".This section discusses the fundamentals of C++.
Instructional Video5:26
Curated Video

Anatomy tools

Higher Ed
How and where to find the best anatomy learning tools.
Instructional Video5:28
Curated Video

Mastering Swift 2 Programming (Video 27)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video4:59
3D Print General

PETG Cura Settings

Higher Ed
In this video I explore some of the PETG print settings for Cura including printing on a Bowden and Direct Drive, speed, retraction, support, and much more.
Instructional Video10:16
Curated Video

Data Science and Machine Learning with R - Vectors: Naming

Higher Ed
This video explains vector naming. This clip is from the chapter "Data Types and Structures in R" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This video explains data types and structures...
Instructional Video6:07
Curated Video

Implement logical operations in a computer program : Exploring Logical Operators – Part 1

Higher Ed
From the section: Introduction to Decision Statements and Control Flow. In this section, you will be introduced to Java's decision statements and control flow constructs. This will include getting to know the Java keywords of if if/else,...
Instructional Video6:47
Curated Video

Implement a computer program using a classic algorithm : Recursion mini-project 3 - Fibonacci series

Higher Ed
From the section: Algorithms - Sort, performance, complexity and big O notation. This section is about Algorithms – sort, performance, complexity and big O notation. Understand, break down and implement a recursive fibonacci function
Instructional Video10:06
3D Print General

How to Avoid Needing Support Material

Higher Ed
In this video, I see how you can change the overhangs that are possible without needing support material with some slicer settings tweaks.
Instructional Video8:45
APMonitor

Python Import Online Data and Analyze

10th - Higher Ed
There are many online sources of data. Python is capable to access, parse, and display data from databases, data streams, or other sources. The Internet of Things (IoT) depends on devices and programs (such as Python) communicating with...
Instructional Video12:33
Packt

Practice Exercise - Print the Links Count in the Page

Higher Ed
This video presents practice exercises to print the links count in the page. This clip is from the chapter "Real- Time Exercises (End-to-End Programming)" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Instructional Video4:24
Curated Video

Julia for Data Science (Video 21)

Higher Ed
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
Instructional Video6:08
Curated Video

Python for Network Forensics 3.5: Reading the Journal

Higher Ed
In this video, we will continue our experimentation with reading and parsing system logs. • Further interact with the Systemd journal • Use our Python skills to effectively parse information regarding system events • Narrow down events...
Instructional Video2:00
Curated Video

Design test cases to verify a computer program : Writing a Printer Class for Testing

Higher Ed
From the section: Unit Testing with Python. In this section, you will learn about unit testing using Python. This video demonstrates how to write a printer class for testing in Python.
Instructional Video14:27
Curated Video

Evaluate two sorting or two search algorithms : Bisection/Binary search - Iterative implementation

Higher Ed
From the section: Algorithms - Search and abstract data structures. This section is about Algorithms. You will learn about Bisection, Binary section etc. Build the binary search function using iteratively