This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* top 100 repos for Ruby by number of pushes */ | |
SELECT repository_name, count(repository_name) as pushes, repository_description, repository_url | |
FROM [githubarchive:github.timeline] | |
WHERE type="PushEvent" | |
AND repository_language="Ruby" | |
AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2012-04-01 00:00:00') | |
GROUP BY repository_name, repository_description, repository_url | |
ORDER BY pushes DESC | |
LIMIT 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Check your supported locales with $ locale -a | |
setlocale(LC_TIME, 'tr_TR.UTF-8'); | |
echo strftime("%d %B %Y %A"); | |
// 19 Mart 2012 Pazartesi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Mail Links | |
<a href="mailto:[email protected]">John Frank</a> | |
// Phone Links | |
<a href="tel:1-408-555-5555">1-408-555-5555</a> | |
// Text Links | |
<a href="sms:1-408-555-1212">New SMS Message</a> | |
// Map Links |