Bookmarks tagged with #video.
Show all
Show all
(11) A Philosophy of Software Design | John Ousterhout | Talks at Google -
John Ousterhout, Professor of Computer Science at Stanford University, discusses complex techniques on how to become a more confident coder. John is excited...
Saved
on: 2023-10-25
(4) PHP doesn't suck (anymore) - YouTube
PHP in 2023 is very different than PHP in 2012. Let's run through some of the changes!Looking for PHP jobs or looking to hire PHP devs? Check out Larajobs: h...
Saved
on: 2023-08-17
Ask HN: What are some of the best documentaries you've seen? | Hacker News
Tags:
#video
Saved
on: 2022-09-12
Top Laracon Conference Presentations
Laracon is an ongoing series of conferences and events about the Laravel software development framework. We use Laravel pretty heavily at Icehouse Ventures because it powers our Investor Portal. I’ve learned a lot over the years from the various Laracon conference recordings. The topics range from basic coding best-practises to advanced systems architecture, database design, … Continue reading Top Laracon Conference Presentations
Saved
on: 2022-03-18
FFmpeg cheat sheet
FFmpeg cheat sheet. GitHub Gist: instantly share code, notes, and snippets.
Saved
on: 2021-04-25
Tackling the Beast: How to Gradually Upgrade a Legacy Code Base to PHP 7 -
Presented by Ann Gaffigan (@anngaff)
December 21, 2017
Hypothetically speaking, what if you wanted to change all of the lightbulbs in your house to use LED bulbs, but your current wiring didn’t support LED bulbs? You would need to re-wire your house, which would take a long time. In the meantime, you wouldn’t have any working electricity. Is there a better way? What if there was an adapter that could transition LED to work with old wiring if necessary, or if the wiring was new, just work as usual? That’s a metaphor for how I figured out how to gradually upgrade a legacy (LAMP) code base to be compliant with PHP 7.0. Since PHP deprecated the MySQL extension functions as of PHP 5.5.0 and removed in 7.0, we needed to transition a LOT of code in a legacy system to use the modern MySQLi extension functions. In trying to figure out how to upgrade the code base without ceasing new development on the system, we decided to use an adapter database class to allow us to transition gradually. In this session, we’ll explain how the adapter class works and also the rules we put in place to ensure there was an end to the transition tunnel.
Saved
on: 2021-04-24
Deploy Your PHP App with Docker - Nomad PHP
Presented by Asmir MustaficThis talk explains how to develop and deploy to production your application built with Docker.The presentation starts from the development environment and passing by Continuous Integration arrives to Production.It shows an workflow that allows to compose many tools and best practices to obtain fast development and no downtimes.
Saved
on: 2021-03-29
Lean and Mean Dev with PhpStorm (for Symfony) Video Tutorial Screencast | S
Have you ever written out a long use statement by hand or navigated deep directories to find a file? Then your development is about to get a lot faster. PhpStorm makes modern Php development a joy - especially for Symfony users
Saved
on: 2021-01-28
Clean Application Development - Nomad PHP
Presented by Adam Culp @adamculp
Presented on October 24,2013
No matter what level of development we are at in our careers we all face a daily battle to write good code for ourselves and others, deliver finished applications fast to satisfy business, and ensure everything is properly tested to prevent end-user fails. In this talk Adam Culp will discuss what “clean application development” is, and how it can help us win those battles. The talk will provide practical and usable examples to, integrate into your workflow, and continue to grow into good habits.
Saved
on: 2021-01-19
https://laconicml.com/computer-science-curriculum-youtube-videos/
Saved
on: 2021-01-12
Live Coding 12-Factor App
Emily Jiang performs live coding of building 12-factor microservices using MicroProfile programming mode and gets them running Open Liberty and Quarkus.
Saved
on: 2020-12-20
CloudConf 2020 Live Streaming
Registrazioni degli interventi live di novembre 2020...
Saved
on: 2020-11-27
Union types - What's new in PHP 8
A union type accepts values of multiple different types, rather than a single one. Learn how they work in PHP 8.
Saved
on: 2020-10-29
Unconventional Autoloaders (Talk) - Liam Hammett
Theres really a lot of great stuff in here...
Saved
on: 2020-10-28
Atlas: A Data Mapper For Your Persistence Model - Nomad PHP
Speaker: Paul M. JonesAtlas lets you build an OO model of your SQL tables and relationships. You can use it at the start of your project for basic CRUD operations. As you begin to need simple behaviors in your application, you can add them to the Record and RecordSet persistence model objects. Finally, when the time comes to transition to a rich domain model, you can map the Atlas persistence model objects to your domain Entities and Aggregates.
Saved
on: 2020-10-27
Transparent Session Management with Sessionz - Nomad PHP
Sessionz is a new PHP library that adds a custom session manager to your application. On top of this custom manager, you can mix any number of specific handlers into a stack to deal with your data:- Write sessions out to the default, filesystem-based session store.- Cache session data in-memory for faster reads (and faster performance).- Encrypt stored data so it’s protected at rest. Synchronize data to an external storage system so multiple application servers can reference it.In this lightning talk I’ll cover both what Sessionz is (how it handles sessions transparently within your application), how it works (the SplStack implementation of callback handlers), and how you can extend it with your own custom handlers.
Saved
on: 2020-10-26
(5) C Course (The Basics) - YouTube
Learn C++ by building a crossword construction program from scratch. Free and fun! 12 hours of video instruction plus exercises. See www.codingforcrosswords.com
Saved
on: 2020-10-23
Domain-Driven Design with Relational Databases Using Spring Data JDBC
Jens Schauder discusses how to design an object model the DDD way, why this might be a good idea, and how to build a persistence layer for it backed by Spring Data JDBC.
Saved
on: 2020-10-23
Writing Effective PHP - Forum PHP 2019 - Afup - Association française des u
PHP has evolved massively since its first days, and it's on the road to a full-featured language. However, at the same time, there is a lot of outdated information and libraries with poorly written code.
This talk is about writing PHP Code that is: **safe**, **robust**, and **maintainable**. We are going to cover a set of rules, that if you follow them; they will get you on the habit of **writing code well**.
Get ready for a 25 min **live-coding session**, where I go through practical examples. You will learn how to design classes, how to think about your API to prevent breaking changes, and discover concepts around designing and creating objects, when and how to use **immutability**, and much more.
Saved
on: 2020-10-06
Building PHP Daemons and Long Running Processes - Nomad PHP
Presented by Tim Lytle @tjlytle
Presented on June 18, 2015
There are things you don’t want to, or can’t do, inside a web request. It could be a task that needs to be retired if it fails, maybe one that takes a significantly long time to process, or multiple jobs that need to be processed over time. Whether you’re sending an email, processing a video, or consuming Twitter’s streaming API, you should be using a separate process, and probably a daemon. Learn how to stop abusing cron, and easily daemonize a PHP script that responds responsibly to process signals.
Saved
on: 2020-10-01
Scaling PHP Applications With Redis - Nomad PHP
Presented by Josh Butts @jimbojsb
Presented on July 23, 2015
Redis is a hybrid NoSQL database that’s sits in the sweet spot between document databases like MongoDB and key-value stores like memcache. Learn the basics of Redis data structures, common commands, and how to connect to Redis from PHP. We’ll finish with some cookbook-style examples of how you can add Redis to your existing application with minimal effort and get some nice performance gains.
Saved
on: 2020-10-01
Are you a good Code Scout? - Nomad PHP
Speaker: Matt CockayneScouts are taught to be adventurous, considerate, thoughtful, effective, diligent, ingenious, thorough, earnest and effective! All of these qualities are ones that we should be striving for as a Developer.I will prove that being a Good Scout and being a Great developer are are the same thing. I’ll take you through the actions and attitudes taught to millions of kids aged 7-18 and how you can apply those practices to what you do in your code.
Saved
on: 2020-09-30
Components, Patterns and Sh*t It’s Hard to Deal With
Marco Cedaro identifies some ideas they tried and discusses the way they approached componentization.
Saved
on: 2020-09-14
Dev & Gear
Discover and get inspired, explore through hundreds of tech products updated daily.
Saved
on: 2020-09-04
(7) Full Stack Europe 2019 - YouTube
Share your videos with friends, family, and the world
Saved
on: 2020-06-09
Part 1 - How to use TDD to build a REST API in Laravel 6 - YouTube
Hello. I’m Reval Govender, and this is “How to use TDD to build a REST API in Laravel”.In this course we are going to build a RESTful API using the popular L...
Saved
on: 2020-04-08
“Designing Intrinsic Layouts” by Jen Simmons—An Event Apart video
Saved
on: 2020-03-12
Personal Kanban: Optimizing the Individual Coder - Jim Benson
There are myriad ways to optimize teams, but all too often we ignore the individual. When the individual is overlooked, the software production engine can be severely…
Saved
on: 2020-02-21
Vue Screencasts - Learn VueJS through video tutorials
VueJS Screencasts for intermediate and advanced developers
Saved
on: 2020-02-01
My ffmpeg Cookbook | LornaJane
I have been doing more screencasting lately, so I thought I'd share some recipes here, for my own future use and in case anyone else wants to use them. I capture my videos using Kazam on Ubuntu, usually by resizing my second monitor to 800x600 and then capturing that. Kinda eye-bleeding to record
Saved
on: 2019-11-20
Object Oriented PHP for beginners
Object oriented PHP tutorials. This playlist covers Object-Oriented PHP in details. Starting with very basics: Creating classes and objects. ending with much...
Saved
on: 2019-10-17
(36) ServerlessDays Milano 2019 - YouTube
Share your videos with friends, family, and the world
Saved
on: 2019-09-18
TDD and the Terminator - An introduction to Test Driven Development - Webin
The recording of our August 20 webinar, TDD and the Terminator - An introduction to Test Driven Development, with Layla Porter, is now available. Subscribe to our community newsletter to receive notif
Saved
on: 2019-09-06
Let's Launch a Website, Right Friggin' Now!
Lemon shows a methodology for building websites with Vue, Pug and Sass.
Saved
on: 2019-02-12
Mike Monteiro | F*ck You, Pay Me | CreativeMornings/SF
The most popular CreativeMornings talk of all time, Mike Monteiro gives us some valuable advice on how to get paid for the work that you do.
Saved
on: 2019-02-09
SOLID JavaScript
Jonathan Mills shows how to apply all five of the SOLID principles to front-end JavaScript applications.
Saved
on: 2019-01-14
Hacking how we see
We mostly see with the mind, and the mind is flexible. For the four hundred million people with amblyopia (lazy eye), their brain encount...
Saved
on: 2018-12-30
Video Recordings from HashiConf 2018: Keynotes and Breakout Sessions
The strength of HashiConf has always been its community and its speakers, and this year's lineup did not disappoint. Today, we're excited to finally share all of our keynote and breakout session video recordings with you.
Saved
on: 2018-11-21
TechYaks
Over 80K
software development tech talks ranked algorithmically to surface the
industry's best presentations from the past, present and future.
Saved
on: 2018-09-14
Serverless Architectural Patterns and Best Practices
Sascha Möllering describes reusable serverless patterns, including operational and security best practices, discussing potential pitfalls, and what it takes to move to a serverless architecture.
Saved
on: 2018-09-07
Vue conference and meetup videos from 2018 (Q1 digest) - MeetupFeed
Saved
on: 2018-09-05
From Helpers to Middleware [eng] / Marco Pivetta
PHP fwdays'18 conference took place on June 10 in Kyiv.Facebook: https://www.facebook.com/fwdaysTwitter: https://twitter.com/fwdaysTelegram: https://t.me/php...
Saved
on: 2018-07-23
https://nitayneeman.com/posts/all-talks-from-ng-conf-2018/?utm_campaign=NG-Newsletter&utm_medium=email&utm_source=NG-Newsletter_250#just-another-marble-monday
Saved
on: 2018-05-02
(23) Malte Ubl - Designing very large JavaScript applications - YouTube
Over the last years a modular approach to programming in JS gained a huge following and with the advent of virtual DOM building isomorphic JavaScript applica...
Saved
on: 2018-04-16
Hexagonal Architecture
I recently gave a talk on Hexagonal Architecture at Laracon NYC. The feedback was great, but seemed to have left people wanting for some extra explanation and of course examples. This is an attempt to expand on the ideas of that presentation.
Saved
on: 2018-03-29
(8) Improving page performance with Chrome DevTools - YouTube
Modern DevTools Lesson 13 https://moderndevtools.com/lessons/13
Saved
on: 2018-03-22
(7) 7 Secret Patterns Vue Consultants Don’t Want You to Know - Chris Fritz
There’s an astounding amount of power packed away in Vue, despite its small size. The official guide provides a gentle learning path and the API is thorough,...
Saved
on: 2018-03-21
(4) Salvatore Sanfilippo - YouTube - YouTube
Programming, AI, algorithms & other stuff :)
The channel is bilingual, Italian and English. The hands-on programming videos are all in English.
The other videos (without an open terminal) may be mostly in Italian certain in English.
Subtitles are always cleaned so enable it for better understanding or translation!
Saved
on: 2018-03-15
Laracon Online 2018 | The official worldwide Laravel online conference
Saved
on: 2018-02-12
An Event Apart News: Resilience: Building a Robust Web That Lasts by Jeremy
Saved
on: 2018-02-07
Web Typography & Layout: Past, Present, and Future · An A List Apart Events
Can typography encourage long-form reading—not just scanning? What are the most exciting areas of cutting-edge experimentation in typographic technology and digital layout, and what new skills will…
Saved
on: 2017-12-11
Building React Applications with Idiomatic Redux from @dan_abramov on @eggh
This course will pick up where we left off with the Redux Fundamentals course. If you haven't watched that yet, you are highly encouraged to do so!
You ...
Tags:
#video
Saved
on: 2017-11-18
Envisioning Chemistry, beautifully stunning videos of chemical reactions an
As a follow-up to Beautiful Chemistry, the Beauty of Science and the Chinese Chemical Society have teamed up to showcase the
Tags:
#video
Saved
on: 2017-11-15
http://meetupfeed.com/recorded-vuejs-talks-last-three-months-vuejs-talks-digest-q3-2017/
Saved
on: 2017-11-04
Angular Day 2017 on Vimeo
Join the web’s most supportive community of creators and get high-quality tools for hosting, sharing, and streaming videos in gorgeous HD with no ads.
Saved
on: 2017-10-31
How to become a memory master | Idriz Zogaj | TEDxGoteborg - YouTube
Never miss a talk! SUBSCRIBE to the TEDx channel: http://bit.ly/1FAg8hBIdriz is passionate about teaching others how to improve their memories and believes t...
Saved
on: 2017-10-23
Joshua Foer: Feats of memory anyone can do | TED Talk
There are people who can quickly memorize lists of thousands of numbers, the order of all the cards in a deck (or ten!), and much more. Science writer Joshua Foer describes the technique -- called the memory palace -- and shows off its most remarkable feature: anyone can learn how to use it, including him.
Saved
on: 2017-10-23
Demand Thinking - New perspectives for designers and product managers from
Ryan Singer and Chris Spiek on software product design, product management, understanding demand, UX, and building the right thing.
Tags:
#video
Saved
on: 2017-08-30
Beginning Firebase - Part 1: Introduction | Ray Wenderlich
Saved
on: 2017-08-28
Animation Time on Vimeo
A selection of the latest and greatest animations and motion graphics projects from our wonderful community.
Tags:
#video
Saved
on: 2017-07-28
Universal JS Day 2017 on Vimeo
Join the web’s most supportive community of creators and get high-quality tools for hosting, sharing, and streaming videos in gorgeous HD with no ads.
Tags:
#video
Saved
on: 2017-07-04
(2) SOLIDay 2015 - Mathias Verraes - Identity #4 - YouTube
Mathias Verraes - Identity SOLIDay 2015 - Conference about software architecture, best programming practices and design patterns.http://soliday.phpsrbija.rs/...
Saved
on: 2017-04-28
Field of Vision - The Moderators
In an office in India, a cadre of Internet moderators ensures that social media sites are not taken over by bots, scammers, and pornographers. The Moderators shows…
Tags:
#video
Saved
on: 2017-04-18
PHP UK Conference 2017 - YouTube
Share your videos with friends, family, and the world
Saved
on: 2017-04-04
The tech of PIXAR part 1: Piper – daring to be different | fxguide
In the run up to the Oscar Short film nominations, we invited guest writer Leif Pedersen to deep dive into the tech of Pixar's Piper.
Tags:
#video
Saved
on: 2017-01-18
Android Design for Developers - Udacity
Learn online and advance your career with courses in programming, data science, artificial intelligence, digital marketing, and more. Gain in-demand technical skills. Join today!
Saved
on: 2015-09-01
Dan Ariely: What makes us feel good about our work? | TED Talk | TED.com
What motivates us to work? Contrary to conventional wisdom, it isn't just money. But it's not exactly joy either. It seems that most of us thrive by making constant progress and feeling a sense of purpose. Behavioral economist Dan Ariely presents two eye-opening experiments that reveal our unexpected and nuanced attitudes toward meaning in our work.
Tags:
#video
Saved
on: 2015-07-14
Dan Abramov - Live React: Hot Reloading with Time Travel at react-europe 20
React’s unique strength is bringing to JavaScript development some of the benefits previously exclusive to more radically functional languages such as Elm an...
Saved
on: 2015-07-05
How the Economic Machine Works [Animation] by Ray Dalio
In this animation, Ray Dalio explains How The Economic Machine Works. He covers important points such as credit, interest rates, leveraging and deleveraging.
Tags:
#video
Saved
on: 2015-05-22
Using Go at The New York Times - YouTube
JP Robinson, senior software engineer at The New York Times, walks through how this team has come to adopt Go for almost all back end development over the la...
Saved
on: 2015-05-12
phptodayorg/php-must-watch
list of interesting conference talks and videos on PHP - - GitHub - phptodayorg/php-must-watch: list of interesting conference talks and videos on PHP -
Saved
on: 2015-03-02
Watch programming videos or broadcast your coder skills with the world | Co
Domain name CodersTV.com is a dynamic and captivating choice for any tech-related startup looking to showcase their coding skills and innovation. The name itself evokes a sense of community, creativity, and cutting-edge technology. With onl
Saved
on: 2015-02-19