Awesome List Updates on Feb 23, 2015

6 awesome lists updated today.

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

1. Awesome Deep Learning

Researchers / Miscellaneous

2. Htaccess

Security / Block Visitors by Referrer

Block Visitors by Referrer

This denies access for all users who are coming from (referred by) a specific domain. Source

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} somedomain\.com [NC,OR]
RewriteCond %{HTTP_REFERER} anotherdomain\.com
RewriteRule .* - [F]

Performance / Prevent Framing the Site

Prevent Framing the Site

This prevents the website to be framed (i.e. put into an iframe tag), when still allows framing for a specific URI.

SetEnvIf Request_URI "/starry-night" allow_framing=true
Header set X-Frame-Options SAMEORIGIN env=!allow_framing

Miscellaneous / Serve WebP Images

Serve WebP Images

If WebP images are supported and an image with a .webp extension and the same name is found at the same place as the jpg/png image that is going to be served, then the WebP image is served instead.

RewriteEngine On
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
RewriteRule (.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1]

Source (⭐198)

3. Awesome IoT Hybrid

Hybrid Mobile / Resources-websites-projects

4. Awesome Dojo

Themes / Dojo 2

5. Awesome Erlang

Text and Numbers

6. Awesome Computer Vision

OpenCV Programming