Curated Video
Complete Python Scripting for Automation - Practice-2: Platform independent script to find the java version
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...
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Working with User-Defined Functions
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...
Science360
SOCCER, PAC MAN AND EUGLENA: COMBINING FUN, HANDS-ON BIOLOGY WITH THE CONVENIENCE OF A SMARTPHONE
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...
Science360
Printable Robots Designed To Be Consumer-Friendly, Inexpensive
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...
3D Print General
3D Printing with Extremely Fine Nozzles
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.
3D Print General
Actively Heating 3D Printer for High Temp Printing
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...
Curated Video
Fix the errors in a computer program or algorithm : Exceptions Handling
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
Curated Video
Implement different search algorithms : BST from scratch - In-order traversal
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...
3D Print General
Cura Support Settings - PLA
In this video I play around with honing in some of the support settings for #PLA offered in #Cura.
Curated Video
Complete Python Scripting for Automation - Dictionaries
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...
Curated Video
C++ Developer - Variables and Data Types - Part 1
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++.
Curated Video
Mastering Swift 2 Programming (Video 27)
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...
3D Print General
PETG Cura Settings
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.
Curated Video
Data Science and Machine Learning with R - Vectors: Naming
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...
Curated Video
Implement logical operations in a computer program : Exploring Logical Operators – Part 1
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,...
Curated Video
Implement a computer program using a classic algorithm : Recursion mini-project 3 - Fibonacci series
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
3D Print General
How to Avoid Needing Support Material
In this video, I see how you can change the overhangs that are possible without needing support material with some slicer settings tweaks.
APMonitor
Python Import Online Data and Analyze
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...
Packt
Practice Exercise - Print the Links Count in the Page
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...
Curated Video
Julia for Data Science (Video 21)
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...
Curated Video
Python for Network Forensics 3.5: Reading the Journal
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...
Curated Video
Design test cases to verify a computer program : Writing a Printer Class for Testing
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.
Curated Video
Evaluate two sorting or two search algorithms : Bisection/Binary search - Iterative implementation
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