Skip to content
View yazanmonshed's full-sized avatar
:octocat:
:octocat:

Organizations

@skyqubit
Block or Report

Block or report yazanmonshed

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

Pinned Loading

  1. backup_dbs.sh backup_dbs.sh
    1
    #!/bin/bash
    2
    
    
    3
    #Date Dump Database
    4
    
    
    5
    #DBDATE=$(date "+%b-%d-%Y-%H-%M-%S") 
  2. Display top processes in system Display top processes in system
    1
    #!/bin/bash
    2
    
    
    3
    # Display the top 10 processes by memory usage
    4
    ps aux --sort=-%mem | head -n 11
  3. Remove Docker Containers Logs Remove Docker Containers Logs
    1
    #!/bin/bash
    2
    
    
    3
    # dir logs files
    4
    PATHLOGS=/var/lib/docker/containers/
    5
    
    
  4. monitor_resources.sh monitor_resources.sh
    1
    #!/bin/bash
    2
    
    
    3
    while true; do
    4
     clear
    5
     echo "System Resource Monitoring"
  5. todolistapp todolistapp Public

    the powerful todo CLI app build using golang By @yazanmonshed

    Go