Awesome List Updates on Aug 21, 2015
11 awesome lists updated today.
🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor
1. Engineering Blogs
Individuals/Group Contributors / I individuals
- Idontgetoutmuch's Weblog https://idontgetoutmuch.wordpress.com/
2. Awesome Salesforce
Table of Contents / Plugins for Salesforce
- Eclipse Plugin - Based on Eclipse Platform, supported and packaged by Salesforce.com
- Atom Plugin- MavensMate plugin for building Salesforce.com/Force.com/Salesforce1 applications inside GitHub's Atom text editor
Table of Contents / Packages and Libraries supporting salesforce
- Apex Commons (⭐727) - Common Apex Library supporting Apex Enterprise Patterns and much more!
Must deploy ApexMocks (⭐330) before deploying this library.Also see MavensMate Templates
- Apex Metadata API (⭐580) - Apex Wrapper for the Salesforce Metadata API
- Polyforce (⭐29) - PolyForce is the project started as an idea with a motive create polymer applications/components that derive data from Salesforce, The idea create a robust set of polymer components that can mutually be shared with each other and on the other hand provide a working sample for developers to learn and get inspired to built more components
Salesforce Browser Extensions / Open Source Projects Repositories from Salesforce
- Awesome Salesforce Browser Extensions (⭐39): Collection of Awesome Browser Extensions for Salesforce
3. Tips
Rebases 'feature' to 'master' and merges it in to master
git rebase master feature && git checkout master && git merge -
4. Awesome Jvm
Profilers
- jvmtop (⭐1.1k) - Lightweight console application to monitor running jvms on a machine in top-like manner.
5. Awesome Php
Table of Contents / Markup and CSS
- HTML to Markdown (⭐1.7k) - Converts HTML into Markdown.
6. Awesome Microservices
API Gateways / Edge Services / Scala
- Tengine - A distribution of Nginx with some advanced features.
Data Formats / Scala
- RFC4627 - JavaScript Object Notation (JSON).
- MSGPACK (⭐6.9k) - MessagePack Specification.
Sites & Organizations / Scala
- Microservices Resource Guide - Martin Fowler's choice of articles, videos, books, and podcasts that can teach you more about the microservices architectural style.
7. Awesome Elixir
Editors
- Alchemist-Server (⭐193) - Editor/IDE independent background server to inform about Elixir mix projects.
8. Awesome Db
JAVA
- lmdbjni (⭐201) - LMDB for Java, which is a very fast embedded key/value store with full ACID semantics.
9. Awesome Groovy
Database
- Tayra (⭐143) - Incremental backup tool for MongoDB
10. Awesome Deep Vision
Image and Language / Video Captioning
- Univ. Montreal [Paper]
- Kyunghyun Cho, Aaron Courville, Yoshua Bengio, Describing Multimedia Content using Attention-based Encoder-Decoder Networks, arXiv:1507.01053
- Univ. Montreal / Univ. Sherbrooke [Paper]
- Li Yao, Atousa Torabi, Kyunghyun Cho, Nicolas Ballas, Christopher Pal, Hugo Larochelle, Aaron Courville, Describing Videos by Exploiting Temporal Structure, arXiv:1502.08029
- MPI / Berkeley [Paper]
- Anna Rohrbach, Marcus Rohrbach, Bernt Schiele, The Long-Short Story of Movie Description, arXiv:1506.01698
- Univ. Toronto / MIT [Paper]
- Yukun Zhu, Ryan Kiros, Richard Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, Sanja Fidler, Aligning Books and Movies: Towards Story-like Visual Explanations by Watching Movies and Reading Books, arXiv:1506.06724
11. Htaccess
Rewrite and Redirection / Redirect an Entire Site
Redirect an Entire Site
Redirect 301 / http://newsite.com/
This way does it with links intact. That is www.oldsite.com/some/crazy/link.html
will become www.newsite.com/some/crazy/link.html
. This is extremely helpful when you are just “moving” a site to a new domain. Source
Rewrite and Redirection / Redirect Using RedirectMatch
Redirect Using RedirectMatch
RedirectMatch 301 /subdirectory(.*) http://www.newsite.com/newfolder/$1
RedirectMatch 301 ^/(.*).htm$ /$1.html
RedirectMatch 301 ^/200([0-9])/([^01])(.*)$ /$2$3
RedirectMatch 301 ^/category/(.*)$ /$1
RedirectMatch 301 ^/(.*)/htaccesselite-ultimate-htaccess-article.html(.*) /htaccess/htaccess.html
RedirectMatch 301 ^/(.*).html/1/(.*) /$1.html$2
RedirectMatch 301 ^/manual/(.*)$ http://www.php.net/manual/$1
RedirectMatch 301 ^/dreamweaver/(.*)$ /tools/$1
RedirectMatch 301 ^/z/(.*)$ http://static.askapache.com/$1
Rewrite and Redirection / Alias Paths to Script
Alias Paths to Script
FallbackResource /index.fcgi
This example has an index.fcgi
file in some directory, and any requests within that directory that fail to resolve a filename/directory will be sent to the index.fcgi
script. It’s good if you want baz.foo/some/cool/path
to be handled by baz.foo/index.fcgi
(which also supports requests to baz.foo
) while maintaining baz.foo/css/style.css
and the like. Get access to the original path from the PATH_INFO environment variable, as exposed to your scripting environment.
RewriteEngine On
RewriteRule ^$ index.fcgi/ [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.fcgi/$1 [QSA,L]
This is a less efficient version of the FallbackResource directive (because using mod_rewrite
is more complex than just handling the FallbackResource
directive), but it’s also more flexible.
- Prev: Aug 22, 2015
- Next: Aug 20, 2015