Skip to content
View thereadonly's full-sized avatar
☸️
Focusing
☸️
Focusing

Organizations

@linuxvoyage

Block or report thereadonly

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

Hellooo! 👋

  • 👀 I’m a DevOps Generalist Herbivore 🥕️. Yes, that was quite a mouthful. I am #OpenToWork.
  • 🔭 I’m currently working on setting up my cloud lab.
  • 🚲 While I am not dev-ing,tinkering, op-ping, mentoring and juggling "X" things in "Y" minutes, I do outdoor sports.
  • 🌱 I’m currently learning Golang.
  • 👯 I’m looking to collaborate.
  • 💬 Ask me about running load tests and infra changes on production systems, card payments and productivity.
  • 📫 How to reach me: Create an issue in this repo? or Tag me in a gist? or Give me a call?
  • 😄 Pronouns: He/Him/They/Them/He/Him/It? - LOL
  • ✨ Also: Feel free to tag me in your gerrit/code/gist, iff you need a code review.
  • ⚡ Fun fact: Did you know that "Programmers prefer Dark mode"? Because, Light 🔦️ attracts bugs! 🪲️ ;)

Btw, Here is one of my fav memes which is also my ad: - Of course, I could use git-fu to achieve the same effect on my activity but then that wouldn't be as fun as sharing a meme.

v2fpkyekfjie1

Pinned Loading

  1. getBankDetailsFromIFSC getBankDetailsFromIFSC Public

    PyIFSC - Python WebAssembly App

    JavaScript

  2. linuxjourney linuxjourney Public

    Forked from itamarg365/linuxjourney

    server for LinuxJourney served at https://linuxvoyage.github.io/ due to issue - https://github.com/cindyq/linuxjourney/issues/213#issuecomment-1420893647

    HTML

  3. ecs-logs-collector ecs-logs-collector Public

    Forked from aws/amazon-ecs-logs-collector

    The script will be used to collect general os logs as well as Docker and ecs-agent logs, it also support to enable debug mode for docker and ecs-agent in Amazon Linux.

    Shell

  4. ShellCheck_Integration_Test ShellCheck_Integration_Test
    1
    theReadOnly at his haven in ~/fosHactoberFest/s2n (master●)
    2
    $ source .travis/s2n_setup_env.sh
    3
    
                  
    4
    theReadOnly at his haven in ~BASE_S2N_DIR (master●●)
    5
    $ .travis/s2n_install_test_dependencies.sh
  5. script_analysis_by_shellcheck script_analysis_by_shellcheck
    1
    sdk@randomHost:~/hacktorberfest/ecs-logs-collector$ shellcheck ecs-logs-collector.sh
    2
    
                  
    3
    In ecs-logs-collector.sh line 29:
    4
    curdir="$(dirname $0)"
    5
                      ^-- SC2086: Double quote to prevent globbing and word splitting.
  6. suggestions by ShellCheck after fixes suggestions by ShellCheck after fixes
    1
    $ shellcheck ecs-logs-collector.sh
    2
    
                  
    3
    In ecs-logs-collector.sh line 69:
    4
        param="$(echo "$arg" | awk -F '=' '{print $1}' | sed -e 's|--||')"
    5
                       ^-- SC2154: arg is referenced but not assigned.