Diary: How to Get a Job From Scratch


Github notebook Sep 24, 2017

//1,Normal Use
    $ git clone ... // first time
    $ git pull //get the newest version
    $ git status // check status
    $ git add . //add all new files to git
    $ git commit -m "new commit"  // commit to git
    $ git push  //push to remote repo

//2, Pull-Request
    $ git branch  //list branches
    $ git branch newBranch //create branch named "newBranch"
    $ git checkout newBranch //enter newBranch
    $ add, commit, push // normal use
    $ git checkout master //go back to master
    $ git merge newBranch //create pull request

Bloomberg Interview Sep 13, 2017

After the CSRC Career Fair, I got an interview from Bloomberg on campus.

Read more ...

Career Fair Sep 11, 2017

Turn in resume.

Talk to the recruiter, introduce yourself, introduce your projects, express the passion, and ask them questions.

Apply online.

Get lots of souvenirs.

Read more ...


Back
Home
Top