repo
string
commit
string
message
string
diff
string
seikichi/pumblr
83ba79e95d18d6627a5a26eb82c6c4ee22528e4f
add Usage
diff --git a/README.rst b/README.rst index 3b84e19..28668ee 100644 --- a/README.rst +++ b/README.rst @@ -1,42 +1,44 @@ ========== pumblr ========== | ※ 激しく書きかけ | ※ 現状でできること: read, dashboar, like, unlike, reblog What's this? ------------ A python library for The Tumblr API. ...
seikichi/pumblr
0734b2d0115e723afa27beab3d69e446ecfce83a
photo, link のapi/writeもできるように
diff --git a/pumblr/api.py b/pumblr/api.py index f91f8f7..c81ad2e 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,213 +1,242 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils import urllib2 import functools json = utils.import_json() from models import ApiRead from errors import PumblrError, Pu...
seikichi/pumblr
a5d0c0e24428dea3c584e5a94e2e68d02147b8ec
write_quote, write_regular追加
diff --git a/pumblr/api.py b/pumblr/api.py index 52d2d53..f91f8f7 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,168 +1,213 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils import urllib2 import functools json = utils.import_json() from models import ApiRead from errors import PumblrError, Pu...
seikichi/pumblr
e8710dd83901233931828a8e41c862edcdabddfd
スタブを使ったテストを複数の関数に分けた
diff --git a/test_communicate.py b/test_communicate.py index ee2d85b..2a6d6c3 100755 --- a/test_communicate.py +++ b/test_communicate.py @@ -1,53 +1,53 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # 実際に通信してテストを行う from __future__ import with_statement from getpass import getpass fro...
seikichi/pumblr
8ba19a0a8d0eb7293f3bfa8e9ac7ef524b86f129
実際に通信を行うテストを書いた
diff --git a/pumblr/utils.py b/pumblr/utils.py index f99bcce..958e8ac 100755 --- a/pumblr/utils.py +++ b/pumblr/utils.py @@ -1,67 +1,68 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import re import string import urllib + def urlencode(query): """ urlencode(remove key if value is None) >>> urlen...
seikichi/pumblr
3d9202a8b7aa22c0a90d170a2221a2fe962dd109
add LICENSE
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9169fe0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2010 seikichi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Soft...
seikichi/pumblr
d1cece4e224f78629c1e0d8d66900379b5a78966
utils.pyにurlencodeのqueryのvalがNoneのkeyをpopするの関数を追加
diff --git a/pumblr/api.py b/pumblr/api.py index a9b6c7d..52d2d53 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,174 +1,168 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils -from urllib import urlencode import urllib2 import functools json = utils.import_json() from models import ApiRead from...
seikichi/pumblr
af3ca02f6b3298bb8f37c8dce93b3aa5f3461735
api.pyをリファクタリングした
diff --git a/pumblr/api.py b/pumblr/api.py index 122c354..a9b6c7d 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,188 +1,174 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 +import functools json = utils.import_json() from models import ApiRead from...
seikichi/pumblr
9d8b70fa3957cf80956279cd37616a77d4af58fd
add like/un-like function to API class
diff --git a/pumblr/api.py b/pumblr/api.py index 9c091c5..122c354 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,147 +1,188 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 json = utils.import_json() from models import ApiRead from errors import Pum...
seikichi/pumblr
b131864652fa95111fd41729faf0d3e36579212a
reblogのバグ修正(201かどうかチェックしてなかった)
diff --git a/pumblr/api.py b/pumblr/api.py index 6b6f491..9c091c5 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,138 +1,147 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 json = utils.import_json() from models import ApiRead from errors import Pum...
seikichi/pumblr
9934c9fc60f0b0cb2df041323c49fbd50db70cb3
reblogのURL間違ってた
diff --git a/pumblr/api.py b/pumblr/api.py index 11dae62..6b6f491 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,105 +1,138 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 json = utils.import_json() from models import ApiRead from errors import Pum...
seikichi/pumblr
6f793b8b44361be45c6004e47fa67c5f4277fda0
add params to dashboard function.
diff --git a/pumblr/api.py b/pumblr/api.py index 94ae0e9..11dae62 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,75 +1,105 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 json = utils.import_json() from models import ApiRead -from errors import Pumb...
seikichi/pumblr
25967e296789baaf81684c7bcc7a72e59e014f7f
dashboardの取得ができるようにした
diff --git a/pumblr/api.py b/pumblr/api.py index fe6db4a..94ae0e9 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,45 +1,75 @@ #!/usr/bin/python # -*- coding: utf-8 -*- import utils from urllib import urlencode import urllib2 json = utils.import_json() from models import ApiRead +from errors import Pumbl...
seikichi/pumblr
bd6d70805a856515ae9979ba3a22e9502e56e5bc
api/readのオプションを追加した(全てでは無い)
diff --git a/pumblr/__init__.py b/pumblr/__init__.py old mode 100644 new mode 100755 index 792d600..637cb2e --- a/pumblr/__init__.py +++ b/pumblr/__init__.py @@ -1 +1,5 @@ -# +#!/usr/bin/python +# -*- coding: utf-8 -*- + +from api import API +api = API() diff --git a/pumblr/api.py b/pumblr/api.py index b8bc07d..fe6db4a...
seikichi/pumblr
6e3aeb521c5019c1e323df8d447b38c6360de284
modelの名前に不正な値('_'や'?'等,変数名に許可されていない文字)がある場合replaceするようにした
diff --git a/pumblr/api.py b/pumblr/api.py index bedf78e..b8bc07d 100755 --- a/pumblr/api.py +++ b/pumblr/api.py @@ -1,5 +1,22 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +import utils +from urllib import urlencode +import urllib2 + +json = utils.import_json() +from models import ApiRead + + class API(object): - ...
seikichi/pumblr
a81cfeebe66e21162628913cb4dec603c891ec7c
write test for api.py
diff --git a/pumblr/api.py b/pumblr/api.py new file mode 100755 index 0000000..bedf78e --- /dev/null +++ b/pumblr/api.py @@ -0,0 +1,5 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +class API(object): + pass
seikichi/pumblr
b3026a170b6a7b5de6b161e0687fd21c376c247e
modelsのテストを書いた.
diff --git a/pumblr/errors.py b/pumblr/errors.py new file mode 100755 index 0000000..0c5379d --- /dev/null +++ b/pumblr/errors.py @@ -0,0 +1,22 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +class PumblrError(object): + """Pumblr exception""" + + def __init__(self, msg): + self._msg = msg + + def...
seikichi/pumblr
e102b5d1d1f5a74cdc7530d6543baae3ea17d555
add models
diff --git a/pumblr/model.py b/pumblr/model.py new file mode 100755 index 0000000..788acaf --- /dev/null +++ b/pumblr/model.py @@ -0,0 +1,50 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +class Model(object): + + def __init__(self): + pass + + @classmethod + def parse(kls, json): + """Parse a ...
seikichi/pumblr
ba5d87ff551df47df2ed4de15058df28ad49fe41
add error classes.
diff --git a/pumblr/error.py b/pumblr/error.py new file mode 100755 index 0000000..0c5379d --- /dev/null +++ b/pumblr/error.py @@ -0,0 +1,22 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +class PumblrError(object): + """Pumblr exception""" + + def __init__(self, msg): + self._msg = msg + + def __...
seikichi/pumblr
76c3bf4f91d14a196f092698b6a945bd2ab04a3b
add testdata
diff --git a/testdata/dashboard.json b/testdata/dashboard.json new file mode 100644 index 0000000..1833565 --- /dev/null +++ b/testdata/dashboard.json @@ -0,0 +1 @@ +var tumblr_api_read = {"posts-start":false,"posts-total":false,"posts-type":false,"posts":[{"id":1104344180,"url":"http:\/\/katoyuu.tumblr.com\/post\/1104...
chimeric/dokuwiki-plugin-pagemoveng
14ddc74ed426bc2aace8835184e9528c0e8f5f22
fixed typo
diff --git a/action.php b/action.php index 401b16c..66d1adf 100644 --- a/action.php +++ b/action.php @@ -1,55 +1,55 @@ <?php /** * DokuWiki Plugin pagemoveng (Action Component) * * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html * @author Michael Klier <chi@chimeric.de> */ // must be run within ...
chimeric/dokuwiki-plugin-pagemoveng
2bd7646165754cce566ab424cba0eefe3b09b030
inital draft
diff --git a/action.php b/action.php new file mode 100644 index 0000000..401b16c --- /dev/null +++ b/action.php @@ -0,0 +1,55 @@ +<?php +/** + * DokuWiki Plugin pagemoveng (Action Component) + * + * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html + * @author Michael Klier <chi@chimeric.de> + */ + +// must be r...
johnmoore/WoW-Object-Manager
ba42976196c8e9c76cb28c541c3e719b5817e3ed
3.3.5 build 12340
diff --git a/Disclaimer.txt b/Disclaimer.txt new file mode 100644 index 0000000..6150a23 --- /dev/null +++ b/Disclaimer.txt @@ -0,0 +1,7 @@ +This program is not associated with or endorsed by Blizzard Entertainment in any way. +World of Warcraft is copyright of Blizzard Entertainment. + +This program may be against th...
ealdent/ealdent.github.com
534b3f37865ee8f981abf8b8c0e8f97a3b5c263f
final clue
diff --git a/images/finalclue.png b/images/finalclue.png new file mode 100644 index 0000000..3d0415a Binary files /dev/null and b/images/finalclue.png differ
ealdent/ealdent.github.com
d6eb2cd6ea72a50155491e6e85ecaaf5923ba8b5
stranger night
diff --git a/images/stranger night.jpg b/images/stranger night.jpg new file mode 100644 index 0000000..58b8307 Binary files /dev/null and b/images/stranger night.jpg differ
ealdent/ealdent.github.com
734bb3476d148178e74a76dd52f2707851ddb981
Replace master branch with page content via GitHub
diff --git a/images/bkg.png b/images/bkg.png new file mode 100644 index 0000000..d10e5ca Binary files /dev/null and b/images/bkg.png differ diff --git a/images/blacktocat.png b/images/blacktocat.png new file mode 100644 index 0000000..9759d77 Binary files /dev/null and b/images/blacktocat.png differ diff --git a/index....
ealdent/ealdent.github.com
8e227d87b29bbd64e95172808250bf3044e6fc06
get domain pointing at this site
diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..8ff4523 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +mendicantbug.com
ealdent/ealdent.github.com
db7f34ddd38919d59e8db96194a44dc218dd36a4
Replace master branch with page content via GitHub
diff --git a/images/body-bg.jpg b/images/body-bg.jpg new file mode 100644 index 0000000..719fb88 Binary files /dev/null and b/images/body-bg.jpg differ diff --git a/images/download-button.png b/images/download-button.png new file mode 100644 index 0000000..c5ffb3a Binary files /dev/null and b/images/download-button.png...
ealdent/ealdent.github.com
6d3fe3bd68bc0714ad95e9f9ab886cbcde14e7ca
more farting around with htaccess
diff --git a/.htaccess b/.htaccess index 5ead238..cd64330 100755 --- a/.htaccess +++ b/.htaccess @@ -1,8 +1,8 @@ -# <IfModule mod_rewrite.c> +<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RedirectMatch 301 /(.*)/ http://ealdent.githu...
ealdent/ealdent.github.com
d9f1b46b8dbed41c479f5aaad4f8530adeaa379b
more tweaking
diff --git a/.htaccess b/.htaccess index 24f1c02..5ead238 100755 --- a/.htaccess +++ b/.htaccess @@ -1,8 +1,8 @@ -<IfModule mod_rewrite.c> +# <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RedirectMatch 301 /(.*)/ http://ealdent.githu...
ealdent/ealdent.github.com
7d01012b2f9e0c658550d2e6ea0556b2eb801e00
another attempt
diff --git a/.htaccess b/.htaccess index f804eb1..24f1c02 100755 --- a/.htaccess +++ b/.htaccess @@ -1,8 +1,8 @@ <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d -RedirectMatch 301 /(.*)/(.*)/(.*)/ http://ealdent.github.com/$1/$2/$3/$4....
ealdent/ealdent.github.com
826d04d19ececbebe4b798543419cf4fd1ee408b
more fartingaround
diff --git a/.htaccess b/.htaccess index 07b7307..f804eb1 100755 --- a/.htaccess +++ b/.htaccess @@ -1,8 +1,8 @@ <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d -RedirectMatch 301 /(.*)/(.*)/ http://ealdent.github.com/$2.html +Redirect...
ealdent/ealdent.github.com
8248fa244ddbaa0e5373ddc7fc786088a1e3a91c
more messing around with htaccess, this time using mreid's version
diff --git a/.htaccess b/.htaccess old mode 100644 new mode 100755 index 2af8086..07b7307 --- a/.htaccess +++ b/.htaccess @@ -1 +1,8 @@ -RewriteRule ^/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/$ /$1/$2/$3/$4.html +<IfModule mod_rewrite.c> +RewriteEngine On +RewriteBase / +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUES...
ealdent/ealdent.github.com
79141b9ebfe085f7b3cb6ea3fcea9a6956a7a7d7
more htaccess crap
diff --git a/.htaccess b/.htaccess index e9556ba..2af8086 100644 --- a/.htaccess +++ b/.htaccess @@ -1,2 +1 @@ -RewriteRule (.*)/$ $1.html -RewriteRule [A-Za-z]+/$ $1.html +RewriteRule ^/([0-9]+)/([0-9]+)/([0-9]+)/(.*)/$ /$1/$2/$3/$4.html
ealdent/ealdent.github.com
686cd83274dacfe58473c970cc81e4367baf49a5
more farting around with htaccess
diff --git a/.htaccess b/.htaccess index 87c66e1..e9556ba 100644 --- a/.htaccess +++ b/.htaccess @@ -1,2 +1,2 @@ -RewriteRule /$ .html +RewriteRule (.*)/$ $1.html RewriteRule [A-Za-z]+/$ $1.html
ealdent/ealdent.github.com
91c47f288359994e3c5dda6746a9aa510f59e9aa
play around with .htaccess
diff --git a/.htaccess b/.htaccess index 2307887..87c66e1 100644 --- a/.htaccess +++ b/.htaccess @@ -1 +1,2 @@ RewriteRule /$ .html +RewriteRule [A-Za-z]+/$ $1.html
ealdent/ealdent.github.com
681c393a71532646ff694244179770279da0f216
and another attempt
diff --git a/_site/.htaccess b/_site/.htaccess new file mode 100644 index 0000000..2307887 --- /dev/null +++ b/_site/.htaccess @@ -0,0 +1 @@ +RewriteRule /$ .html
ealdent/ealdent.github.com
0d444b1062140ae448e26da5da769ea348faf868
another stab at htaccess
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..2307887 --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ +RewriteRule /$ .html
ealdent/ealdent.github.com
8d242232a6c3754d44654f667bea5495b1945181
another try
diff --git a/_site/.htaccess b/_site/.htaccess new file mode 100644 index 0000000..219a8b5 --- /dev/null +++ b/_site/.htaccess @@ -0,0 +1 @@ +RedirectMatch 301 ([0-9]+/[0-9]+/[0-9]+/.*)/ http://ealdent.github.com$1.html \ No newline at end of file
ealdent/ealdent.github.com
39f4a45de0762092916579930c010761d02dff9e
regex redirect...
diff --git a/.htaccess b/.htaccess index 340c304..ee87078 100644 --- a/.htaccess +++ b/.htaccess @@ -1 +1 @@ -RedirectMatch 301 linguistic-homogenization-and-power/ http://ealdent.github.com/2009/01/12/linguistic-homogenization-and-power.html \ No newline at end of file +RedirectMatch 301 (.*)/ http://ealdent.github.co...
ealdent/ealdent.github.com
2ce2f1148c769a5b3603fa5daf9a54737166c9eb
more redirect nonsense
diff --git a/.htaccess b/.htaccess index 39dfeaa..340c304 100644 --- a/.htaccess +++ b/.htaccess @@ -1 +1 @@ -RedirectMatch 301 http://ealdent.github.com/2009/01/12/linguistic-homogenization-and-power/ http://ealdent.github.com/2009/01/12/linguistic-homogenization-and-power.html \ No newline at end of file +RedirectMat...
ealdent/ealdent.github.com
0446addb5611b40e702757e456cb14607701cfb8
more tests with redirects
diff --git a/.htaccess b/.htaccess index 8e88258..39dfeaa 100644 --- a/.htaccess +++ b/.htaccess @@ -1 +1 @@ -RedirectMatch 301 / .html \ No newline at end of file +RedirectMatch 301 http://ealdent.github.com/2009/01/12/linguistic-homogenization-and-power/ http://ealdent.github.com/2009/01/12/linguistic-homogenization-...
ealdent/ealdent.github.com
8d04591f1315f7532f2c8b265565df119c335d42
attempting to redirect
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..8e88258 --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ +RedirectMatch 301 / .html \ No newline at end of file diff --git a/_posts/2007-08-05-forays-into-the-blagoblag.html b/_posts/2007-08-05-forays-into-the-blagoblag.html index b15235b..e49fc45 100644...
ealdent/ealdent.github.com
edaa0f4fb4485ebf84d7322ce5c7e9e6e434fd2c
attempting to get around url stuff
diff --git a/_posts/2007-08-05-forays-into-the-blagoblag.html b/_posts/2007-08-05-forays-into-the-blagoblag.html index e49fc45..b15235b 100644 --- a/_posts/2007-08-05-forays-into-the-blagoblag.html +++ b/_posts/2007-08-05-forays-into-the-blagoblag.html @@ -1,9 +1,10 @@ --- layout: post title: "Forays into the Blagob...
ealdent/ealdent.github.com
d4009b83f9c062996856ba53e712c7c0501155cb
bug fix to youtube videos
diff --git a/_posts/2007-09-03-pecha-kucha.html b/_posts/2007-09-03-pecha-kucha.html index 1f0ac6c..3ba1f24 100644 --- a/_posts/2007-09-03-pecha-kucha.html +++ b/_posts/2007-09-03-pecha-kucha.html @@ -1,18 +1,18 @@ --- layout: post title: "Pecha Kucha" tags: ["art", "art", "business", "business", "conferences", "co...
ealdent/ealdent.github.com
1cbfbbbb596ae4599c95572d0ba81cb6e3c0a856
add divider above comments
diff --git a/_layouts/post.html b/_layouts/post.html index 625679b..d5587c2 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,26 +1,26 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> <table id="top-bar" width="100%"> <tr> <td width="80%"> <div id=...
ealdent/ealdent.github.com
58797893850af1d47f729fdc1392e82d33eba620
remove related posts, wasn't doing anything
diff --git a/_layouts/post.html b/_layouts/post.html index c5dc586..625679b 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,26 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> <table id="top-bar" width="100%"> <tr> <td width="80%"> <div id=...
ealdent/ealdent.github.com
dd9b0305a256570c85d778bd9082e907c7b1832e
minor tweaks
diff --git a/converter.py b/converter.py index aecf0ca..310e2f5 100755 --- a/converter.py +++ b/converter.py @@ -1,120 +1,121 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_f...
ealdent/ealdent.github.com
55582b2a8c78f9fbe94d9d7fb7cdfcd11970538e
filter out youtube and caption links
diff --git a/_posts/2007-09-03-pecha-kucha.html b/_posts/2007-09-03-pecha-kucha.html index b467f87..1f0ac6c 100644 --- a/_posts/2007-09-03-pecha-kucha.html +++ b/_posts/2007-09-03-pecha-kucha.html @@ -1,18 +1,18 @@ --- layout: post title: "Pecha Kucha" tags: ["art", "art", "business", "business", "conferences", "co...
ealdent/ealdent.github.com
e4497341497da4dbbd6514212e3c6c3aba08ff64
change back to using html format
diff --git a/converter.py b/converter.py index e3de69a..4605625 100755 --- a/converter.py +++ b/converter.py @@ -1,87 +1,87 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_fil...
ealdent/ealdent.github.com
5779bfe3787eee05db68b8cfdececdafa28835ce
change from markdown to textile
diff --git a/converter.py b/converter.py index 61c0507..e3de69a 100755 --- a/converter.py +++ b/converter.py @@ -1,87 +1,87 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_fil...
ealdent/ealdent.github.com
2a3517a39eed45d3104390d14b41cfb3c84abedd
attempting to fix converter bug
diff --git a/converter.py b/converter.py index da6241a..61c0507 100755 --- a/converter.py +++ b/converter.py @@ -1,85 +1,87 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_fil...
ealdent/ealdent.github.com
e36f37ebbdbf0a5032ab2c34eb5536c74df1283f
changes to converter
diff --git a/converter.py b/converter.py index dee652b..da6241a 100755 --- a/converter.py +++ b/converter.py @@ -1,74 +1,85 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_fil...
ealdent/ealdent.github.com
66106f28a512a9b4e1831167cb1d0759eccb3a94
further tweaks to converter
diff --git a/converter.py b/converter.py index 8fb5a13..1a43b93 100755 --- a/converter.py +++ b/converter.py @@ -1,74 +1,74 @@ #!/usr/bin/env python import codecs import feedparser import sys import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_fil...
ealdent/ealdent.github.com
d59f4ef2bd89b45656403072896e254ddff778e5
bug fixes and updates to converter script
diff --git a/converter.py b/converter.py index ebe07c0..8fb5a13 100755 --- a/converter.py +++ b/converter.py @@ -1,72 +1,74 @@ #!/usr/bin/env python - -import time +import codecs import feedparser import sys +import time def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f ...
ealdent/ealdent.github.com
b18d5ab517c1c00d027fa066693c1ec6068e8679
handle unicode crap
diff --git a/converter.py b/converter.py index 029ff03..ebe07c0 100755 --- a/converter.py +++ b/converter.py @@ -1,71 +1,72 @@ #!/usr/bin/env python import time import feedparser import sys def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_filename, 'r') ...
ealdent/ealdent.github.com
83e7eb3ed1131d8ec26fedaa6fa5ffe786141fe7
another bug fix
diff --git a/converter.py b/converter.py index adce75e..029ff03 100755 --- a/converter.py +++ b/converter.py @@ -1,71 +1,71 @@ #!/usr/bin/env python import time import feedparser import sys def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_filename, 'r') ...
ealdent/ealdent.github.com
50627a5e977f32c0a86d86de153697265bd6bee0
bug fix to converter
diff --git a/converter.py b/converter.py index de74a00..adce75e 100755 --- a/converter.py +++ b/converter.py @@ -1,71 +1,71 @@ #!/usr/bin/env python import time import feedparser import sys def load_feed(feed_filename): print "Loading feed %s." % (feed_filename) f = open(feed_filename, 'r') ...
ealdent/ealdent.github.com
ab018d49f6126d904c99f6d2e6c038b6dcdf51e1
- bug fix to converter - remove post
diff --git a/_posts/2009-01-12-linguistic-homogenization-and-power.markdown b/_posts/2009-01-12-linguistic-homogenization-and-power.markdown deleted file mode 100644 index a797da0..0000000 --- a/_posts/2009-01-12-linguistic-homogenization-and-power.markdown +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: post -title: Ling...
ealdent/ealdent.github.com
e92f6743131ed8e22c86eaaa0ec0cf9ef9466428
text area in comments needs some space underneath
diff --git a/css/screen.css b/css/screen.css index b568dba..bb0c200 100644 --- a/css/screen.css +++ b/css/screen.css @@ -1,314 +1,318 @@ /*****************************************************************************/ /* /* Common /* /*****************************************************************************/ ...
ealdent/ealdent.github.com
7a8d87e3a9e52439e9e6ff362221c10f23501e71
footer changes
diff --git a/_layouts/default.html b/_layouts/default.html index 184bb04..61d3c55 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,78 +1,78 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtm...
ealdent/ealdent.github.com
344d5ae541fbb26e90da3f559e2555aa5911449c
footer changes
diff --git a/css/screen.css b/css/screen.css index e900ee1..b568dba 100644 --- a/css/screen.css +++ b/css/screen.css @@ -1,319 +1,314 @@ /*****************************************************************************/ /* /* Common /* /*****************************************************************************/ ...
ealdent/ealdent.github.com
78b54539b8ab59182aa25ce5605e36db70d7877c
changes to footer
diff --git a/_layouts/default.html b/_layouts/default.html index 94a4218..184bb04 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,86 +1,78 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtm...
ealdent/ealdent.github.com
a4b747022e9d6aa1ee3aab99f67e1f5725b809c3
top bar must be 100% of width available
diff --git a/_layouts/post.html b/_layouts/post.html index a328176..c5dc586 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> - <table id="top-bar"> + <table id="top-bar" width="100%"> <tr> <td width=...
ealdent/ealdent.github.com
69decec72b1717d1e6423d1ff5b55ff11bc06d19
tweaking width
diff --git a/_layouts/post.html b/_layouts/post.html index cbcf7eb..a328176 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> <table id="top-bar"> <tr> - <td width="75%"> + <td width="80%"> ...
ealdent/ealdent.github.com
82505cef5d04444936e22baf528306108be3bdae
hard-code width of columns in top bar table
diff --git a/_layouts/post.html b/_layouts/post.html index 426a89c..cbcf7eb 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> <table id="top-bar"> <tr> - <td id="tag-bar"> + <td width="75%"> ...
ealdent/ealdent.github.com
a76be4592a4eeb60e6a7bbf068b448084d955510
more css mods to top bar
diff --git a/css/screen.css b/css/screen.css index 23942e0..e900ee1 100644 --- a/css/screen.css +++ b/css/screen.css @@ -1,319 +1,319 @@ /*****************************************************************************/ /* /* Common /* /*****************************************************************************/ ...
ealdent/ealdent.github.com
3f0806e9a9b3435ab5bc6424eb93da77e81e0108
css changes to top bar
diff --git a/_layouts/post.html b/_layouts/post.html index c9c6f58..426a89c 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> - <table border=0 cellspacing=5> + <table id="top-bar"> <tr> - <td> + <...
ealdent/ealdent.github.com
519128d385d7eac1a5b66cb84c6af0a41da1bb36
width of date column
diff --git a/_layouts/post.html b/_layouts/post.html index 428ef8c..c9c6f58 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,38 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> <table border=0 cellspacing=5> <tr> <td> <div id="tags">{% if pa...
ealdent/ealdent.github.com
40aac48603c896af39e7b74d77a3aed1b1458861
fix tags/date bar
diff --git a/_layouts/post.html b/_layouts/post.html index 0e0a691..428ef8c 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,30 +1,38 @@ --- layout: default --- <div id="post"> <h1>{{ page.title }}</h1> <hr> - <div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncateg...
ealdent/ealdent.github.com
307edf07bcdfc270d3baacc82c076eefb3b90cea
fixes to css
diff --git a/css/screen.css b/css/screen.css index f4aa661..420469c 100644 --- a/css/screen.css +++ b/css/screen.css @@ -1,297 +1,303 @@ /*****************************************************************************/ /* /* Common /* /*****************************************************************************/ ...
ealdent/ealdent.github.com
477cdac5113a5c25e4a43edbf2aca873e300858d
decrease font size of tags
diff --git a/css/screen.css b/css/screen.css index a98f2ed..f4aa661 100644 --- a/css/screen.css +++ b/css/screen.css @@ -1,297 +1,297 @@ /*****************************************************************************/ /* /* Common /* /*****************************************************************************/ ...
NZKoz/bigdecimal-segfault-fix
795c3a8f48c58ef54f00b4762da87bbf7893ec2a
fix gemspec, bump version
diff --git a/bigdecimal-segfault-fix.gemspec b/bigdecimal-segfault-fix.gemspec index cf7ce4c..41f46bb 100644 --- a/bigdecimal-segfault-fix.gemspec +++ b/bigdecimal-segfault-fix.gemspec @@ -1,16 +1,16 @@ Gem::Specification.new do |s| s.name = "bigdecimal-segfault-fix" - s.version = "1.0.0" + s.version = "1.0...
NZKoz/bigdecimal-segfault-fix
cfaf1db1c1086f1563dbb986a36f5c8bb86baf0e
finish the sentence
diff --git a/README.textile b/README.textile index d76cafe..46d67ed 100644 --- a/README.textile +++ b/README.textile @@ -1,39 +1,39 @@ h1. BigDecimal Segfault Fix There is a segfault bug in ruby's big decimal library which can be triggered by users providing known-bad values. If you wish to test whether your appli...
jeffkreeftmeijer/dotfiles
242988dc6ec2b6ecd16e746c8199e20a52b80a89
Move antibody packages to .zshrc
diff --git a/.zsh_plugins.txt b/.zsh_plugins.txt deleted file mode 100644 index 38aa246..0000000 --- a/.zsh_plugins.txt +++ /dev/null @@ -1,3 +0,0 @@ -zsh-users/zsh-syntax-highlighting -zsh-users/zsh-autosuggestions -zsh-users/zsh-history-substring-search diff --git a/.zshrc b/.zshrc index 4baf04d..991b211 100644 --- a...
jeffkreeftmeijer/dotfiles
129bc945344be64e19fd654ff5f815add20362ac
Install fzf key bindings and fuzzy completions
diff --git a/.fzf.zsh b/.fzf.zsh new file mode 100644 index 0000000..259d156 --- /dev/null +++ b/.fzf.zsh @@ -0,0 +1,14 @@ +# Setup fzf +# --------- +if [[ ! "$PATH" == */usr/local/opt/fzf/bin* ]]; then + export PATH="$PATH:/usr/local/opt/fzf/bin" +fi + +# Auto-completion +# --------------- +[[ $- == *i* ]] && source ...
jeffkreeftmeijer/dotfiles
c5ac45664b6c9ade9255aae09ac25fe8c68d0d32
Use nvim as $EDITOR
diff --git a/.zshrc b/.zshrc index 81fd230..d3dcade 100644 --- a/.zshrc +++ b/.zshrc @@ -1,20 +1,23 @@ # Prompt source ~/.config/git-prompt.sh/git-prompt.sh setopt PROMPT_SUBST export PROMPT='%~ $(__git_ps1 "(%s) ")%# ' # History HISTFILE=$HOME/.zsh_history HISTSIZE=10000 SAVEHIST=10000 setopt SHARE_HISTORY ...
jeffkreeftmeijer/dotfiles
223ebb975e41a19c3ed108e6c118d3e385000154
Add history plugins and bindings
diff --git a/.zsh_plugins.txt b/.zsh_plugins.txt new file mode 100644 index 0000000..38aa246 --- /dev/null +++ b/.zsh_plugins.txt @@ -0,0 +1,3 @@ +zsh-users/zsh-syntax-highlighting +zsh-users/zsh-autosuggestions +zsh-users/zsh-history-substring-search diff --git a/.zshrc b/.zshrc index a87865f..81fd230 100644 --- a/.zs...
jeffkreeftmeijer/dotfiles
5ba35996ea30f779fbdae87e7ece934794ed757a
Configure zsh history
diff --git a/.zshrc b/.zshrc index 6e4abd7..a87865f 100644 --- a/.zshrc +++ b/.zshrc @@ -1,3 +1,12 @@ +# Prompt source ~/.config/git-prompt.sh/git-prompt.sh setopt PROMPT_SUBST export PROMPT='%~ $(__git_ps1 "(%s) ")%# ' + +# History +HISTFILE=$HOME/.zsh_history +HISTSIZE=10000 +SAVEHIST=10000 +setopt SHARE_HISTORY +...
jeffkreeftmeijer/dotfiles
fe6a5f7f3ecbd8cadd7af9eb77c3485e8bf42454
Add git repository status to the zsh prompt
diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..6e4abd7 --- /dev/null +++ b/.zshrc @@ -0,0 +1,3 @@ +source ~/.config/git-prompt.sh/git-prompt.sh +setopt PROMPT_SUBST +export PROMPT='%~ $(__git_ps1 "(%s) ")%# '
jeffkreeftmeijer/dotfiles
0ceec4cbc57ee0bfb1d4a11c06fbf783668fd6ff
Move bash/git-prompt to git-prompt
diff --git a/.bash_profile b/.bash_profile index 2e54c0f..9d46a9e 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,31 +1,31 @@ -source ~/.config/bash/git-prompt.sh/git-prompt.sh +source ~/.config/git-prompt.sh/git-prompt.sh # PS1: "~/foo/bar/baz $ " export PS1='\w $(__git_ps1 "(%s) ")\$ ' # History control: ...
jeffkreeftmeijer/dotfiles
7dd04274e7910adeaa490551adc953664fa9d470
Use \$ instead of $ in bash prompt
diff --git a/.bash_profile b/.bash_profile index 9fa51c3..2e54c0f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,31 +1,31 @@ source ~/.config/bash/git-prompt.sh/git-prompt.sh # PS1: "~/foo/bar/baz $ " -export PS1='\w $(__git_ps1 "(%s) ")$ ' +export PS1='\w $(__git_ps1 "(%s) ")\$ ' # History control: # - i...
jeffkreeftmeijer/dotfiles
257be55885ab05b24a1ae099dfe63e9537a98849
Restore clipboard copying in .tmux.conf
diff --git a/.tmux.conf b/.tmux.conf index 4d29250..3bcf793 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,45 +1,39 @@ # Use Ctrl-a instead of Ctrl-b as the tmux prefix set-option -g prefix C-a # Set the base index to 1 instead of 0 for both windows and panes. set-option -g base-index 1 set-option -g pane-base-i...
jeffkreeftmeijer/dotfiles
1d55daf975dff9ad249c098734c8f5c1540cd852
Revert "Use tmux-yank to handle clipboards"
diff --git a/.gitmodules b/.gitmodules index 3767ce8..c3ccab0 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,48 +1,45 @@ [submodule "nvim/pack/plugins/start/vim-tmux-navigator"] path = nvim/pack/plugins/start/vim-tmux-navigator url = git@github.com:christoomey/vim-tmux-navigator.git [submodule "nvim/pack/plugin...
jeffkreeftmeijer/dotfiles
20003df742397aed00096b1017f1887b286f1763
Add use-package and install evil-mode with it
diff --git a/.emacs b/.emacs index 47bb0ba..57b4c46 100644 --- a/.emacs +++ b/.emacs @@ -1,37 +1,48 @@ (require 'package) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (add-to-list 'package-archives '("melpa-stable" ...
jeffkreeftmeijer/dotfiles
5a7d5afd52a45f6b76dca4bc5c908c24b1edb85b
Use pbcopy and pbpaste in emacs
diff --git a/.emacs b/.emacs index 7ddff88..47bb0ba 100644 --- a/.emacs +++ b/.emacs @@ -1,24 +1,37 @@ (require 'package) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (add-to-list 'package-archives '("melpa-stable" ...
jeffkreeftmeijer/dotfiles
c89eaf396e35739181c988a1596226c25fafec52
Start emacs in evil mode
diff --git a/.emacs b/.emacs index edab8eb..7ddff88 100644 --- a/.emacs +++ b/.emacs @@ -1,20 +1,24 @@ (require 'package) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (add-to-list 'package-archives '("melpa-stable" ...
jeffkreeftmeijer/dotfiles
92f2709c42ab271fa9cd917957713495784a9360
M-x package-list-packages
diff --git a/.emacs b/.emacs index 7db6df0..edab8eb 100644 --- a/.emacs +++ b/.emacs @@ -1,8 +1,20 @@ (require 'package) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (add-to-list 'package-archives '("melpa-stable" ....
jeffkreeftmeijer/dotfiles
1651728ac606c294535179a258e18726a85224a4
Add .emacs with package configuration
diff --git a/.emacs b/.emacs new file mode 100644 index 0000000..7db6df0 --- /dev/null +++ b/.emacs @@ -0,0 +1,8 @@ +(require 'package) + +(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) +(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) +(add-to-list 'package-archives '("m...
jeffkreeftmeijer/dotfiles
88462b2006aa5f4b7bb09bf5bb22075efb19cec4
Add .tool-versions to .gitignore
diff --git a/.gitignore b/.gitignore index aa82804..77b40a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store .netrwhist +.tool-versions
jeffkreeftmeijer/dotfiles
95464fb4a6d051291869735bbc0711be410f9d70
Switch back to upstream ALE
diff --git a/nvim/pack/plugins/start/ale b/nvim/pack/plugins/start/ale index 7c73901..531868f 160000 --- a/nvim/pack/plugins/start/ale +++ b/nvim/pack/plugins/start/ale @@ -1 +1 @@ -Subproject commit 7c7390119966f5f8f45a02cda94c09d4fa117a63 +Subproject commit 531868f759404e11d1f34f72e19dcd6112a88567
jeffkreeftmeijer/dotfiles
1f8c63c8ac4d2a7407b3a5681a32f449226b9bab
Rebase ALE patch on upstream master
diff --git a/nvim/pack/plugins/start/ale b/nvim/pack/plugins/start/ale index 70fdeb7..7c73901 160000 --- a/nvim/pack/plugins/start/ale +++ b/nvim/pack/plugins/start/ale @@ -1 +1 @@ -Subproject commit 70fdeb7c228b512f042d8ffe11e9c5e1579bcb5f +Subproject commit 7c7390119966f5f8f45a02cda94c09d4fa117a63
jeffkreeftmeijer/dotfiles
f44237a83168c2bfa2f7886cca478b4844d0276a
Add tmux-resurrect and tmux-continuum, restore tmux and vim automatically
diff --git a/.gitmodules b/.gitmodules index 1e8102f..3767ce8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,42 +1,48 @@ [submodule "nvim/pack/plugins/start/vim-tmux-navigator"] path = nvim/pack/plugins/start/vim-tmux-navigator url = git@github.com:christoomey/vim-tmux-navigator.git [submodule "nvim/pack/plugin...
jeffkreeftmeijer/dotfiles
cfb46d519be2e9059c22465e62f2d6e78f72bbea
Use tmux-yank to handle clipboards
diff --git a/.gitmodules b/.gitmodules index f005f3d..1e8102f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,39 +1,42 @@ [submodule "nvim/pack/plugins/start/vim-tmux-navigator"] path = nvim/pack/plugins/start/vim-tmux-navigator url = git@github.com:christoomey/vim-tmux-navigator.git [submodule "nvim/pack/plugin...
jeffkreeftmeijer/dotfiles
d02d8773c4b0755bec7a0a9b69fe33920e8ddeb4
Clear the right side of the tmux status bar
diff --git a/.tmux.conf b/.tmux.conf index 5cff0c4..63f721b 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,34 +1,37 @@ # Use Ctrl-a instead of Ctrl-b as the tmux prefix set-option -g prefix C-a # Set the base index to 1 instead of 0 for both windows and panes. set-option -g base-index 1 set-option -g pane-base-i...
jeffkreeftmeijer/dotfiles
a00c7ff3469ae11b8c49baf9295a1b4dbb323946
Add asdf lines to .bash_profile
diff --git a/.bash_profile b/.bash_profile index 357d3eb..9fa51c3 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,27 +1,31 @@ source ~/.config/bash/git-prompt.sh/git-prompt.sh # PS1: "~/foo/bar/baz $ " export PS1='\w $(__git_ps1 "(%s) ")$ ' # History control: # - ignorespace: lines which begin with a spac...
jeffkreeftmeijer/dotfiles
a5b38a5e9fc7a4243504353b134cb509fd5fac43
Write and read history after every command
diff --git a/.bash_profile b/.bash_profile index 72961f2..357d3eb 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,24 +1,27 @@ source ~/.config/bash/git-prompt.sh/git-prompt.sh # PS1: "~/foo/bar/baz $ " export PS1='\w $(__git_ps1 "(%s) ")$ ' # History control: # - ignorespace: lines which begin with a spac...
jeffkreeftmeijer/dotfiles
7b84219e041f33e1f06fd8240d39e58334fb72e4
Add alchemist.vim
diff --git a/.gitmodules b/.gitmodules index ec52254..f005f3d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,36 +1,39 @@ [submodule "nvim/pack/plugins/start/vim-tmux-navigator"] path = nvim/pack/plugins/start/vim-tmux-navigator url = git@github.com:christoomey/vim-tmux-navigator.git [submodule "nvim/pack/plugin...
jeffkreeftmeijer/dotfiles
e0f3606785f678844a2a6133aa445df20103b2d7
Enable deoplete on startup and use tab completion
diff --git a/nvim/init.vim b/nvim/init.vim index f9ca864..9df614a 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,11 +1,24 @@ colors dim set bg=dark " fzf.vim set rtp+=/usr/local/opt/fzf nnoremap <silent> ,t :Files<CR> nnoremap <silent> ,b :Buffers<CR> nnoremap <silent> ,a :Ag<CR> " ale let g:ale_lint...
jeffkreeftmeijer/dotfiles
db51ddec80b785babfd3e6dcd4594f3f88089a46
Add deoplete.vim
diff --git a/.gitmodules b/.gitmodules index 90d03f4..ec52254 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,33 +1,36 @@ [submodule "nvim/pack/plugins/start/vim-tmux-navigator"] path = nvim/pack/plugins/start/vim-tmux-navigator url = git@github.com:christoomey/vim-tmux-navigator.git [submodule "nvim/pack/plugin...