Awesome List Updates on Aug 03 - Aug 09, 2015

26 awesome lists updated this week.

🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor

1. Awesome Db

dot-net

2. Awesome Phalcon

Talks

3. Awesome Talks

Web Development

4. Awesome Flexbox

Guides

5. Awesome R

HTML Widgets

6. Awesome Postgres

Contents / CLI

7. Engineering Blogs

Companies / I companies

Companies / U companies

Individuals/Group Contributors / P individuals

8. Awesome Deep Learning

Researchers / Websites

Researchers / Frameworks

9. Awesome Shell

Shell Package Management / Directory Navigation

10. Awesome Polymer

Articles

11. Awesome Pascal

Single controls

Scripting

RAD Studio IDE plugins/wizards

12. Awesome Geek Podcasts

In French

13. Awesome Cpp

Math

Miscellaneous

14. Awesome Php

Configuration / PHP Conferences

15. Awesome Sketch

Videos / Tutorial-only

Videos / Process of designing dashboards, mobile apps

Guides / General screencasts

Articles / Tutorials

Community / Tutorials

16. Amas

Ask these people anything!

17. Awesome Mad Science

terminal

18. Tools

CSS

19. Awesome Elixir

Configuration

Testing

Text and Numbers

Third Party APIs

YAML

20. Awesome Typescript

Awesome TypeScript Essential Resources

Build Systems / Playground

Module Bundlers / Playground

Mobile / Playground

Web / Playground

21. Awesome Hadoop

NoSQL

SQL on Hadoop

Data Management

Workflow, Lifecycle and Governance

Realtime Data Processing

Machine learning and Big Data analytics

22. Awesome Dataviz

Android tools / Misc

R tools / Misc

Other tools / Misc

Twitter accounts / Misc

23. Awesome Answers

Functional Programming

Programming Languages / Haskell

Programming Languages / JavaScript

24. Awesome Android

Other / Custom Dialog

25. Tips

List of all files changed in a commit

git diff-tree --no-commit-id --name-only -r <commit-ish>

Unstaged changes since last commit

git diff

Show both staged and unstaged changes

git diff HEAD

Revert: Undo a commit by creating a new commit

git revert <commit-ish>

Reset: Discard commits, advised for private branch

git reset <commit-ish>

Reword the previous commit message

git commit -v --amend

See all commits made since forking from master

git log --no-merges --stat --reverse master..

Git Aliases

git config --global alias.<handle> <command> 
git config --global alias.st status

Show list of all saved stashes

git stash list

Apply any stash without deleting from the stashed list

git stash apply <stash@{n}>

Apply last stashed state and delete it from stashed list

git stash pop

Alternatives:

git stash apply stash@{0} && git stash drop stash@{0}

Delete all stored stashes

git stash clear

Alternatives:

git stash drop <stash@{n}>

Show all tracked files

git ls-files -t

Show all untracked files

git ls-files --others

Show all ignored files

git ls-files --others -i --exclude-standard

Create new working tree from a repository (git 2.5)

git worktree add -b <branch-name> <path> <start-point>

Create new working tree from HEAD state

git worktree add --detach <path> HEAD

26. Awesome Machine Learning

Java / General-Purpose Machine Learning

Scala / General-Purpose Machine Learning