others2022-01-13
www.youtube.com

In this video I'll be going over how I rebuilt my personal website - codewithkristian.com - for 2022. I'll cover the tools I use, how I wrote the code, and how I deployed it, without spending any money*. 00:00 Intro 00:43 What we're doing 01:50 Buying a new domain 03:50 Setting up a new codebase project 07:23 Coding timelapse 07:53 Viewing the finished product 08:45 Pushing the project to GitHub 11:44 Deploying the project to the web 16:28 Conclusion * Registering a custom domain (codewithkristian.com) costs money! View the source for this project: https://github.com/codewithkristian/landing-page Cloudflare Registrar - cheap (at-cost) domain registrar: https://www.cloudflare.com/learning/dns/what-is-cloudflare-registrar/ Remix - new React.js framework that I'm digging: https://remix.run Cloudflare Pages - deploy Jamstack applications easily with dope performance: https://pages.cloudflare.com WATCH MY FREE ONLINE COURSES: ā›… Introduction to Cloudflare Workers - https://egghead.io/courses/introduction-to-cloudflare-workers-5aa3 šŸš€ Build a Serverless API - https://egghead.io/courses/build-a-serverless-api-with-cloudflare-workers-d67ca551 šŸ’¾ Build Data-Driven Applications on the Edge - https://egghead.io/courses/build-data-driven-applications-on-the-edge-with-workers-and-workers-kv-4932f3ea MY FAVORITE GEAR: šŸŽ„ Camera - https://geni.us/PAvvcAI šŸŽ¤ Best Mic for Narration - https://geni.us/hT3zR8c MY FAVORITE SOFTWARE: šŸ“‘ My text editor of choice for code - https://code.visualstudio.com šŸŽµ Where I get my Music (amazing for YouTubers) - https://www.epidemicsound.com/referral/edhm1x FOLLOW KRISTIAN: šŸ’Œ Sign up to my weekly email newsletter - https://www.getrevue.co/profile/codewithkristian šŸŒ My website / blog - https://www.codewithkristian.com 🐦 Twitter - https://twitter.com/codewithkristian WHO AM I: I'm Kristian! I make YouTube videos, teach people how to code, and work as an engineering manager in tech. I make videos teaching developers the fundamentals that they need to succeed in their programming careers. I'm into music and live in Austin, Texas with my girlfriend and my dog. Thanks for watching! šŸ‘‹ šŸŒ My website / blog - https://www.codewithkristian.com GET IN TOUCH: I'd love to chat! Tweet at me, or send me a DM: @codewthkristian. I'd love to answer any questions you have while watching my videos, or if you have video suggestions, hit me up! PS: Some of the links in this description are affiliate links that I get a kickback from 😜

Published on www.youtube.com

others / www.youtube.com2022-01-11

How to Debug Remix loaders and actions in VS Code

This video shows how to configure VS Code to debug your Remix loaders and actions. NOTE: You can now use the `debugger` statement instead of the external `debug()` function. I tried this before, but it didn't work. Not sure why it works now. You still can't set a breakpoint inside a route module, but you can add `debugger` statement and it will break there. You can then step through your code. I will be re-recording this video with this new info. Get the launch configuration here: https://rmx.fyi/debug

others / www.youtube.com2021-12-24

Remix Run - Introduction to HTTP Caching

HTTP Caching is a web fundamental every web developer should eventually learn. The quickest way to a slow website is to not understand caching and ofc, the best way to make your website fast is to take advantage of it. In this video we'll explain the basics of HTTP caching, how web browsers respond to it, and how CDNs take advantage of it, by building a bare-bones Node.js server and then quickly see how to specify caching headers in a Remix App.