Skip to content

Instantly share code, notes, and snippets.

@david-adam
david-adam / README.md
Created January 27, 2018 06:03 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed


@david-adam
david-adam / bigdata.ini
Created October 8, 2012 11:34
eZ Publish4: big data performance
/*
1. Do not store the comments as content objects is a no-brainer
- either use ezcomments, offsite comments (disqus etc) or a custom implementation
2. Usage of async publishing is probably mandatory. With such high-frequency of content publishing you want as little deadlocks happening on your content as possible, which means keeping transactions fast and limiting their concurrency
3. nosql / other storage engines: depends on project's deadline.
eZP 5.0 is still quite young, and you will not get any of those from Engineering until 5.1 at least. So you will need to build your own, which is going to be VERY time consuming. I would rather create some dedicated cache-storing layer that stuffs things in memcache (maybe using zetacomp's caching component) and use ith with 4.x.
Consider also that currently ezp5 has LESS caching built-in than ezp4, and it might use more queries per page.
@david-adam
david-adam / gist:3826774
Created October 3, 2012 12:59 — forked from padolsey/gist:527683
Javascript: Detect IE
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}