Thursday, June 27, 2013

focus@will

I stumble upon ad free service of classical music call https://www.focusatwill.com/music/#player.
They also provide application for Android (Nexus 7)

See screenshot below

Google Reader shutting down

Few months ago Google announced that Google Reader project would cease to exist... I'm testing free RSS services including:
http://www.goread.io/
http://www.newsblur.com/
http://theoldreader.com/

Wednesday, June 26, 2013

Increase group_concat function length

SET SESSION group_concat_max_len = 1000000; // SESSION
SET GLOBAL group_concat_max_len = 1000000; // GLOBAL
// Advance group_concat (order and separator)
group_concat(name order by name separator ':') from users;

For more information Click Here