├── .gitignore ├── .github └── workflows │ ├── update-readme.yml │ ├── blog-post-workflow.yml │ └── youtube-workflow.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: GitHub - Activity - Readme 2 | 3 | on: 4 | schedule: 5 | - cron: "0 * * * *" 6 | workflow_dispatch: 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: jamesgeorge007/github-activity-readme@master 15 | env: 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 17 | -------------------------------------------------------------------------------- /.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 | [![Website](https://img.shields.io/website?label=codeSTACKr.com&style=for-the-badge&url=https%3A%2F%2Fcodestackr.com)](https://codestackr.com) 4 | [![Twitter Follow](https://img.shields.io/twitter/follow/codeSTACKr?color=1DA1F2&logo=twitter&style=for-the-badge)](https://twitter.com/intent/follow?original_referer=https%3A%2F%2Fgithub.com%2FcodeSTACKr&screen_name=codeSTACKr) 5 | 6 | ## I'm a Husband, Father, Developer, and Teacher!! 7 | 8 | - 🔭 I just launched my first course: [Become A VS Code SuperHero!][course]! 9 | - 🌱 I’m currently learning everything 🤣 10 | - 👯 I’m looking to collaborate with other content creators 11 | - 🥅 2020 Goals: Contribute more to Open Source projects 12 | - ⚡ Fun fact: I love to draw and play guitar / drums 13 | 14 | ### Spotify Playing 🎧 15 | 16 | [codeSTACKr Spotify Playing](https://open.spotify.com/user/swyqyimdc12jajde4vpwd2x1b) 17 | 18 | ### Connect with me: 19 | 20 | [codeSTACKr.com][website] 21 | [codeSTACKr | YouTube][youtube] 22 | [codeSTACKr | Twitter][twitter] 23 | [codeSTACKr | LinkedIn][linkedin] 24 | [codeSTACKr | Instagram][instagram] 25 | 26 |
27 | 28 | ### Languages and Tools: 29 | 30 | [Visual Studio Code][webdevplaylist] 31 | [HTML5][webdevplaylist] 32 | [CSS3][cssplaylist] 33 | [Sass][cssplaylist] 34 | [JavaScript][jsplaylist] 35 | [React][reactplaylist] 36 | [Gatsby][webdevplaylist] 37 | [GraphQL][webdevplaylist] 38 | [Node.js][webdevplaylist] 39 | [Deno][webdevplaylist] 40 | [SQL][webdevplaylist] 41 | [MySQL][webdevplaylist] 42 | [MongoDB][webdevplaylist] 43 | [Git][webdevplaylist] 44 | [GitHub][webdevplaylist] 45 | [Terminal][webdevplaylist] 46 | 47 |
48 |
49 | 50 | --- 51 | 52 | ### 📺 Latest YouTube Videos 53 | 54 | 55 | - [The Secret Blog Writing Formula That Actually Works](https://www.youtube.com/watch?v=-7ztydZcSgY) 56 | - [How To Blog #short](https://www.youtube.com/watch?v=CGcv1wuwNG0) 57 | - [Keyword Research #short](https://www.youtube.com/watch?v=5X3NjLoqUgQ) 58 | - [Catchy Blog Titles #short](https://www.youtube.com/watch?v=gLwPcnaqSMc) 59 | - [Top VS Code Updates | v1.57 Released!! | Tips & Tricks 2021 (Visual Studio Code)](https://www.youtube.com/watch?v=R6AgcZ9oJ4k) 60 | 61 | 62 | ➡️ [more videos...](https://youtube.com/codestackr) 63 | 64 | --- 65 | 66 | ### 📕 Latest Blog Posts 67 | 68 | 69 | - [How To Pass Application Tracking Systems (ATS) & Get Interviews - Resume Tips for Software Developer](https://dev.to/codestackr/how-to-pass-application-tracking-systems-ats-get-interviews-resume-tips-for-software-developer-4bmo) 70 | - [Microinteractions: Password Validation Animation](https://dev.to/codestackr/microinteractions-password-validation-animation-5629) 71 | - [Notion + YouTube - A Powerful Combination for Productivity](https://dev.to/codestackr/notion-youtube-a-powerful-combination-for-productivity-1def) 72 | - [Regular Expressions (RegEx) Crash Course](https://dev.to/codestackr/regular-expressions-regex-crash-course-248n) 73 | - [Emmet Part 2 - Advanced](https://dev.to/codestackr/emmet-part-2-advanced-4c65) 74 | 75 | 76 | ➡️ [more blog posts...](https://codestackr.com) 77 | 78 | --- 79 | 80 |
81 | :zap: Recent GitHub Activity 82 | 83 | 84 | 1. 🗣 Commented on [#1](https://github.com/codeSTACKr/portfolio-sass/issues/1) in [codeSTACKr/portfolio-sass](https://github.com/codeSTACKr/portfolio-sass) 85 | 2. 🎉 Merged PR [#1](https://github.com/codeSTACKr/portfolio-sass/pull/1) in [codeSTACKr/portfolio-sass](https://github.com/codeSTACKr/portfolio-sass) 86 | 3. 🗣 Commented on [#10](https://github.com/codeSTACKr/codestackr-vscode-theme/issues/10) in [codeSTACKr/codestackr-vscode-theme](https://github.com/codeSTACKr/codestackr-vscode-theme) 87 | 4. 🗣 Commented on [#11](https://github.com/codeSTACKr/codestackr-vscode-theme/issues/11) in [codeSTACKr/codestackr-vscode-theme](https://github.com/codeSTACKr/codestackr-vscode-theme) 88 | 5. ❌ Closed PR [#1](https://github.com/codeSTACKr/spotify-now-playing/pull/1) in [codeSTACKr/spotify-now-playing](https://github.com/codeSTACKr/spotify-now-playing) 89 | 90 | 91 |
92 | 93 |
94 | :zap: GitHub Stats 95 | 96 | codeSTACKr's GitHub Stats 97 | 98 |
99 | 100 | [website]: https://codeSTACKr.com 101 | [course]: http://vsCodeHero.com 102 | [twitter]: https://twitter.com/codeSTACKr 103 | [youtube]: https://youtube.com/codeSTACKr 104 | [instagram]: https://instagram.com/codeSTACKr 105 | [linkedin]: https://linkedin.com/in/codeSTACKr 106 | [webdevplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrAJ0WbEsFA9W3I1W-g_BTsbt 107 | [jsplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrALRJKu7wfXby3MKeflhTu6B 108 | [cssplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrALSdvZuEh6gqQdmDoDIoqz4 109 | [reactplaylist]: https://www.youtube.com/playlist?list=PLkwxH9e_vrAK4TdffpxKY3QGyHCpxFcQ0 110 | --------------------------------------------------------------------------------