Awesome List Updates on Apr 03 - Apr 09, 2017

44 awesome lists updated this week.

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

1. Toolsforactivism

Open-source host-it-yourself:

2. Awesome Linux Containers

Security / Tools

Security / Links

3. Awesome Malware Analysis

Debugging and Reverse Engineering / Other Resources

4. Awesome Deep Learning

Researchers / Datasets

5. Awesome Hacking

Awesome Repositories

6. Awesome Mqtt

Lighting / Firmwares for ESP based Devices

7. Awesome Crypto Papers

Specific topics / Secret key cryptography

8. Awesome Dart

IDEs, Editors, and Plugins

9. Awesome Transit

GTFS Realtime Libraries & Demo Apps / Ruby

GTFS Realtime (and Other Real-time API) Archival Tools / Ruby

SIRI / Ruby

10. Awesome Job Boards

Remote / Aggregator

11. Awesome Hacking Locations

United States 🇺🇸 / California

Arbor Cafe

Huge, artsy space with ample power outlets, varied seating, and solid wifi.

Wifi Power Address Open Hours
4210 Telegraph Ave, Oakland, CA 94609 8AM - 7PM

Hudson Bay Cafe

Very sunny, cozy spot with tasty coffee and food. Right on the street corner for optimal people-watching.

Wifi Power Address Open Hours
5401 College Ave, Oakland, CA 94618 Weekdays: 6AM - 6PM, Weekends: 7AM - 6PM

12. Awesome Dropwizard

Open Source / Eclipse

13. Awesome Opensource Apps

Laravel

14. Awesome Macos Screensavers

Developer

MacOS Kernel Panic

Harmless screensaver that faithfully emulates the horrifying experience of a kernel panic.

Free

15. Awesome Postgres

Contents / Utilities

16. Tips

Checkout a commit prior to a day ago

git checkout master@{yesterday}

17. Awesome Courses

Courses / Machine Learning

18. Awesome Asyncio

Database Drivers

19. Awesome Sass

Libraries and Mixins / Miscellaneous

20. Awesome Ssh

Apps / SSH keys / Authentication

Apps / Tools

Apps / Web

21. Awesome Php

Table of Contents / Micro Frameworks

Table of Contents / Routers

Table of Contents / Dependency Injection

Table of Contents / Database

Table of Contents / Command Line

Table of Contents / Authentication and Authorization

Table of Contents / Filtering and Validation

Table of Contents / Internationalisation and Localisation

Configuration / PHP Websites

Configuration / PHP Books

22. Awesome Npm Scripts

Miscellaneous / Utility Packs

23. Nlp with Ruby

Multipurpose Engines / On-line APIs

Lexical Processing / Filtering Stop Words

Sentiment Analysis / Constituency Parsing

Machine Learning Libraries / Constituency Parsing

Articles, Posts, Talks, and Presentations / Constituency Parsing

24. Awesome Perl

Devices / NoSQL Databases

25. Awesome Javascript

Testing Frameworks / Frameworks

26. Awesome Spark

Resources / Papers

27. Awesome Android

Logger / Field Validation

Other / Custom Dialog

28. Awesome Npm

Other

29. Awesome Mac

Translation Tools / Audio Record and Process

Mac App Download Sites / Genuine Sites

30. Awesome Geek Podcasts

In English

31. Awesome Cpp

Game Engine

32. 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

33. Awesome Angular

Experts on Twitter

Material Design

34. Awesome Elixir

Command Line Applications

Testing

Utilities

35. Awesome Aws

Open Source Repos / DynamoDB

36. Awesome Neuroscience

Programming / Python

Programming / Matlab

Resources / MOOCs

Resources / Newsletters

37. Awesome Tensorflow

Models/Projects

38. Awesome Sdn

Books

39. Awesome Webaudio

Packages / Utilities

40. Awesome Dataviz

JavaScript tools / Charting libraries

Python tools / Misc

41. Awesome Dotnet Core

Frameworks, Libraries and Tools / Caching

Frameworks, Libraries and Tools / Misc

Frameworks, Libraries and Tools / Testing

42. Awesome Pascal

Language

43. Awesome Alfred Workflows

Developer

Text Manipulation

Scientific

Miscellaneous

System

44. Awesome Flexbox

Guides