ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

338,448 results

CodeAesthetic
Premature Optimization

When should you optimize your code? Access to code examples, deleted scenes, song names and more at ...

12:39
Premature Optimization

967,969 views

2 years ago

Coding Math
Coding Math: Episode 17 - Particles - Optimization

Finally! We get down to optimizing this particle object. It's been bugging me. We'll break the API unfortunately, but it's all in the ...

10:05
Coding Math: Episode 17 - Particles - Optimization

17,778 views

11 years ago

codingjerk
I Made My Code 16000× Faster (Python & Rust)

Performance optimization case study on LeetCode 52 "N-Queens". In the video I'll show path of optimization already decent ...

18:33
I Made My Code 16000× Faster (Python & Rust)

51,971 views

8 months ago

mCoding
C++ cache locality and branch predictability

Cache me outside, how bout that? People always talk about Big O time for analyzing speed, but Big O isn't the only important ...

10:43
C++ cache locality and branch predictability

124,434 views

4 years ago

IBM Technology
AI Code Generation: Wins, Fails and the Future

Explore the podcast → https://ibm.biz/Bdbw6n What's the future of AI code generation? This week on Mixture of Experts, host Tim ...

35:19
AI Code Generation: Wins, Fails and the Future

13,036 views

1 month ago

CodeAesthetic
Why You Shouldn't Nest Your Code

I'm a Never Nester and you should too. Access to code examples, discord, song names and more at ...

8:30
Why You Shouldn't Nest Your Code

3,234,554 views

3 years ago

MIT OpenCourseWare
11.2.5 Optimization and Code Generation

MIT 6.004 Computation Structures, Spring 2017 Instructor: Chris Terman View the complete course: https://ocw.mit.edu/6-004S17 ...

8:23
11.2.5 Optimization and Code Generation

8,369 views

6 years ago

C++ Weekly With Jason Turner
C++ Weekly - Ep 481 - What is Tail Call Elimination (Optimization)?

Awesome T-Shirts! Sponsors! Books! ☟☟ C++ Best Practices - NDC Toronto - May 5,6 ...

7:06
C++ Weekly - Ep 481 - What is Tail Call Elimination (Optimization)?

11,885 views

8 months ago

Low Level Game Dev
Don't do this optimizations!

Vertex pooling @Finding_Fortune : https://youtu.be/IoS5opco9LA Vertex pooling in my game: https://youtu.be/gFX7Di2aTCY Why ...

8:16
Don't do this optimizations!

40,028 views

11 months ago

Angular
4 Runtime Performance Optimizations

In this video our very own Minko Gechev will take us through 4 common runtime performance challenges, their identification with ...

18:32
4 Runtime Performance Optimizations

121,933 views

4 years ago

Apple Developer
WWDC25: Optimize SwiftUI performance with Instruments | Apple

Discover the new SwiftUI instrument. We'll cover how SwiftUI updates views, how changes in your app's data affect those updates, ...

35:36
WWDC25: Optimize SwiftUI performance with Instruments | Apple

6,870 views

7 months ago

C++ Weekly With Jason Turner
C++ Weekly - Ep 477 - What is Empty Base Optimization? (EBO)?

Awesome T-Shirts! Sponsors! Books! ☟☟ C++ Best Practices - NDC Toronto - May 5,6 ...

5:09
C++ Weekly - Ep 477 - What is Empty Base Optimization? (EBO)?

10,297 views

9 months ago

Low Level Game Dev
Demystifying the C++ Compiler!

In this video, I will explain how a compiler works and what cool optimizations it can do for you! Links: Go follow Emil! Thanks for ...

12:52
Demystifying the C++ Compiler!

28,400 views

1 year ago

Chrome for Developers
Optimizing INP: A deep dive

Interaction to Next Paint (INP) can be a daunting metric to start improving. It's common to know a page has a responsiveness ...

28:30
Optimizing INP: A deep dive

24,225 views

1 year ago

Tsoding Daily
Let's Talk About Some Compiler Optimizations

Streamed Live on Twitch: https://twitch.tv/tsoding Enable Subtitles for Twitch Chat Chapters: - 00:00:00 - Intro - 00:00:51 ...

4:38:35
Let's Talk About Some Compiler Optimizations

32,895 views

7 months ago

IBM Technology
Optimize SQL Queries for AI, Performance, & Real-Time Insights

Ready to become a certified Architect on Cloud Pak for Data? Register now and use code IBMTechYT20 for 20% off of your exam ...

16:04
Optimize SQL Queries for AI, Performance, & Real-Time Insights

12,744 views

9 months ago

eisfrosch
The Blessings and Curses of Cache Optimization

The CPU cache is a crucial component in modern computers. It significantly accelerates programs by decreasing memory latency, ...

11:29
The Blessings and Curses of Cache Optimization

6,921 views

9 months ago

CppCon
CppCon 2017: Teresa Johnson “ThinLTO: Scalable and Incremental Link-Time Optimization”

http://CppCon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: ...

1:02:00
CppCon 2017: Teresa Johnson “ThinLTO: Scalable and Incremental Link-Time Optimization”

16,439 views

8 years ago

mCoding
Return Value Optimization and Copy Elision in C++

Embrace the copy-free lifestyle! ― mCoding with James Murphy (https://mcoding.io) Source code: ...

9:54
Return Value Optimization and Copy Elision in C++

49,249 views

3 years ago

doggo dot jl
[02x03] Julia; VSCode; Optimization; Knapsack; JuMP; PlotlyJS | 3/13 Julia Analysis for Beginners

Learn how to use Julia and the JuMP Package to solve linear (GLPK) and nonlinear (Ipopt) optimization problems. Solve both ...

41:36
[02x03] Julia; VSCode; Optimization; Knapsack; JuMP; PlotlyJS | 3/13 Julia Analysis for Beginners

9,697 views

5 years ago

Udacity
Levels of Optimization Part1 - Intro to Parallel Programming

This video is part of an online course, Intro to Parallel Programming. Check out the course here: ...

3:45
Levels of Optimization Part1 - Intro to Parallel Programming

3,156 views

10 years ago

Performance Summit
Performance Optimization Techniques for Mobile Devices: An Overview - Ivica Bogosavljevic

Mobile devices are limited in twofold: computational-wise and energy-wise. Making software running fast can be a challenge ...

45:04
Performance Optimization Techniques for Mobile Devices: An Overview - Ivica Bogosavljevic

367 views

4 years ago

Snowflake Developers
Behind The Cape: Snowflake Cost Optimization, Part 1

In this episode of “Behind the Cape,” Data Superheros Ian Whitestone and Keith Belanger discuss Snowflake cost optimization.

29:09
Behind The Cape: Snowflake Cost Optimization, Part 1

5,863 views

2 years ago

Keifer
4x Code Performance with SIMD

Dives into the significant performance gains of using SIMD instructions via auto-vectorization with a use case inspired by ...

11:59
4x Code Performance with SIMD

82,821 views

8 months ago

Ruby Central
RubyConf 2022: Splitting: the Crucial Optimization for Ruby Blocks by Benoit Daloze

Blocks are one of the most expressive parts of the Ruby syntax. Many Ruby methods take a block. When a method is given ...

28:19
RubyConf 2022: Splitting: the Crucial Optimization for Ruby Blocks by Benoit Daloze

914 views

2 years ago