Skip to content

Instantly share code, notes, and snippets.

View andy3520's full-sized avatar
🎯
Focusing

An Nguyen Hieu Duc andy3520

🎯
Focusing
  • Nab Vietnam
  • Ho Chi Minh
View GitHub Profile
@andy3520
andy3520 / gitflow-breakdown.md
Created June 1, 2020 13:15 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@andy3520
andy3520 / download_egghead_videos.md
Created June 26, 2019 09:08 — forked from ldong/download_egghead_videos.md
download egghead videos

Download videos from egghead

Go to the egghead website, i.e. Building a React.js App

run

$.each($('h4 a'), function(index, video){
  console.log(video.href);
});