Skip to content
View turkeryildirim's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report turkeryildirim

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

  1. google docs file downloader google docs file downloader
    1
    #!/bin/bash
    2
    
                  
    3
    # Get files from Google Drive
    4
    
                  
    5
    # $1 = file ID
  2. browser cache browser cache
    1
    # BEGIN Browser Cache
    2
    <IfModule mod_headers.c>
    3
      Header append Vary User-Agent env=!dont-vary
    4
    
                  
    5
      <FilesMatch "\.(gif|jpg|jpeg|png|swf|svg|txt|xml|js|css)$">
  3. permission-fix.sh permission-fix.sh
    1
    #!/bin/bash
    2
    
                  
    3
    for i in $(ls -d /home/*); do
    4
      user=${i/\/home\/}
    5
    
                  
  4. MySQL - Backup each database into a... MySQL - Backup each database into a different file
    1
    #!/bin/bash
    2
    
                  
    3
    USER="myuser"
    4
    PASSWORD="mypassword"
    5
    OUTPUT="/etc/mysql/backup"
  5. bitbucket-webhook bitbucket-webhook Public

    PHP file to handle incoming requests from BitBucket

    PHP