Awesome List Updates on Apr 04, 2017
8 awesome lists updated today.
🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor
1. Awesome Cpp
Game Engine
- Urho3D - A free lightweight, cross-platform 2D and 3D game engine implemented in C++. Greatly inspired by OGRE and Horde3D. [MIT]
2. Git Cheat Sheet
Update & Publish
Update & Publish
List all current configured remotes:
$ git remote -v
Show information about a remote:
$ git remote show <remote>
Add new remote repository, named <remote>:
$ git remote add <remote> <url>
Rename a remote repository, from <remote> to <new_remote>:
$ git remote rename <remote> <new_remote>
Remove a remote:
$ git remote rm <remote>
Note: git remote rm does not delete the remote repository from the server. It simply removes the remote and its references from your local repository.
Download all changes from <remote>, but don't integrate into HEAD:
$ git fetch <remote>
Download changes and directly merge/integrate into HEAD:
$ git remote pull <remote> <url>
Get all changes from HEAD to local repository:
$ git pull origin master
Get all changes from HEAD to local repository without a merge:
$ git pull --rebase <remote> <branch>
Publish local changes on a remote:
$ git push <remote> <branch>
Delete a branch on the remote:
$ git push <remote> :<branch> (since Git v1.5.0)
OR
$ git push <remote> --delete <branch> (since Git v1.7.0)
Publish your tags:
$ git push --tags
Configure the merge tool globally to meld (editor)
$ git config --global merge.tool meld
Use your configured merge tool to solve conflicts:
$ git mergetool
3. Awesome Elixir
Command Line Applications
- tabula (⭐92) - Pretty print list of Ecto query results / maps in ascii tables (GitHub Markdown/OrgMode).
Testing
- double (⭐47) - Create stub dependencies for testing without overwriting global modules.
Utilities
- mnemonix (⭐39) - A unified interface to key/value stores.
4. Awesome Aws
Open Source Repos / DynamoDB
- sebdah/dynamic-dynamodb 🔥🔥🔥 (⭐612) - Provides auto-scaling.
5. Awesome Neuroscience
Programming / Python
- Nitime (⭐212) - Timeseries analysis for neuroscience data.
- MNE-Python (⭐2.1k) - Community-driven software for processing time-resolved neural signals including electroencephalography (EEG) and magnetoencephalography (MEG).
- NiBabel (⭐511) - Provides read and write access to some common medical and neuroimaging file formats.
Resources / MOOCs
- Introduction to Neuroscience | MIT OCW - Introduction to the mammalian nervous system, with emphasis on the structure and function of the human brain.
Resources / Newsletters
- On The Brain - Harvard Mahoney Neuroscience Institute's quarterly e-newsletter.
6. Awesome Tensorflow
Models/Projects
- CNN visualization using Tensorflow (⭐777) - Tensorflow implementation of "Visualizing and Understanding Convolutional Networks"
7. Awesome Sdn
Books
8. Awesome Webaudio
Packages / Utilities
- Audion (⭐364) - Chrome extension that adds a Web Audio panel to Developer Tools.
- Prev: Apr 05, 2017
- Next: Apr 03, 2017