Awesome List Updates on Jun 13 - Jun 19, 2016

33 awesome lists updated this week.

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

1. Awesome Steam

Tutorials / Misc

2. Awesome Flexbox

Sketching with CSS Flexbox Guide by @sfioritto / Read Materials

Sketching with CSS Flexbox Guide by @sfioritto / Video Materials

Who to Follow / Slides and Notes

3. Awesome Beacon

Beacon Advertiser Apps

4. Awesome Draft Js

Community

Standalone Editors Built on Draft.js

Plugins and Decorators Built for Draft.js

Common Utilities

Blog Posts & Articles

5. Awesome Composer

Tutorials / IRC

6. Colorful

Tools / Libraries

Tools / Web App

Articles / Web App

7. Awesome Tensorflow

Videos

8. Awesome D3

Charts

9. Awesome Wicket

Generic Info

IDE Plugins and Tools / WicketStuff

10. Awesome Mqtt

Operating System / Firmwares for ESP based Devices

11. Awesome Audio Visualization

Experiments

Experiments on Codepen

12. Awesome Broadcasting

Subtitling

13. Bots

Platform Documentation

Tools For Building Bots

General

Facebook Messenger

Slack

Telegram

Bot Stores / Go

Tutorials / Go

Communities / Go

14. Awesome Rails Gem

Scheduled/Recurrence Jobs / Omniauth

15. Awesome Competitive Programming

Sites for Practice / Contest Calendars

16. Awesome Crystal

Algorithms and Data structures

Third-party APIs

Official Documentation Translations

17. Awesome Swift

Network / Barcode

Blur / Barcode

18. Awesome Electron

Open Source / Other

Closed Source / Other

For Electron / Other

Components / Other

Articles / Other

19. Awesome Nodejs

Packages / Filesystem

Packages / Automation

Resources / Discovery

20. Awesome Tap

Reporters / JavaScript

21. Awesome Courses

Courses / Systems

22. Awesome R

Graphic Displays

Data Packages

23. Awesome Jvm

Memory and concurrency

24. Awesome Aws

Open Source Repos / Elastic MapReduce

Open Source Repos / Lambda

Open Source Repos / S3

Open Source Repos / Miscellaneous Repos

25. Awesome Serverless

Blogs

26. Frontend Dev Bookmarks

Compatibility

Languages, Protocols, Browser APIs

Workflow

27. Awesome Unicode

One-To-Many Case Mappings / Wait a second... what did I just read?

Recursive HTML Tag Renaming Script / Wait a second... what did I just read?

28. Awesome Deep Vision

Object Detection

Object Tracking

Low-Level Vision / Super-Resolution

Low-Level Vision / Other Applications

Edge Detection / Other Applications

Semantic Segmentation / Other Applications

Visual Attention and Saliency / Other Applications

Object Recognition / Other Applications

Understanding CNN / Other Applications

Image Generation / Question Answering

Other Topics / Question Answering

Courses / Question Answering

Books / Question Answering

Videos / Question Answering

Applications / Question Answering

29. Tips

Changes staged for commit

git diff --cached

Alternatives:

git diff --staged

Remove branches that have already been merged with master

git branch --merged master | grep -v '^\*' | xargs -n 1 git branch -d

Alternatives:

git branch --merged master | grep -v '^\*\|  master' | xargs -n 1 git branch -d # will not delete master if master is not checked out

Delete local tag

git tag -d <tag-name>

Delete remote tag

git push origin :refs/tags/<tag-name>

See commit history for just the current branch

git cherry -v master

Update all the submodules

git submodule foreach git pull

Alternatives:

git submodule update --init --recursive
git submodule update --remote

Add custom editors.

git config --global core.editor '$EDITOR'

Turn off git colored terminal output

git config --global color.ui false

Specific color settings

git config --global <specific command e.g branch, diff> <true, false or always>

Show all local branches ordered by recent commits

git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/

Find lines matching the pattern (regex or string) in tracked files

git grep --heading --line-number 'foo bar'

Clone a shallow copy of a repository

git clone https://github.com/user/repo.git --depth 1

Search Commit log across all branches for given text

git log --all --grep='<given-text>'

Get first commit in a branch (from master)

git log --oneline master..<branch-name> | tail -1

Alternatives:

git log --reverse master..<branch-name> | head -6

30. Engineering Blogs

Companies / B companies

Companies / G companies

Companies / S companies

31. Awesome Android

GUI

GUI / Images

GUI / Loading Images

More lists of libraries / Custom Dialog

32. Awesome AutoHotkey

GUI / Combobox

33. Awesome Streaming

Table of Contents / Readings