Awesome List Updates on Mar 02 - Mar 08, 2015

18 awesome lists updated this week.

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

1. Learn to Program

Intermediate

Codewars

Free code challenges - compare your solution with those of others
(JavaScript, CoffeeScript, Ruby, Python, Clojure, Haskell, Java)

2. Julia.jl

§2.2. Mirrors

3. Awesome Javascript

Testing Frameworks / Frameworks

4. Awesome Bigdata

Distributed Programming

5. Awesome Swift

Network / Barcode

6. Awesome AutoHotkey

Integrated Development Environment / Web

Web Syntax Highlighters / Web

7. Sublime Bookmarks

Fun stuff / Monospace Fonts

8. Awesome Lua

Resources / Implementations, Interpreters, and Bindings

9. Awesome Elixir

Algorithms and Data structures

Cloud Infrastructure and Management

Debugging

Examples and funny stuff

Macros

ORM and Datamapping

Text and Numbers

Third Party APIs

10. Awesome Workshopper

Raw Builders

Workshoppers

Workshoppers / Additional Tools

11. Awesome Courses

Courses / Introduction to CS

Courses / Misc

12. Awesome Dotnet

Application Frameworks

Compilers, Transpilers and Languages

Compression

Game

Git Tools

GUI

Interoperability

Media

Office

Visual Studio Plugins

13. Awesome Deep Learning

Researchers / Miscellaneous

14. 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 / Allow Cross-Domain Fonts

Allow Cross-Domain Fonts

CDN-served webfonts might not work in Firefox or IE due to CORS. This snippet solves the problem.

<IfModule mod_headers.c>
    <FilesMatch "\.(eot|otf|ttc|ttf|woff|woff2)$">
        Header set Access-Control-Allow-Origin "*"
    </FilesMatch>
</IfModule>

Source (⭐3k)

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)

15. Awesome IoT Hybrid

Hybrid Mobile / Resources-websites-projects

16. Awesome Dojo

Themes / Dojo 2

17. Awesome Erlang

ORM and Datamapping

Text and Numbers

18. Awesome Computer Vision

OpenCV Programming

Feature Detection and Extraction

Intrinsic Images / Edge-preserving image processing

Contour Detection and Image Segmentation / Edge-preserving image processing

Video Segmentation / Edge-preserving image processing