Skip to content
View jd-apprentice's full-sized avatar
❀️
Enjoying life!
❀️
Enjoying life!

Organizations

@peronio-ar @Dyallab @Bondiola-PyteScript @Club-Devops-UNLP @Instituto-Web-ExperienciaIT
Block or Report

Block or report jd-apprentice

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jd-apprentice/README.md

Hello there, I'm Jonathan aka jd-apprentice πŸ‘‹

Readme

committers.top badge Views

TryHackMe Hack The Box

Badge

I'm a Tech guy, thinker and self-taught person

  • β›… SSR DevOps Analyst at Cloud Legion
  • πŸ“š In my free time i'm currently learning networking and security
  • πŸ“• 2024 Goals: Continue improving in infrastructure - Improve at networking - Improve at security - Engage in more sports activities - Move to a new place or buy a car - Publish at least 6 blogs - Read at least 6 books.
  • πŸ’Ό You can see my portfolio
  • πŸ“° My blog
  • πŸ“š What i'm reading? books
  • πŸ”Ž Random Facts: I like tech, photos, biking, gaming, anime

Invitame un cafΓ© en cafecito.app

πŸ… Stats

jd-apprentice's GitHub stats

πŸ† Badges

AWS re/Start Badge AWS Cloud Practitioner Badge

πŸ“š Guides and Templates

  • [Guide + Template] πŸ“š NodeJS Crud + Typescript with deploy in heroku Repo
  • [Guide + Template] πŸ“š Build .deb package Repo
  • [Guide + Template] πŸ“š App-Images Blog
  • [Template] πŸ“š React Boilterplate Repo
  • [Template] πŸ“š Cli-starter Repo
  • [Template] πŸ“š AWS EC2 Docker Repo
  • [Guide] πŸ“š Sample scripting with cronjobs Blog
  • [Guide] πŸ“š Build a Homelab with raspberry pi zero 2 w and cloudflare Blog
  • [Guide] πŸ“š Create a fileserver with nginx Blog
  • [Guide] πŸ“š Running a chinese arduino (ch340g) Guist
  • [Guide] πŸ“š Reusable playbooks in ansible Guist
  • [Guide] πŸ“š Dockerize a database and connect to it with DBeaver Guist
  • [Guide] πŸ“š Angular routing with modules Guist
  • [Guide] πŸ“š Handle environments angular (ES) Guist
  • [Guide] πŸ“š Create booteable USB on linux with Ventoy (ES) Guist

πŸ“Ί Youtube

What is git and github ❓

Youtube

πŸ“¦ Packages

🦧 Zig

🍎 Debian

🐍 Python

PyPI version

  • Instagram to discord PyPi

🟨 Javascript

npm version

  • Discord and slack gateway NPM

Pinned

  1. dbn-tools dbn-tools Public

    πŸ’» A collection of system tools to optimize and improve your computer's performance.

    Shell 21

  2. jd-server jd-server Public

    πŸ–₯️ Homelab

    Shell 2

  3. jd-infra jd-infra Public

    β™Ύ Personal infraestructure

    HCL 1

  4. jd-workflows jd-workflows Public

    πŸͺ Reusable workflows for my personal projects

  5. Install software in powershell Install software in powershell
    1
    ## Before installing the software, you need to change the execution policy
    2
    
                  
    3
    ```powershell
    4
    Set-ExecutionPolicy -Scope CurrentUser unrestricted
    5
    Set-ExecutionPolicy -Scope LocalMachine unrestricted
  6. Ansible reusable tasks in playbooks Ansible reusable tasks in playbooks
    1
    To run the playbook we should call the `docker.yml` with a valid inventory for example `ansible-playbook ansible/suite/docker.yml -i ansible/inventory/debian.ini`
    2
    
                  
    3
    This command will execute the desired playbook which is going to execute the tasks from `debian-update` `install` `docker-group`
    4
    
                  
    5
    ```