IIssNan's Notes

Quick notes


  • 首页

  • 归档

  • 标签

  • 搜索

The challenge with SPA

发表于 2014-07-31 | | 阅读次数

There are many challenges with SPAs, including:

  • Routing
  • Object Modeling
  • Module Loading
  • View Loading
  • Data Binding
  • Ajax/Promises
  • History
  • Caching

From AngularJS Fundamentals in 60-ish Minutes

DockerCon 2014 Solomon Hykes

发表于 2014-07-30 | | 阅读次数

GitHub flow

发表于 2014-07-30 | | 阅读次数

GitHub Flow is a lightweight, branch-based work flow that supports teams and projects where deployments are made regularly.
This guide explains how and why GitHub Flow works.

Git Setup a tracking branch

发表于 2014-07-29 | | 阅读次数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Setup upstream repository
git remote add upstream path-to-upstream
# Fetch upstream's branches
git fetch upstream
# List all branches
git list --all
# Setup a tracking branch
git checkout -b foo --track upstream/foo
# Or omit the `-b` argument
git checkout --track upstream/foo

Related Question: How to clone all remote branches with Git?

Using SVG

发表于 2014-07-27 | | 阅读次数

SVG is an image format for vector graphics. It literally means Scalable Vector Graphics. Basically, what you work with in Adobe Illustrator. You can use SVG on the web pretty easily, but there is plenty you should know.

Article on CSS-Tricks.

1…141516…37
IIssNan

IIssNan

胡编一通,乱写一气

183 日志
6 分类
111 标签
RSS
GitHub Twitter 豆瓣 知乎
© 2011 - 2017 IIssNan
由 Hexo 强力驱动
主题 - NexT.Pisces
0%