Compare Intel Processors

http://www.intel.com/content/www/us/en/processor-comparison/comparison-chart.html

Bumblebee and Primus for Ubuntu 12.10

http://www.dobreprogramy.pl/skandyn/Bumblebee-and-Primus-for-Ubuntu-12.10,37457.html

Linux Hybrid Graphics

http://www.dobreprogramy.pl/skandyn/Linux-Hybrid-Graphics,29605.html

Mobile Detect – lightweight PHP class for detecting mobile devices (including tablets)

Mobile Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment. http://mobiledetect.net/

Upload plików i pasek postępu (file upload progressbar) w PHP+AJAX+APC+jQuery

http://programowanie.opole.pl/archives/2167#

AskApache Online Tools

.htpasswd file Generator: .htpasswd file Generator ASCII Figlet Generator: ASCII Figlet Generator Base64 Image Converter: Base64 Image Converter Check Password Strength: Check Password Strength Compress CSS: Compress CSS DNS Tracer: DNS Tracer Flash crossdomain.xml Generator: Flash crossdomain.xml Generator JavaScript Source Code Beautifier: JavaScript Source Code Beautifier Mac Address Lookup: Mac Address Lookup Online JavaScript Compressor, ...

jQuery CookieBar Plugin

The Cookie Bar plugin creates a small bar at the top or bottom of the website with a short message about cookies and accept, decline, and privacy policy buttons

Composer hitting GitHub API rate limits

composer config --global github-oauth.github.com #composer install --prefer-source --no-interaction

How to create REST URLs without verbs?

http://stackoverflow.com/questions/1619152/how-to-create-rest-urls-without-verbs General principles for good URI design: Don’t use query parameters to alter state Don’t use mixed-case paths if you can help it; lowercase is best Don’t use implementation-specific extensions in your URIs (.php, .py, .pl, etc.) Don’t fall into RPC with your URIs Do limit your URI space as much as possible Do keep ...

Partial Doctrine entities

It turns out the solution is really simple. We just need to tell Doctrine of our intentions to fetch just part of the entity, by using the partial DQL keyword. SELECT partial l{id, title} FROM Log l Word of warning though: Doctrine will not lazily fetch the omitted fields, like it does for associations. If ...