Skip to content

Instantly share code, notes, and snippets.

View AbdullahMohammadKhan's full-sized avatar
🎯
Focusing

The Lone Ranger AbdullahMohammadKhan

🎯
Focusing
View GitHub Profile
@AbdullahMohammadKhan
AbdullahMohammadKhan / software_to_data_engineer.md
Created September 27, 2021 00:27 — forked from ltrainpr/software_to_data_engineer.md
From Software to Data Engineer

Data Engineer's Responsibilities (not all encompassing):

  • Building data platforms
  • Define data architecture and data modeling
  • Handle data in various formats
  • Create ETL or ELT pipelines as well as streaming data pipelines
  • Schedule and deploy pipelines
  • Build frameworks or code for data management activities
  • Make data accessible with right governance in place
  • Enable self service access to data
@AbdullahMohammadKhan
AbdullahMohammadKhan / Sync gh-pages + master branches
Created September 22, 2020 13:07 — forked from mandiwise/Sync gh-pages + master branches
Keep gh-pages up to date with a master branch
// Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/
$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes