Skip to content
View ViacheslavK's full-sized avatar
Block or Report

Block or report ViacheslavK

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
ViacheslavK/README.md

Slava, a full-time QA 🐜🐜🐜 from 2008 with "some" automation πŸš€ and cybersecurity πŸ•΅οΈ knowlege

  • πŸ”­ I’m currently tring to make better personal "Second Brain" collection
  • 🌱 I’m currently learning Spring Boot, Kubernetes and living in Poland πŸ˜€

My Skill Set

Most used technologies

Linux Python Git Bash C# Grafana GitLab AWS

Connect with me


Github Stats


## Recent Blog Posts If things goes well, this section should automatically be replaced by a list of your blog posts after you commit your readme file.



----
Thanks this Generator Profilinator for ideas how to change initial state

Pinned

  1. bash script for updating all reposi... bash script for updating all repositories, located in folder. Save as `your_name.sh` and add execution rights (`chmod +x your_name.sh`)
    1
    #!/bin/sh
    2
    
                  
    3
    for D in *; do
    4
        if [ -d "${D}" ]; then
    5
            cd "${D}"
  2. ViacheslavK ViacheslavK Public

  3. bash script for changing remote orig... bash script for changing remote origin URL if -r option set as 1 or 2
    1
    #!/bin/sh
    2
    
                  
    3
    sgit=git@gitlab.com:user/repo.git
    4
    ggit=git@github.com:user/repo.git
    5