Awesome List Updates on Jul 20 - Jul 26, 2015
31 awesome lists updated this week.
🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor
1. Awesome AutoHotkey
Websites / Web
- ahkscript GitHub organization - Official ahkscript GitHub organization.
2. Awesome Okr
Software
3. Awesome Polymer
Articles
Videos
- Learn Polymer 1.0 by Stretch Projects
4. Awesome Ctf
Reversing
- RABCDAsm (⭐402) - Collection of utilities including an ActionScript 3 assembler/disassembler.
Wargames
- VulnHub - VM-based for practical in digital security, computer application & network administration.
5. Awesome Elixir
Images
- png (⭐56) - A pure Erlang library for creating PNG images. It can currently create 8 and 16 bit RGB, RGB with alpha, indexed, grayscale and grayscale with alpha images.
ORM and Datamapping
- dproto (⭐1) - Protocols for DalmatinerDB.
- dqe (⭐10) - DalmatinerDB query engine.
- elastix (⭐253) - A simple Elastic REST client written in Elixir.
6. Awesome Ruby
HTTP Clients and tools
- Http-2 (⭐892) - Pure Ruby implementation of HTTP/2 protocol
7. Awesome Ciandcd
Online Build System
- codecov Continuous code coverage. Featuring browser extenstions and awesome pull request commentsto track coverage over time on your GitHub/Bitbucket/Gitlab repo
8. Awesome Gif
General Tools
Scripts / High quality GIF
- Generate a palette :
- Output the GIF using the palette :
Scripts / YouTube video to GIF
- Download it via youtube-dl and then convert it.
9. Scalable Css Reading List
Talks
- Managing CSS Projects with ITCSS, Harry Roberts (2014)
10. Awesome Flexbox
Presentations / Videos
11. Awesome Material
Icons, Fonts and Colors
- material-design-icons (⭐47k) — Material Design icons by Google.
- material-design-iconic-font (⭐1.4k) — Material Design Iconic Font and CSS toolkit.
- material-design-fonticons (⭐74) — Material Design Fonticons is a font converted version of the Google Material Design Icon set.
- material-colors (⭐265) — Colors of Google's Material Design made available to coders.
- material-color (⭐134) — The colour palette, based on Google's Material Design, for use in your project.
- LESS-Material-design-colors — A .less file with al the Google material design colors.
- sass-material-colors (⭐131) — An easy way to use Google's Material Design colors in your Sass/Scss project.
- Google-Material-Design-Font-Icon (⭐5) — Font Icon based on Google Material Design Icon set.
Components
- SVG-Morpheus (⭐2.7k) — JavaScript library enabling SVG icons to morph from one to the other. It implements Material Design's Delightful Details transitions.
- Material-Design-ColorPicker (⭐11) — A Material Design Color Picker.
- material-design-color-palette (⭐170) — Material Design Color Palette: LESS/CSS toolkit.
- md-date-time (⭐174) — A Date-Time picker based on Googles Material Design Spec.
- ng-material-floating-button (⭐468) — Material design floating menu with action buttons implemented as an Angularjs directive.
CSS
- Surface (⭐347) — A lightweight, CSS only framework based on Material Design.
- material-ui (⭐82k) — A CSS Framework and a Set of React Components that Implement Google's Material Design.
- bootstrap-material-design (⭐22) — Material design theme for Bootstrap 3.
- materialize (⭐39k) — Materialize, a CSS Framework based on Material Design.
- materialBootstrap (⭐69) — Twitter Bootstrap theme for Google material design.
- material-playground (⭐256) — Polymer material design playground.
- material-framework (⭐388) — An easy to use material design based framework.
JS
- ember-paper (⭐879) — The Ember approach to Material Design.
- material-design-lite (⭐32k) — Material Design Lite Components in HTML/CSS/JS.
SASS
- google-material-design (⭐16) — Small SASS library inspired by google material design guidelines.
WordPress
- MaterialPress (⭐107) — MaterialPress is a WordPress theme, influenced heavily by Google's Material Design philosophy.
- materialwp (⭐460) — Material Design WordPress Theme.
Other
- material-color-scheme (⭐70) — Sublime Text syntax theme based off the Material Design color palette.
- framaterial (⭐42) — A Framework to create Material Design projects.
- Material Design Templates — Various material design inspired themes and templates on ThemeForest.
- Material Palette — Choose your favorite colors and generate your Material Design palette.
- Paper Polymer Elements — Paper elements are a set of visual elements that implement Google's Material Design.
12. Awesome IoT Hybrid
Hybrid Mobile / Resources-websites-projects
13. Awesome Backbone
Examples and boilerplates
- Backbone TodoMVC example - Simple todo app built using Backbone and Backbone.localStorage.
14. Engineering Blogs
Individuals/Group Contributors / M individuals
- Matt Might http://matt.might.net/articles/
Individuals/Group Contributors / P individuals
- Petr Mitrichev http://petr-mitrichev.blogspot.com/
15. Awesome Data Engineering
Monitoring / Prometheus
- Prometheus.io (⭐54k) - An open-source service monitoring system and time series database.
- HAProxy Exporter (⭐614) - Simple server that scrapes HAProxy stats and exports them via HTTP for Prometheus consumption.
16. Awesome Deep Learning
Table of Contents / Papers
Researchers / Websites
Researchers / Datasets
Researchers / Frameworks
Researchers / Miscellaneous
17. Awesome Perl
DevOps Tools / NoSQL Databases
- Rex - Remote Execution
18. Tips
git-tips
Collection of
git-tips
, want to add your tips? Checkout contributing.md
English | 中文 (⭐15k) | Русский (⭐599) | 한국어 (⭐989) | Tiếng Việt (⭐22) | 日本語 (⭐226) | नेपाली (⭐0) | Polski (⭐5) | فارسی (⭐0)
Tools:
- git-tip - A handy CLI to make optimum use of these tips. (Here in Docker container (⭐11))
P.S: All these commands are tested on git version 2.7.4 (Apple Git-66)
.
Sync with remote, overwrite local changes
git fetch origin && git reset --hard origin/master && git clean -f -d
List of all files till a commit
git ls-tree --name-only -r <commit-ish>
Git reset first commit
git update-ref -d HEAD
List all the conflicted files
git diff --name-only --diff-filter=U
List all branches that are already merged into master
git branch --merged master
List all branches and their upstreams, as well as last commit on branch
git branch -vv
Track upstream branch
git branch -u origin/mybranch
Delete local branch
git branch -d <local_branchname>
Changing a remote's URL
git remote set-url origin <URL>
Get list of all remote references
git remote
Alternatives:
git remote show
Get list of all local and remote branches
git branch -a
Get only remote branches
git branch -r
Stage parts of a changed file, instead of the entire file
git add -p
Get git bash completion
curl -L http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc
Prevent auto replacing LF with CRLF
git config --global core.autocrlf false
19. Awesome Cpp
Game Engine
- Panda3D (⭐4.4k) - A game engine, a framework for 3D rendering and game development for Python and C++ programs. [Modified BSD] website
Networking
- cpr (⭐6.4k) - A modern C++ HTTP requests library with a simple but powerful interface. Modeled after the Python Requests module. [MIT] website
20. Awesome Geek Podcasts
In English
- The Loosely Coupled Podcast - Jeff Carouth and Matt Frost combine their decades of experience as web developers to talk about developer life.
In Portuguese
- PHP Do Jeito Certo - Notícias sobre as novidades do PHP para desenvolvedores experientes e iniciantes.
21. Awesome Dropwizard
Open Source / Eclipse
- dropwizard-xml (⭐32) - Dropwizard bundle for processing and validating XMLs
Guides / Deployment
Videos / Deployment
22. Awesome Groovy
File System Utilities
- Groovy-Vfs (⭐62) - A DSL for Groovy on top of Apache VFS2
- Directree (⭐12) - A Simple DSL to create Directory Tree with Text Files
23. Awesome Ocaml
Online Courses
24. Awesome Html5
Development APIs / File
25. Awesome Javascript
Misc / Other
26. Awesome Dotnet
Misc
- AzureCrawler (⭐42) - Take HTML Snapshots for your Angular, Ember, Durandal or any JavaScript applications
Testing
- Shouldly (⭐2k) - Shouldly is an assertion framework which focuses on giving great error messages when the assertion fails while being simple and terse.
27. Awesome Devenv
Git / Extensions
- git-semver (⭐350) - A git plugin to make Semantic Versioning 2.0.0 and Change Log management easier.
28. Awesome Cyclejs
Learn / Videos
- Intro to Functional Reactive Programming with Cycle.js - Presentation by Nick Johnstone
29. Awesome Opengl
Talks
- Approaching Zero Driver Overhead in OpenGL - Slides - AMA Reddit by Cass Everitt, Tim Foley, John McDonald, Graham Sellers [1:15:54]
- How Modern OpenGL Can Radically Reduce Driver Overhead by Cass Everitt, John McDonald [51:13]
Websites
- Light House 3D by Light House 3D
- Modern OpenGL by Tom Dalling
- OpenGL Examples (⭐2.1k) by Norbert Nopper
- OpenGL Step by Step by Etay Meiri
- OpenGL Tutorial by Alexander Overvoorde
- OpenGL Tutorial by Anton Gerdelan
- OpenGL Tutorial by Bonder Wu
- OpenGL Tutorial by Song Ho Ahn
30. Awesome Opensource Documents
Programming Languages / CSS
- Font Awesome (⭐70k) (Site, cc) - The iconic font and CSS toolkit
Programming Languages / Ruby
- Neo Ruby Koans (Site, cc-nc-sa) - A set of Koans to teach the Ruby language
Programming Languages / Forth
- Thinking Forth Project Thinking Forth Project (PDF, cc-nc-sa)
31. Amas
Ask these people anything!
- Benny Thomas (⭐0) - Full stack developer caring about children reading.
- Sebastian McKenzie - Creator of Babel.
- Matthew Mueller (⭐4) - Creator of Cheerio, Duo, and a few other node modules.
- Hugo Giraudel (⭐43) - CSS goblin, Sass hacker, margin psycho.
- Will Binns-Smith (⭐0) - JavaScript at Bitbucket. Makes internet things.
- Lauri Tervonen (⭐0) - CS & SE university student in Finland.
- Matija Marohnić - From modding Warcraft to frontend design/development and nerdiness for Node.js build tools.
- Prev: Jul 27 - Aug 02, 2015
- Next: Jul 13 - Jul 19, 2015