From bf302f278b9fa3632d08fb1616195460591fd1d7 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Tue, 9 May 2023 21:51:12 -0400 Subject: feat: release more youtube posts --- ...04-19-writing-user-friendly-string-functions-practical-rust.php | 7 +++++++ ...pare-your-commits-for-publishing-practical-git-intermediate.php | 7 +++++++ ...2023-05-04-automate-with-local-hooks-practical-git-advanced.php | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 posts/2023-04-19-writing-user-friendly-string-functions-practical-rust.php create mode 100644 posts/2023-04-26-rebase-to-prepare-your-commits-for-publishing-practical-git-intermediate.php create mode 100644 posts/2023-05-04-automate-with-local-hooks-practical-git-advanced.php diff --git a/posts/2023-04-19-writing-user-friendly-string-functions-practical-rust.php b/posts/2023-04-19-writing-user-friendly-string-functions-practical-rust.php new file mode 100644 index 0000000..f7e5e04 --- /dev/null +++ b/posts/2023-04-19-writing-user-friendly-string-functions-practical-rust.php @@ -0,0 +1,7 @@ +

Writing user-friendly string functions: Practical Rust

+ +

+ Learn how to accept and return a variety of useful string types that are transparent to users of your functions. Additionally, save some memory allocations by using clone-on-write pointers. +

+ + diff --git a/posts/2023-04-26-rebase-to-prepare-your-commits-for-publishing-practical-git-intermediate.php b/posts/2023-04-26-rebase-to-prepare-your-commits-for-publishing-practical-git-intermediate.php new file mode 100644 index 0000000..816fa70 --- /dev/null +++ b/posts/2023-04-26-rebase-to-prepare-your-commits-for-publishing-practical-git-intermediate.php @@ -0,0 +1,7 @@ +

Rebase to prepare your commits for publishing Practical Git (intermediate)

+ +

+ git-rebase is a swiss army knife for managing multiple branches and commits. Here you'll see how to rebase onto another developer's branch, rebase onto a release branch (with reverted commits), and interactively squash commits before pushing them. +

+ + diff --git a/posts/2023-05-04-automate-with-local-hooks-practical-git-advanced.php b/posts/2023-05-04-automate-with-local-hooks-practical-git-advanced.php new file mode 100644 index 0000000..eb2a868 --- /dev/null +++ b/posts/2023-05-04-automate-with-local-hooks-practical-git-advanced.php @@ -0,0 +1,7 @@ +

Automate with local hooks Practical Git advanced

+ +

+ Learn how to use local git hooks to automate your workflow. We'll use my favorite three hooks to automate generating commit messages, run unit tests before committing, and clean up build artifacts after checking out new branches. +

+ +