Skip to content
View redsfyre's full-sized avatar
:shipit:
There is nothing here -> /dev/null
:shipit:
There is nothing here -> /dev/null

Highlights

  • Pro

Organizations

@linuxmintturkey
Block or Report

Block or report redsfyre

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

Welcome to my f*cking world 🖕

#!/usr/bin/python

class DevOpsEngineer:

    def __init__(self):
        self.name = "Yasin Isa Yildirim"
        self.role = "DevOps Engineer"
        self.language_spoken = ["tr_TR", "en_US"]
        self.email = "[email protected]"

    def say_hi(self):
        print("Introduce yourself or I won't speak")

me = DevOpsEngineer()
me.say_hi()
Yasin Isa Yildirim's Dev Card spotify-github-profile

------------------ Test ---------------------

🌐Socials

Instagram LinkedIn Reddit Stack Overflow Twitter

💻Tech Stack

Apache Groovy Python Markdown Ruby Perl Shell Script Azure DigitalOcean Datadog Oracle Google Cloud Heroku NodeJS Jenkins Nginx Apache ApacheCassandra MongoDB Redis Postgres Kubernetes ElasticSearch Docker Krita Gimp Gnu Image Manipulation Program

📊GitHub Stats :



✍️Random Dev Quote

💰You can help me by Donating

BuyMeACoffee Ko-Fi

Pinned

  1. Script that stops (suspends) all run... Script that stops (suspends) all running kubernetes cronjobs
    1
    #!/bin/bash
    2
    
    
    3
    for ns in $(kubectl get ns -o jsonpath="{.items[*].metadata.name}"); do
    4
      for cj in $(kubectl get cronjobs -n "$ns" -o name); do
    5
        kubectl patch "$cj" -n "$ns" -p '{"spec" : {"suspend" : true }}';
  2. fluentd-kubernetes-daemonset fluentd-kubernetes-daemonset Public

    Forked from fluent/fluentd-kubernetes-daemonset

    This repo has been forked to produce images with the necessary plugins for personal use. For now, my work is on v1.12 versions. I am not a maintainer or contributor. Please do not contact me for an…

    Ruby 1

  3. acibiber acibiber Public

    An ordinary Telegram bot

    JavaScript 2

  4. gentoo_install gentoo_install Public

    Forked from sergibarroso/gentoo_install

    Systemd, luks, uefi ve daha fazlasını içeren Gentoo kurulum rehberi. İleride Türkçeleştirmek adına forklanmıştır, katkıda bulunmaktan çekinmeyin

    1

  5. An extended yaml parser for bash scr... An extended yaml parser for bash scripts. Copied from https://stackoverflow.com/a/21189044/13756006 and https://stackoverflow.com/a/51789677/13756006 and https://github.com/mrbaseman/parse_yaml Note: This gist was created so that I can easily access these scripts when needed.
    1
    #!/bin/sh
    2
    function parse_yaml {
    3
       local prefix=$2
    4
       local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
    5
       sed -ne "s|^\($s\):|\1|" \
  6. openrc-zram openrc-zram Public

    Openrc sistemlerde zram yapılandırmalarına ait birkaç Türkçe rehber

    Shell 1