This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<NotepadPlus> | |
<UserLang name="Apache PIG" ext="pig" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="yes" allowFoldOfComments="yes" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00-- 01 02 03/* 04*/</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello, | |
This post will be very helpful for teaching assistants like me who is trying to make plagiarism detection for the | |
assignments they receive. | |
We shall use MOSS (https://theory.stanford.edu/~aiken/moss/), thanks to Professor Aiken. | |
I have developed a simple script that will prepare the data for MOSS. As MOSS will read only one level of directories, | |
and hence comes my script to move all the files to the student's parent folder. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyrights (c) 2014 - 2019 Ahmed Hamdy | |
To pull before push: | |
> git fetch | |
> git stash # NOTE: This will backup your local changes | |
> git pull # git pull origin master | |
> git stash apply # NOTE: This will restore your local changes | |
If the remote branch has many changes, or have been deleted and recreated: | |
> git pull --rebase |