ParseJob to Gitlab

Pushed first real program to Gitlab. It was my Parsejob Python rewrite to Go. Need to think of a better way to do this because obviously the config file within .git needed to point to gitlab instead of github. For this first test I moved the entire parsejob directory to a gitlab directory. This is not a good solution because the source should only bee in one place. I think basically I needed to…

#### removed github reference ###
git remote remove origin
#### add gitlab reference (notice the golang project addition) ###
git remote add origin git@gitlab.com:golang40/parsejob.git

Obviously the reverse would be needed to point github again

There maybe other changes that I as a novice am not aware of. The configs have other differences. To be safe it’s probable best to look at the config to make sure only github or gitlab is in it.