Skip to content
View YasienDwieb's full-sized avatar

Block or report YasienDwieb

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. Bulk iso files maker useful for cour... Bulk iso files maker useful for courses archiving for easy transfer and quick view
    1
    #!/bin/bash
    2
    if [ -z $2 ]; then
    3
    	echo $0" <source-dir/> <dist-dir/>"
    4
    	exit
    5
    fi
  2. DogCatDetector DogCatDetector Public

    computer vision project that distinguishes between dogs and cats with both svm and knn

    Python 1 1

  3. Sync files with remote server while ... Sync files with remote server while excluding .git folder
    1
    #!/bin/bash
    2
    if [ $# -lt 2 ]
    3
    then
    4
            echo "Usage: $0 <src> <dst> [any-rsync-option]"
    5
            exit
  4. split audio files into equal pieces ... split audio files into equal pieces using ffmpeg
    1
    #!/bin/bash
    2
    if [ $# -eq 0 ] 
    3
    then
    4
    	echo 'Usage: audiosplitter.sh filename|directory segmenttime'
    5
    	exit
  5. Find largest files or directories Find largest files or directories
    1
    #!/bin/bash
    2
    if [ $# -eq 0 ] 
    3
    then
    4
    	echo 'Usage:largest.sh file|folder path NUMBEROFRECORDS'
    5
    	exit