8I'm### Hi there π
- π±π»
This profile repository and its contents are licensed under the MIT License.
See the LICENSE file for details.
Hi, I'm Anthony Dudek welcome to my GitHub profile!
- π±π» MIT License
Copyright (c) 2025 Anthony Dudek
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Markdown
-
π±π» Part https://dl.circleci.com/status-badge/img/...
Description Loads the badge image (shows "passing" / "failed") -
π±π» Part https://dl.circleci.com/status-badge/redirect/...
Description makes the badge clickable, so users go to your CircleCI project page -
π±π»
Markdown
- π±π» I'm Currently learning DevOps & CI/CD (CircleCI, GitHub Action)
- π±π» Repo:https://github.com/anuraghazra/github-readme-stats
Markdown
- π±π» Markdown
- π±π» Markdown
-
π±π» Most used tools Python, YAML, Git
-
π±π» Currently working on automating builds for my projects
-
π±π» https://circleci.com/docs/sample-config/
Type Documentation Purpose Learn Circle CI Setup -
π±π» https://circleci.com/developer/orbs/
Type Technical Registry Purpose Find orbs/templates -
π±π» https://app.circleci.com/pipelines/github/vegasdude
Type Personal Dashboard Purpose Display live build status on GitHub -
π±π» GitHub Followers or Stars
Md
- π±π» Template 1
Markdown
π DevOps | π» Automation Enthusiast | π οΈ Open Source Explorer
- π Working on automating DevOps pipelines using CircleCI and GitHub Actions
- π± Currently learning DevSecOps and Cloud Infrastructure
- π§° Tools I use daily:
Python,YAML,Git, andDocker - π― Goal: Build secure, automated CI/CD systems for reliable deployments
| Area | Tools |
|---|---|
| Languages | Python, Bash, YAML |
| DevOps | GitHub Actions, CircleCI, Docker |
| Security | Dependabot, Renovate |
| Cloud | AWS (Learning) |
- πΌ LinkedIn
- π§ Email
- π₯οΈ GitHub Projects
β Continuous improvement through automation and innovation.
- π±π» https://github-readme-stats.vercel.app/api?username=anthony-dudek&show_icons=true&theme=tokyonight
- π Python | π§Ύ YAML | π§ Bash
- βοΈ GitHub Actions | CircleCI | Docker
- π‘οΈ DevSecOps | Dependabot | Renovate
β *βAutomate your workflow. Empower your code.β*https://readme-typing-svg.demolab.com?font=Fira+Code&pause=1000&color=00C2FF¢er=true&vCenter=true&width=435&lines=Automate+everything!;Build+secure+pipelines!;Code%2C+deploy%2C+repeathttps://github.com/anthony-dudek# π¨βπ» Anthony Dudek
Hi! I'm a developer focused on improving developer workflows, automation, and cloud reliability.
- π§° I use Python, YAML, and GitHub Actions for automation
- ποΈ Currently experimenting with Dockerized pipelines
- π Integrating DevSecOps practices for secure builds
- π§ Learning advanced CircleCI configs
- π§ circleci-projects-setup β pipeline setup examples
- π python-tools β small automation scripts
- π¦ .github-configs β configs for Dependabot & Renovate
ποΈ *βBuild. Automate. Secure. Repeat.β*https://github.com/anthony-dudek/circleci-projects-setuphttps://github.com/anthony-dudek/.githubhttps://streak-stats.demolab.com?user=anthony-dudek&theme=reacthttps://github-readme-stats.vercel.app/api?username=anthony-dudek&show_icons=true&theme=reacthttps://img.shields.io/badge/-GitHub-181717?style=flat-square&logo=githubhttps://komarev.com/ghpvc/?username=anthony-dudek&style=flat-square# π οΈ Anthony Dudek β Automate Everything!
Hi there π
Iβm a DevOps enthusiast who loves building pipelines, securing deployments, and simplifying workflows with code.
- π Building CI/CD setups using CircleCI & GitHub Actions
- π³ Containerizing apps with Docker
- π Exploring DevSecOps tools like Dependabot & Renovate
- π§ Always learning more about cloud automation
Python Β· YAML Β· Git Β· CircleCI Β· Docker Β· GitHub Actions
βIf you automate it once, you never have to fix it twice.βhttps://github.com/anthony-dudek?tab=repositoriesversion: 2.1
jobs: build: docker: - image: cimg/python:3.10 steps: - checkout - run: name: Install dependencies command: | python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - run: name: Run tests command: | if [ -d tests ]; then pytest; else echo "No tests directory found.";
- π±π»
Python
from github import Github
g = Github("your_personal_access_token") repo = g.get_repo("vegasdude/my-ai-agent") repo.create_issue(title="AI Agent Task", body="I just created this issue automatically!")
- π±π»
Python
from github import Github
g = Github("ghp_yourActualTokenHere")
repo = g.get_repo("vegasdude/your-repo") repo.create_issue(title="Bot-created issue", body="This issue was created by my AI agent!")
- π±π»
https://media.giphy.com/media/ptqAPKRnCgl3jKqWnE/giphy.gif
- π±π»
- π±π» Example README.md
This is a sample data science repository that includes data cleaning, analysis, and machine learning model development.
- data/ β Raw and processed datasets
- notebooks/ β Jupyter notebooks for exploration and modeling
- src/ β Python scripts for data processing and ML pipelines
- models/ β Trained models and checkpoints
# 1. Clone the repository
git clone https://github.com/vegasdude/data-science-project.git
cd data-science-project
# 2. Create a virtual environment
python -m venv venv
source venv/bin/activate # on Mac/Linux
venv\Scripts\activate # on Windows
# 3. Install dependencies
pip install -r requirements.txt
- π±π» Requirements
common libraries:
pandas
numpy
matplotlib
scikit-learn
jupyter
seaborn
- π±π» C++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!";
return 0;
}
- π±π» C#
using System;
class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}