Skip to content

Instantly share code, notes, and snippets.

@additiveinverse
additiveinverse / uiframeworks.md
Last active August 29, 2015 14:18
UI framework declaration of war

Declaring war on UI frameworks

Are we operating from the hall of justice?

  • css is a thing no one wants to think about too much (its not "development")
  • we haven't (or "can't") do markup/css properly.
  • we think repeatible patterns are cool.
  • tools != rules = a framework should allow us the greatest flexibility of implementation choices.
  • Projects are beautiful unique snowflakes. There is technical debt and intricate tribal knowledge for every project

Are we fighting Werewolves?

@danielestevez
danielestevez / gist:2044589
Last active September 14, 2024 10:40
GIT Commit to an existing Tag
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}