Skip to content

Instantly share code, notes, and snippets.

View hamdyaea's full-sized avatar
💭
Python 3 code writing and linux coding - software-coders.ch

Hamdy Abou El Anein hamdyaea

💭
Python 3 code writing and linux coding - software-coders.ch
View GitHub Profile
@hamdyaea
hamdyaea / gist:93fae7b5b055e8157aaee3a6662aef0a
Created December 28, 2019 17:44 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@hamdyaea
hamdyaea / robocopy_exclude_existing_files.cmd
Last active July 3, 2018 08:21 — forked from aromig/robocopy_exclude_existing_files.cmd
Robocopy - Exclude Existing Files
:: Developer : Hamdy Abou El Anein
robocopy c:\Sourcepath c:\Destpath /E /S /XC /XN /XO
:: /E makes Robocopy recursively copy subdirectories, including empty ones.
:: /XC excludes existing files with the same timestamp, but different file sizes. Robocopy normally overwrites those.
:: /XN excludes existing files newer than the copy in the source directory. Robocopy normally overwrites those.
:: /XO excludes existing files older than the copy in the source directory. Robocopy normally overwrites those.
:: With the Changed, Older, and Newer classes excluded, Robocopy will exclude files existing in the destination directory.