├── .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 | [codeSTACKr.com][website] 13 | [codeSTACKr | YouTube][youtube] 14 | [codeSTACKr | Twitter][twitter] 15 | [codeSTACKr | LinkedIn][linkedin] 16 | [codeSTACKr | Instagram][instagram] 17 | 18 |
19 | 20 | ### Languages and Tools: 21 | 22 | [Visual Studio Code][webdevplaylist] 23 | [HTML5][webdevplaylist] 24 | [CSS3][cssplaylist] 25 | [Sass][cssplaylist] 26 | [JavaScript][jsplaylist] 27 | [React][reactplaylist] 28 | [Gatsby][webdevplaylist] 29 | [GraphQL][webdevplaylist] 30 | [Node.js][webdevplaylist] 31 | [Deno][webdevplaylist] 32 | [SQL][webdevplaylist] 33 | [MySQL][webdevplaylist] 34 | [MongoDB][webdevplaylist] 35 | [Git][webdevplaylist] 36 | [GitHub][webdevplaylist] 37 | [HTML5][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 | codeSTACKr's Github Stats 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 | --------------------------------------------------------------------------------