This file contains 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
Repo | README name | README Filetype | README Bytesize | |
---|---|---|---|---|
elasticsearch/elasticsearch | README.textile | textile | 7935 | |
NancyFx/Nancy | readme.md | md | 5483 | |
timburks/cocoa-programming-with-nu | README | readme | 432 | |
mathjax/MathJax-dev | README.txt | txt | 2018 | |
forthnutter/6805 | README | readme | 491 | |
petdance/ack | README.markdown | markdown | 1178 | |
nulldesign/nd2d | README.md | md | 9100 | |
hercules-team/augeas | README | readme | 3519 | |
johnmyleswhite/ML_for_Hackers | README.md | md | 1054 |
This file contains 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
URL | User | Repo | |
---|---|---|---|
https://github.com/0install/hello-ceylon | 0install | hello-ceylon | |
https://github.com/0x10c-crap/DCPU-Stress-Test | 0x10c-crap | DCPU-Stress-Test | |
https://github.com/0x10c-dev/stdlib | 0x10c-dev | stdlib | |
https://github.com/0x10cAtlas/AtlasOS | 0x10cAtlas | AtlasOS | |
https://github.com/0x10cStandardsCommittee/0x10c-Standards | 0x10cStandardsCommittee | 0x10c-Standards | |
https://github.com/0x42c/0x42c-kernel | 0x42c | 0x42c-kernel | |
https://github.com/0x42c/0x42c-multithread | 0x42c | 0x42c-multithread | |
https://github.com/1508/Deployment-Utilities | 1508 | Deployment-Utilities | |
https://github.com/280north/cappuccino | 280north | cappuccino |
This file contains 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
import requests | |
import base64 | |
# requires pygithub library | |
from github import Github | |
g = Github(username, password) | |
repo_readmes = {} | |
for repo_name in uniq_popular_repos: |
This file contains 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
import requests | |
import re | |
popular_repos = [] | |
lang_page = requests.get('https://github.com/languages') | |
popular_langs = list(set(re.findall('href="/languages/(.*?)"', lang_page.content))) | |
for lang in popular_langs: | |
most_watched_lang_page = requests.get('https://github.com/languages/{0}/most_watched'.format(lang)) |
This file contains 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
TIMEZONES = [ | |
('Pacific/Pago_Pago', "-11:00 - Samoa, Midway Island"), | |
('America/Adak', "-10:00 - Aleutian Islands"), | |
('Pacific/Honolulu', "-10:00 - Hawaii"), | |
('Pacific/Marquesas', "-09:30 - Marquesas Islands"), | |
('Pacific/Gambier', "-09:00 - Gambier Islands"), | |
('America/Anchorage', "-09:00 - Alaska"), | |
('America/Los_Angeles', "-08:00 - US Pacific Time (US & Canada)"), | |
('Pacific/Pitcairn', "-08:00 - Pitcairn Islands"), | |
('America/Phoenix', "-07:00 - Arizona Mountain Standard Time"), |
This file contains 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
from libgreader import GoogleReader, ClientAuthMethod | |
username = '' | |
password = '' | |
ca = ClientAuthMethod(username,password) | |
reader = GoogleReader(ca) | |
info = reader.getUserInfo() | |
reader.subscribe('feed/http://blog.aboutecho.com/feed/') | |
reader.buildSubscriptionList() |
This file contains 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
/bin/p4merge | |
#!/bin/bash | |
for arg; do [[ $arg = /* ]] || arg=$PWD/$arg; absargs+=("$arg"); done; | |
/Applications/p4merge.app/Contents/Resources/launchp4merge "${absargs[@]}" | |
.gitconfig | |
[merge] | |
tool = p4merge |
This file contains 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
set the currentSource to (do shell script "/Users/askedrelic/bin/SwitchAudioSource -c") | |
if currentSource is equal to "Built-in Output" then | |
do shell script "/Users/askedrelic/bin/SwitchAudioSource -s \"Built-in Line Output\"" | |
else | |
do shell script "/Users/askedrelic/bin/SwitchAudioSource -s \"Built-in Output\"" | |
end if |
This file contains 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
server { | |
listen 80; | |
server_name www.thebehrensventure.com; | |
rewrite ^/(.*) http://thebehrensventure.com/$1 permanent; | |
} | |
server { | |
listen 80; | |
server_name thebehrensventure.com; |
This file contains 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
if (!-e $request_filename) { | |
rewrite ^(.*)$ /index.php?q=$1 last; | |
break; | |
} |