├── .gitignore
├── .github
└── workflows
│ ├── blog-post-workflow.yml
│ └── youtube-workflow.yml
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/blog-post-workflow.yml:
--------------------------------------------------------------------------------
1 | name: Latest blog post workflow
2 | on:
3 | schedule:
4 | # Runs every hour
5 | - cron: '0 * * * *'
6 | workflow_dispatch:
7 |
8 | jobs:
9 | update-readme-with-blog:
10 | name: Update this repo's README with latest blog posts
11 | runs-on: ubuntu-latest
12 | steps:
13 | - uses: actions/checkout@v2
14 | - uses: gautamkrishnar/blog-post-workflow@master
15 | with:
16 | feed_list: "https://dev.to/feed/codestackr"
--------------------------------------------------------------------------------
/.github/workflows/youtube-workflow.yml:
--------------------------------------------------------------------------------
1 | name: Latest YouTube Videos
2 | on:
3 | schedule:
4 | # Runs every hour
5 | - cron: '0 * * * *'
6 | workflow_dispatch:
7 |
8 | jobs:
9 | update-readme-with-youtube:
10 | name: Update this repo's README with latest videos from YouTube
11 | runs-on: ubuntu-latest
12 | steps:
13 | - uses: actions/checkout@v2
14 | - uses: gautamkrishnar/blog-post-workflow@master
15 | with:
16 | comment_tag_name: "YOUTUBE"
17 | feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCDCHcqyeQgJ-jVSd6VJkbCw"
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### Hi there, I'm Jesse - aka [codeSTACKr][website] 👋
2 |
3 | ## I'm a Husband, Father, Developer, and Teacher!
4 | - 🔭 I’m currently working on a [VS Code Course][website]!
5 | - 🌱 I’m currently learning everything 🤣
6 | - 👯 I’m looking to collaborate with other content creators
7 | - 🥅 2020 Goals: Contribute more to Open Source projects
8 | - ⚡ Fun fact: I love to draw and play guitar / drums
9 |
10 | ### Connect with me:
11 |
12 | [
][website]
13 | [
][youtube]
14 | [
][twitter]
15 | [
][linkedin]
16 | [
][instagram]
17 |
18 |
19 |
20 | ### Languages and Tools:
21 |
22 | [
][webdevplaylist]
23 | [
][webdevplaylist]
24 | [
][cssplaylist]
25 | [
][cssplaylist]
26 | [
][jsplaylist]
27 | [
][reactplaylist]
28 | [
][webdevplaylist]
29 | [
][webdevplaylist]
30 | [
][webdevplaylist]
31 | [
][webdevplaylist]
32 | [
][webdevplaylist]
33 | [
][webdevplaylist]
34 | [
][webdevplaylist]
35 | [
][webdevplaylist]
36 | [
][webdevplaylist]
37 | [
][webdevplaylist]
38 |
39 |
40 |
41 |
42 | ---
43 |
44 | ### 📺 Latest YouTube Videos
45 |
46 | - [Building BATTLESHIPS Multiplayer Game with Node.js, Express, Socket.io, Heroku | (2/3)](https://www.youtube.com/watch?v=TpAwggQJPUQ)
47 | - [GSAP Typing Animation | Tween & Timeline Basics (2020)](https://www.youtube.com/watch?v=ZT66N5hBiCE)
48 | - [Next Level GitHub Profile README (NEW) | How To Create An Amazing Profile ReadMe With GitHub Actions](https://www.youtube.com/watch?v=ECuqb5Tv9qI)
49 | - [There's more to CONSOLE than .log( ) | Things you didn't know console could do!!](https://www.youtube.com/watch?v=_-bHhEGcDiQ)
50 | - [Simple React.js User Login Authentication | Auth0](https://www.youtube.com/watch?v=MqczHS3Z2bc)
51 |
52 |
53 | ---
54 |
55 | ### 📕 Latest Blog Posts
56 |
57 | - [Microinteractions: Password Validation Animation](https://dev.to/codestackr/microinteractions-password-validation-animation-5629)
58 | - [Notion + YouTube - A Powerful Combination for Productivity](https://dev.to/codestackr/notion-youtube-a-powerful-combination-for-productivity-1def)
59 | - [Regular Expressions (RegEx) Crash Course](https://dev.to/codestackr/regular-expressions-regex-crash-course-248n)
60 | - [Emmet Part 2 - Advanced](https://dev.to/codestackr/emmet-part-2-advanced-4c65)
61 | - [Deno 1.0 Released! (Easy) REST API Example](https://dev.to/codestackr/deno-1-0-released-easy-rest-api-example-2fbl)
62 |
63 |
64 | ---
65 |
66 |
67 |
68 | [website]: https://codeSTACKr.com
69 | [twitter]: https://twitter.com/codeSTACKr
70 | [youtube]: https://youtube.com/codeSTACKr
71 | [instagram]: https://instagram.com/codeSTACKr
72 | [linkedin]: https://linkedin.com/in/codeSTACKr
73 | [webdevplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrAJ0WbEsFA9W3I1W-g_BTsbt
74 | [jsplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrALRJKu7wfXby3MKeflhTu6B
75 | [cssplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrALSdvZuEh6gqQdmDoDIoqz4
76 | [reactplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrAK4TdffpxKY3QGyHCpxFcQ0
77 |
--------------------------------------------------------------------------------