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.
Requirements
------------
| python 2.5 or later
| simplejson(python 2.5)
How to Install?
---------------
setuptools
++++++++++
::
$ python setup.py install (run as admin/root)
Usage
++++++++++
::
>>> import pumblr
>>> data = pumblr.api.read('seikichi') # seikichi.tumblr.com
>>> print data.posts[0].type
-
+ >>> pumblr.api.auth(email='hoge@fuga', password='password')
+ >>> data = pumblr.api.dashboard()
+ >>> pumblr.api.write_quote(quote='myo---n')
|
|
| Author: seikichi
| License: MIT
| Mail: seikichi[at]kmc.gr.jp
|
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, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
def _auth_check(func):
"""check authenticate"""
@functools.wraps(func)
def wrapper(self, *args, **kw):
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
return func(self, *args, **kw)
return wrapper
def _check_status_code(self, url, data):
"""POST to url(with data) and check HTTP status code"""
try:
req = urllib2.urlopen(url, data)
return req.read()
except urllib2.HTTPError, e:
if e.code == 200 or e.code == 201:
return # OK
if e.code == 404:
raise PumblrError('incorrect reblog-key')
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
raise PumblrError('')
def _read_json_data(self, url, data=None):
"""open url and return json instance"""
text = urllib2.urlopen(url, data).read()
self._check_we_ll_be_back(text)
return json.loads(utils.extract_dict(text))
def auth(self, email, password):
"""validate credentials"""
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
text = self._check_status_code(url, utils.urlencode(query))
self._check_we_ll_be_back(text)
self._authenticated = True
@_auth_check
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes,
type=type
)
return ApiRead.parse(self._read_json_data(url, utils.urlencode(query)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num,
type=type,
search=search,
tagged=tagged
)
url = "http://%s.tumblr.com/api/read/json?%s" % (name, utils.urlencode(query))
return ApiRead.parse(self._read_json_data(url))
def like(self, post_id, reblog_key):
"""
Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=True)
def unlike(self, post_id, reblog_key):
"""
Un-Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=False)
@_auth_check
def _like_unlike(self, post_id, reblog_key, like):
url = 'http://www.tumblr.com/api/%s' % ('like' if like else 'unlike')
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
self._check_status_code(url, utils.urlencode(query))
@_auth_check
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
if group is not None:
group = '%s.tumblr.com' % group
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key,
'group':group,
'comment':comment,
'as':reblog_as,
}
self._check_status_code(url, utils.urlencode(query))
def _write(f):
def _wrapper(self, generator='pumblr', group=None, **kw):
"""
Write API.
Arguments:
- `generator`: A short description of the application
- `group`: Post this to a secondary blog on your account
- \n\n
+ \n
"""
url = 'http://www.tumblr.com/api/write'
if group is not None: group = '%s.tumblr.com' % group
query = dict(
email=self._email,
password=self._password,
generator=generator,
group=group
)
query.update(f(self, **kw))
if not 'type' in query.keys():
raise PumblrError('post type is needed!')
self._check_status_code(url, utils.urlencode(query))
_wrapper.__doc__ += f.__doc__
return _wrapper
@_write
@_auth_check
def write_quote(self, quote, source=None):
"""
Quote Arguments:
- `quote`:
- `source`:
"""
return dict(type='quote', quote=quote, source=source)
@_write
@_auth_check
def write_regular(self, title, body):
"""
Regular Arguments:
- `title`:
- `body`:
"""
return dict(type='regular', title=title, body=body)
+
+ @_write
+ @_auth_check
+ def write_link(self, url, name=None, description=None):
+ """
+ Link Arguments:
+ - `name`:
+ - `url`:
+ - `description`
+ """
+ return dict(type='link', url=url, name=name, description=description)
+
+ @_write
+ @_auth_check
+ def write_photo(self, source, data, caption=None, click_through_url=None):
+ """
+ Photo Arguments:
+ - `source`:
+ - `data`:
+ - `caption`
+ - `click_through_url`
+ """
+ return {
+ 'type':'photo',
+ 'source':source,
+ 'data':data,
+ 'caption':caption,
+ 'click-through-url':click_through_url
+ }
|
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, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
def _auth_check(func):
"""check authenticate"""
@functools.wraps(func)
def wrapper(self, *args, **kw):
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
return func(self, *args, **kw)
return wrapper
def _check_status_code(self, url, data):
"""POST to url(with data) and check HTTP status code"""
try:
req = urllib2.urlopen(url, data)
return req.read()
except urllib2.HTTPError, e:
if e.code == 200 or e.code == 201:
return # OK
if e.code == 404:
raise PumblrError('incorrect reblog-key')
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
raise PumblrError('')
def _read_json_data(self, url, data=None):
"""open url and return json instance"""
text = urllib2.urlopen(url, data).read()
self._check_we_ll_be_back(text)
return json.loads(utils.extract_dict(text))
def auth(self, email, password):
"""validate credentials"""
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
text = self._check_status_code(url, utils.urlencode(query))
self._check_we_ll_be_back(text)
self._authenticated = True
@_auth_check
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes,
type=type
)
return ApiRead.parse(self._read_json_data(url, utils.urlencode(query)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num,
type=type,
search=search,
tagged=tagged
)
url = "http://%s.tumblr.com/api/read/json?%s" % (name, utils.urlencode(query))
return ApiRead.parse(self._read_json_data(url))
def like(self, post_id, reblog_key):
"""
Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=True)
def unlike(self, post_id, reblog_key):
"""
Un-Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=False)
@_auth_check
def _like_unlike(self, post_id, reblog_key, like):
url = 'http://www.tumblr.com/api/%s' % ('like' if like else 'unlike')
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
self._check_status_code(url, utils.urlencode(query))
@_auth_check
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
if group is not None:
group = '%s.tumblr.com' % group
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key,
'group':group,
'comment':comment,
'as':reblog_as,
}
self._check_status_code(url, utils.urlencode(query))
+
+ def _write(f):
+ def _wrapper(self, generator='pumblr', group=None, **kw):
+ """
+ Write API.
+ Arguments:
+ - `generator`: A short description of the application
+ - `group`: Post this to a secondary blog on your account
+ \n\n
+ """
+ url = 'http://www.tumblr.com/api/write'
+ if group is not None: group = '%s.tumblr.com' % group
+ query = dict(
+ email=self._email,
+ password=self._password,
+ generator=generator,
+ group=group
+ )
+ query.update(f(self, **kw))
+ if not 'type' in query.keys():
+ raise PumblrError('post type is needed!')
+ self._check_status_code(url, utils.urlencode(query))
+
+ _wrapper.__doc__ += f.__doc__
+ return _wrapper
+
+ @_write
+ @_auth_check
+ def write_quote(self, quote, source=None):
+ """
+ Quote Arguments:
+ - `quote`:
+ - `source`:
+ """
+ return dict(type='quote', quote=quote, source=source)
+
+ @_write
+ @_auth_check
+ def write_regular(self, title, body):
+ """
+ Regular Arguments:
+ - `title`:
+ - `body`:
+ """
+ return dict(type='regular', title=title, body=body)
diff --git a/test_pumblr.py b/test_pumblr.py
index 06c1c95..1380e14 100755
--- a/test_pumblr.py
+++ b/test_pumblr.py
@@ -1,117 +1,119 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
import urllib2
from pumblr.api import *
from pumblr.errors import *
from pumblr.models import *
from pumblr.utils import *
from nose.tools import *
json = import_json()
def read_data(filename):
"""return the data of testdata/${filename}"""
filename = os.path.join(os.path.dirname(__file__), 'testdata', filename)
with open(filename) as f:
return f.read()
def test_models():
"""test for pumblr/models.py"""
data = json.loads(extract_dict(read_data('read.json')))
api_read = ApiRead.parse(data)
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
class StubURLOpen(object):
"""Stub for urlopen"""
def __init__(self, *args, **kw):
"""don't care"""
self._error = False
def set_data(self, filename):
class _Ret(object):
def __init__(self, data):
self._data = data
def read(self, *args, **kw):
return self._data
self._ret = _Ret(read_data(filename))
def set_error_code(self, code):
self._error = True
self._code = code
def __call__(self, *args, **kw):
if self._error:
raise urllib2.HTTPError('', self._code, '', None, None)
return self._ret
def patch_urllib2():
urllib2._urlopen = urllib2.urlopen
urllib2.urlopen = StubURLOpen()
def unpatch_urllib2():
urllib2.urlopen = urllib2._urlopen
delattr(urllib2, '_urlopen')
@with_setup(patch_urllib2, unpatch_urllib2)
def test_api_read():
"""test for pumblr/api.py"""
api = API()
urllib2.urlopen.set_data('read.json') # fake
api_read = api.read('seikichi')
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
urllib2.urlopen.set_data('dashboard.json')
api.auth(email='seikichi@localhost', password='password') # ;-p
dashboard = api.dashboard()
assert_equal(dashboard.posts[0].id, 1104344180)
urllib2.urlopen.set_data('error.xhtml')
assert_raises(PumblrError, api.dashboard)
@with_setup(patch_urllib2, unpatch_urllib2)
def test_api_auth():
api = API()
assert_raises(PumblrError, api.dashboard)
assert_raises(PumblrError, api.like, 0, 0)
assert_raises(PumblrError, api.unlike, 0, 0)
assert_raises(PumblrError, api.reblog, 0, 0)
@with_setup(patch_urllib2, unpatch_urllib2)
def test_error_code():
api = API()
urllib2.urlopen.set_data('dashboard.json') # dummy
api.auth(email='seikichi@localhost', password='password') # ;-p
urllib2.urlopen.set_error_code(403)
assert_raises(PumblrAuthError, api.like, 0, 0)
urllib2.urlopen.set_error_code(400)
assert_raises(PumblrRequestError, api.like, 0, 0)
urllib2.urlopen.set_error_code(403)
assert_raises(PumblrAuthError, api.unlike, 0, 0)
urllib2.urlopen.set_error_code(400)
assert_raises(PumblrRequestError, api.unlike, 0, 0)
urllib2.urlopen.set_error_code(404)
assert_raises(PumblrError, api.reblog, 0, 0)
@with_setup(patch_urllib2, unpatch_urllib2)
def test_api_write():
api = API()
urllib2.urlopen.set_data('dashboard.json') # dummy
api.auth(email='seikichi@localhost', password='password') # ;-p
+
urllib2.urlopen.set_error_code(201)
- api.write_quote(quote='ã»ããµãã¼', type='quote')
+ api.write_quote(quote='ã»ããµãã¼', source='pyo------')
+ api.write_regular(title='ã¿ãã¼ã¼ã', body='ã¯ãã¯ãã¯ãã¹ã¯ãã¹')
|
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
from pumblr.errors import *
from nose.tools import *
passowrd = ''
mail = ''
def setpass():
global mail, password
import sys
sys.stderr.write('\nMail:')
mail = raw_input('')
password = getpass('Password:', sys.stderr)
@with_setup(setpass)
def test_all():
"""å®éã«éä¿¡ããã¦ãã¹ããã"""
import pumblr
# èªè¨¼ãå¿
è¦ãªé¢æ°ã§ã¨ã©ã¼ãåºãã確èª
assert_raises(PumblrError, pumblr.api.dashboard)
assert_raises(PumblrError, pumblr.api.like, 0, 0)
assert_raises(PumblrError, pumblr.api.unlike, 0, 0)
assert_raises(PumblrError, pumblr.api.reblog, 0, 0)
assert_raises(PumblrAuthError, pumblr.api.auth, mail, '')
read_data = pumblr.api.read('seikichi', num=3, type='quote')
assert_equal(len(read_data.posts), 3)
assert_equal(0, len(filter(lambda p: p.type!='quote', read_data.posts)))
# 以ä¸èªè¨¼å¾ã®ãã¹ã
pumblr.api.auth(mail, password)
# dashboard
dashboard_data = pumblr.api.dashboard(num=10)
assert_equal(len(dashboard_data.posts), 10)
dashboard_data = pumblr.api.dashboard(type='photo')
assert_equal(0, len(filter(lambda p: p.type!='photo', dashboard_data.posts)))
# reblog
- post = dashboard_data.posts[0]
- pumblr.api.reblog(post.id, post.reblog_key, group='se-kichi')
- new_post = pumblr.api.read('se-kichi', num=1).posts[0]
+ # post = dashboard_data.posts[0]
+ # pumblr.api.reblog(post.id, post.reblog_key, group='se-kichi')
+ # new_post = pumblr.api.read('se-kichi', num=1).posts[0]
diff --git a/test_pumblr.py b/test_pumblr.py
index 4c20c8e..06c1c95 100755
--- a/test_pumblr.py
+++ b/test_pumblr.py
@@ -1,76 +1,117 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
import urllib2
from pumblr.api import *
from pumblr.errors import *
from pumblr.models import *
from pumblr.utils import *
from nose.tools import *
json = import_json()
def read_data(filename):
"""return the data of testdata/${filename}"""
filename = os.path.join(os.path.dirname(__file__), 'testdata', filename)
with open(filename) as f:
return f.read()
def test_models():
"""test for pumblr/models.py"""
data = json.loads(extract_dict(read_data('read.json')))
api_read = ApiRead.parse(data)
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
class StubURLOpen(object):
"""Stub for urlopen"""
def __init__(self, *args, **kw):
"""don't care"""
- pass
+ self._error = False
def set_data(self, filename):
class _Ret(object):
def __init__(self, data):
self._data = data
def read(self, *args, **kw):
return self._data
self._ret = _Ret(read_data(filename))
+ def set_error_code(self, code):
+ self._error = True
+ self._code = code
+
def __call__(self, *args, **kw):
+ if self._error:
+ raise urllib2.HTTPError('', self._code, '', None, None)
return self._ret
def patch_urllib2():
urllib2._urlopen = urllib2.urlopen
urllib2.urlopen = StubURLOpen()
def unpatch_urllib2():
urllib2.urlopen = urllib2._urlopen
delattr(urllib2, '_urlopen')
@with_setup(patch_urllib2, unpatch_urllib2)
-def test_api():
+def test_api_read():
"""test for pumblr/api.py"""
api = API()
urllib2.urlopen.set_data('read.json') # fake
api_read = api.read('seikichi')
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
urllib2.urlopen.set_data('dashboard.json')
api.auth(email='seikichi@localhost', password='password') # ;-p
dashboard = api.dashboard()
assert_equal(dashboard.posts[0].id, 1104344180)
urllib2.urlopen.set_data('error.xhtml')
assert_raises(PumblrError, api.dashboard)
+
+
+@with_setup(patch_urllib2, unpatch_urllib2)
+def test_api_auth():
+ api = API()
+ assert_raises(PumblrError, api.dashboard)
+ assert_raises(PumblrError, api.like, 0, 0)
+ assert_raises(PumblrError, api.unlike, 0, 0)
+ assert_raises(PumblrError, api.reblog, 0, 0)
+
+
+@with_setup(patch_urllib2, unpatch_urllib2)
+def test_error_code():
+ api = API()
+ urllib2.urlopen.set_data('dashboard.json') # dummy
+ api.auth(email='seikichi@localhost', password='password') # ;-p
+ urllib2.urlopen.set_error_code(403)
+ assert_raises(PumblrAuthError, api.like, 0, 0)
+ urllib2.urlopen.set_error_code(400)
+ assert_raises(PumblrRequestError, api.like, 0, 0)
+ urllib2.urlopen.set_error_code(403)
+ assert_raises(PumblrAuthError, api.unlike, 0, 0)
+ urllib2.urlopen.set_error_code(400)
+ assert_raises(PumblrRequestError, api.unlike, 0, 0)
+ urllib2.urlopen.set_error_code(404)
+ assert_raises(PumblrError, api.reblog, 0, 0)
+
+
+@with_setup(patch_urllib2, unpatch_urllib2)
+def test_api_write():
+ api = API()
+ urllib2.urlopen.set_data('dashboard.json') # dummy
+ api.auth(email='seikichi@localhost', password='password') # ;-p
+ urllib2.urlopen.set_error_code(201)
+ api.write_quote(quote='ã»ããµãã¼', type='quote')
|
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)
>>> urlencode(dict(a=1, b=2, c=None))
'a=1&b=2'
>>> urlencode(dict(aaaa=1000, c='hoge', a=None))
'aaaa=1000&c=hoge'
"""
delkeys = []
for key, val in query.iteritems():
if val is None:
delkeys.append(key)
for key in delkeys:
query.pop(key)
return urllib.urlencode(query)
def extract_dict(json):
"""
'var hoge={...}' -> '{...}'
>>> extract_dict('var hoge = {\"fuga\":1}')
'{\"fuga\":1}'
"""
return re.match("^.*?({.*}).*$", json, re.DOTALL | re.MULTILINE | re.UNICODE).group(1)
def make_variable_name(name):
"""
replace invalide character
example:
>>> make_variable_name('hoge-fuga-piyo')
'hoge_fuga_piyo'
>>> make_variable_name('Love & Peace')
'Love___Peace'
>>> make_variable_name('12abc23')
'i12abc23'
"""
if name[0] in string.digits:
name = 'i' + name # ããã©ãããã
return re.sub('[^A-Za-z0-9_]', '_', name)
def import_json():
"""
import json module and return the module
>>> json = import_json()
"""
try:
import simplejson as json
except ImportError:
try:
import json # Python 2.6+
except ImportError:
try:
from django.utils import simplejson as json # Google App Engine
except ImportError:
raise ImportError, "Can't load a json library"
return json
diff --git a/test_communicate.py b/test_communicate.py
new file mode 100755
index 0000000..ee2d85b
--- /dev/null
+++ b/test_communicate.py
@@ -0,0 +1,53 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+# å®éã«éä¿¡ãã¦ãã¹ããè¡ã
+
+from __future__ import with_statement
+from getpass import getpass
+
+from pumblr.errors import *
+from nose.tools import *
+
+
+passowrd = ''
+mail = ''
+
+
+def setpass():
+ global mail, password
+ import sys
+ sys.stderr.write('\nMail:')
+ mail = raw_input('')
+ password = getpass('Password:', sys.stderr)
+
+
+@with_setup(setpass)
+def test_all():
+ """å®éã«éä¿¡ããã¦ãã¹ããã"""
+ import pumblr
+ # èªè¨¼ãå¿
è¦ãªé¢æ°ã§ã¨ã©ã¼ãåºãã確èª
+ assert_raises(PumblrError, pumblr.api.dashboard)
+ assert_raises(PumblrError, pumblr.api.like, 0, 0)
+ assert_raises(PumblrError, pumblr.api.unlike, 0, 0)
+ assert_raises(PumblrError, pumblr.api.reblog, 0, 0)
+
+ assert_raises(PumblrAuthError, pumblr.api.auth, mail, '')
+
+ read_data = pumblr.api.read('seikichi', num=3, type='quote')
+ assert_equal(len(read_data.posts), 3)
+ assert_equal(0, len(filter(lambda p: p.type!='quote', read_data.posts)))
+
+ # 以ä¸èªè¨¼å¾ã®ãã¹ã
+ pumblr.api.auth(mail, password)
+
+ # dashboard
+ dashboard_data = pumblr.api.dashboard(num=10)
+ assert_equal(len(dashboard_data.posts), 10)
+ dashboard_data = pumblr.api.dashboard(type='photo')
+ assert_equal(0, len(filter(lambda p: p.type!='photo', dashboard_data.posts)))
+
+ # reblog
+ post = dashboard_data.posts[0]
+ pumblr.api.reblog(post.id, post.reblog_key, group='se-kichi')
+ new_post = pumblr.api.read('se-kichi', num=1).posts[0]
|
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 Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
|
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 errors import PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
- def _add_param(self, query, key, val):
- if val is not None:
- query[key] = val
-
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
def _auth_check(func):
"""check authenticate"""
@functools.wraps(func)
def wrapper(self, *args, **kw):
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
return func(self, *args, **kw)
return wrapper
def _check_status_code(self, url, data):
"""POST to url(with data) and check HTTP status code"""
try:
req = urllib2.urlopen(url, data)
return req.read()
except urllib2.HTTPError, e:
if e.code == 200 or e.code == 201:
return # OK
if e.code == 404:
raise PumblrError('incorrect reblog-key')
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
raise PumblrError('')
def _read_json_data(self, url, data=None):
"""open url and return json instance"""
- req = urllib2.urlopen(url, data)
- text = req.read()
+ text = urllib2.urlopen(url, data).read()
self._check_we_ll_be_back(text)
return json.loads(utils.extract_dict(text))
def auth(self, email, password):
"""validate credentials"""
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
- text = self._check_status_code(url, urlencode(query))
+ text = self._check_status_code(url, utils.urlencode(query))
self._check_we_ll_be_back(text)
self._authenticated = True
@_auth_check
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
- likes=likes
+ likes=likes,
+ type=type
)
- self._add_param(query, 'type', type)
- return ApiRead.parse(self._read_json_data(url, urlencode(query)))
+ return ApiRead.parse(self._read_json_data(url, utils.urlencode(query)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
- num=num
+ num=num,
+ type=type,
+ search=search,
+ tagged=tagged
)
- self._add_param(query, 'type', type)
- self._add_param(query, 'search', search)
- self._add_param(query, 'tagged', tagged)
- url = "http://%s.tumblr.com/api/read/json?%s" % (name, urlencode(query))
+ url = "http://%s.tumblr.com/api/read/json?%s" % (name, utils.urlencode(query))
return ApiRead.parse(self._read_json_data(url))
def like(self, post_id, reblog_key):
"""
Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=True)
def unlike(self, post_id, reblog_key):
"""
Un-Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=False)
@_auth_check
def _like_unlike(self, post_id, reblog_key, like):
url = 'http://www.tumblr.com/api/%s' % ('like' if like else 'unlike')
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
- self._check_status_code(url, urlencode(query))
+ self._check_status_code(url, utils.urlencode(query))
@_auth_check
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
+ if group is not None:
+ group = '%s.tumblr.com' % group
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
- 'reblog-key':reblog_key
+ 'reblog-key':reblog_key,
+ 'group':group,
+ 'comment':comment,
+ 'as':reblog_as,
}
- self._add_param(query, 'comment', comment)
- self._add_param(query, 'as', reblog_as)
- if group is not None:
- query['group'] = '%s.tumblr.com' % group
-
- self._check_status_code(url, urlencode(query))
+ self._check_status_code(url, utils.urlencode(query))
diff --git a/pumblr/utils.py b/pumblr/utils.py
index 04871b4..f99bcce 100755
--- a/pumblr/utils.py
+++ b/pumblr/utils.py
@@ -1,45 +1,67 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import string
+import urllib
+
+def urlencode(query):
+ """
+ urlencode(remove key if value is None)
+ >>> urlencode(dict(a=1, b=2, c=None))
+ 'a=1&b=2'
+ >>> urlencode(dict(aaaa=1000, c='hoge', a=None))
+ 'aaaa=1000&c=hoge'
+ """
+ delkeys = []
+ for key, val in query.iteritems():
+ if val is None:
+ delkeys.append(key)
+ for key in delkeys:
+ query.pop(key)
+ return urllib.urlencode(query)
+
def extract_dict(json):
"""
'var hoge={...}' -> '{...}'
>>> extract_dict('var hoge = {\"fuga\":1}')
'{\"fuga\":1}'
"""
return re.match("^.*?({.*}).*$", json, re.DOTALL | re.MULTILINE | re.UNICODE).group(1)
def make_variable_name(name):
"""
replace invalide character
example:
>>> make_variable_name('hoge-fuga-piyo')
'hoge_fuga_piyo'
>>> make_variable_name('Love & Peace')
'Love___Peace'
>>> make_variable_name('12abc23')
'i12abc23'
"""
if name[0] in string.digits:
name = 'i' + name # ããã©ãããã
return re.sub('[^A-Za-z0-9_]', '_', name)
def import_json():
+ """
+ import json module and return the module
+ >>> json = import_json()
+ """
try:
import simplejson as json
except ImportError:
try:
import json # Python 2.6+
except ImportError:
try:
from django.utils import simplejson as json # Google App Engine
except ImportError:
raise ImportError, "Can't load a json library"
return json
|
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 errors import PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
- def auth(self, email, password):
- self._email = email
- self._password = password
- url = 'http://www.tumblr.com/api/authenticate'
- query = dict(
- email=self._email,
- password=self._password,
- )
+ def _add_param(self, query, key, val):
+ if val is not None:
+ query[key] = val
+
+ def _check_we_ll_be_back(self, text): # ;-p
+ if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
+ raise PumblrError('We\'ll be back shortly!')
+
+ def _auth_check(func):
+ """check authenticate"""
+ @functools.wraps(func)
+ def wrapper(self, *args, **kw):
+ if not self._authenticated:
+ raise PumblrError("You are not authenticated yet.")
+ return func(self, *args, **kw)
+ return wrapper
+
+ def _check_status_code(self, url, data):
+ """POST to url(with data) and check HTTP status code"""
try:
- req = urllib2.urlopen(url, urlencode(query))
- text = req.read()
+ req = urllib2.urlopen(url, data)
+ return req.read()
except urllib2.HTTPError, e:
+ if e.code == 200 or e.code == 201:
+ return # OK
+ if e.code == 404:
+ raise PumblrError('incorrect reblog-key')
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
+ raise PumblrError('')
+ def _read_json_data(self, url, data=None):
+ """open url and return json instance"""
+ req = urllib2.urlopen(url, data)
+ text = req.read()
self._check_we_ll_be_back(text)
- self._authenticated = True
-
-
- def _check_we_ll_be_back(self, text): # ;-p
- if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
- raise PumblrError('We\'ll be back shortly!')
+ return json.loads(utils.extract_dict(text))
- def _auth_check(self):
- if not self._authenticated:
- raise PumblrError("You are not authenticated yet.")
+ def auth(self, email, password):
+ """validate credentials"""
+ self._email = email
+ self._password = password
+ url = 'http://www.tumblr.com/api/authenticate'
+ query = dict(
+ email=self._email,
+ password=self._password,
+ )
+ text = self._check_status_code(url, urlencode(query))
+ self._check_we_ll_be_back(text)
+ self._authenticated = True
+ @_auth_check
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
- self._auth_check()
-
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes
)
- if type is not None:
- query['type'] = type
-
- req = urllib2.urlopen(url, urlencode(query))
- text = req.read()
- self._check_we_ll_be_back(text)
- return ApiRead.parse(json.loads(utils.extract_dict(text)))
+ self._add_param(query, 'type', type)
+ return ApiRead.parse(self._read_json_data(url, urlencode(query)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
- if type is not None:
- query['type'] = type
- if search is not None:
- query['search'] = search
- if tagged is not None:
- query['tagged'] = tagged
-
+ self._add_param(query, 'type', type)
+ self._add_param(query, 'search', search)
+ self._add_param(query, 'tagged', tagged)
url = "http://%s.tumblr.com/api/read/json?%s" % (name, urlencode(query))
- req = urllib2.urlopen(url)
- text = req.read()
- self._check_we_ll_be_back(text)
- return ApiRead.parse(json.loads(utils.extract_dict(text)))
+ return ApiRead.parse(self._read_json_data(url))
def like(self, post_id, reblog_key):
"""
Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=True)
def unlike(self, post_id, reblog_key):
"""
Un-Liking post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
"""
self._like_unlike(post_id, reblog_key, like=False)
+ @_auth_check
def _like_unlike(self, post_id, reblog_key, like):
- self._auth_check()
url = 'http://www.tumblr.com/api/%s' % ('like' if like else 'unlike')
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
- try:
- urllib2.urlopen(url, urlencode(query))
- except urllib2.HTTPError, e:
- if e.code == 404:
- raise PumblrError('incorrect reblog-key')
- if e.code == 403:
- raise PumblrAuthError(str(e))
- if e.code == 400:
- raise PumblrRequestError(str(e))
- except Exception, e:
- raise PumblrError(str(e))
-
+ self._check_status_code(url, urlencode(query))
+ @_auth_check
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
-
- self._auth_check()
-
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
- if comment is not None:
- query['comment'] = comment
- if reblog_as is not None:
- query['as'] = reblog_as
+ self._add_param(query, 'comment', comment)
+ self._add_param(query, 'as', reblog_as)
if group is not None:
query['group'] = '%s.tumblr.com' % group
- try:
- urllib2.urlopen(url, urlencode(query))
- except urllib2.HTTPError, e:
- if e.code == 201:
- return
- if e.code == 403:
- raise PumblrAuthError(str(e))
- if e.code == 400:
- raise PumblrRequestError(str(e))
- except Exception, e:
- raise PumblrError(str(e))
- raise PumblrError('reblog failed.')
+ self._check_status_code(url, urlencode(query))
|
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 PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def auth(self, email, password):
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
try:
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
except urllib2.HTTPError, e:
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
self._check_we_ll_be_back(text)
self._authenticated = True
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
+ def _auth_check(self):
+ if not self._authenticated:
+ raise PumblrError("You are not authenticated yet.")
+
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
- if not self._authenticated:
- raise PumblrError("You are not authenticated yet.")
+ self._auth_check()
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes
)
if type is not None:
query['type'] = type
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
if type is not None:
query['type'] = type
if search is not None:
query['search'] = search
if tagged is not None:
query['tagged'] = tagged
- url = "http://%s.tumblr.com/api/read/json" % name
- req = urllib2.urlopen(url+'?'+urlencode(query))
+ url = "http://%s.tumblr.com/api/read/json?%s" % (name, urlencode(query))
+ req = urllib2.urlopen(url)
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
+ def like(self, post_id, reblog_key):
+ """
+ Liking post.
+ Arguments:
+ - `post_id`: The integer ID of the post to reblog.
+ - `reblog_key`: The corresponding reblog_key value from the post's read data.
+ """
+ self._like_unlike(post_id, reblog_key, like=True)
+
+ def unlike(self, post_id, reblog_key):
+ """
+ Un-Liking post.
+ Arguments:
+ - `post_id`: The integer ID of the post to reblog.
+ - `reblog_key`: The corresponding reblog_key value from the post's read data.
+ """
+ self._like_unlike(post_id, reblog_key, like=False)
+
+ def _like_unlike(self, post_id, reblog_key, like):
+ self._auth_check()
+ url = 'http://www.tumblr.com/api/%s' % ('like' if like else 'unlike')
+ query = {
+ 'email':self._email,
+ 'password':self._password,
+ 'post-id':post_id,
+ 'reblog-key':reblog_key
+ }
+ try:
+ urllib2.urlopen(url, urlencode(query))
+ except urllib2.HTTPError, e:
+ if e.code == 404:
+ raise PumblrError('incorrect reblog-key')
+ if e.code == 403:
+ raise PumblrAuthError(str(e))
+ if e.code == 400:
+ raise PumblrRequestError(str(e))
+ except Exception, e:
+ raise PumblrError(str(e))
+
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
- if not self._authenticated:
- raise PumblrError("You are not authenticated yet.")
+ self._auth_check()
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
'reblog-key':reblog_key
}
if comment is not None:
query['comment'] = comment
if reblog_as is not None:
query['as'] = reblog_as
if group is not None:
query['group'] = '%s.tumblr.com' % group
try:
urllib2.urlopen(url, urlencode(query))
except urllib2.HTTPError, e:
if e.code == 201:
return
if e.code == 403:
raise PumblrAuthError(str(e))
if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
raise PumblrError('reblog failed.')
|
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 PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def auth(self, email, password):
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
try:
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
except urllib2.HTTPError, e:
- if 403 == e.code:
+ if e.code == 403:
raise PumblrAuthError(str(e))
- if 400 == e.code:
+ if e.code == 400:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
self._check_we_ll_be_back(text)
self._authenticated = True
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes
)
if type is not None:
query['type'] = type
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
if type is not None:
query['type'] = type
if search is not None:
query['search'] = search
if tagged is not None:
query['tagged'] = tagged
url = "http://%s.tumblr.com/api/read/json" % name
req = urllib2.urlopen(url+'?'+urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
"""
Reblogging post.
Arguments:
- `post_id`: The integer ID of the post to reblog.
- `reblog_key`: The corresponding reblog_key value from the post's read data.
- `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
- `reblog_as`: Reblog as a different format from the original post.
- `group`: Post this to a secondary blog on your account.
"""
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
url = 'http://www.tumblr.com/api/reblog'
query = {
'email':self._email,
'password':self._password,
'post-id':post_id,
+ 'reblog-key':reblog_key
}
if comment is not None:
query['comment'] = comment
if reblog_as is not None:
query['as'] = reblog_as
if group is not None:
- query['group'] = group
+ query['group'] = '%s.tumblr.com' % group
- req = urllib2.urlopen(url, urlencode(query))
- text = req.read()
- self._check_we_ll_be_back(text)
- print text
+ try:
+ urllib2.urlopen(url, urlencode(query))
+ except urllib2.HTTPError, e:
+ if e.code == 201:
+ return
+ if e.code == 403:
+ raise PumblrAuthError(str(e))
+ if e.code == 400:
+ raise PumblrRequestError(str(e))
+ except Exception, e:
+ raise PumblrError(str(e))
+ raise PumblrError('reblog failed.')
|
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 PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def auth(self, email, password):
self._email = email
self._password = password
url = 'http://www.tumblr.com/api/authenticate'
query = dict(
email=self._email,
password=self._password,
)
try:
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
except urllib2.HTTPError, e:
if 403 == e.code:
raise PumblrAuthError(str(e))
if 400 == e.code:
raise PumblrRequestError(str(e))
except Exception, e:
raise PumblrError(str(e))
self._check_we_ll_be_back(text)
self._authenticated = True
def _check_we_ll_be_back(self, text): # ;-p
- if text.startswith('<!DOCTYPE html PUBLIC'):
+ if text.startswith('<!DOCTYPE html PUBLIC'): #TODO: ããå¾®å¦ãããã ã
raise PumblrError('We\'ll be back shortly!')
def dashboard(self, start=0, num=20, type=None, likes=0):
"""
Dashboard reading.
Arguments:
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
"""
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
start=start,
num=num,
likes=likes
)
if type is not None:
query['type'] = type
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
if type is not None:
query['type'] = type
if search is not None:
query['search'] = search
if tagged is not None:
query['tagged'] = tagged
url = "http://%s.tumblr.com/api/read/json" % name
req = urllib2.urlopen(url+'?'+urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
+
+
+ def reblog(self, post_id, reblog_key, comment=None, reblog_as=None, group=None):
+ """
+ Reblogging post.
+ Arguments:
+ - `post_id`: The integer ID of the post to reblog.
+ - `reblog_key`: The corresponding reblog_key value from the post's read data.
+ - `comment`: Text, HTML, or Markdown string (see format) of the commentary added to the reblog.
+ - `reblog_as`: Reblog as a different format from the original post.
+ - `group`: Post this to a secondary blog on your account.
+ """
+
+ if not self._authenticated:
+ raise PumblrError("You are not authenticated yet.")
+
+ url = 'http://www.tumblr.com/api/reblog'
+ query = {
+ 'email':self._email,
+ 'password':self._password,
+ 'post-id':post_id,
+ }
+ if comment is not None:
+ query['comment'] = comment
+ if reblog_as is not None:
+ query['as'] = reblog_as
+ if group is not None:
+ query['group'] = group
+
+ req = urllib2.urlopen(url, urlencode(query))
+ text = req.read()
+ self._check_we_ll_be_back(text)
+ print text
|
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 PumblrError
+from errors import PumblrError, PumblrAuthError, PumblrRequestError
class API(object):
"""Tumblr API"""
def __init__(self, email=None, password=None):
self._authenticated = False
if email is not None and password is not None:
self.auth(email, password)
def auth(self, email, password):
self._email = email
self._password = password
+ url = 'http://www.tumblr.com/api/authenticate'
+ query = dict(
+ email=self._email,
+ password=self._password,
+ )
+ try:
+ req = urllib2.urlopen(url, urlencode(query))
+ text = req.read()
+ except urllib2.HTTPError, e:
+ if 403 == e.code:
+ raise PumblrAuthError(str(e))
+ if 400 == e.code:
+ raise PumblrRequestError(str(e))
+ except Exception, e:
+ raise PumblrError(str(e))
+
+ self._check_we_ll_be_back(text)
self._authenticated = True
+
def _check_we_ll_be_back(self, text): # ;-p
if text.startswith('<!DOCTYPE html PUBLIC'):
raise PumblrError('We\'ll be back shortly!')
- def dashboard(self):
+ def dashboard(self, start=0, num=20, type=None, likes=0):
+ """
+ Dashboard reading.
+ Arguments:
+ - `start`: The post offset to start from. The default is 0.
+ - `num`: The number of posts to return. The default is 20, and the maximum is 50.
+ - `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
+ """
if not self._authenticated:
raise PumblrError("You are not authenticated yet.")
url = 'http://www.tumblr.com/api/dashboard/json'
query = dict(
email=self._email,
password=self._password,
+ start=start,
+ num=num,
+ likes=likes
)
+ if type is not None:
+ query['type'] = type
req = urllib2.urlopen(url, urlencode(query))
text = req.read()
- print text
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
+ Reading Tumblr data.
Arguments:
- `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
if type is not None:
query['type'] = type
if search is not None:
query['search'] = search
if tagged is not None:
query['tagged'] = tagged
url = "http://%s.tumblr.com/api/read/json" % name
req = urllib2.urlopen(url+'?'+urlencode(query))
text = req.read()
self._check_we_ll_be_back(text)
return ApiRead.parse(json.loads(utils.extract_dict(text)))
diff --git a/pumblr/errors.py b/pumblr/errors.py
index 04be665..6e98baf 100755
--- a/pumblr/errors.py
+++ b/pumblr/errors.py
@@ -1,22 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
class PumblrError(Exception):
"""Pumblr exception"""
def __init__(self, msg):
self._msg = msg
def __str__(self):
return self._msg
class PumblrAuthError(PumblrError):
"""403 Forbidden exception"""
pass
-class PumblrReqestError(PumblrError):
+class PumblrRequestError(PumblrError):
"""400 Bad Request exception"""
pass
|
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 PumblrError
class API(object):
"""Tumblr API"""
- def __init__(self):
- pass
+ def __init__(self, email=None, password=None):
+ self._authenticated = False
+ if email is not None and password is not None:
+ self.auth(email, password)
- def read(self, user, start=0, num=20, type=None, id=None, search=None, tagged=None):
+ def auth(self, email, password):
+ self._email = email
+ self._password = password
+ self._authenticated = True
+
+ def _check_we_ll_be_back(self, text): # ;-p
+ if text.startswith('<!DOCTYPE html PUBLIC'):
+ raise PumblrError('We\'ll be back shortly!')
+
+ def dashboard(self):
+ if not self._authenticated:
+ raise PumblrError("You are not authenticated yet.")
+
+ url = 'http://www.tumblr.com/api/dashboard/json'
+ query = dict(
+ email=self._email,
+ password=self._password,
+ )
+
+ req = urllib2.urlopen(url, urlencode(query))
+ text = req.read()
+ print text
+ self._check_we_ll_be_back(text)
+ return ApiRead.parse(json.loads(utils.extract_dict(text)))
+
+ def read(self, name, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
Arguments:
- - `user`: username
+ - `name`: username
- `start`: The post offset to start from. The default is 0.
- `num`: The number of posts to return. The default is 20, and the maximum is 50.
- `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
- `id`: A specific post ID to return. Use instead of start, num, or type.
- `search`: Search for posts with this query.
- `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
if id is not None:
query = dict(id=id)
else:
query = dict(
start=start,
num=num
)
if type is not None:
query['type'] = type
if search is not None:
query['search'] = search
if tagged is not None:
query['tagged'] = tagged
- url = "http://%s.tumblr.com/api/read/json" % user
+ url = "http://%s.tumblr.com/api/read/json" % name
req = urllib2.urlopen(url+'?'+urlencode(query))
- return ApiRead.parse(json.loads(utils.extract_dict(req.read())))
+ text = req.read()
+ self._check_we_ll_be_back(text)
+ return ApiRead.parse(json.loads(utils.extract_dict(text)))
diff --git a/pumblr/errors.py b/pumblr/errors.py
index 0c5379d..04be665 100755
--- a/pumblr/errors.py
+++ b/pumblr/errors.py
@@ -1,22 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-class PumblrError(object):
+class PumblrError(Exception):
"""Pumblr exception"""
def __init__(self, msg):
self._msg = msg
def __str__(self):
return self._msg
class PumblrAuthError(PumblrError):
"""403 Forbidden exception"""
pass
class PumblrReqestError(PumblrError):
"""400 Bad Request exception"""
pass
diff --git a/test_pumblr.py b/test_pumblr.py
index 2124853..4c20c8e 100755
--- a/test_pumblr.py
+++ b/test_pumblr.py
@@ -1,67 +1,76 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
import urllib2
from pumblr.api import *
+from pumblr.errors import *
from pumblr.models import *
from pumblr.utils import *
from nose.tools import *
json = import_json()
def read_data(filename):
"""return the data of testdata/${filename}"""
filename = os.path.join(os.path.dirname(__file__), 'testdata', filename)
with open(filename) as f:
return f.read()
def test_models():
"""test for pumblr/models.py"""
data = json.loads(extract_dict(read_data('read.json')))
api_read = ApiRead.parse(data)
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
class StubURLOpen(object):
"""Stub for urlopen"""
def __init__(self, *args, **kw):
"""don't care"""
pass
def set_data(self, filename):
class _Ret(object):
def __init__(self, data):
self._data = data
def read(self, *args, **kw):
return self._data
self._ret = _Ret(read_data(filename))
def __call__(self, *args, **kw):
return self._ret
def patch_urllib2():
urllib2._urlopen = urllib2.urlopen
urllib2.urlopen = StubURLOpen()
def unpatch_urllib2():
urllib2.urlopen = urllib2._urlopen
delattr(urllib2, '_urlopen')
@with_setup(patch_urllib2, unpatch_urllib2)
def test_api():
"""test for pumblr/api.py"""
api = API()
urllib2.urlopen.set_data('read.json') # fake
- api_read = api.read('seikichi.tumblr.com')
+ api_read = api.read('seikichi')
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
+
+ urllib2.urlopen.set_data('dashboard.json')
+ api.auth(email='seikichi@localhost', password='password') # ;-p
+ dashboard = api.dashboard()
+ assert_equal(dashboard.posts[0].id, 1104344180)
+
+ urllib2.urlopen.set_data('error.xhtml')
+ assert_raises(PumblrError, api.dashboard)
|
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 100755
--- a/pumblr/api.py
+++ b/pumblr/api.py
@@ -1,22 +1,45 @@
#!/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):
"""Tumblr API"""
def __init__(self):
+ pass
+
+ def read(self, user, start=0, num=20, type=None, id=None, search=None, tagged=None):
"""
+ Arguments:
+ - `user`: username
+ - `start`: The post offset to start from. The default is 0.
+ - `num`: The number of posts to return. The default is 20, and the maximum is 50.
+ - `type`: The type of posts to return. If unspecified or empty, all types of posts are returned. Must be one of text, quote, photo, link, chat, video, or audio.
+ - `id`: A specific post ID to return. Use instead of start, num, or type.
+ - `search`: Search for posts with this query.
+ - `tagged`: Return posts with this tag in reverse-chronological order (newest first).
"""
- pass
+ if id is not None:
+ query = dict(id=id)
+ else:
+ query = dict(
+ start=start,
+ num=num
+ )
+ if type is not None:
+ query['type'] = type
+ if search is not None:
+ query['search'] = search
+ if tagged is not None:
+ query['tagged'] = tagged
- def read(self, url):
- url = "http://%s/api/read/json" % url
- return ApiRead.parse(json.loads(utils.extract_dict(urllib2.urlopen(url).read())))
+ url = "http://%s.tumblr.com/api/read/json" % user
+ req = urllib2.urlopen(url+'?'+urlencode(query))
+ return ApiRead.parse(json.loads(utils.extract_dict(req.read())))
|
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):
- pass
+ """Tumblr API"""
+
+ def __init__(self):
+ """
+ """
+ pass
+
+ def read(self, url):
+ url = "http://%s/api/read/json" % url
+ return ApiRead.parse(json.loads(utils.extract_dict(urllib2.urlopen(url).read())))
diff --git a/pumblr/models.py b/pumblr/models.py
index c295d4d..793656c 100755
--- a/pumblr/models.py
+++ b/pumblr/models.py
@@ -1,50 +1,52 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
+from utils import make_variable_name
+
class Model(object):
def __init__(self):
pass
@classmethod
def parse(kls, json):
"""Parse a JSON object into a model instance"""
raise NotImplementedError
class ApiRead(Model):
@classmethod
def parse(kls, json):
apiread = kls()
for key, value in json.iteritems():
if key == 'tumblelog':
- setattr(apiread, key, TumbleLog.parse(value))
+ setattr(apiread, make_variable_name(key), TumbleLog.parse(value))
elif key == 'posts':
- setattr(apiread, key, [Post.parse(p) for p in value])
+ setattr(apiread, make_variable_name(key), [Post.parse(p) for p in value])
else:
- setattr(apiread, key, value)
+ setattr(apiread, make_variable_name(key), value)
return apiread
class TumbleLog(Model):
@classmethod
def parse(kls, json):
tumblelog = kls()
for key, value in json.iteritems():
- setattr(tumblelog, key, value)
+ setattr(tumblelog, make_variable_name(key), value)
return tumblelog
class Post(Model):
@classmethod
def parse(kls, json):
post = kls()
for key, value in json.iteritems():
if key == 'tumblelog':
- setattr(post, key, TumbleLog.parse(value))
+ setattr(post, make_variable_name(key), TumbleLog.parse(value))
else:
- setattr(post, key, value)
+ setattr(post, make_variable_name(key), value)
return post
diff --git a/pumblr/utils.py b/pumblr/utils.py
index 430d2f9..04871b4 100755
--- a/pumblr/utils.py
+++ b/pumblr/utils.py
@@ -1,22 +1,45 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
+import string
def extract_dict(json):
- """ 'var hoge={...}' -> '{...}' """
+ """
+ 'var hoge={...}' -> '{...}'
+
+ >>> extract_dict('var hoge = {\"fuga\":1}')
+ '{\"fuga\":1}'
+ """
return re.match("^.*?({.*}).*$", json, re.DOTALL | re.MULTILINE | re.UNICODE).group(1)
+def make_variable_name(name):
+ """
+ replace invalide character
+
+ example:
+ >>> make_variable_name('hoge-fuga-piyo')
+ 'hoge_fuga_piyo'
+ >>> make_variable_name('Love & Peace')
+ 'Love___Peace'
+ >>> make_variable_name('12abc23')
+ 'i12abc23'
+ """
+ if name[0] in string.digits:
+ name = 'i' + name # ããã©ãããã
+ return re.sub('[^A-Za-z0-9_]', '_', name)
+
+
def import_json():
try:
import simplejson as json
except ImportError:
try:
import json # Python 2.6+
except ImportError:
try:
from django.utils import simplejson as json # Google App Engine
except ImportError:
raise ImportError, "Can't load a json library"
return json
diff --git a/test_pumblr.py b/test_pumblr.py
index 732c6ec..2124853 100755
--- a/test_pumblr.py
+++ b/test_pumblr.py
@@ -1,25 +1,67 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
+import urllib2
+from pumblr.api import *
from pumblr.models import *
from pumblr.utils import *
from nose.tools import *
json = import_json()
def read_data(filename):
"""return the data of testdata/${filename}"""
filename = os.path.join(os.path.dirname(__file__), 'testdata', filename)
with open(filename) as f:
return f.read()
def test_models():
"""test for pumblr/models.py"""
data = json.loads(extract_dict(read_data('read.json')))
api_read = ApiRead.parse(data)
assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
+
+
+class StubURLOpen(object):
+ """Stub for urlopen"""
+
+ def __init__(self, *args, **kw):
+ """don't care"""
+ pass
+
+ def set_data(self, filename):
+ class _Ret(object):
+ def __init__(self, data):
+ self._data = data
+
+ def read(self, *args, **kw):
+ return self._data
+
+ self._ret = _Ret(read_data(filename))
+
+ def __call__(self, *args, **kw):
+ return self._ret
+
+
+def patch_urllib2():
+ urllib2._urlopen = urllib2.urlopen
+ urllib2.urlopen = StubURLOpen()
+
+
+def unpatch_urllib2():
+ urllib2.urlopen = urllib2._urlopen
+ delattr(urllib2, '_urlopen')
+
+
+@with_setup(patch_urllib2, unpatch_urllib2)
+def test_api():
+ """test for pumblr/api.py"""
+ api = API()
+ urllib2.urlopen.set_data('read.json') # fake
+ api_read = api.read('seikichi.tumblr.com')
+ assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
|
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 __str__(self):
+ return self._msg
+
+
+class PumblrAuthError(PumblrError):
+ """403 Forbidden exception"""
+ pass
+
+
+class PumblrReqestError(PumblrError):
+ """400 Bad Request exception"""
+ pass
+
diff --git a/pumblr/models.py b/pumblr/models.py
new file mode 100755
index 0000000..c295d4d
--- /dev/null
+++ b/pumblr/models.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 JSON object into a model instance"""
+ raise NotImplementedError
+
+
+class ApiRead(Model):
+
+ @classmethod
+ def parse(kls, json):
+ apiread = kls()
+ for key, value in json.iteritems():
+ if key == 'tumblelog':
+ setattr(apiread, key, TumbleLog.parse(value))
+ elif key == 'posts':
+ setattr(apiread, key, [Post.parse(p) for p in value])
+ else:
+ setattr(apiread, key, value)
+ return apiread
+
+
+class TumbleLog(Model):
+
+ @classmethod
+ def parse(kls, json):
+ tumblelog = kls()
+ for key, value in json.iteritems():
+ setattr(tumblelog, key, value)
+ return tumblelog
+
+
+class Post(Model):
+
+ @classmethod
+ def parse(kls, json):
+ post = kls()
+ for key, value in json.iteritems():
+ if key == 'tumblelog':
+ setattr(post, key, TumbleLog.parse(value))
+ else:
+ setattr(post, key, value)
+ return post
diff --git a/pumblr/utils.py b/pumblr/utils.py
new file mode 100755
index 0000000..430d2f9
--- /dev/null
+++ b/pumblr/utils.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+import re
+
+def extract_dict(json):
+ """ 'var hoge={...}' -> '{...}' """
+ return re.match("^.*?({.*}).*$", json, re.DOTALL | re.MULTILINE | re.UNICODE).group(1)
+
+
+def import_json():
+ try:
+ import simplejson as json
+ except ImportError:
+ try:
+ import json # Python 2.6+
+ except ImportError:
+ try:
+ from django.utils import simplejson as json # Google App Engine
+ except ImportError:
+ raise ImportError, "Can't load a json library"
+ return json
diff --git a/test_pumblr.py b/test_pumblr.py
new file mode 100755
index 0000000..732c6ec
--- /dev/null
+++ b/test_pumblr.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+from __future__ import with_statement
+import os
+
+from pumblr.models import *
+from pumblr.utils import *
+from nose.tools import *
+
+json = import_json()
+
+
+def read_data(filename):
+ """return the data of testdata/${filename}"""
+ filename = os.path.join(os.path.dirname(__file__), 'testdata', filename)
+ with open(filename) as f:
+ return f.read()
+
+
+def test_models():
+ """test for pumblr/models.py"""
+ data = json.loads(extract_dict(read_data('read.json')))
+ api_read = ApiRead.parse(data)
+ assert_equal(api_read.tumblelog.description, u'ããã®åå¾åä½ã¯108ã¾ã§ããã')
|
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 JSON object into a model instance"""
+ raise NotImplementedError
+
+
+class ApiRead(Model):
+
+ @classmethod
+ def parse(kls, json):
+ apiread = kls()
+ for key, value in json.iteritems():
+ if key == 'tumblelog':
+ setattr(apiread, key, Tumblelog.parse(value))
+ elif key == 'posts':
+ setattr(apiread, key, [Post.parse(p) for p in value])
+ else:
+ setattr(apiread, key, value)
+ return apiread
+
+
+class Tumblelog(Model):
+
+ @classmethod
+ def parse(kls, json):
+ tumblelog = kls()
+ for key, value in json.iteritems():
+ setattr(tumblelog, key, value)
+ return tumblelog
+
+
+class Post(Model):
+
+ @classmethod
+ def parse(kls, json):
+ post = kls()
+ for key, value in json.iteritems():
+ if key == 'tumblelog':
+ setattr(post, key, Tumblelog.parse(value))
+ else:
+ setattr(post, key, value)
+ return post
|
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 __str__(self):
+ return self._msg
+
+
+class PumblrAuthError(PumblrError):
+ """403 Forbidden exception"""
+ pass
+
+
+class PumblrReqestError(PumblrError):
+ """400 Bad Request exception"""
+ pass
+
|
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\/1104344180","url-with-slug":"http:\/\/katoyuu.tumblr.com\/post\/1104344180\/2","type":"quote","date-gmt":"2010-09-11 19:41:30 GMT","date":"Sun, 12 Sep 2010 04:41:30","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284234090,"format":"html","reblog-key":"SyImcoBb","slug":"2","note-count":2,"tumblelog":{"title":"\u65ad\u7d76\u30bf\u30f3\u30d6\u30e9\u30fc","name":"katoyuu","cname":false,"url":"http:\/\/katoyuu.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/29.media.tumblr.com\/avatar_d431fea733d5_16.png","avatar_url_24":"http:\/\/27.media.tumblr.com\/avatar_d431fea733d5_24.png","avatar_url_30":"http:\/\/26.media.tumblr.com\/avatar_d431fea733d5_30.png","avatar_url_40":"http:\/\/29.media.tumblr.com\/avatar_d431fea733d5_40.png","avatar_url_48":"http:\/\/30.media.tumblr.com\/avatar_d431fea733d5_48.png","avatar_url_64":"http:\/\/30.media.tumblr.com\/avatar_d431fea733d5_64.png","avatar_url_96":"http:\/\/25.media.tumblr.com\/avatar_d431fea733d5_96.png","avatar_url_128":"http:\/\/24.media.tumblr.com\/avatar_d431fea733d5_128.png","avatar_url_512":"http:\/\/30.media.tumblr.com\/avatar_d431fea733d5_512.png"},"quote-text":"\u7d9a\u304d\u304b\u3089\u306f\uff12\u3061\u3083\u3093\u306d\u308b\u306e\u53cd\u5fdc\u3092\u7d39\u4ecb\u3002","quote-source":"<a href=\"http:\/\/galkko.surpara.com\/galkko\/archive\/2010\/09\/81542_2.html\" target=\"_blank\">\u7f8e\u5c11\u5973\u30b2\u30fc\u30e0\u30fb\u30a2\u30cb\u30e1\u60c5\u5831\u30b5\u30a4\u30c8-\u304e\u3083\u308b\u3063\u5a18\u901a\u4fe1-\u3010\u9006\u3089\u3063\u305f\u7f6a\u3068\u3011\u3000\u305d\u308c\u306f\u624b\u306b\u3057\u3066\u306f\u3044\u3051\u306a\u3044\u300e\u30b0\u30ea\u30b6\u30a4\u30a2\u306e\u679c\u5b9f\u300f\u3000\u3010\u751f\u304d\u6b8b\u3063\u305f\u7f70\u3011-<\/a>"},{"id":1104298216,"url":"http:\/\/minadzki.tumblr.com\/post\/1104298216","url-with-slug":"http:\/\/minadzki.tumblr.com\/post\/1104298216\/togetter","type":"link","date-gmt":"2010-09-11 19:31:56 GMT","date":"Sun, 12 Sep 2010 04:31:56","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284233516,"format":"html","reblog-key":"lceV8Kqu","slug":"togetter","note-count":0,"tumblelog":{"title":"\u0411\u04183 \u0411\u0418\u0411\u041b\u0418\u041e\u0422\u0415\u041a\u0410","name":"minadzki","cname":false,"url":"http:\/\/minadzki.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/26.media.tumblr.com\/avatar_efd5d1eeccb9_16.png","avatar_url_24":"http:\/\/26.media.tumblr.com\/avatar_efd5d1eeccb9_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_efd5d1eeccb9_30.png","avatar_url_40":"http:\/\/29.media.tumblr.com\/avatar_efd5d1eeccb9_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_efd5d1eeccb9_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_efd5d1eeccb9_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_efd5d1eeccb9_96.png","avatar_url_128":"http:\/\/27.media.tumblr.com\/avatar_efd5d1eeccb9_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_efd5d1eeccb9_512.png"},"link-text":"Togetter - \u300c\u8749\u30df\u30ad\u30b5\u30fc\u98f2\u307f\u4f1a\u300d","link-url":"http:\/\/togetter.com\/li\/49704","link-description":""},{"id":1104266976,"url":"http:\/\/seikichi.tumblr.com\/post\/1104266976","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1104266976\/cubeee-kirisaki-yomyomyom-0shun","type":"photo","date-gmt":"2010-09-11 19:25:32 GMT","date":"Sun, 12 Sep 2010 04:25:32","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284233132,"format":"html","reblog-key":"NzA5jDtw","slug":"cubeee-kirisaki-yomyomyom-0shun","note-count":305,"reblogged-from-url":"http:\/\/cubeee.tumblr.com\/post\/1103360337\/kirisaki-yomyomyom-0shun-toyolina","reblogged-from-name":"cubeee","reblogged-from-title":"\u304d\u3085\u30fc\u3076\u3089\u30fc\uff01","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_cf984a9eb051_16.png","reblogged_from_avatar_url_24":"http:\/\/27.media.tumblr.com\/avatar_cf984a9eb051_24.png","reblogged_from_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_cf984a9eb051_30.png","reblogged_from_avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_cf984a9eb051_40.png","reblogged_from_avatar_url_48":"http:\/\/26.media.tumblr.com\/avatar_cf984a9eb051_48.png","reblogged_from_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_cf984a9eb051_64.png","reblogged_from_avatar_url_96":"http:\/\/24.media.tumblr.com\/avatar_cf984a9eb051_96.png","reblogged_from_avatar_url_128":"http:\/\/30.media.tumblr.com\/avatar_cf984a9eb051_128.png","reblogged_from_avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_cf984a9eb051_512.png","reblogged-root-url":"http:\/\/tily.tumblr.com\/post\/22121642\/d-a-s-f-o-r-m-e-n-d-e","reblogged-root-name":"tily","reblogged-root-title":"LIFE IS NO WAY TO TREAT AN ANIMAL","reblogged_root_avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_5e2623a1870d_16.gif","reblogged_root_avatar_url_24":"http:\/\/29.media.tumblr.com\/avatar_5e2623a1870d_24.gif","reblogged_root_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_5e2623a1870d_30.gif","reblogged_root_avatar_url_40":"http:\/\/24.media.tumblr.com\/avatar_5e2623a1870d_40.gif","reblogged_root_avatar_url_48":"http:\/\/24.media.tumblr.com\/avatar_5e2623a1870d_48.gif","reblogged_root_avatar_url_64":"http:\/\/24.media.tumblr.com\/avatar_5e2623a1870d_64.gif","reblogged_root_avatar_url_96":"http:\/\/28.media.tumblr.com\/avatar_5e2623a1870d_96.gif","reblogged_root_avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_5e2623a1870d_128.gif","reblogged_root_avatar_url_512":"http:\/\/26.media.tumblr.com\/avatar_5e2623a1870d_128.gif","tumblelog":{"title":"3\u56de\u524d\u671f\u53d6\u5f97\u5358\u4f4d\u6570\u306f26","name":"seikichi","cname":false,"url":"http:\/\/seikichi.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/28.media.tumblr.com\/avatar_6956ec985c01_16.png","avatar_url_24":"http:\/\/29.media.tumblr.com\/avatar_6956ec985c01_24.png","avatar_url_30":"http:\/\/27.media.tumblr.com\/avatar_6956ec985c01_30.png","avatar_url_40":"http:\/\/25.media.tumblr.com\/avatar_6956ec985c01_40.png","avatar_url_48":"http:\/\/28.media.tumblr.com\/avatar_6956ec985c01_48.png","avatar_url_64":"http:\/\/25.media.tumblr.com\/avatar_6956ec985c01_64.png","avatar_url_96":"http:\/\/28.media.tumblr.com\/avatar_6956ec985c01_96.png","avatar_url_128":"http:\/\/30.media.tumblr.com\/avatar_6956ec985c01_128.png","avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_6956ec985c01_512.png"},"photo-caption":"<p><a href=\"http:\/\/cubeee.tumblr.com\/post\/1103360337\/kirisaki-yomyomyom-0shun-toyolina\">cubeee<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/kirisaki.tumblr.com\/post\/1103200509\/yomyomyom-0shun-toyolina-yashlu\">kirisaki<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/yomyomyom.tumblr.com\/post\/1103193013\/0shun-toyolina-yashlu\">yomyomyom<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/0shun.tumblr.com\/post\/1102892510\/toyolina-yashlu-irregular-expression\">0shun<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/toyolina.tumblr.com\/post\/1102730875\/yashlu-irregular-expression-theemitter\">toyolina<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/yashlu.tumblr.com\/post\/1102709753\/irregular-expression-theemitter-soulboy\">yashlu<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/irregular-expression.tumblr.com\/post\/1102679742\/theemitter-soulboy-magao-petapeta\">irregular-expression<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/theemitter.tumblr.com\/post\/1102638493\/soulboy-magao-petapeta-highlandvalley\">theemitter<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/soulboy.tumblr.com\/post\/1102593771\/magao-petapeta-highlandvalley-nemoi\">soulboy<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/magao.tumblr.com\/post\/1102590468\/petapeta-highlandvalley-nemoi\">magao<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/petapeta.tumblr.com\/post\/1102558468\/highlandvalley-nemoi-shinoddddd\">petapeta<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/highlandvalley.tumblr.com\/post\/1102554822\/nemoi-shinoddddd-plasticdreams-pvc\">highlandvalley<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/nemoi.tumblr.com\/post\/1102394949\/shinoddddd-plasticdreams-pvc-hanemimi\">nemoi<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/shinoddddd.tumblr.com\/post\/1102076535\/plasticdreams-pvc-hanemimi-hibariya\">shinoddddd<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/plasticdrea.ms\/post\/67090044\/pvc-hanemimi-hibariya-gkojax-d-a-s-f-o\">plasticdreams<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/pvc.tumblr.com\/post\/66851546\/hanemimi-hibariya-gkojax-d-a-s-f-o-r-m-e-n\">pvc<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/hanemimi.tumblr.com\/post\/66597453\">hanemimi<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/hibariya.tumblr.com\/post\/66594602\/gkojax-d-a-s-f-o-r-m-e-n-d-e-mrmt\">hibariya<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/gkojax.tumblr.com\/post\/66591003\">gkojax<\/a>:<\/p>\n<blockquote><a href=\"http:\/\/omora.cc\/d\/log\/eid101.html\">d a s f o r m e n d e | \u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8<\/a> \u2014 <a href=\"http:\/\/mrmt.tumblr.com\/\">mrmt<\/a> \u2014 <a href=\"http:\/\/jinakanishi.tumblr.com\/\">jinakanishi<\/a> \u2014 <a href=\"http:\/\/iwy.tumblr.com\/\">iwy<\/a><\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<p>(via <a href=\"http:\/\/tily.tumblr.com\/post\/22121642\/d-a-s-f-o-r-m-e-n-d-e\">tily<\/a>)<\/p>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<p>\u51fa\u5178\u306f\u661f\u65b0\u4e00\u306e\u304a\u7236\u3055\u3093\u3001\u661f\u4e00\u306e\u3053\u3068\u3070<\/p>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>","photo-link-url":"http:\/\/omora.cc\/d\/log\/eid101.html","width":400,"height":200,"photo-url-1280":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-500":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-400":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-250":"http:\/\/25.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_250.png","photo-url-100":"http:\/\/27.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_100.png","photo-url-75":"http:\/\/30.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_75sq.png","photos":[]},{"id":1104220063,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104220063","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104220063\/clono","type":"photo","date-gmt":"2010-09-11 19:16:00 GMT","date":"Sun, 12 Sep 2010 04:16:00","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232560,"format":"html","reblog-key":"7zp7DiQE","slug":"clono","note-count":6,"reblogged-from-url":"http:\/\/takeori.tumblr.com\/post\/1103381196","reblogged-from-name":"takeori","reblogged-from-title":"\u305f\u3051\u304a\u308a\u305f\u3093\u3076\u3089","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_5380620aa680_16.png","reblogged_from_avatar_url_24":"http:\/\/30.media.tumblr.com\/avatar_5380620aa680_24.png","reblogged_from_avatar_url_30":"http:\/\/24.media.tumblr.com\/avatar_5380620aa680_30.png","reblogged_from_avatar_url_40":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_40.png","reblogged_from_avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_5380620aa680_48.png","reblogged_from_avatar_url_64":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_64.png","reblogged_from_avatar_url_96":"http:\/\/30.media.tumblr.com\/avatar_5380620aa680_96.png","reblogged_from_avatar_url_128":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_128.png","reblogged_from_avatar_url_512":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_512.png","reblogged-root-url":"http:\/\/clono.tumblr.com\/post\/1100202721\/pixiv","reblogged-root-name":"clono","reblogged-root-title":"\u304f\u308d\u30bf\u30f3","reblogged_root_avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_12a7b95ff2ec_16.png","reblogged_root_avatar_url_24":"http:\/\/26.media.tumblr.com\/avatar_12a7b95ff2ec_24.png","reblogged_root_avatar_url_30":"http:\/\/27.media.tumblr.com\/avatar_12a7b95ff2ec_30.png","reblogged_root_avatar_url_40":"http:\/\/24.media.tumblr.com\/avatar_12a7b95ff2ec_40.png","reblogged_root_avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_12a7b95ff2ec_48.png","reblogged_root_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_12a7b95ff2ec_64.png","reblogged_root_avatar_url_96":"http:\/\/29.media.tumblr.com\/avatar_12a7b95ff2ec_96.png","reblogged_root_avatar_url_128":"http:\/\/28.media.tumblr.com\/avatar_12a7b95ff2ec_128.png","reblogged_root_avatar_url_512":"http:\/\/29.media.tumblr.com\/avatar_12a7b95ff2ec_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/clono.tumblr.com\/post\/1100202721\/pixiv\" class=\"tumblr_blog\">clono<\/a>:<\/p>\n\n<blockquote><p><a href=\"http:\/\/www.pixiv.net\/member_illust.php?mode=medium&illust_id=13166014\">\u300c\u3051\u3044\u304a\u3093!!\u306e\u6700\u7d42\u56de\u3092\u5927\u80c6\u4e88\u60f3\uff01\uff01\u300d\/\u300c\u5916\u8ca9\u6885\u5e72\u3057\u30df\u30c3\u30c1\u30a7\u30eb\u300d\u306e\u30a4\u30e9\u30b9\u30c8 [pixiv]<\/a><\/p><\/blockquote>","photo-link-url":"http:\/\/www.pixiv.net\/member_illust.php?mode=medium&illust_id=13166014","width":"378","height":"600","photo-url-1280":"http:\/\/29.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_400.jpg","photo-url-500":"http:\/\/29.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_400.jpg","photo-url-400":"http:\/\/29.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_400.jpg","photo-url-250":"http:\/\/25.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_250.jpg","photo-url-100":"http:\/\/25.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_100.jpg","photo-url-75":"http:\/\/28.media.tumblr.com\/tumblr_l8k9w23BRh1qzlqx7o1_75sq.jpg","photos":[]},{"id":1104220056,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104220056","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104220056","type":"photo","date-gmt":"2010-09-11 19:15:59 GMT","date":"Sun, 12 Sep 2010 04:15:59","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232559,"format":"html","reblog-key":"TNSwNjtC","slug":"","note-count":49,"reblogged-from-url":"http:\/\/non-117.tumblr.com\/post\/1103792889","reblogged-from-name":"non-117","reblogged-from-title":"\u306e\u3093\u305f\u3093\u3076\u3089\u30fc","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_16.png","reblogged_from_avatar_url_24":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_24.png","reblogged_from_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_30.png","reblogged_from_avatar_url_40":"http:\/\/26.media.tumblr.com\/avatar_58a1d22cbb4e_40.png","reblogged_from_avatar_url_48":"http:\/\/25.media.tumblr.com\/avatar_58a1d22cbb4e_48.png","reblogged_from_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_64.png","reblogged_from_avatar_url_96":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_96.png","reblogged_from_avatar_url_128":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_128.png","reblogged_from_avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_512.png","reblogged-root-url":"http:\/\/fuckyeahcielphantomhive.tumblr.com\/post\/1103332466","reblogged-root-name":"fuckyeahcielphantomhive","reblogged-root-title":"FuckYeahCielPhantomhive","reblogged_root_avatar_url_16":"http:\/\/28.media.tumblr.com\/avatar_6409b0873689_16.png","reblogged_root_avatar_url_24":"http:\/\/29.media.tumblr.com\/avatar_6409b0873689_24.png","reblogged_root_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_6409b0873689_30.png","reblogged_root_avatar_url_40":"http:\/\/24.media.tumblr.com\/avatar_6409b0873689_40.png","reblogged_root_avatar_url_48":"http:\/\/30.media.tumblr.com\/avatar_6409b0873689_48.png","reblogged_root_avatar_url_64":"http:\/\/26.media.tumblr.com\/avatar_6409b0873689_64.png","reblogged_root_avatar_url_96":"http:\/\/29.media.tumblr.com\/avatar_6409b0873689_96.png","reblogged_root_avatar_url_128":"http:\/\/29.media.tumblr.com\/avatar_6409b0873689_128.png","reblogged_root_avatar_url_512":"http:\/\/26.media.tumblr.com\/avatar_6409b0873689_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"","photo-link-url":"http:\/\/www.pixiv.net\/member.php?id=37062","width":"739","height":"1000","photo-url-1280":"http:\/\/eagletbr.tumblr.com\/photo\/1280\/1104220056\/1\/tumblr_l8lbvoed4H1qceyoo","photo-url-500":"http:\/\/28.media.tumblr.com\/tumblr_l8lbvoed4H1qceyooo1_500.jpg","photo-url-400":"http:\/\/27.media.tumblr.com\/tumblr_l8lbvoed4H1qceyooo1_400.jpg","photo-url-250":"http:\/\/29.media.tumblr.com\/tumblr_l8lbvoed4H1qceyooo1_250.jpg","photo-url-100":"http:\/\/25.media.tumblr.com\/tumblr_l8lbvoed4H1qceyooo1_100.jpg","photo-url-75":"http:\/\/29.media.tumblr.com\/tumblr_l8lbvoed4H1qceyooo1_75sq.jpg","photos":[]},{"id":1104220052,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104220052","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104220052\/kiaran-90","type":"photo","date-gmt":"2010-09-11 19:15:59 GMT","date":"Sun, 12 Sep 2010 04:15:59","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232559,"format":"html","reblog-key":"L7HeCbuG","slug":"kiaran-90","note-count":69,"reblogged-from-url":"http:\/\/takeori.tumblr.com\/post\/1103356888","reblogged-from-name":"takeori","reblogged-from-title":"\u305f\u3051\u304a\u308a\u305f\u3093\u3076\u3089","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_5380620aa680_16.png","reblogged_from_avatar_url_24":"http:\/\/30.media.tumblr.com\/avatar_5380620aa680_24.png","reblogged_from_avatar_url_30":"http:\/\/24.media.tumblr.com\/avatar_5380620aa680_30.png","reblogged_from_avatar_url_40":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_40.png","reblogged_from_avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_5380620aa680_48.png","reblogged_from_avatar_url_64":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_64.png","reblogged_from_avatar_url_96":"http:\/\/30.media.tumblr.com\/avatar_5380620aa680_96.png","reblogged_from_avatar_url_128":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_128.png","reblogged_from_avatar_url_512":"http:\/\/25.media.tumblr.com\/avatar_5380620aa680_512.png","reblogged-root-url":"http:\/\/kiaran.tumblr.com\/post\/1090733832\/90","reblogged-root-name":"kiaran","reblogged-root-title":"\u304d\u3042\u3089\u3093\u3076\u3089","reblogged_root_avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_5088f554c079_16.png","reblogged_root_avatar_url_24":"http:\/\/29.media.tumblr.com\/avatar_5088f554c079_24.png","reblogged_root_avatar_url_30":"http:\/\/29.media.tumblr.com\/avatar_5088f554c079_30.png","reblogged_root_avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_5088f554c079_40.png","reblogged_root_avatar_url_48":"http:\/\/30.media.tumblr.com\/avatar_5088f554c079_48.png","reblogged_root_avatar_url_64":"http:\/\/25.media.tumblr.com\/avatar_5088f554c079_64.png","reblogged_root_avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_5088f554c079_96.png","reblogged_root_avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_5088f554c079_128.png","reblogged_root_avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_5088f554c079_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/kiaran.tumblr.com\/post\/1090733832\/90\" class=\"tumblr_blog\">kiaran<\/a>:<\/p>\n\n<blockquote><p><a href=\"http:\/\/simapantu.blog130.fc2.com\/blog-entry-140.html\">\u3010\u4fdd\u5b58\u63a8\u5968\u3011\u4fbf\u5229\u306a\u753b\u50cf\u304f\u308c(\u753b\u50cf\uff19\uff10\u679a) \u3057\u307e\u3071\u3093<\/a><\/p><\/blockquote>","photo-link-url":"http:\/\/simapantu.blog130.fc2.com\/blog-entry-140.html","width":"664","height":"607","photo-url-1280":"http:\/\/eagletbr.tumblr.com\/photo\/1280\/1104220052\/1\/tumblr_l8h03rq8j91qze0xe","photo-url-500":"http:\/\/29.media.tumblr.com\/tumblr_l8h03rq8j91qze0xeo1_500.jpg","photo-url-400":"http:\/\/28.media.tumblr.com\/tumblr_l8h03rq8j91qze0xeo1_400.jpg","photo-url-250":"http:\/\/26.media.tumblr.com\/tumblr_l8h03rq8j91qze0xeo1_250.jpg","photo-url-100":"http:\/\/26.media.tumblr.com\/tumblr_l8h03rq8j91qze0xeo1_100.jpg","photo-url-75":"http:\/\/30.media.tumblr.com\/tumblr_l8h03rq8j91qze0xeo1_75sq.jpg","photos":[]},{"id":1104219117,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104219117","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104219117\/twinmaikosyu-closet-child-garter-konoe-ototsugu","type":"photo","date-gmt":"2010-09-11 19:15:48 GMT","date":"Sun, 12 Sep 2010 04:15:48","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232548,"format":"html","reblog-key":"Pj6jw7QC","slug":"twinmaikosyu-closet-child-garter-konoe-ototsugu","note-count":4,"reblogged-from-url":"http:\/\/non-117.tumblr.com\/post\/1103791024\/twinmaikosyu-closet-child-garter-konoe-ototsugu","reblogged-from-name":"non-117","reblogged-from-title":"\u306e\u3093\u305f\u3093\u3076\u3089\u30fc","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_16.png","reblogged_from_avatar_url_24":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_24.png","reblogged_from_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_30.png","reblogged_from_avatar_url_40":"http:\/\/26.media.tumblr.com\/avatar_58a1d22cbb4e_40.png","reblogged_from_avatar_url_48":"http:\/\/25.media.tumblr.com\/avatar_58a1d22cbb4e_48.png","reblogged_from_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_64.png","reblogged_from_avatar_url_96":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_96.png","reblogged_from_avatar_url_128":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_128.png","reblogged_from_avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_512.png","reblogged-root-url":"http:\/\/twinmaikosyu.tumblr.com\/post\/1103530272\/closet-child-garter-konoe-ototsugu-naked","reblogged-root-name":"twinmaikosyu","reblogged-root-title":"\u8aa4\u5dee\u306e\u7bc4\u56f2\u3067\u3042\u308b\u3002","reblogged_root_avatar_url_16":"http:\/\/27.media.tumblr.com\/avatar_18b608dade7c_16.png","reblogged_root_avatar_url_24":"http:\/\/26.media.tumblr.com\/avatar_18b608dade7c_24.png","reblogged_root_avatar_url_30":"http:\/\/24.media.tumblr.com\/avatar_18b608dade7c_30.png","reblogged_root_avatar_url_40":"http:\/\/29.media.tumblr.com\/avatar_18b608dade7c_40.png","reblogged_root_avatar_url_48":"http:\/\/26.media.tumblr.com\/avatar_18b608dade7c_48.png","reblogged_root_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_18b608dade7c_64.png","reblogged_root_avatar_url_96":"http:\/\/29.media.tumblr.com\/avatar_18b608dade7c_96.png","reblogged_root_avatar_url_128":"http:\/\/25.media.tumblr.com\/avatar_18b608dade7c_128.png","reblogged_root_avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_18b608dade7c_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/twinmaikosyu.tumblr.com\/post\/1103530272\/closet-child-garter-konoe-ototsugu-naked\" class=\"tumblr_blog\">twinmaikosyu<\/a>:<\/p>\n\n<blockquote><p><a href=\"http:\/\/moe.imouto.org\/post\/show\/154508\/closet_child-garter-konoe_ototsugu-naked\">closet child garter konoe ototsugu naked<\/a><\/p><\/blockquote>","photo-link-url":"http:\/\/moe.imouto.org\/post\/show\/154508\/closet_child-garter-konoe_ototsugu-naked","width":"706","height":"1000","photo-url-1280":"http:\/\/eagletbr.tumblr.com\/photo\/1280\/1104219117\/1\/tumblr_l8ldsqBUYx1qbbs2a","photo-url-500":"http:\/\/30.media.tumblr.com\/tumblr_l8ldsqBUYx1qbbs2ao1_500.jpg","photo-url-400":"http:\/\/24.media.tumblr.com\/tumblr_l8ldsqBUYx1qbbs2ao1_400.jpg","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l8ldsqBUYx1qbbs2ao1_250.jpg","photo-url-100":"http:\/\/28.media.tumblr.com\/tumblr_l8ldsqBUYx1qbbs2ao1_100.jpg","photo-url-75":"http:\/\/28.media.tumblr.com\/tumblr_l8ldsqBUYx1qbbs2ao1_75sq.jpg","photos":[]},{"id":1104219116,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104219116","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104219116\/twinmaikosyu-cuteg-kimi-ni-todoke-kuronuma","type":"photo","date-gmt":"2010-09-11 19:15:48 GMT","date":"Sun, 12 Sep 2010 04:15:48","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232548,"format":"html","reblog-key":"xMGk9B3a","slug":"twinmaikosyu-cuteg-kimi-ni-todoke-kuronuma","note-count":7,"reblogged-from-url":"http:\/\/non-117.tumblr.com\/post\/1103790603\/twinmaikosyu-cuteg-kimi-ni-todoke-kuronuma","reblogged-from-name":"non-117","reblogged-from-title":"\u306e\u3093\u305f\u3093\u3076\u3089\u30fc","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_16.png","reblogged_from_avatar_url_24":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_24.png","reblogged_from_avatar_url_30":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_30.png","reblogged_from_avatar_url_40":"http:\/\/26.media.tumblr.com\/avatar_58a1d22cbb4e_40.png","reblogged_from_avatar_url_48":"http:\/\/25.media.tumblr.com\/avatar_58a1d22cbb4e_48.png","reblogged_from_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_64.png","reblogged_from_avatar_url_96":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_96.png","reblogged_from_avatar_url_128":"http:\/\/28.media.tumblr.com\/avatar_58a1d22cbb4e_128.png","reblogged_from_avatar_url_512":"http:\/\/24.media.tumblr.com\/avatar_58a1d22cbb4e_512.png","reblogged-root-url":"http:\/\/twinmaikosyu.tumblr.com\/post\/1103529957\/cuteg-kimi-ni-todoke-kuronuma-sawako-seifuku","reblogged-root-name":"twinmaikosyu","reblogged-root-title":"\u8aa4\u5dee\u306e\u7bc4\u56f2\u3067\u3042\u308b\u3002","reblogged_root_avatar_url_16":"http:\/\/27.media.tumblr.com\/avatar_18b608dade7c_16.png","reblogged_root_avatar_url_24":"http:\/\/26.media.tumblr.com\/avatar_18b608dade7c_24.png","reblogged_root_avatar_url_30":"http:\/\/24.media.tumblr.com\/avatar_18b608dade7c_30.png","reblogged_root_avatar_url_40":"http:\/\/29.media.tumblr.com\/avatar_18b608dade7c_40.png","reblogged_root_avatar_url_48":"http:\/\/26.media.tumblr.com\/avatar_18b608dade7c_48.png","reblogged_root_avatar_url_64":"http:\/\/28.media.tumblr.com\/avatar_18b608dade7c_64.png","reblogged_root_avatar_url_96":"http:\/\/29.media.tumblr.com\/avatar_18b608dade7c_96.png","reblogged_root_avatar_url_128":"http:\/\/25.media.tumblr.com\/avatar_18b608dade7c_128.png","reblogged_root_avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_18b608dade7c_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/twinmaikosyu.tumblr.com\/post\/1103529957\/cuteg-kimi-ni-todoke-kuronuma-sawako-seifuku\">twinmaikosyu<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/moe.imouto.org\/post\/show\/154455\/cuteg-kimi_ni_todoke-kuronuma_sawako-seifuku-straw\">cuteg kimi ni todoke kuronuma sawako seifuku strawberry pink<\/a><\/p>\n<\/blockquote>","photo-link-url":"http:\/\/moe.imouto.org\/post\/show\/154455\/cuteg-kimi_ni_todoke-kuronuma_sawako-seifuku-straw","width":"727","height":"1000","photo-url-1280":"http:\/\/eagletbr.tumblr.com\/photo\/1280\/1104219116\/1\/tumblr_l8ldslg2tl1qbbs2a","photo-url-500":"http:\/\/29.media.tumblr.com\/tumblr_l8ldslg2tl1qbbs2ao1_500.jpg","photo-url-400":"http:\/\/27.media.tumblr.com\/tumblr_l8ldslg2tl1qbbs2ao1_400.jpg","photo-url-250":"http:\/\/28.media.tumblr.com\/tumblr_l8ldslg2tl1qbbs2ao1_250.jpg","photo-url-100":"http:\/\/25.media.tumblr.com\/tumblr_l8ldslg2tl1qbbs2ao1_100.jpg","photo-url-75":"http:\/\/27.media.tumblr.com\/tumblr_l8ldslg2tl1qbbs2ao1_75sq.jpg","photos":[]},{"id":1104219115,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104219115","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104219115\/kevinxcue-black-hair-blazer-cgt01-cream","type":"photo","date-gmt":"2010-09-11 19:15:48 GMT","date":"Sun, 12 Sep 2010 04:15:48","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232548,"format":"html","reblog-key":"sWSUzWy7","slug":"kevinxcue-black-hair-blazer-cgt01-cream","note-count":6,"reblogged-from-url":"http:\/\/escarlata.tumblr.com\/post\/1102829254\/kevinxcue-black-hair-blazer-cgt01-cream","reblogged-from-name":"escarlata","reblogged-from-title":"Escarlata*","reblogged_from_avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_55f480354950_16.gif","reblogged_from_avatar_url_24":"http:\/\/28.media.tumblr.com\/avatar_55f480354950_24.gif","reblogged_from_avatar_url_30":"http:\/\/24.media.tumblr.com\/avatar_55f480354950_30.gif","reblogged_from_avatar_url_40":"http:\/\/24.media.tumblr.com\/avatar_55f480354950_40.gif","reblogged_from_avatar_url_48":"http:\/\/24.media.tumblr.com\/avatar_55f480354950_48.gif","reblogged_from_avatar_url_64":"http:\/\/29.media.tumblr.com\/avatar_55f480354950_64.gif","reblogged_from_avatar_url_96":"http:\/\/24.media.tumblr.com\/avatar_55f480354950_96.gif","reblogged_from_avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_55f480354950_128.gif","reblogged_from_avatar_url_512":"http:\/\/26.media.tumblr.com\/avatar_55f480354950_128.gif","reblogged-root-url":"http:\/\/kevinxcue.tumblr.com\/post\/1100824445\/black-hair-blazer-cgt01-cream-doughnut-eating-food","reblogged-root-name":"kevinxcue","reblogged-root-title":"ScrapScrapScrap","reblogged_root_avatar_url_16":"http:\/\/29.media.tumblr.com\/avatar_bbf820820ce0_16.png","reblogged_root_avatar_url_24":"http:\/\/25.media.tumblr.com\/avatar_bbf820820ce0_24.png","reblogged_root_avatar_url_30":"http:\/\/30.media.tumblr.com\/avatar_bbf820820ce0_30.png","reblogged_root_avatar_url_40":"http:\/\/27.media.tumblr.com\/avatar_bbf820820ce0_40.png","reblogged_root_avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_bbf820820ce0_48.png","reblogged_root_avatar_url_64":"http:\/\/29.media.tumblr.com\/avatar_bbf820820ce0_64.png","reblogged_root_avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_bbf820820ce0_96.png","reblogged_root_avatar_url_128":"http:\/\/29.media.tumblr.com\/avatar_bbf820820ce0_128.png","reblogged_root_avatar_url_512":"http:\/\/29.media.tumblr.com\/avatar_bbf820820ce0_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/kevinxcue.tumblr.com\/post\/1100824445\/black-hair-blazer-cgt01-cream-doughnut-eating-food\" class=\"tumblr_blog\">kevinxcue<\/a>:<\/p>\n\n<blockquote><p><a href=\"http:\/\/danbooru.donmai.us\/post\/show\/672316\/black_hair-blazer-cgt01-cream-doughnut-eating-food\">black hair blazer cgt01 cream doughnut eating food food on face highres k-on! long hair nakano azusa panties pastry print panties red eyes ribbon school uniform skirt socks solo twintails upskirt<\/a><\/p><\/blockquote>","photo-link-url":"http:\/\/danbooru.donmai.us\/post\/show\/672316\/black_hair-blazer-cgt01-cream-doughnut-eating-food","width":"1000","height":"1376","photo-url-1280":"http:\/\/eagletbr.tumblr.com\/photo\/1280\/1104219115\/1\/tumblr_l8k9fqOdLF1qzg64k","photo-url-500":"http:\/\/24.media.tumblr.com\/tumblr_l8k9fqOdLF1qzg64ko1_500.jpg","photo-url-400":"http:\/\/30.media.tumblr.com\/tumblr_l8k9fqOdLF1qzg64ko1_400.jpg","photo-url-250":"http:\/\/25.media.tumblr.com\/tumblr_l8k9fqOdLF1qzg64ko1_250.jpg","photo-url-100":"http:\/\/25.media.tumblr.com\/tumblr_l8k9fqOdLF1qzg64ko1_100.jpg","photo-url-75":"http:\/\/27.media.tumblr.com\/tumblr_l8k9fqOdLF1qzg64ko1_75sq.jpg","photos":[]},{"id":1104219112,"url":"http:\/\/eagletbr.tumblr.com\/post\/1104219112","url-with-slug":"http:\/\/eagletbr.tumblr.com\/post\/1104219112\/rageblackinmind-ra-lion-pixiv","type":"photo","date-gmt":"2010-09-11 19:15:48 GMT","date":"Sun, 12 Sep 2010 04:15:48","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232548,"format":"html","reblog-key":"VVnBkJiC","slug":"rageblackinmind-ra-lion-pixiv","note-count":4,"reblogged-from-url":"http:\/\/ignis09.tumblr.com\/post\/1103045545\/rageblackinmind-ra-lion-pixiv","reblogged-from-name":"ignis09","reblogged-from-title":"09 -> 84 pt.umblr","reblogged_from_avatar_url_16":"http:\/\/24.media.tumblr.com\/avatar_eea3a4d26a95_16.png","reblogged_from_avatar_url_24":"http:\/\/27.media.tumblr.com\/avatar_eea3a4d26a95_24.png","reblogged_from_avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_eea3a4d26a95_30.png","reblogged_from_avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_eea3a4d26a95_40.png","reblogged_from_avatar_url_48":"http:\/\/27.media.tumblr.com\/avatar_eea3a4d26a95_48.png","reblogged_from_avatar_url_64":"http:\/\/24.media.tumblr.com\/avatar_eea3a4d26a95_64.png","reblogged_from_avatar_url_96":"http:\/\/25.media.tumblr.com\/avatar_eea3a4d26a95_96.png","reblogged_from_avatar_url_128":"http:\/\/30.media.tumblr.com\/avatar_eea3a4d26a95_128.png","reblogged_from_avatar_url_512":"http:\/\/25.media.tumblr.com\/avatar_eea3a4d26a95_512.png","reblogged-root-url":"http:\/\/rageblackinmind.tumblr.com\/post\/1103034140\/ra-lion-pixiv","reblogged-root-name":"rageblackinmind","reblogged-root-title":"\u30a2\u30e2\u308b\u30d5\u30a1\u30b9","reblogged_root_avatar_url_16":"http:\/\/26.media.tumblr.com\/avatar_7e21f5bc4eac_16.png","reblogged_root_avatar_url_24":"http:\/\/26.media.tumblr.com\/avatar_7e21f5bc4eac_24.png","reblogged_root_avatar_url_30":"http:\/\/30.media.tumblr.com\/avatar_7e21f5bc4eac_30.png","reblogged_root_avatar_url_40":"http:\/\/30.media.tumblr.com\/avatar_7e21f5bc4eac_40.png","reblogged_root_avatar_url_48":"http:\/\/24.media.tumblr.com\/avatar_7e21f5bc4eac_48.png","reblogged_root_avatar_url_64":"http:\/\/30.media.tumblr.com\/avatar_7e21f5bc4eac_64.png","reblogged_root_avatar_url_96":"http:\/\/26.media.tumblr.com\/avatar_7e21f5bc4eac_96.png","reblogged_root_avatar_url_128":"http:\/\/29.media.tumblr.com\/avatar_7e21f5bc4eac_128.png","reblogged_root_avatar_url_512":"http:\/\/30.media.tumblr.com\/avatar_7e21f5bc4eac_512.png","tumblelog":{"title":"TUMBLR","name":"eagletbr","cname":false,"url":"http:\/\/eagletbr.tumblr.com\/","timezone":"Asia\/Tokyo","avatar_url_16":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_16.png","avatar_url_24":"http:\/\/24.media.tumblr.com\/avatar_7db15cda1dbf_24.png","avatar_url_30":"http:\/\/25.media.tumblr.com\/avatar_7db15cda1dbf_30.png","avatar_url_40":"http:\/\/28.media.tumblr.com\/avatar_7db15cda1dbf_40.png","avatar_url_48":"http:\/\/29.media.tumblr.com\/avatar_7db15cda1dbf_48.png","avatar_url_64":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_64.png","avatar_url_96":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_96.png","avatar_url_128":"http:\/\/26.media.tumblr.com\/avatar_7db15cda1dbf_128.png","avatar_url_512":"http:\/\/27.media.tumblr.com\/avatar_7db15cda1dbf_512.png"},"photo-caption":"<p><a href=\"http:\/\/rageblackinmind.tumblr.com\/post\/1103034140\/ra-lion-pixiv\" class=\"tumblr_blog\">rageblackinmind<\/a>:<\/p>\n\n<blockquote><p><a href=\"http:\/\/www.pixiv.net\/member_illust.php?mode=big&illust_id=13168628\">\u300cRA\u300d\/\u300cLion\u300d\u306e\u30a4\u30e9\u30b9\u30c8 [pixiv]<\/a><\/p><\/blockquote>","photo-link-url":"http:\/\/www.pixiv.net\/member_illust.php?mode=big&illust_id=13168628","width":"900","height":"506","photo-url-1280":"http:\/\/28.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_500.jpg","photo-url-500":"http:\/\/28.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_500.jpg","photo-url-400":"http:\/\/25.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_400.jpg","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_250.jpg","photo-url-100":"http:\/\/27.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_100.jpg","photo-url-75":"http:\/\/25.media.tumblr.com\/tumblr_l8l8utHj5V1qz7onvo1_75sq.jpg","photos":[]}]};
diff --git a/testdata/error.xhtml b/testdata/error.xhtml
new file mode 100644
index 0000000..593ee33
--- /dev/null
+++ b/testdata/error.xhtml
@@ -0,0 +1,63 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+ <meta name="robots" content="noindex"/>
+ <title>Maintenance</title>
+ <style type="text/css">
+ body {
+ background-color: #1c1c1c;
+ color: #444;
+ font-family: Arial, Helvetica, sans-serif;
+ }
+
+ h1 {
+ font-size: 34px;
+ font-weight: bold;
+ color: #00c0ff;
+ }
+
+ a {
+ color: #00c0ff;
+ text-decoration: none;
+ white-space: nowrap;
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+
+ div#container {
+ color: #d5d5d5;
+ width: 450px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin: -200px 0 0 -225px;
+ font-size: 20px;
+ text-shadow: #000 1px 1px 2px;
+ }
+ </style>
+ </head>
+ <body onload="
+ if (top != self) {
+ document.body.style.backgroundColor = 'transparent';
+ document.getElementById('container').style.display = 'none';
+ }
+ ">
+ <div id="container">
+ <h1>We'll be back shortly!</h1>
+ <p>
+ We're making some changes to our infrastructure and
+ certain pages may be unavailable for a few minutes.
+ </p>
+ <p>
+ We're very sorry for the inconvenience.
+ </p>
+ <p>
+ Please check back shortly.
+ </p>
+ </div>
+ </body>
+</html>
\ No newline at end of file
diff --git a/testdata/like b/testdata/like
new file mode 100644
index 0000000..3eefc49
--- /dev/null
+++ b/testdata/like
@@ -0,0 +1 @@
+Liked post 1104344180.
\ No newline at end of file
diff --git a/testdata/read.json b/testdata/read.json
new file mode 100644
index 0000000..5cd6e75
--- /dev/null
+++ b/testdata/read.json
@@ -0,0 +1 @@
+var tumblr_api_read = {"tumblelog":{"title":"3\u56de\u524d\u671f\u53d6\u5f97\u5358\u4f4d\u6570\u306f26","description":"\u308f\u3057\u306e\u53d6\u5f97\u5358\u4f4d\u306f108\u307e\u3067\u3042\u308b\u305e","name":"seikichi","timezone":"Asia\/Tokyo","cname":false,"feeds":[]},"posts-start":0,"posts-total":"475","posts-type":false,"posts":[{"id":1104266976,"url":"http:\/\/seikichi.tumblr.com\/post\/1104266976","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1104266976\/cubeee-kirisaki-yomyomyom-0shun","type":"photo","date-gmt":"2010-09-11 19:25:32 GMT","date":"Sun, 12 Sep 2010 04:25:32","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284233132,"format":"html","reblog-key":"NzA5jDtw","slug":"cubeee-kirisaki-yomyomyom-0shun","photo-caption":"<p><a href=\"http:\/\/cubeee.tumblr.com\/post\/1103360337\/kirisaki-yomyomyom-0shun-toyolina\">cubeee<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/kirisaki.tumblr.com\/post\/1103200509\/yomyomyom-0shun-toyolina-yashlu\">kirisaki<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/yomyomyom.tumblr.com\/post\/1103193013\/0shun-toyolina-yashlu\">yomyomyom<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/0shun.tumblr.com\/post\/1102892510\/toyolina-yashlu-irregular-expression\">0shun<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/toyolina.tumblr.com\/post\/1102730875\/yashlu-irregular-expression-theemitter\">toyolina<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/yashlu.tumblr.com\/post\/1102709753\/irregular-expression-theemitter-soulboy\">yashlu<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/irregular-expression.tumblr.com\/post\/1102679742\/theemitter-soulboy-magao-petapeta\">irregular-expression<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/theemitter.tumblr.com\/post\/1102638493\/soulboy-magao-petapeta-highlandvalley\">theemitter<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/soulboy.tumblr.com\/post\/1102593771\/magao-petapeta-highlandvalley-nemoi\">soulboy<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/magao.tumblr.com\/post\/1102590468\/petapeta-highlandvalley-nemoi\">magao<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/petapeta.tumblr.com\/post\/1102558468\/highlandvalley-nemoi-shinoddddd\">petapeta<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/highlandvalley.tumblr.com\/post\/1102554822\/nemoi-shinoddddd-plasticdreams-pvc\">highlandvalley<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/nemoi.tumblr.com\/post\/1102394949\/shinoddddd-plasticdreams-pvc-hanemimi\">nemoi<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/shinoddddd.tumblr.com\/post\/1102076535\/plasticdreams-pvc-hanemimi-hibariya\">shinoddddd<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/plasticdrea.ms\/post\/67090044\/pvc-hanemimi-hibariya-gkojax-d-a-s-f-o\">plasticdreams<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/pvc.tumblr.com\/post\/66851546\/hanemimi-hibariya-gkojax-d-a-s-f-o-r-m-e-n\">pvc<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/hanemimi.tumblr.com\/post\/66597453\">hanemimi<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/hibariya.tumblr.com\/post\/66594602\/gkojax-d-a-s-f-o-r-m-e-n-d-e-mrmt\">hibariya<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/gkojax.tumblr.com\/post\/66591003\">gkojax<\/a>:<\/p>\n<blockquote><a href=\"http:\/\/omora.cc\/d\/log\/eid101.html\">d a s f o r m e n d e | \u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8<\/a> \u2014 <a href=\"http:\/\/mrmt.tumblr.com\/\">mrmt<\/a> \u2014 <a href=\"http:\/\/jinakanishi.tumblr.com\/\">jinakanishi<\/a> \u2014 <a href=\"http:\/\/iwy.tumblr.com\/\">iwy<\/a><\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<p>(via <a href=\"http:\/\/tily.tumblr.com\/post\/22121642\/d-a-s-f-o-r-m-e-n-d-e\">tily<\/a>)<\/p>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<p>\u51fa\u5178\u306f\u661f\u65b0\u4e00\u306e\u304a\u7236\u3055\u3093\u3001\u661f\u4e00\u306e\u3053\u3068\u3070<\/p>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>\n<\/blockquote>","photo-link-url":"http:\/\/omora.cc\/d\/log\/eid101.html","width":400,"height":200,"photo-url-1280":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-500":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-400":"http:\/\/26.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_400.png","photo-url-250":"http:\/\/25.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_250.png","photo-url-100":"http:\/\/27.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_100.png","photo-url-75":"http:\/\/30.media.tumblr.com\/B76ViXs6v38fdu2je1salqii_75sq.png","photos":[]},{"id":1104190604,"url":"http:\/\/seikichi.tumblr.com\/post\/1104190604","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1104190604\/202-2010-09-09-17-23-05-47","type":"quote","date-gmt":"2010-09-11 19:10:01 GMT","date":"Sun, 12 Sep 2010 04:10:01","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284232201,"format":"html","reblog-key":"6gMHN532","slug":"202-2010-09-09-17-23-05-47","quote-text":"<dt>202 \uff1a<b> <\/b>\u304d\u3085\u3046\u5e2b(\u5927\u962a\u5e9c)<b><\/b>\uff1a2010\/09\/09(\u6728) 17:23:05.47 ID:LT87JkDcP <br\/><\/dt><dd><font>\u95c7\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u3063\u3066\u3084\u3063\u3071\u308a\u56de\u7dda\u306f\u5149\u4f7f\u3048\u306a\u3044\u306e\uff1f<\/font> <br\/><\/dd><dd><br\/><br\/>\u00a0 <\/dd><dt>208 \uff1a<b> <\/b>\u88c1\u5224\u5b98(\u9759\u5ca1\u770c)<b><\/b>\uff1a2010\/09\/09(\u6728) 17:23:56.15 ID:BF\/arDCIP <br\/><\/dt><dd><font>»202<\/font> <br\/>\u5149\u306e\u6570\u5341\u500d\u306e\u901f\u5ea6\u3092\u8a87\u308b\u95c7\u56de\u7dda\u304c\u3042\u308b\u304b\u3089\u3001\u4f7f\u3046\u5fc5\u8981\u3082\u306a\u3044 <br\/><\/dd><dd><br\/><br\/>\u00a0 <\/dd><dt>209 \uff1a<font><b> <\/b>\u88c1\u5224\u5b98(dion\u8ecd)<b><\/b><\/font>\uff1a2010\/09\/09(\u6728) 17:24:00.06 ID:ysfKTggfP <br\/><\/dt><dd><font>»202<\/font> <br\/><\/dd><dd>\u5149\u3042\u308b\u3068\u3053\u308d\u306b\u95c7\u304c\u3042\u308b\u3063\u3066\u3044\u3046\u304b\u3089\u5927\u4e08\u592b\u306a\u3093\u3058\u3083\u306d\u3048\u304b <br\/><\/dd><dd><br\/><br\/><br\/><\/dd><dt>313 \uff1a<b> <\/b>\u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc(\u7fa4\u99ac\u770c)<b><\/b>\uff1a2010\/09\/09(\u6728) 17:50:57.98 ID:dxU8YA+h0 <br\/><\/dt><dd>\u30d5\u30ec\u30c3\u30c4\u95c7\u30d5\u30a1\u30a4\u30d0\u30fc\u304c\u3064\u3044\u306b\u52d5\u304d\u51fa\u3057\u305f\u306e\u304b\u30fb\u30fb\u30fb <br\/><\/dd><dd><br\/><br\/>\u00a0 <\/dd><dt>317 \uff1a<b> <\/b>\u6b6f\u79d1\u885b\u751f\u58eb(\u30a2\u30e9\u30d0\u30de\u5dde)<b><\/b>\uff1a2010\/09\/09(\u6728) 17:52:40.95 ID:CykJEe+G0 <br\/><\/dt><dd><font>»313<\/font> <br\/>\u30d5\u30d5\u30d5\u3001\u4eca\u5bb5\u306b\u3082\u88cf\u96fb\u3005\u306e\u4f7f\u8005\u304c\u6765\u3088\u3046\u3002\u00a0 <br\/><\/dd><dd><br\/><\/dd>","quote-source":"<a href=\"http:\/\/workingnews.blog117.fc2.com\/blog-entry-3189.html\">\u95c7\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u3001\u30ec\u30d9\u30eb5\u306b\u5ba3\u6226\u5e03\u544a \u50cd\u304f\u30e2\u30ce\u30cb\u30e5\u30fc\u30b9 : \u4eba\u751fVIP\u8077\u4eba\u30d6\u30ed\u30b0www<\/a>"},{"id":1100802647,"url":"http:\/\/seikichi.tumblr.com\/post\/1100802647","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1100802647","type":"photo","date-gmt":"2010-09-11 04:23:56 GMT","date":"Sat, 11 Sep 2010 13:23:56","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284179036,"format":"html","reblog-key":"ggNAPKzP","slug":"","photo-caption":"<p><a href=\"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6460.html\">\u4eca\u65e5\u3082\u3084\u3089\u308c\u3084\u304f \u52d5\u7269\u305f\u3061\u306b\u7d20\u624b\u3067\u52dd\u3064\u65b9\u6cd5\u3092\u793a\u3057\u305f\u56f3\u89e3\u30fb\u30fb\u30fb\u3053\u3044\u3064\u5929\u624d\u3000\u3000\u3000\u3000\u4ed6<\/a><\/p>","photo-link-url":"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6460.html","width":"578","height":"931","photo-url-1280":"http:\/\/seikichi.tumblr.com\/photo\/1280\/1100802647\/1\/tumblr_l8kevwxEHU1qzjgnw","photo-url-500":"http:\/\/26.media.tumblr.com\/tumblr_l8kevwxEHU1qzjgnwo1_500.jpg","photo-url-400":"http:\/\/28.media.tumblr.com\/tumblr_l8kevwxEHU1qzjgnwo1_400.jpg","photo-url-250":"http:\/\/26.media.tumblr.com\/tumblr_l8kevwxEHU1qzjgnwo1_250.jpg","photo-url-100":"http:\/\/29.media.tumblr.com\/tumblr_l8kevwxEHU1qzjgnwo1_100.jpg","photo-url-75":"http:\/\/24.media.tumblr.com\/tumblr_l8kevwxEHU1qzjgnwo1_75sq.jpg","photos":[]},{"id":1096600597,"url":"http:\/\/seikichi.tumblr.com\/post\/1096600597","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1096600597","type":"quote","date-gmt":"2010-09-10 10:34:17 GMT","date":"Fri, 10 Sep 2010 19:34:17","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284114857,"format":"html","reblog-key":"1q8EytE4","slug":"","quote-text":"<p>\u7687\u65cf\u30d7\u30ed\u30b0\u30e9\u30de\n<\/p><dl><dd> \u6575\u306b\u56de\u3059\u3068\u7687\u5ba4\u3092\u6575\u306b\u56de\u3059\u3053\u3068\u306b\u306a\u308a\u304b\u306d\u306a\u3044\u8005\u305f\u3061\u306b\u4e0e\u3048\u3089\u308c\u308b\u79f0\u53f7\u3002\n<\/dd><dd> 7\u8272\u306e\u8a00\u8a9e\u3092\u64cd\u308b\u3002\n<\/dd><\/dl>","quote-source":"<p><a href=\"http:\/\/ja.uncyclopedia.info\/wiki\/%E9%97%87%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9E%E3%83%BC\">\u95c7\u30d7\u30ed\u30b0\u30e9\u30de\u30fc - \u30a2\u30f3\u30b5\u30a4\u30af\u30ed\u30da\u30c7\u30a3\u30a2<\/a><\/p>\n\n<p>\u3044\u3064\u306e\u9593\u306b\u304b\u6df7\u3058\u3063\u3066\u3084\u304c\u308bwwwwwwwwww<\/p>"},{"id":1096342759,"url":"http:\/\/seikichi.tumblr.com\/post\/1096342759","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1096342759\/magazine-se2","type":"photo","date-gmt":"2010-09-10 08:42:46 GMT","date":"Fri, 10 Sep 2010 17:42:46","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284108166,"format":"html","reblog-key":"YEkxCZta","slug":"magazine-se2","photo-caption":"<p><a href=\"http:\/\/dengekibunko.dengeki.com\/new\/bunko1010.php\">\u96fb\u6483\u6587\u5eab\uff06\u96fb\u6483\u6587\u5eabMAGAZINE<\/a><\/p>\n\n<p>\u306a\u308c\u308b\uff01SE2<\/p>","photo-link-url":"http:\/\/dengekibunko.dengeki.com\/new\/bunko1010.php","width":"185","height":"267","photo-url-1280":"http:\/\/25.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_250.jpg","photo-url-500":"http:\/\/25.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_250.jpg","photo-url-400":"http:\/\/25.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_250.jpg","photo-url-250":"http:\/\/25.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_250.jpg","photo-url-100":"http:\/\/25.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_100.jpg","photo-url-75":"http:\/\/30.media.tumblr.com\/tumblr_l8iw7bcYyA1qzjgnwo1_75sq.jpg","photos":[]},{"id":1095982686,"url":"http:\/\/seikichi.tumblr.com\/post\/1095982686","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1095982686","type":"quote","date-gmt":"2010-09-10 06:29:07 GMT","date":"Fri, 10 Sep 2010 15:29:07","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284100147,"format":"html","reblog-key":"ZLc2TAdS","slug":"","quote-text":"<p>\n\u3053\u306e\u5ea6\u306f\u30b5\u30fc\u30af\u30eb\u30b5\u30a4\u30c8\u306b\u5fa1\u30a2\u30af\u30bb\u30b9\u3044\u305f\u3060\u304d\u8aa0\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002<br\/><\/p>\n\n<p>\n\u3053\u3053\u306b\u3044\u3089\u3063\u3057\u3083\u3063\u305f\u591a\u304f\u306e\u65b9\u306f\u304a\u305d\u3089\u304f\u4ef6\u306e\u30cb\u30e5\u30fc\u30b9\u3092\u3054\u3089\u3093\u306b\u306a\u3063\u3066\u306e\u3053\u3068\u304b\u3068\u5b58\u3058\u307e\u3059\u3002<br\/><\/p>\n\n<p>\n\u30cb\u30e5\u30fc\u30b9\u306a\u3069\u3067\u306f\u300e\u30a2\u30c0\u30eb\u30c8\u30b5\u30a4\u30c8\u300f\u306a\u3069\u3068\u5831\u9053\u3055\u308c\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u304c\u3001\u6b63\u3057\u304f\u306f\u30a2\u30c0\u30eb\u30c8\u30b5\u30a4\u30c8\u3067\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u3002<br\/>\n\u79c1\u3069\u3082\u306f\u300e\u540c\u4eba\uff11\uff18\u7981\u7f8e\u5c11\u5973\u30b2\u30fc\u30e0\u30bd\u30d5\u30c8\u5236\u4f5c\u30b5\u30fc\u30af\u30eb\u300f\u3067\u3042\u308a\u3001\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u3068\u3044\u3046\u5f62\u3067\u3001\u30a8\u30c3\u30c1\u306a\u30b2\u30fc\u30e0\u3092\u5236\u4f5c\u3057\u3066\u304a\u308a\u307e\u3059\u3002<br\/><\/p>\n\n<p>\n\u30b5\u30fc\u30af\u30eb\u300e\u79c1\u7acb\u3055\u304f\u3089\u3093\u307c\u5c0f\u5b66\u6821\u300f\u306f\uff12\uff10\uff10\uff12\u5e74\uff11\uff12\u6708\u306b\u30c7\u30d3\u30e5\u30fc\u3057\u3066\u4ee5\u6765\u3001\u30d5\u30a1\u30f3\u306e\u7686\u69d8\u3088\u308a\u3054\u652f\u63f4\u3092\u8cdc\u308a\u3001\uff18\u5e74\u9593\u306e\u6d3b\u52d5\u306e\u4e2d\u3067\u3001\uff11\uff19\u30bf\u30a4\u30c8\u30eb\u306e\u4f5c\u54c1\u3092\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u307e\u3044\u308a\u307e\u3057\u305f\u3002<br\/>\n\u5e73\u7d20\u3088\u308a\u3054\u611b\u9867\u304f\u3060\u3055\u308b\u30d5\u30a1\u30f3\u306e\u7686\u69d8\u306b\u306f\u3053\u306e\u5834\u3092\u304a\u501f\u308a\u3057\u3066\u539a\u304f\u5fa1\u793c\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002<br\/><br\/>\n\u4eca\u56de\u306e\u4ef6\u306b\u3064\u304d\u307e\u3057\u3066\u306f\u3001\u5b9f\u5728\u306e\u5150\u7ae5\u304c\u95a2\u308f\u308b\u554f\u984c\u3067\u3054\u3056\u3044\u307e\u3059\u3086\u3048\u3001\u614e\u91cd\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u304d\u305f\u3044\u6240\u5b58\u3067\u3059\u3002<br\/>\n\u305d\u308c\u306b\u3068\u3082\u306a\u3044\u307e\u3057\u3066\u3001\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u306e\u985e\u306f\u3059\u3079\u3066\u304a\u65ad\u308a\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\u3002<br\/>\n\u3054\u8981\u671b\u306b\u5fdc\u3058\u3089\u308c\u305a\u8aa0\u306b\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3002<br\/><\/p>\n\n<p>\n\u306a\u304a\u3001\u4eca\u5f8c\u306e\u5bfe\u5fdc\u3068\u3044\u305f\u3057\u307e\u3057\u3066\u3001\u5148\u65b9\u69d8\u306e\u5b66\u6821\u306e\u3054\u610f\u5fd7\u304c\u5909\u308f\u3089\u306c\u3088\u3046\u3067\u3054\u3056\u3044\u307e\u3057\u305f\u3089\u3001\u5150\u7ae5\u306e\u5b89\u5168\u3092\u914d\u616e\u3057\u3001\u30b5\u30fc\u30af\u30eb\u540d\u306e\u5909\u66f4\u3092\u8996\u91ce\u306b\u5165\u308c\u308b\u3053\u3068\u3082\u8003\u616e\u3057\u3066\u304a\u308a\u307e\u3059\u3002<br\/>\n\uff08\u5b50\u4f9b\u3084\u4fdd\u8b77\u8005\u306e\u65b9\u3005\u3092\u4e0d\u5b89\u306b\u3057\u3066\u307e\u3067\u3001\u540d\u79f0\u3092\u8cab\u3053\u3046\u3068\u306f\u601d\u3063\u3066\u304a\u308a\u307e\u305b\u3093\uff09<br\/><\/p>\n\n<p>\n\u9858\u308f\u304f\u3070\u3001\u79c1\u3069\u3082\u304a\u3088\u3073\u30d5\u30a1\u30f3\u306e\u65b9\u3005\u3092\u3001\u305d\u3063\u3068\u3057\u3066\u304a\u3044\u3066\u3044\u305f\u3060\u3051\u308c\u3070\u5e78\u751a\u3067\u3054\u3056\u3044\u307e\u3059\u3002<br\/>\n\u4f55\u5352\u3054\u5bb9\u8d66\u306e\u307b\u3069\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002<br\/><\/p>\n\n<div align=\"right\">\u30b5\u30fc\u30af\u30eb\u79c1\u7acb\u3055\u304f\u3089\u3093\u307c\u5c0f\u5b66\u6821<br\/><small>2010.9.9<\/small><\/div>","quote-source":"<a href=\"http:\/\/www.kodomo-h.com\/\">\u30b5\u30fc\u30af\u30eb\u79c1\u7acb\u3055\u304f\u3089\u3093\u307c\u5c0f\u5b66\u6821 \u5165\u308a\u53e3<\/a> (via <a href=\"http:\/\/eagletbr.tumblr.com\/\" class=\"tumblr_blog\">eagletbr<\/a>)"},{"id":1095923693,"url":"http:\/\/seikichi.tumblr.com\/post\/1095923693","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1095923693\/star-driver-op-aqua-timez","type":"photo","date-gmt":"2010-09-10 06:11:27 GMT","date":"Fri, 10 Sep 2010 15:11:27","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284099087,"format":"html","reblog-key":"4rWu8hgj","slug":"star-driver-op-aqua-timez","photo-caption":"<p><a href=\"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6447.html\">\u4eca\u65e5\u3082\u3084\u3089\u308c\u3084\u304f \u300e\uff33\uff34\uff21\uff32 \uff24\uff32\uff29\uff36\uff25\uff32 \u8f1d\u304d\u306e\u30bf\u30af\u30c8\u300f\u306eOP\u4e3b\u984c\u6b4c\u3092\u6b4c\u3046\u306e\u306fAqua Timez<\/a><\/p>","photo-link-url":"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6447.html","width":"387","height":"500","photo-url-1280":"http:\/\/29.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_400.jpg","photo-url-500":"http:\/\/29.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_400.jpg","photo-url-400":"http:\/\/29.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_400.jpg","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_250.jpg","photo-url-100":"http:\/\/29.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_100.jpg","photo-url-75":"http:\/\/28.media.tumblr.com\/tumblr_l8ip73yjt21qzjgnwo1_75sq.jpg","photos":[]},{"id":1092748005,"url":"http:\/\/seikichi.tumblr.com\/post\/1092748005","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1092748005\/minadzki","type":"photo","date-gmt":"2010-09-09 18:29:09 GMT","date":"Fri, 10 Sep 2010 03:29:09","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1284056949,"format":"html","reblog-key":"lEnWbe8q","slug":"minadzki","photo-caption":"<p><a href=\"http:\/\/minadzki.tumblr.com\/post\/1091451084\/2ch-ny-w\">minadzki<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/news4vip.livedoor.biz\/archives\/51612204.html\">\u30102ch\u3011\u30cb\u30e5\u30fc\u901f\u30af\u30aa\u30ea\u30c6\u30a3:ny\u3067\u5150\u30dd\u52d5\u753b\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u305f\u7121\u8077\u3000\u516c\u7136\u9673\u5217\u5bb9\u7591\u3067\u902e\u6355\uff57<\/a><\/p>\n<\/blockquote>","photo-link-url":"http:\/\/news4vip.livedoor.biz\/archives\/51612204.html","width":"411","height":"231","photo-url-1280":"http:\/\/24.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_500.png","photo-url-500":"http:\/\/24.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_500.png","photo-url-400":"http:\/\/24.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_400.png","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_250.png","photo-url-100":"http:\/\/27.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_100.png","photo-url-75":"http:\/\/29.media.tumblr.com\/tumblr_l8hcijC5pT1qzzsbqo1_75sq.png","photos":[]},{"id":1082040961,"url":"http:\/\/seikichi.tumblr.com\/post\/1082040961","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1082040961","type":"quote","date-gmt":"2010-09-07 18:06:12 GMT","date":"Wed, 08 Sep 2010 03:06:12","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283882772,"format":"html","reblog-key":"sITUWDeT","slug":"","quote-text":"\u304a\u76c6\u3067\u89aa\u621a\u4e00\u540c\u304c\u4ffa\u306e\u5bb6\u306b\u96c6\u307e\u3063\u305f\u6642\u306b\u9152\u3092\u98f2\u3093\u3060\u4f2f\u7236\u306b\u304b\u3089\u307e\u308c\u305f<br\/>\n\u304a\u524d\u3082\u305d\u308d\u305d\u308d\u7d50\u5a5a\u3057\u308d\u3068\u304b\u3001\u90e8\u5c4b\u306b\u3042\u308b\u30b2\u30fc\u30e0\u6a5f\u3092\u6307\u3055\u3057\u3066\u3044\u3044\u6b73\u3057\u3066\u3044\u3064\u307e\u3067\u3042\u3093\u306a\u306e\u3084\u3063\u3066\u3093\u3060\u3068\u304b\u8a00\u308f\u308c\u305f<br\/>\n\u3055\u3059\u304c\u306b\u30a4\u30e9\u30c3\u3068\u304d\u305f\u306e\u3067\u3061\u3087\u3063\u3068\u8a00\u3044\u8fd4\u3057\u305f\u3089\u6bb4\u3089\u308c\u305f<br\/>\n\u3093\u3067\u305d\u308c\u3092\u4e21\u89aa\u304c\u76ee\u6483\u3057\u3066\u305f\u306e\u3067\u3001\u8b66\u5bdf\u3092\u547c\u3093\u3067\u66b4\u884c\u7f6a\u3067\u7acb\u4ef6\u3057\u3066\u3082\u3089\u304a\u3046\u3068\u601d\u3063\u305f<br\/>\n\u3093\u3067\u8b66\u5bdf\u3092\u547c\u307c\u3046\u3068\u3057\u305f\u3089\u3001\u4e21\u89aa\u306f\u4f2f\u7236\u306e\u66b4\u884c\u3092\u8a3c\u8a00\u3057\u306a\u3044\u305e\u3068\u3044\u3046<br\/>\n\u3053\u3093\u306a\u89aa\u621a\u4e00\u540c\u306e\u96c6\u307e\u308b\u5e2d\u3067\u8b66\u5bdf\u6c99\u6c70\u306a\u3093\u3066\u5197\u8ac7\u3058\u3083\u306a\u3044\u3001\u4e16\u9593\u4f53\u3092\u8003\u3048\u308d\u3068\u304b\u8a00\u308f\u308c\u305f<br\/>\n\u304b\u306a\u308a\u30e0\u30ab\u3064\u3044\u305f\u306e\u3067\u3001\u81ea\u6162\u306e\u30aa\u30fc\u30c7\u30a3\u30aa\u30b7\u30b9\u30c6\u30e0\u3067\u6700\u5927\u97f3\u91cf\u3067\u300cAlright!\u30cf\u30fc\u30c8\u30ad\u30e3\u30c3\u30c1\u30d7\u30ea\u30ad\u30e5\u30a2!\u300d\u3092\u304b\u3051\u305f<br\/>\n\u672c\u683c\u7684\u306a\u30aa\u30fc\u30c7\u30a3\u30aa\u30b7\u30b9\u30c6\u30e0\u3068\u3044\u3046\u306e\u306f\u8fd1\u6240\u4e00\u5e2f\u306b\u805e\u3053\u3048\u308b\u307b\u3069\u306e\u97f3\u91cf\u304c\u51fa\u308b<br\/>\n\u3093\u3067\u3053\u306eCD\u3092\u6b62\u3081\u3066\u307b\u3057\u3051\u308c\u3070\u66b4\u884c\u306e\u76ee\u6483\u8a3c\u8a00\u3092\u8b66\u5bdf\u306b\u3057\u3066\u304f\u308c\u3068\u4e21\u89aa\u306b\u8a00\u3063\u305f\u3089\u300110\u4e07\u3084\u308b\u304b\u3089\u3068\u304b\u3001\u4f2f\u7236\u306b\u8b1d\u308b\u3088\u3046\u306b\u8aac\u5f97\u3059\u308b\u304b\u3089\u3068\u304b\u8a00\u3063\u3066\u304d\u305f<br\/>\n\u91d1\u3082\u8b1d\u7f6a\u3082\u3044\u3044\u304b\u3089\u76ee\u6483\u8a3c\u8a00\u3057\u3066\u304f\u308c\u3068\u30dc\u30ea\u30e5\u30fc\u30e0\u3092\u3055\u3089\u306b\u4e0a\u3052\u3064\u3064\u8a00\u3063\u305f\u3089\u627f\u8afe\u3057\u305f\u306e\u3067\u8b66\u5bdf\u3092\u547c\u3093\u3060<br\/>\n\u7d50\u679c\u3001\u4f2f\u7236\u306f\u66b4\u884c\u7f6a\u3067\u7acb\u4ef6\u3055\u308c\u3066\u7f70\u91d1\u5211\u3068\u4f1a\u793e\u30af\u30d3\u3001\u3044\u3044\u6c17\u5473<br\/>\n\u3042\u308a\u304c\u3068\u3046\u30d7\u30ea\u30ad\u30e5\u30a2","quote-source":"<a href=\"http:\/\/alfalfalfa.com\/archives\/670589.html\">\u30a2\u30eb\u30d5\u30a1\u30eb\u30d5\u30a1\u30e2\u30b6\u30a4\u30af - \u304a\u76c6\u3067\u89aa\u621a\u4e00\u540c\u304c\u4ffa\u306e\u5bb6\u306b\u96c6\u307e\u3063\u305f\u6642\u306b\u9152\u3092\u98f2\u3093\u3060\u4f2f\u7236\u306b\u304b\u3089\u307e\u308c\u305f<\/a> (via <a href=\"http:\/\/darylfranz.tumblr.com\/\">darylfranz<\/a>)"},{"id":1082028119,"url":"http:\/\/seikichi.tumblr.com\/post\/1082028119","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1082028119","type":"photo","date-gmt":"2010-09-07 18:02:46 GMT","date":"Wed, 08 Sep 2010 03:02:46","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283882566,"format":"html","reblog-key":"6OGQ9mIM","slug":"","photo-caption":"","photo-link-url":"http:\/\/slashpot.tumblr.com\/post\/1079318522","width":"400","height":"325","photo-url-1280":"http:\/\/27.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_400.jpg","photo-url-500":"http:\/\/27.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_400.jpg","photo-url-400":"http:\/\/27.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_400.jpg","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_250.jpg","photo-url-100":"http:\/\/29.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_100.jpg","photo-url-75":"http:\/\/26.media.tumblr.com\/tumblr_l8d0abL2w11qz993co1_75sq.jpg","photos":[]},{"id":1081904481,"url":"http:\/\/seikichi.tumblr.com\/post\/1081904481","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1081904481","type":"quote","date-gmt":"2010-09-07 17:28:20 GMT","date":"Wed, 08 Sep 2010 02:28:20","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283880500,"format":"html","reblog-key":"oIqxn0za","slug":"","quote-text":"<p>\u3067\u3001\u6b21\u53f7\u304b\u3089\u85cd\u67d3\u7de8\u7d42\u4e86\u307e\u3067\u306e\u5c55\u958b\u3092\u4e88\u60f3\u3057\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n\n<p>\u85cd\u67d3\u300c\u3069\u3046\u3084\u3089\u672c\u6c17\u3092\u51fa\u3059\u5fc5\u8981\u304c\u3042\u308a\u305d\u3046\u3060\u300d<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u3001\u4e00\u8b77\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u300c\u3053\u306e\u3046\u3063\u3068\u3046\u3057\u3044\u62d8\u675f\u5177\u3092\u306f\u305a\u3059\u3068\u304d\u304c\u6765\u305f\u3088\u3046\u3060\u306a\u300d<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u3001\u85cd\u67d3\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u300c\u5fd8\u308c\u305f\u304b\uff1f\u3000\u79c1\u306b\u306f\u307e\u3060\u534d\u89e3\u304c\u6b8b\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u300d<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u3001\u4e00\u8b77\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u300c\u77e5\u3089\u306a\u3044\u3088\u3046\u3060\u306a\u3002\u4eca\u306e\u4ffa\u306f\u307e\u3060\u59cb\u89e3\u3082\u767a\u52d5\u3055\u305b\u3066\u3044\u306a\u3044\u3093\u3060\u305c\u300d<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u3001\u85cd\u67d3\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u300c\u3042\u308a\u304c\u3068\u3046\u3001\u5e95\u77e5\u308c\u306c\u7d76\u671b\u304c\u3055\u3089\u306a\u308b\u5f37\u3055\u3092\u3072\u304d\u51fa\u3055\u305b\u305f\u300d<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u3001\u4e00\u8b77\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u300c\u3046\u304a\u304a\u304a\u304a\u534d\u89e3\u300d<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u3001\u85cd\u67d3\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u300c\u79c1\u306f\u660e\u65e5\u306e\u6804\u5149\u3092\u6368\u3066\u3066\u4eca\u65e5\u306e\u52dd\u5229\u3092\u3064\u304b\u3080\u300d<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u3001\u4e00\u8b77\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u300c\u899a\u609f\u306b\u3088\u3063\u3066\u79d8\u3081\u3089\u308c\u305f\u8840\u306e\u529b\u3092\u547c\u3073\u8d77\u3059\u300d<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u3001\u85cd\u67d3\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u300c\u56de\u60f3\u30b7\u30fc\u30f3\u7a81\u5165\u300d<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u3001\u4e00\u8b77\u3092\u5727\u5012<br\/>\n\u2193<br\/>\n\u77f3\u7530\uff06\u30c1\u30e3\u30c9\u300c\u5f85\u305f\u305b\u305f\u306a\u4e00\u8b77\u300d<br\/>\n\u2193<br\/>\n\u77f3\u7530\uff06\u30c1\u30e3\u30c9\u77ac\u6bba\u3001\u305d\u306e\u3042\u3044\u3060\u4e00\u8b77\u306f\u68d2\u7acb\u3061<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u300c\u4ef2\u9593\u3092\u6bba\u3055\u308c\u305f\u6012\u308a\u304c\u4ffa\u306b\u9650\u754c\u3092\u8d85\u3048\u3055\u305b\u305f\u305c\u300d<br\/>\n\u2193<br\/>\n\u4e00\u8b77\u3001\u85cd\u67d3\u306b\u52dd\u5229<br\/>\n\u2193<br\/>\n\u85cd\u67d3\u300c\u65b0\u30b7\u30ea\u30fc\u30ba\u306e\u6575\u3068\u304f\u3089\u3079\u308c\u3070\u79c1\u306e\u5f37\u3055\u306a\u3069\u30b6\u30b3\u3082\u540c\u7136\u300d<br\/>\n\u2193<br\/>\n\u767d\u54c9\u30cb\u30fc\u30b5\u30f3\uff06\u5263\u516b\u3063\u3064\u3041\u3093\u3001\u30e4\u30df\u30fc\u306b\u52dd\u5229<\/p>","quote-source":"<a href=\"http:\/\/samuraimoon.blog67.fc2.com\/blog-entry-1308.html#\">Moon of Samurai \u4eca\u9031\u306e\u30b8\u30e3\u30f3\u30d7\u4e00\u30b3\u30de\u30ec\u30d3\u30e5\u30fc\u30002010\u5e7440\u53f7<\/a>"},{"id":1070735287,"url":"http:\/\/seikichi.tumblr.com\/post\/1070735287","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1070735287\/zsh-colors-2008-04-25-friday-23-47-55","type":"quote","date-gmt":"2010-09-05 18:09:40 GMT","date":"Mon, 06 Sep 2010 03:09:40","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283710180,"format":"html","reblog-key":"yDTh8NWg","slug":"zsh-colors-2008-04-25-friday-23-47-55","quote-text":"<h3>\n<a href=\"http:\/\/www.cuspy.org\/blog\/archives\/596\" rel=\"bookmark\">zsh colors<\/a> <a href=\"http:\/\/b.hatena.ne.jp\/entry\/www.cuspy.org\/blog\/archives\/596\"><img src=\"http:\/\/b.st-hatena.com\/entry\/image\/http:\/\/www.cuspy.org\/blog\/archives\/596\" style=\"width: 41px ! important; height: 13px ! important;\"\/><\/a> <a href=\"http:\/\/b.hatena.ne.jp\/entry\/www.cuspy.org\/blog\/archives\/596\"><img src=\"http:\/\/b.st-hatena.com\/images\/b-comment-balloon.png\"\/><\/a> <a href=\"http:\/\/b.hatena.ne.jp\/entry\/add\/http:\/\/www.cuspy.org\/blog\/archives\/596\"><img src=\"http:\/\/b.st-hatena.com\/images\/append.gif\"\/><\/a> <\/h3>\n <div>2008\/04\/25 Friday 23:47:55\u00a0<\/div>\n <div>\n <p>zsh \u306e colors \u304c\u4fbf\u5229\u3001\u3053\u308c\u3092\u4f7f\u3046\u3068 .zshrc \u304c\u5927\u5206\u30b7\u30f3\u30d7\u30eb\u306b\u306a\u3063\u305f\u3002<br\/>\n\u901a\u5e38\u8d64\u8272\u3092\u8868\u793a\u3059\u308b\u5834\u5408<\/p>\n<blockquote><p>\n % echo -e \u201c\\e[31mhello\u201d\n<\/p><\/blockquote>\n<p>\u3068\u3044\u3046\u8a18\u53f7\u3081\u3044\u305f\u6587\u5b57\u3092\u8a18\u8ff0\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u304c\u3001zsh \u306e colors \u3092\u4f7f\u3046\u3068<\/p>\n<blockquote><p>\n % autoload -U colors<br\/>\n % colors\n<\/p><\/blockquote>\n<p>\u3068\u3044\u3046\u3088\u3046\u306b\u6709\u52b9\u5316\u3057\u3066<\/p>\n<blockquote><p>\n % echo -e \u201c${fg[red]}hello\u201d\n<\/p><\/blockquote>\n<p>\u3067\u8d64\u8272\u306e\u6587\u5b57\u304c\u8868\u793a\u3055\u308c\u308b\u3002\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9\u3092\u8d64\u8272\u306b\u3059\u308b\u306b\u306f<\/p>\n<blockquote><p>\n % echo -e \u201c${bg[red]}hello\u201d\n<\/p><\/blockquote>\n<p>foreground \u3068 background \u3092\u4e00\u822c\u5316\u3059\u308b\u3068<\/p>\n<blockquote><p>\n % echo -e \u201c\\e[${color[red]}mhello\u201d<br\/>\n % echo -e \u201c\\e[${color[bg-red]}mhello\u201d\n<\/p><\/blockquote>\n<p>\u3067\u3082\u826f\u3044\u3002<br\/>\n\u4f7f\u7528\u51fa\u6765\u308b\u30ad\u30fc\u306f<\/p>\n<blockquote><p>\n % echo $color<br\/>\nnone normal bg-blue 31 bold no-standout bg-magenta faint no-underline \nbg-cyan standout no-blink bg-white underline 33\u00a041\u00a001 blink no-reverse \nbg-default 27 no-conceal reverse conceal 30\u00a031\u00a008\u00a039\u00a002\u00a032\u00a024\u00a045\u00a035\u00a005 \n34\u00a030\u00a039\u00a047 black 23 red green 43 yellow 36 blue magenta 37 cyan 03 \nwhite 44\u00a035 default 40\u00a028\u00a007\u00a046\u00a004\u00a033\u00a037\u00a040\u00a022\u00a034\u00a042\u00a000\u00a030\u00a030\u00a025\u00a049 \nbg-black 36\u00a032 bg-red bg-green bg-yellow\n<\/p><\/blockquote>\n<p>\u3067\u78ba\u8a8d\u51fa\u6765\u305f\u3002<\/p>\n <\/div>","quote-source":"<a href=\"http:\/\/www.cuspy.org\/blog\/archives\/596\">cuspy memo - zsh colors<\/a> (via <a href=\"http:\/\/alfaladio.tumblr.com\/\">alfaladio<\/a>)"},{"id":1070623122,"url":"http:\/\/seikichi.tumblr.com\/post\/1070623122","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1070623122\/untitled-amazon-co-jp-500mlx24","type":"link","date-gmt":"2010-09-05 17:43:27 GMT","date":"Mon, 06 Sep 2010 02:43:27","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283708607,"format":"html","reblog-key":"3lp8Yc4U","slug":"untitled-amazon-co-jp-500mlx24","link-text":"Untitled: Amazon.co.jp\uff1a (\u304a\u5fb3\u7528\u30dc\u30c3\u30af\u30b9)\u30c9\u30af\u30bf\u30fc\u30da\u30c3\u30d1\u30fc500\uff4d\uff4c\u00d724\u672c: \u98df\u54c1&\u98f2\u6599","link-url":"http:\/\/<p><a href=\"http\/\/nojima.tumblr.com\/post\/1070598479\/amazon-co-jp-500mlx24\" class=\"tumblr_blog\">nojima<\/a>:<\/p> <blockquote> <p><a href=\"http:\/\/www.amazon.co.jp\/%E3%82%B3%E3%82%AB%E3%83%BB%E3%82%B3%E3%83%BC%E3%83%A9-3422-%E3%81%8A%E5%BE%B3%E7%94%A8%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9-%E3%83%89%E3%82%AF%E3%82%BF%E3%83%BC%E3%83%9A%E3%83%83%E3%83%91%E3%83%BC500%EF%BD%8D%EF%BD%8C%C3%9724%E6%9C%AC\/dp\/B001U7651A\">Amazon.co.jp\uff1a (\u304a\u5fb3\u7528\u30dc\u30c3\u30af\u30b9)\u30c9\u30af\u30bf\u30fc\u30da\u30c3\u30d1\u30fc500\uff4d\uff4c\u00d724\u672c: \u98df\u54c1&\u98f2\u6599<\/a><\/p> <p>\u6700\u3082\u53c2\u8003\u306b\u306a\u3063\u305f\u30ab\u30b9\u30bf\u30de\u30fc\u30ec\u30d3\u30e5\u30fc<br><br> 280 \u4eba\u4e2d\u3001259\u4eba\u306e\u65b9\u304c\u3001\uff62\u3053\u306e\u30ec\u30d3\u30e5\u30fc\u304c\u53c2\u8003\u306b\u306a\u3063\u305f\uff63\u3068\u6295\u7968\u3057\u3066\u3044\u307e\u3059\u3002 <br>5\u3064\u661f\u306e\u3046\u3061 5.0 \u4e0d\u601d\u8b70\u306a\u98f2\u307f\u7269\u3067\u3059, 2009\/11\/17 By \u963f\u4e07\u97f3\u9234\u7fbd - \u30ec\u30d3\u30e5\u30fc\u3092\u3059\u3079\u3066\u898b\u308b<br><br>\u30ec\u30d3\u30e5\u30fc\u5bfe\u8c61\u5546\u54c1: (\u304a\u5fb3\u7528\u30dc\u30c3\u30af\u30b9)\u30c9\u30af\u30bf\u30fc\u30da\u30c3\u30d1\u30fc500\uff4d\uff4c\u00d724\u672c (\u98df\u54c1&\u98f2\u6599) <br>\u3053\u306e\u98f2\u6599\u3092\u98f2\u3080\u3068\u4f55\u304b\u30c7\u30b8\u30e3\u30d3\u30e5\u306e\u3088\u3046\u306a\u611f\u899a\u306b\u9665\u308a\u307e\u3057\u305f\u3002 <br>\u3042\u308c\u306f\u78ba\u304b\u3001\u5927\u5b66\u306e\u590f\u4f11\u307f\u306b\u4ef2\u9593\u305f\u3061\u3068\u5927\u304d\u306a\u9670\u8b00\u306b\u7acb\u3061\u5411\u304b\u3063\u3066\u308b\u3088\u3046\u306a\u3002 <br>...<\/p> <\/blockquote> <p><\/p>","link-description":"<p><a href=\"http:\/\/www.amazon.co.jp\/%E3%82%B3%E3%82%AB%E3%83%BB%E3%82%B3%E3%83%BC%E3%83%A9-3422-%E3%81%8A%E5%BE%B3%E7%94%A8%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9-%E3%83%89%E3%82%AF%E3%82%BF%E3%83%BC%E3%83%9A%E3%83%83%E3%83%91%E3%83%BC500%EF%BD%8D%EF%BD%8C%C3%9724%E6%9C%AC\/dp\/B001U7651A\">Amazon.co.jp\uff1a (\u304a\u5fb3\u7528\u30dc\u30c3\u30af\u30b9)\u30c9\u30af\u30bf\u30fc\u30da\u30c3\u30d1\u30fc500\uff4d\uff4c\u00d724\u672c: \u98df\u54c1&\u98f2\u6599<\/a><\/p>\n<p>\u6700\u3082\u53c2\u8003\u306b\u306a\u3063\u305f\u30ab\u30b9\u30bf\u30de\u30fc\u30ec\u30d3\u30e5\u30fc<br\/><br\/> 280 \u4eba\u4e2d\u3001259\u4eba\u306e\u65b9\u304c\u3001\uff62\u3053\u306e\u30ec\u30d3\u30e5\u30fc\u304c\u53c2\u8003\u306b\u306a\u3063\u305f\uff63\u3068\u6295\u7968\u3057\u3066\u3044\u307e\u3059\u3002 <br\/>5\u3064\u661f\u306e\u3046\u3061 5.0 \u4e0d\u601d\u8b70\u306a\u98f2\u307f\u7269\u3067\u3059, 2009\/11\/17 By \u963f\u4e07\u97f3\u9234\u7fbd - \u30ec\u30d3\u30e5\u30fc\u3092\u3059\u3079\u3066\u898b\u308b<br\/><br\/>\u30ec\u30d3\u30e5\u30fc\u5bfe\u8c61\u5546\u54c1: (\u304a\u5fb3\u7528\u30dc\u30c3\u30af\u30b9)\u30c9\u30af\u30bf\u30fc\u30da\u30c3\u30d1\u30fc500\uff4d\uff4c\u00d724\u672c (\u98df\u54c1&\u98f2\u6599) <br\/>\u3053\u306e\u98f2\u6599\u3092\u98f2\u3080\u3068\u4f55\u304b\u30c7\u30b8\u30e3\u30d3\u30e5\u306e\u3088\u3046\u306a\u611f\u899a\u306b\u9665\u308a\u307e\u3057\u305f\u3002 <br\/>\u3042\u308c\u306f\u78ba\u304b\u3001\u5927\u5b66\u306e\u590f\u4f11\u307f\u306b\u4ef2\u9593\u305f\u3061\u3068\u5927\u304d\u306a\u9670\u8b00\u306b\u7acb\u3061\u5411\u304b\u3063\u3066\u308b\u3088\u3046\u306a\u3002 <br\/>…<\/p>"},{"id":1070150582,"url":"http:\/\/seikichi.tumblr.com\/post\/1070150582","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1070150582","type":"quote","date-gmt":"2010-09-05 16:00:27 GMT","date":"Mon, 06 Sep 2010 01:00:27","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283702427,"format":"html","reblog-key":"k5TQ0gZY","slug":"","quote-text":"\u8981\u3059\u308b\u306b\u300c\u79c1\u306f\u4f55\u3092\u3057\u3066\u3044\u3044\u304b\u5224\u3089\u306a\u3044\u300d\u3068\u304b\u306d\u3001\u3069\u3046\u3044\u3046\u4ed5\u4e8b\u306b\u5c31\u3053\u3046\u304b\u3001\u3068\u304b\u3001\u305d\u3046\u3044\u3046\u3053\u3068\u3067\u3084\u308b\u3079\u304d\u4ed5\u4e8b\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u3001\u305d\u3046\u3044\u3046\u3053\u3068\u8a00\u3046\u5974\u304c\u3044\u3063\u3071\u3044\u3044\u308b\u3093\u3060\u3088\u3002\u4f55\u306e\u4eba\u751f\u7d4c\u9a13\u3082\u306a\u3044\u3057\u6559\u990a\u3082\u306a\u304f\u3066\u3001\u305f\u3060\u5927\u5b66\u51fa\u305f\u3060\u3051\u3067\u300c\u50d5\u306e\u4ed5\u4e8b\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u3093\u3060\u300d\u3063\u3066\u3001\u305d\u308c\u3001\u898b\u3064\u304b\u3089\u306a\u3044\u3093\u3058\u3083\u306a\u304f\u3066\u3001\u3069\u3046\u3044\u3046\u4ed5\u4e8b\u306b\u5165\u3063\u3066\u3057\u307e\u3063\u305f\u304b\u306e\u7d50\u8ad6\u3067\u3042\u3063\u3066\u3001\u4e00\u751f\u81ea\u5206\u306e\u4ed5\u4e8b\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u5974\u304c\u3044\u3063\u3071\u3044\u3044\u308b\u308f\u3051\u3067\u3059\u3088\u3002\u3067\u3082\u3001\u305d\u306e\u3001\u5dfb\u304d\u8fbc\u307e\u308c\u308b\u3082\u306e\u3060\u3001\u3063\u3066\u306e\u304c\u3044\u3044\u3060\u308d\u3002\u4f55\u6545\u304b\u305d\u3053\u306b\u5165\u3063\u3066\u3057\u307e\u3063\u305f\u3001\u3063\u3066\u3053\u3068\u304c\u4e00\u756a\u5927\u5207\u306a\u3053\u3068\u3067\u306d\u3001\u30aa\u30ec\u306f\u5f79\u8005\u306b\u306a\u308b\u3093\u3060\u3001\u3068\u304b\u3001\u6f2b\u624d\u5e2b\u306b\u306a\u308b\u3093\u3060\u3001\u3068\u3044\u3046\u3088\u3046\u306a\u76ee\u6a19\u3092\u6301\u3063\u3066\u3084\u308b\u5974\u3063\u3066\u306e\u306f\u3001\u304b\u306a\u308a\u7121\u7406\u304c\u3042\u308b\u3093\u3060\u3088\u306a\u30a1\u3002\u521d\u3081\u304b\u3089\u5b50\u4f9b\u306e\u3068\u304d\u306b\u3001\u91ce\u7403\u9078\u624b\u306b\u306a\u308d\u3046\u3068\u601d\u3063\u3066\u4e00\u751f\u61f8\u547d\u3084\u3063\u305f\u7d50\u679c\u304c\u3060\u3088\u3001\u76f8\u624b\u306b\u306a\u3089\u306a\u3044\u3063\u3066\u306e\u3082\u6c17\u304c\u3064\u304b\u306a\u3044\u5974\u304c\u3044\u3063\u3071\u3044\u3044\u308b\u304b\u3089\u306d\u3002\u8981\u3059\u308b\u306b\u3001\u81ea\u5206\u306e\u6700\u7d42\u76ee\u6a19\u3068\u3044\u3046\u306e\u306f\u3001\u81ea\u5206\u306f\u3069\u3046\u3044\u3046\u4ed5\u4e8b\u306b\u5c31\u304f\u3093\u3060\u308d\u3046\u304b\u3063\u3066\u3053\u3068\u81ea\u4f53\u304c\u6700\u7d42\u306e\u76ee\u6a19\u3067\u3082\u3044\u3044\u3068\u601d\u3063\u3066\u3093\u3060\u3001\u30aa\u30ec\u3002\u6b7b\u306c\u524d\u306b\u300c\u30aa\u30ec\u306e\u4ed5\u4e8b\u306f\u3053\u308c\u3060\u300d\u3063\u3066\u516b\u5341\u306e\u30b8\u30a4\u3055\u3093\u304c\u601d\u3063\u305f\u6642\u70b9\u3067\u3001\u305d\u306e\u4eba\u306f\u5e78\u305b\u3060\u3068\u601d\u3046\u308f\u3051\u3055\u3002\u4e00\u751f\u81ea\u5206\u306e\u4ed5\u4e8b\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u4eba\u304c\u591a\u3044\u3093\u3060\u3088\u3002\u30aa\u30ec\u306f\u3053\u306e\u4ed5\u4e8b\u3001\u3063\u3066\u4e2d\u5b66\u3068\u304b\u9ad8\u6821\u306b\u6c7a\u3081\u305f\u5974\u3063\u3066\u30aa\u30ec\u306f\u30d0\u30ab\u3060\u3068\u601d\u3046\u306a\u30a1\u3002\u521d\u3081\u304b\u3089\u3001\u81ea\u5206\u306f\u3053\u308c\u306b\u884c\u304f\u3093\u3060\u3068\u601d\u3063\u3066\u305d\u308c\u306b\u52aa\u529b\u3059\u308b\u306e\u3082\u69cb\u308f\u306a\u3044\u3051\u308c\u3069\u3082\u3001\u305d\u306e\u4ed5\u4e8b\u306b\u5408\u3063\u305f\u624d\u80fd\u304c\u3042\u308b\u3093\u3060\u308d\u3046\u304b\u3001\u3063\u3066\u306e\u306f\u307e\u305f\u5225\u554f\u984c\u3060\u304b\u3089\u306a\u3002\u601d\u3044\u8fbc\u307f\u3060\u304b\u3089\u3002\u3067\u3001\u4eca\u3082\u3063\u3068\u60aa\u3044\u306e\u306f\u3001\u81ea\u5206\u306e\u5b50\u4f9b\u306b\u5bfe\u3057\u3066\u306f\u306d\u3001\u30d7\u30ed\u91ce\u7403\u9078\u624b\u306b\u306a\u308a\u306a\u3055\u3044\u3063\u3066\u8a00\u3063\u3066\u308b\u30d0\u30ab\u6bcd\u89aa\u304c\u3044\u308b\u308f\u3051\u3060\u3088\u3002\u5b50\u4f9b\u304c\u624d\u80fd\u3042\u308b\u30fb\u306a\u3057\u306b\u304b\u304b\u308f\u3089\u305a\u3002\u5c11\u5e74\u91ce\u7403\u306e\u76e3\u7763\u306b\u91d1\u3042\u3052\u305f\u308a\u3057\u3066\u3001\u30a6\u30c1\u306e\u5b50\u3092\u30ec\u30ae\u30e5\u30e9\u30fc\u306b\u3057\u3066\u4e0b\u3055\u3044\u3001\u3063\u3066\u3001\u305d\u308c\u3067\u3084\u3063\u3066\u884c\u3063\u3066\u3001\u6709\u540d\u306a\u9ad8\u6821\u91ce\u7403\u306e\u9ad8\u6821\u306b\u884c\u3063\u3066\u3055\u3001\u4e00\u751f\u91d1\u4f7f\u3063\u3066\u30ec\u30ae\u30e5\u30e9\u30fc\u306b\u306a\u308c\u306a\u304f\u3066\u3001\u305d\u308c\u3067\u3082\u7532\u5b50\u5712\u51fa\u3066\u80a9\u58ca\u3057\u3066\u3001\u3042\u3068\u4f55\u306b\u3082\u4eba\u751f\u306a\u3044\u3063\u3066\u5974\u304c\u4eca\u3044\u3063\u3071\u3044\u3044\u308b\u308f\u3051\u3002\u305d\u3046\u3059\u308b\u3068\u306d\u3001\u4ed5\u4e8b\u3068\u3044\u3046\u306e\u306f\u2014\u2014\u4eca\u30aa\u30ec\u304c\u3084\u3063\u3066\u308b\u306e\u304c\u679c\u305f\u3057\u3066\u4ed5\u4e8b\u304b\u3069\u3046\u304b\u5224\u3089\u306a\u3044\u3093\u3060\u3051\u3069\u3001\u4e00\u5fdc\u4ed5\u4e8b\u3060\u3068\u601d\u3063\u3066\u308b\u3051\u3069\u3001\u3053\u308c\u3001\u3042\u3068\u5341\u5e74\u304b\u4e8c\u5341\u5e74\u7d4c\u3063\u305f\u3068\u304d\u3001\u300c\u3042\u30a1\u3001\u30aa\u30ec\u306e\u4ed5\u4e8b\u306f\u3053\u308c\u306a\u3093\u3060\u300d\u3063\u3066\u601d\u3046\u3053\u3068\u304c\u3042\u308b\u304b\u3082\u77e5\u308c\u306a\u3044\u308f\u3051\u3067\u3001\u6f2b\u624d\u5e2b\u307f\u305f\u3044\u306a\u4ed5\u4e8b\u304c\u4e00\u751f\u306e\u3082\u3093\u3060\u3068\u306f\u3061\u3063\u3068\u3082\u601d\u3063\u3066\u306a\u3044\u3002\u3060\u3051\u3069\u4eca\u306f\u3001\u3053\u306e\u4ed5\u4e8b\u304c\u5408\u3063\u3066\u308b\u304b\u306a\u3001\u3068\u601d\u3063\u3066\u308b\u308f\u3051\u3067\u3001\u3082\u3063\u3068\u5408\u3046\u4ed5\u4e8b\u304c\u3042\u3063\u305f\u3089\u305d\u3063\u3061\u306b\u884c\u304d\u305f\u3044\u3050\u3089\u3044\u306a\u308f\u3051\u3060\u308d\u3002\u305d\u3046\u3059\u308b\u3068\u3001\u9078\u3076\u3082\u3093\u3058\u3083\u306a\u3044\u3093\u3060\u3088\u306a\u3002","quote-source":"<a href=\"http:\/\/freett.com\/idenshi\/allnight\/allnight-sato2.htm\">\u305f\u3051\u3057RADIO - ANN 1981\/01\/01 - \u653e\u9001\u7b2c\uff11\u56de\u76ee<\/a> (via <a href=\"http:\/\/otsune.tumblr.com\/\">otsune<\/a>)"},{"id":1070078774,"url":"http:\/\/seikichi.tumblr.com\/post\/1070078774","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1070078774\/913-sage-2010-09-05","type":"quote","date-gmt":"2010-09-05 15:43:51 GMT","date":"Mon, 06 Sep 2010 00:43:51","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283701431,"format":"html","reblog-key":"tH8mm9bF","slug":"913-sage-2010-09-05","quote-text":"<p>913 \u540d\u524d\uff1a\u6e21\u308b\u4e16\u9593\u306f\u540d\u7121\u3057\u3070\u304b\u308a[sage] \u6295\u7a3f\u65e5\uff1a2010\/09\/05(\u65e5) 17:37:37.84 ID:VZ1NhaYW<br\/>\n\u5178\u578b\u7684\u30dc\u30f3\u30ba\u30a2\u30cb\u30e1<\/p>\n\n<p>\uff11\u8a71\u3000\u305d\u3053\u305d\u3053\u597d\u8a55<br\/>\n\uff16\u8a71\u3000\u5207\u308a\u59cb\u3081\u308b\u5974\u304c\u5897\u3048\u308b<br\/>\n\uff11\uff13\u8a71\u3000\u30aa\u30bf\u4ee5\u5916\u306f\u307b\u3068\u3093\u3069\u5207\u308b<br\/>\n\uff12\uff10\u8a71\u3000\u307e\u3068\u3082\u306b\u7d42\u308f\u308c\u308b\u306e\u304c\u5371\u60e7\u3055\u308c\u59cb\u3081\u308b<br\/>\n\u6700\u7d42\u56de\u3000\u6848\u306e\u5b9a\u5c3b\u5207\u308c\u30c8\u30f3\u30dc\u3067\u30d6\u30fc\u30a4\u30f3\u30b0<\/p>","quote-source":"<a href=\"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6383.html\">\u4eca\u65e5\u3082\u3084\u3089\u308c\u3084\u304f \u65e55\u67a0\u5185\u3067\u6d41\u308c\u305f\u300e\u305f\u307e\u3086\u3089 OVA\u300f\uff06\u300eSTAR DRIVER \u8f1d\u304d\u306e\u30bf\u30af\u30c8\u300f\u306e\u756a\u5ba3\u306b\u5bfe\u3059\u308b\u5b9f\u6cc1\u6c11\u306e\u53cd\u5fdc<\/a>"},{"id":1067914033,"url":"http:\/\/seikichi.tumblr.com\/post\/1067914033","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1067914033\/nagas-npg-pixiv","type":"photo","date-gmt":"2010-09-05 05:14:42 GMT","date":"Sun, 05 Sep 2010 14:14:42","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283663682,"format":"html","reblog-key":"pZOFafOo","slug":"nagas-npg-pixiv","photo-caption":"<p><a href=\"http:\/\/nagas.tumblr.com\/post\/1063502482\/npg-pixiv\">nagas<\/a>:<\/p>\n<blockquote>\n<p><a href=\"http:\/\/www.pixiv.net\/member_illust.php?mode=big&illust_id=9344298\">\u300c\u52a9\u624b\u306e\u30e1\u30fc\u30eb\u304c\u30e4\u30d0\u30a4\u300d\/\u300c.npg\u300d\u306e\u30a4\u30e9\u30b9\u30c8 [pixiv]<\/a><\/p>\n<\/blockquote>","photo-link-url":"http:\/\/www.pixiv.net\/member_illust.php?mode=big&illust_id=9344298","width":"300","height":"378","photo-url-1280":"http:\/\/26.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_400.jpg","photo-url-500":"http:\/\/26.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_400.jpg","photo-url-400":"http:\/\/26.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_400.jpg","photo-url-250":"http:\/\/28.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_250.jpg","photo-url-100":"http:\/\/26.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_100.jpg","photo-url-75":"http:\/\/28.media.tumblr.com\/tumblr_l87yv6PIiU1qzwqifo1_75sq.jpg","photos":[]},{"id":1062634259,"url":"http:\/\/seikichi.tumblr.com\/post\/1062634259","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1062634259\/c-c-int-hoge","type":"quote","date-gmt":"2010-09-04 06:13:39 GMT","date":"Sat, 04 Sep 2010 15:13:39","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283580819,"format":"html","reblog-key":"o5P4gNts","slug":"c-c-int-hoge","quote-text":"<span><span>C++ \u3068\u8a00\u3046\u304b C \u3067\u4eca\u307e\u3067\u3067\u4e00\u756a\u300c\u3042\u3042\u305d\u306e\u767a\u60f3\u306f\u306a\u304b\u3063\u305f\u300d\u3066\u306e\u306f\uff0cint hoge[] = { <a href=\"http:\/\/twitter.com\/search?q=%23include\" rel=\"nofollow\">#include<\/a> “hoge.csv” };<\/span><\/span>","quote-source":"<a href=\"http:\/\/twitter.com\/tt_clown\/status\/22769039758\">Twitter \/ clown: C++ \u3068\u8a00\u3046\u304b C \u3067\u4eca\u307e\u3067\u3067\u4e00\u756a\u300c\u3042\u3042\u305d\u306e\u767a\u60f3\u306f …<\/a>"},{"id":1059805297,"url":"http:\/\/seikichi.tumblr.com\/post\/1059805297","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1059805297","type":"photo","date-gmt":"2010-09-03 19:34:55 GMT","date":"Sat, 04 Sep 2010 04:34:55","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283542495,"format":"html","reblog-key":"q4e2eq8k","slug":"","photo-caption":"<p><a href=\"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6364.html\">\u4eca\u65e5\u3082\u3084\u3089\u308c\u3084\u304f \u300e\u30d0\u30f3\u30d6\u30fc\u30d6\u30ec\u30fc\u30c9\u300f\u4f5c\u753b\u306e\u4e94\u5341\u5d50\u3042\u3050\u308a\u3055\u3093\u3082\u6700\u7d42\u56de\u306e\u30cd\u30fc\u30e0\u306b\u30ad\u30ec\u3066\u3044\u305f\uff1f\u2192\u5225\u306e\u4e8b\u3067\u3057\u305f\u3000\u3000\u4ed6<\/a><\/p>","photo-link-url":"http:\/\/yunakiti.blog79.fc2.com\/blog-entry-6364.html","width":"536","height":"1415","photo-url-1280":"http:\/\/seikichi.tumblr.com\/photo\/1280\/1059805297\/1\/tumblr_l86rq7sdU61qzjgnw","photo-url-500":"http:\/\/25.media.tumblr.com\/tumblr_l86rq7sdU61qzjgnwo1_500.jpg","photo-url-400":"http:\/\/28.media.tumblr.com\/tumblr_l86rq7sdU61qzjgnwo1_400.jpg","photo-url-250":"http:\/\/26.media.tumblr.com\/tumblr_l86rq7sdU61qzjgnwo1_250.jpg","photo-url-100":"http:\/\/24.media.tumblr.com\/tumblr_l86rq7sdU61qzjgnwo1_100.jpg","photo-url-75":"http:\/\/24.media.tumblr.com\/tumblr_l86rq7sdU61qzjgnwo1_75sq.jpg","photos":[]},{"id":1058155932,"url":"http:\/\/seikichi.tumblr.com\/post\/1058155932","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1058155932\/chick-e","type":"photo","date-gmt":"2010-09-03 12:16:02 GMT","date":"Fri, 03 Sep 2010 21:16:02","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283516162,"format":"html","reblog-key":"iEOl0sA3","slug":"chick-e","photo-caption":"<p><a href=\"http:\/\/chick-e.tumblr.com\/post\/1052134410\">chick-e<\/a>:<\/p>\n<blockquote>\n\n<\/blockquote>","photo-link-url":"http:\/\/sep.2chan.net\/may\/b\/src\/1283405843549.jpg","width":"650","height":"945","photo-url-1280":"http:\/\/seikichi.tumblr.com\/photo\/1280\/1058155932\/1\/tumblr_l83y5tf0Rb1qaphgr","photo-url-500":"http:\/\/27.media.tumblr.com\/tumblr_l83y5tf0Rb1qaphgro1_500.jpg","photo-url-400":"http:\/\/26.media.tumblr.com\/tumblr_l83y5tf0Rb1qaphgro1_400.jpg","photo-url-250":"http:\/\/30.media.tumblr.com\/tumblr_l83y5tf0Rb1qaphgro1_250.jpg","photo-url-100":"http:\/\/30.media.tumblr.com\/tumblr_l83y5tf0Rb1qaphgro1_100.jpg","photo-url-75":"http:\/\/30.media.tumblr.com\/tumblr_l83y5tf0Rb1qaphgro1_75sq.jpg","photos":[]},{"id":1058154271,"url":"http:\/\/seikichi.tumblr.com\/post\/1058154271","url-with-slug":"http:\/\/seikichi.tumblr.com\/post\/1058154271\/chick-e","type":"photo","date-gmt":"2010-09-03 12:15:28 GMT","date":"Fri, 03 Sep 2010 21:15:28","bookmarklet":0,"mobile":0,"feed-item":"","from-feed-id":0,"unix-timestamp":1283516128,"format":"html","reblog-key":"9y0yYaWD","slug":"chick-e","photo-caption":"<p><a href=\"http:\/\/chick-e.tumblr.com\/post\/1052143591\">chick-e<\/a>:<\/p>\n<blockquote>\n\n<\/blockquote>","photo-link-url":"http:\/\/feb.2chan.net\/may\/b\/src\/1283408395139.jpg","width":"751","height":"1200","photo-url-1280":"http:\/\/seikichi.tumblr.com\/photo\/1280\/1058154271\/1\/tumblr_l83yauWKYm1qaphgr","photo-url-500":"http:\/\/26.media.tumblr.com\/tumblr_l83yauWKYm1qaphgro1_500.jpg","photo-url-400":"http:\/\/30.media.tumblr.com\/tumblr_l83yauWKYm1qaphgro1_400.jpg","photo-url-250":"http:\/\/26.media.tumblr.com\/tumblr_l83yauWKYm1qaphgro1_250.jpg","photo-url-100":"http:\/\/29.media.tumblr.com\/tumblr_l83yauWKYm1qaphgro1_100.jpg","photo-url-75":"http:\/\/25.media.tumblr.com\/tumblr_l83yauWKYm1qaphgro1_75sq.jpg","photos":[]}]};
diff --git a/testdata/unlike b/testdata/unlike
new file mode 100644
index 0000000..70b55a4
--- /dev/null
+++ b/testdata/unlike
@@ -0,0 +1 @@
+Unliked post 1104344180.
\ No newline at end of file
|
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 <[email protected]>
*/
// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();
if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'action.php');
class action_plugin_pagemoveng extends DokuWiki_Action_Plugin {
var $helper = null;
var $calls = array('pagemoveng_popup' => 'html_popup',
'pagemoveng_check_dest' => 'check_dest',
'pagemoveng_load_form' => 'html_form',
'pagemoveng_move_page' => 'move_page');
function action_plugin_pagemoveng() {
if(!$this->helper) $this->helper =& plugin_load('helper', 'pagemoveng');
}
function getInfo() {
return confToHash(dirname(__FILE__).'/plugin.info.txt');
}
function register(&$controller) {
$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handle_ajax_call_unknown');
- $controller->regiester_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'handle_parser_cache_use');
+ $controller->register_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'handle_parser_cache_use');
}
function handle_ajax_call_unknown(&$event, $param) {
if(!in_array($event->data, array_keys($this->calls))) return;
$event->preventDefault();
if(auth_ismanager() or auth_isadmin()) {
if(in_array($event->data, array_keys($this->calls))) {
call_user_func_array(array($this->helper, $this->calls[$event->data]), array($_REQUEST['pagemove']));
}
}
}
function handle_parser_cache_use(&$event, $param) {
// FIXME check if page is part of a move queue and fix references to moved page prior
// FIXME should move queue be able to get fixed using an admin plugin/cli interface?
}
}
// vim:ts=4:sw=4:et:enc=utf-8:
|
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 <[email protected]>
+ */
+
+// must be run within Dokuwiki
+if (!defined('DOKU_INC')) die();
+
+if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
+if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
+if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
+
+require_once(DOKU_PLUGIN.'action.php');
+
+class action_plugin_pagemoveng extends DokuWiki_Action_Plugin {
+
+ var $helper = null;
+ var $calls = array('pagemoveng_popup' => 'html_popup',
+ 'pagemoveng_check_dest' => 'check_dest',
+ 'pagemoveng_load_form' => 'html_form',
+ 'pagemoveng_move_page' => 'move_page');
+
+ function action_plugin_pagemoveng() {
+ if(!$this->helper) $this->helper =& plugin_load('helper', 'pagemoveng');
+ }
+
+ function getInfo() {
+ return confToHash(dirname(__FILE__).'/plugin.info.txt');
+ }
+
+ function register(&$controller) {
+ $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handle_ajax_call_unknown');
+ $controller->regiester_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'handle_parser_cache_use');
+ }
+
+ function handle_ajax_call_unknown(&$event, $param) {
+ if(!in_array($event->data, array_keys($this->calls))) return;
+ $event->preventDefault();
+ if(auth_ismanager() or auth_isadmin()) {
+ if(in_array($event->data, array_keys($this->calls))) {
+ call_user_func_array(array($this->helper, $this->calls[$event->data]), array($_REQUEST['pagemove']));
+ }
+ }
+ }
+
+ function handle_parser_cache_use(&$event, $param) {
+ // FIXME check if page is part of a move queue and fix references to moved page prior
+ // FIXME should move queue be able to get fixed using an admin plugin/cli interface?
+ }
+}
+
+// vim:ts=4:sw=4:et:enc=utf-8:
diff --git a/admin.php b/admin.php
new file mode 100644
index 0000000..c333cb0
--- /dev/null
+++ b/admin.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * DokuWiki Plugin pagemoveng (Admin Component)
+ *
+ * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
+ * @author Michael Klier <[email protected]>
+ */
+
+// must be run within Dokuwiki
+if (!defined('DOKU_INC')) die();
+
+if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
+if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
+if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
+
+require_once(DOKU_PLUGIN.'admin.php');
+
+class admin_plugin_pagemoveng extends DokuWiki_Admin_Plugin {
+
+ function getInfo() {
+ return confToHash(dirname(__FILE__).'plugin.info.txt');
+ }
+
+ function getMenuSort() { return FIXME; }
+ function forAdminOnly() { return false; }
+
+ function handle() {
+ }
+
+ function html() {
+ ptln('<h1>' . $this->getLang('menu') . '</h1>');
+ }
+}
+
+// vim:ts=4:sw=4:et:enc=utf-8:
diff --git a/helper.php b/helper.php
new file mode 100644
index 0000000..e59828e
--- /dev/null
+++ b/helper.php
@@ -0,0 +1,315 @@
+<?php
+/**
+ * DokuWiki Plugin pagemoveng (Helper Component)
+ *
+ * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
+ * @author Michael Klier <[email protected]>
+ */
+
+// must be run within Dokuwiki
+if (!defined('DOKU_INC')) die();
+
+if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
+if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
+if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
+
+class helper_plugin_pagemoveng extends DokuWiki_Plugin {
+
+ var $queue_fn = null;
+
+ function helper_plugin_pagemoveng() {
+ $this->queue_fn = metaFN('plugin_pagemoveng', '.queue');
+ }
+
+ function getInfo() {
+ return confToHash(dirname(__FILE__).'/plugin.info.txt');
+ }
+
+ function tpl_button() {
+ global $ID;
+ if(!auth_isadmin() or !auth_ismanager() or !page_exists($ID)) return;
+ $form = new Doku_Form(array('id' => 'plugin__pagemoveng_btn'));
+ $form->addElement(formSecurityToken());
+ $form->addHidden('pagemove[id]', $ID);
+ //$form->addElement('<span id="plugin__pagemoveng_id">' . $ID . '</span>');
+ $form->addElement('<div id="plugin__pagemoveng_wrapper"><div id="plugin__pagemoveng_popup"></div></div>');
+ $form->addElement(form_makeButton('button', '', $this->getLang('btn_move'), array('id' => 'plugin__pagemoveng_btn_popup')));
+ html_form('pagemoveng_btn', $form);
+ }
+
+ function tpl_actionlink() {
+ // FIXME
+ if(!auth_isadmin() or !auth_ismanager() or !page_exists($ID)) return;
+ }
+
+ function html_popup($argv) {
+ global $lang;
+ if(!auth_isadmin() or !auth_ismanager()) return;
+
+ // display page move form if we're inside the top-level namespace
+ if(getNS($argv['id']) == '') {
+ $this->html_form(array('mode' => 'page', 'id' => $argv['id']));
+ } else {
+ print $this->locale_xhtml('dialog');
+ $form = new Doku_Form(array('id' => 'plugin__pagemoveng_dialog'));
+ $form->addElement(formSecurityToken());
+ $form->addElement(form_makeButton('submit', '', $this->getLang('btn_move_page'), array('id' => 'plugin__pagemoveng_btn_move_page')));
+ $form->addElement(form_makeButton('submit', '', $this->getLang('btn_move_ns'), array('id' => 'plugin__pagemoveng_btn_move_ns')));
+ $form->addElement(form_makeButton('submit', '', $lang['btn_cancel'], array('id' => 'plugin__pagemoveng_btn_cancel')));
+ html_form('pagemoveng_popup', $form);
+ }
+ }
+
+ function html_form($argv) {
+ global $lang;
+ global $ID;
+
+ if(!auth_isadmin() or !auth_ismanager()) return;
+
+ print $this->locale_xhtml('form');
+ print '<div id="plugin__pagemoveng_dialog">' . DOKU_LF;
+
+ $form = new Doku_Form(array('id' => 'plugin__pagemoveng_form'));
+ $form->startFieldset($this->getLang('form_legend'));
+
+ $form->addHidden('pagemove[id]', $argv['id']);
+ $form->addHidden('pagemove[mode]', $argv['mode']);
+
+ $info = $this->collect_info($argv);
+ $form->addElement('<div id="plugin__pagemoveng_info">' . $this->pinfo($info) . '</div>');
+
+ foreach($info['pages'] as $page) {
+ $form->addElement(form_makeTextField('pagemove[pages][]', $page, null, null, 'hidden'));
+ }
+
+ $form->addElement(form_makeTextField('pagemove[dest]', '', $this->getLang('label_dest'), 'plugin__pagemoveng_dest'));
+
+ // FIXME ALT TEXT
+ $form->addElement(form_makeCheckboxField('pagemove[action][history]', 1,
+ $this->getLang('label_history'), 'plugin__pagemoveng_act_history', '', array('checked' => 'checked')));
+
+ $form->addElement(form_makeCheckboxField('pagemove[action][meta]', 1,
+ $this->getLang('label_meta'), 'plugin__pagemoveng_act_meta', '', array('checked' => 'checked')));
+
+ $form->addElement(form_makeCheckboxField('pagemove[action][media]', 1,
+ $this->getLang('label_media'), 'plugin__pagemoveng_act_media', '', array('checked' => 'checked')));
+
+ $form->addElement(form_makeCheckboxField('pagemove[opt][overwrite]', 1,
+ $this->getLang('label_overwrite'), 'plugin__pagemoveng_opt_overwrite'));
+
+ $form->addElement(form_makeCheckboxField('pagemove[opt][ignorelock]', 1,
+ $this->getLang('label_ignorelock'), 'plugin__pagemoveng_opt_ignorelock'));
+
+ // FIXME other options?
+
+ $form->addElement(form_makeButton('submit', 'move_page', $this->getLang('btn_move'), array('id' => 'plugin__pagemoveng_btn_move')));
+ $form->addElement(form_makeButton('submit', '', $lang['btn_cancel'], array('id' => 'plugin__pagemoveng_btn_cancel')));
+
+ $form->endFieldset();
+ $form->addElement('<div id="plugin__pagemoveng_progress"><div id="plugin__pagemoveng_progressbar"></div></div>');
+ html_form('pagemoveng_popup', $form);
+
+ print '</div>' . DOKU_LF;
+ }
+
+ function collect_info($argv) {
+ global $conf;
+ $info = array();
+
+ if($argv['mode'] == 'page') {
+ $info['backlinks'][] = ft_backlinks($argv['id']);
+ $info['meta'][] = metaFiles($argv['id']);
+ $info['pages'][] = $argv['id'];
+ } else {
+ $info['ns'] = getNS($argv['id']);
+ $info['pages'] = array();
+
+ $data = array();
+ search($data, $conf['datadir'], 'search_allpages',
+ array('skipacl' => 0), utf8_encodeFN(str_replace(':', '/', $info['ns'])));
+
+ foreach($data as $item) {
+ array_push($info['pages'], $item['id']);
+ }
+
+ // FIXME not sure if that's such a good idea ;-)
+ foreach($info['pages'] as $page) {
+ $info['meta'][] = metaFiles($page);
+ $info['backlinks'][] = ft_backlinks($page);
+ }
+ }
+
+ return $info;
+ }
+
+ function pinfo($info) {
+ // FIXME show locked pages
+ $meta = array();
+ print '<ul>' . DOKU_LF;
+ $pnum = count($info['pages']);
+ printf('<li><div class="li">' . $this->getLang('info_pages') . '</div></li>' . DOKU_LF, $pnum);
+
+ $bnum = count($info['backlinks']);
+ printf('<li><div class="li">' . $this->getLang('info_backlinks') . '</div></li>' . DOKU_LF, $bnum);
+
+ foreach($info['meta'] as $files) {
+ foreach($files as $file) {
+ list($chunk, $ext) = explode('.', $file);
+ if(!$meta[$ext]) $meta[$ext] = array();
+ array_push($meta[$ext], $file);
+ }
+ }
+ foreach($meta as $type => $files) {
+ $num = count($files);
+ printf('<li><div class="li">' . $this->getLang('info_meta') . '</div></li>' . DOKU_LF, $num, $type);
+ }
+ print '</ul>' . DOKU_LF;
+ }
+
+ function check_dest($argv) {
+ // FIXME check mode!!!
+ if(page_exists($argv['dest'])) {
+ print 'True';
+ } else {
+ print 'False';
+ }
+ }
+
+ function move_page($argv) {
+ // FIXME lock page
+ // FIXME check if page is locked
+
+ if($argv['mode'] == 'page') {
+ $argv['dest'] = cleanID($argv['dest']);
+ $argv['dest_fn'] = wikiFN($argv['dest']);
+ }
+
+ if($argv['mode'] == 'ns') {
+ $argv['dest_ns'] = cleanID($argv['dest_ns']);
+ }
+
+ // FIXME check if destination page exists and overwrite is set
+
+ // explicit page mode for further actions and collect page info
+ $argv['mode'] = 'page';
+ $info = $this->collect_info($argv);
+
+ dbg($argv);
+ dbg($info);
+ // FIXME do all the dirty work
+ return;
+
+ // process actions
+ foreach($argv['action'] as $action => $val) {
+ call_user_func_array(array($this, 'process_' . $action), array('info' => $info, 'argv' => $argv));
+ }
+
+ // FIXME reverse render works here
+ $ins = $this->prepare_instructions($argv);
+ $text = p_render('pagemoveng', $ins, $info);
+ dbglog($text);
+
+ // add referencing pages to queue
+ if(!empty($info['backlinks'])) {
+ $this->queue_add($argv, $info['backlinks']);
+ }
+
+ // FIXME revmove lock
+ }
+
+ function prepare_instructions($argv) {
+ $ins = p_cached_instructions(wikiFN($argv['id']), false, $argv['id']);
+ $num = count($ins);
+ for($i=0; $i<$num; $i++) {
+ switch($ins[$i][0]) {
+ case 'internallink':
+ resolve_pageid(getNS($argv['id']), &$ins[$i][1][0], $exists);
+ // FIXME I can't remember why I put this here - but there's a reason for it
+ if(!strpos($ins[$i][1][0], ':')) {
+ $ins[$i][1][0] = ':' . $ins[$i][1][0];
+ }
+ break;
+ case 'internalmedia':
+ // FIXME - check if media is moved!!!
+ break;
+ case 'plugin':
+ // FIXME allow plugins to do stuff there or do we use the renderer?
+ // probably better to use the renderer
+ break;
+ default:
+ break;
+ }
+ }
+
+ }
+
+ function process_history($info, $argv) {
+ msg('process_history');
+ if(!$argv['action']['history']) return;
+ $changes_fn = metaFN($argv['id'], '.changes');
+ $changes_dest_fn = metaFN($argv['dest'], '.changes');
+ $changes = io_readFile($changes_fn);
+ $changes = preg_replace('/(\s+)(' . $argv['id'] . ')(\s+)/', '\1' . $argv['dest'] . '\3', $changes);
+
+ // FIXME uncomment
+ // rename($changes_fn, $changes_dest_fn);
+ }
+
+ function process_meta($info, $argv) {
+ msg('process_meta');
+ if(!$argv['action']['meta']) return;
+ foreach($info['meta'] as $meta_fn) {
+ if(!strpos($meta_fn, '.changes') && !strpos($meta_fn, '.indexed')) {
+ // FIXME issue event for plugins to handle/update their meta files else move it
+ list($chunk, $ext) = explode('.', $meta_fn);
+ $data['meta_fn'] = $meta_fn;
+ $data['dest_fn'] = metaFN($argv['dest'], '.' . $ext);
+
+ // FIXME uncomment and debug
+ //rename($data['meta_fn'], $data['dest_fn']);
+ }
+ }
+ }
+
+ function process_media($info, $argv) {
+ msg('process_media');
+ if(!$argv['action']['media']) return;
+ // FIXME move media to new namespace relative to the new page if requested
+ }
+
+ function queue_read() {
+ if(file_exists($this->queue_fn)) {
+ return unserialize(io_readFile($this->queue_fn));
+ } else {
+ return array();
+ }
+ }
+
+ function queue_write($queue) {
+ // FIXME do we add a .pagemove file too for easier queue processing?
+ // FIXME uncomment
+ //io_saveFile($this->queue_fn, serialize($queue));
+ }
+
+ function queue_add($argv, array $pages) {
+ $num = count($pages);
+
+ $queue = $this->queue_read();
+ foreach($pages as $page) {
+ array_push($queue, array('id' => $page, 'timestamp' => time(), 'argv' => $argv));
+ }
+ // FIXME removeme
+ //dbg($queue);
+ $this->queue_write($queue);
+
+ msg(sprintf($this->getLang('msg_queue_add'), $num));
+ }
+
+ function queue_del($id) {
+ $this->queue_read();
+ // FIXME remove id from queue
+ $this->queue_write();
+ }
+}
+
+// vim:ts=4:sw=4:et:enc=utf-8:
diff --git a/lang/en/dialog.txt b/lang/en/dialog.txt
new file mode 100644
index 0000000..28a29f6
--- /dev/null
+++ b/lang/en/dialog.txt
@@ -0,0 +1,2 @@
+====== Plugin Pagemove ======
+Please select if you want to move the current page or the whole namespace.
diff --git a/lang/en/form.txt b/lang/en/form.txt
new file mode 100644
index 0000000..ce506b5
--- /dev/null
+++ b/lang/en/form.txt
@@ -0,0 +1,4 @@
+====== Plugin Pagemove ======
+Please read the information below carefully. Pages which are currently locked
+will not be moved (you can move them later or force them to be moved). Leave
+this window open until the process is finished!
diff --git a/lang/en/lang.php b/lang/en/lang.php
new file mode 100644
index 0000000..a7df866
--- /dev/null
+++ b/lang/en/lang.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * English language file for pagemoveng plugin
+ *
+ * @author Michael Klier <[email protected]>
+ */
+
+// menu entry for admin plugins
+// $lang['menu'] = 'Your menu entry';
+
+$lang['btn_move'] = 'Move';
+$lang['btn_move_page'] = 'Move Page';
+$lang['btn_move_ns'] = 'Move Namespace';
+
+$lang['form_legend'] = 'Options';
+
+$lang['label_dest'] = 'destination';
+$lang['label_history'] = 'move history';
+$lang['label_meta'] = 'move meta files';
+$lang['label_media'] = 'move attached media files';
+$lang['label_overwrite'] = 'overwrite existing pages';
+$lang['label_ignorelock'] = 'ignore page locks';
+
+$lang['msg_queue_add'] = 'added %s page(s) to the pagemove queue';
+
+$lang['info_meta'] = 'found %s meta file(s) of type <code>.%s</code>';
+$lang['info_pages'] = 'moving %s page(s)';
+$lang['info_backlinks'] = 'found %s references to moved pages';
+
+// vim:ts=4:sw=4:et:enc=utf-8
diff --git a/plugin.info.txt b/plugin.info.txt
new file mode 100644
index 0000000..2836017
--- /dev/null
+++ b/plugin.info.txt
@@ -0,0 +1,7 @@
+base pagemoveng
+author Michael Klier
+email [email protected]
+date ????-??-??
+name pagemoveng plugin
+desc Allows to move pages/namesapces
+url http://dokuwiki.org/plugin:pagemoveng
diff --git a/renderer.php b/renderer.php
new file mode 100644
index 0000000..c785d30
--- /dev/null
+++ b/renderer.php
@@ -0,0 +1,583 @@
+<?php
+/**
+ * Renderer for WikiText output
+ *
+ * @author Adrian Lang <[email protected]>
+ */
+
+require_once DOKU_INC . 'inc/parser/renderer.php';
+
+
+if(!function_exists('table_to_wikitext')) {
+ function table_to_wikitext($_table){
+ // Preprocess table for rowspan, make table 0-based.
+ $table = array();
+ $start = array_pop(array_keys($_table));
+ foreach($_table as $i => $row) {
+ $inorm = $i - $start;
+ if (!isset($table[$inorm])) $table[$inorm] = array();
+ foreach ($row as $cell) {
+ $nextkey = 0;
+ while (isset($table[$inorm][$nextkey])) {$nextkey++;}
+ $nextkey += $cell['colspan'] - 1;
+ $table[$inorm][$nextkey] = $cell;
+ $rowspan = $cell['rowspan'];
+ $i2 = $inorm + 1;
+ while ($rowspan-- > 1) {
+ if (!isset($table[$i2])) $table[$i2] = array();
+ $nu_cell = $cell;
+ $nu_cell['text'] = ':::';
+ $nu_cell['rowspan'] = 1;
+ $table[$i2++][$nextkey] = $nu_cell;
+ }
+ }
+ ksort($table[$inorm]);
+ }
+
+ // Get the max width for every column to do table prettyprinting.
+ $m_width = array();
+ foreach($table as $row) {
+ foreach($row as $n => $cell) {
+ // Calculate cell width.
+ $diff = (utf8_strlen($cell['text']) + $cell['colspan'] +
+ ($cell['align'] === 'center' ? 4 : 3));
+
+ // Calculate current max width.
+ $span = $cell['colspan'];
+ while (--$span >= 0) {
+ if (isset($m_width[$n - $span])) {
+ $diff -= $m_width[$n - $span];
+ }
+ }
+
+ if ($diff > 0) {
+ // Just add the difference to all cols.
+ while(++$span < $cell['colspan']) {
+ $m_width[$n - $span] = (isset($m_width[$n - $span]) ? $m_width[$n - $span] : 0) + ceil($diff / $cell['colspan']);
+ }
+ }
+ }
+ }
+
+ // Write the table.
+ $types = array('th' => '^', 'td' => '|');
+ $str = '';
+ foreach ($table as $row) {
+ $pos = 0;
+ foreach ($row as $n => $cell) {
+ $pos += utf8_strlen($cell['text']) + 1;
+ $span = $cell['colspan'];
+ $target = 0;
+ while (--$span >= 0) {
+ if (isset($m_width[$n - $span])) {
+ $target += $m_width[$n - $span];
+ }
+ }
+ $pad = $target - utf8_strlen($cell['text']);
+ $pos += $pad + ($cell['colspan']- 1);
+ switch ($cell['align']) {
+ case 'right':
+ $lpad = $pad - 1;
+ break;
+ case 'left': case '':
+ $lpad = 1;
+ break;
+ case 'center':
+ $lpad = floor($pad / 2);
+ break;
+ }
+ $str .= $types[$cell['tag']] . str_repeat(' ', $lpad) .
+ $cell['text'] . str_repeat(' ', $pad - $lpad) .
+ str_repeat($types[$cell['tag']], $cell['colspan'] - 1);
+ }
+ $str .= $types[$cell['tag']] . DOKU_LF;
+ }
+ return $str;
+ }
+}
+
+/**
+ * The Renderer
+ */
+class renderer_plugin_pagemoveng extends Doku_Renderer {
+
+ // @access public
+ var $doc = ''; // will contain the whole document
+
+ function getFormat(){
+ return 'pagemoveng';
+ }
+
+ function document_start() {
+ //reset some internals
+ }
+
+ function document_end() {
+ $this->doc = rtrim($this->doc, DOKU_LF);
+ }
+
+ function header($text, $level, $pos) {
+ if(!$text) return; //skip empty headlines
+
+ // write the header
+ $markup = str_repeat('=', 7 - $level);
+ $this->doc .= "$markup $text $markup" . DOKU_LF;
+ }
+
+ function section_open($level) {
+ $this->doc .= DOKU_LF;
+ }
+
+ function section_close() {
+ $this->doc .= DOKU_LF;
+ }
+
+ function cdata($text) {
+ $this->doc .= $text;
+ }
+
+ function p_close() {
+ $this->doc = rtrim($this->doc, DOKU_LF) . DOKU_LF . DOKU_LF;
+ }
+
+ function linebreak() {
+ $this->doc .= ' \\\\'.DOKU_LF;
+ }
+
+ function hr() {
+ $this->doc .= '----'.DOKU_LF;
+ }
+
+ function strong_open() {
+ $this->doc .= '**';
+ }
+
+ function strong_close() {
+ $this->doc .= '**';
+ }
+
+ function emphasis_open() {
+ $this->doc .= '//';
+ }
+
+ function emphasis_close() {
+ $this->doc .= '//';
+ }
+
+ function underline_open() {
+ $this->doc .= '__';
+ }
+
+ function underline_close() {
+ $this->doc .= '__';
+ }
+
+ function monospace_open() {
+ $this->doc .= "''";
+ }
+
+ function monospace_close() {
+ $this->doc .= "''";
+ }
+
+ function subscript_open() {
+ $this->doc .= '<sub>';
+ }
+
+ function subscript_close() {
+ $this->doc .= '</sub>';
+ }
+
+ function superscript_open() {
+ $this->doc .= '<sup>';
+ }
+
+ function superscript_close() {
+ $this->doc .= '</sup>';
+ }
+
+ function deleted_open() {
+ $this->doc .= '<del>';
+ }
+
+ function deleted_close() {
+ $this->doc .= '</del>';
+ }
+
+ function footnote_open() {
+ $this->doc .= '((';
+ }
+
+ function footnote_close() {
+ $this->doc .= '))';
+ }
+
+ function listu_open() {
+ if (!isset($this->_liststack)) {
+ $this->_liststack = array();
+ }
+ if (count($this->_liststack) === 0) {
+ $this->doc .= DOKU_LF;
+ }
+ $this->_liststack[] = '*';
+ }
+
+ function listu_close() {
+ array_pop($this->_liststack);
+ if (count($this->_liststack) === 0) {
+ $this->doc .= DOKU_LF;
+ }
+ }
+
+ function listo_open() {
+ if (!isset($this->_liststack)) {
+ $this->_liststack = array();
+ }
+ if (count($this->_liststack) === 0) {
+ $this->doc .= DOKU_LF;
+ }
+ $this->_liststack[] = '-';
+ }
+
+ function listo_close() {
+ array_pop($this->_liststack);
+ if (count($this->_liststack) === 0) {
+ $this->doc .= DOKU_LF;
+ }
+ }
+
+ function listitem_open($level) {
+ $this->doc .= str_repeat(' ', $level * 2) . end($this->_liststack);
+ }
+
+ function listcontent_close() {
+ $this->doc .= DOKU_LF;
+ }
+
+ function unformatted($text) {
+ if (strpos($text, '%%') !== false) {
+ $this->doc .= "<nowiki>$text</nowiki";
+ } else {
+ $this->doc .= "%%$text%%";
+ }
+ }
+
+ function php($text, $wrapper='code') {
+ $this->doc .= "<php>$text</php>";
+ }
+
+ function phpblock($text) {
+ $this->doc .= "<PHP>$text</PHP>" . DOKU_LF;
+ }
+
+ function html($text, $wrapper='code') {
+ $this->doc .= "<html>$text</html>" . DOKU_LF;
+ }
+
+ function htmlblock($text) {
+ $this->doc .= "<HTML>$text</HTML>". DOKU_LF;
+ }
+
+ function quote_open() {
+ $this->doc .= '>';
+ }
+
+ function quote_close() {
+ $strpos = strrpos($this->doc, DOKU_LF);
+ if ($strpos === strlen($this->doc)) {
+ return;
+ }
+ $lastline = substr($this->doc, $strpos);
+ $this->doc = substr_replace($this->doc, preg_replace('/(>+)(.+)/', '\1 \2', $lastline), $strpos) . DOKU_LF;
+ }
+
+ function preformatted($text) {
+ $this->doc .= preg_replace('/^/m', ' ', $text) . DOKU_LF;
+ }
+
+ function file($text, $language=null, $filename=null) {
+ $this->_highlight('file',$text,$language,$filename);
+ }
+
+ function code($text, $language=null, $filename=null) {
+ $this->_highlight('code',$text,$language,$filename);
+ }
+
+ function _highlight($type, $text, $language=null, $filename=null) {
+ $this->doc .= "<$type";
+ if ($language != null) {
+ $this->doc .= " $language";
+ }
+ if ($filename != null) {
+ $this->doc .= " $filename";
+ }
+ $this->doc .= ">$text</$type>" . DOKU_LF;
+ }
+
+ function acronym($acronym) {
+ $this->doc .= $acronym;
+ }
+
+ function smiley($smiley) {
+ $this->doc .= $smiley;
+ }
+
+ function entity($entity) {
+ $this->doc .= $entity;
+ }
+
+ function multiplyentity($x, $y) {
+ $this->doc .= "{$x}x{$y}";
+ }
+
+ function singlequoteopening() {
+ $this->doc .= "'";
+ }
+
+ function singlequoteclosing() {
+ $this->doc .= "'";
+ }
+
+ function apostrophe() {
+ $this->doc .= "'";
+ }
+
+ function doublequoteopening() {
+ $this->doc .= '"';
+ }
+
+ function doublequoteclosing() {
+ $this->doc .= '"';
+ }
+
+ /**
+ */
+ function camelcaselink($link) {
+ $this->doc .= $link;
+ }
+
+
+ function locallink($hash, $name = NULL){
+ $this->doc .= "[[#$hash";
+ if ($name !== null) {
+ $this->doc .= '|';
+ $this->_echoLinkTitle($name);
+ }
+ $this->doc .= ']]';
+ }
+
+ function internallink($id, $name = NULL, $search=NULL,$returnonly=false,$linktype='content') {
+ $this->doc .= "[[$id";
+ if ($name !== null) {
+ $this->doc .= '|';
+ $this->_echoLinkTitle($name);
+ }
+ $this->doc .= ']]';
+ }
+
+ function externallink($url, $name = NULL) {
+ if ($name !== null && !in_array($url, array($name, 'http://' . $name))) {
+ $this->doc .= "[[$url|";
+ $this->_echoLinkTitle($name);
+ $this->doc .= ']]';
+ } else {
+ if ($url === "http://$name") {
+ $url = $name;
+ }
+ $this->doc .= $url;
+ }
+ }
+
+ /**
+ */
+ function interwikilink($match, $name = NULL, $wikiName, $wikiUri) {
+ $this->doc .= "[[$wikiName>$wikiUri";
+ if ($name !== null) {
+ $this->doc .= '|';
+ $this->_echoLinkTitle($name);
+ }
+ $this->doc .= ']]';
+ }
+
+ /**
+ */
+ function windowssharelink($url, $name = NULL) {
+ $this->doc .= "[[$url";
+ if ($name !== null) {
+ $this->doc .= '|';
+ $this->_echoLinkTitle($name);
+ }
+ $this->doc .= "]]";
+ }
+
+ function emaillink($address, $name = NULL) {
+ if ($name === null) {
+ $this->doc .= "<$address>";
+ } else {
+ $this->doc .= "[[$adress|";
+ $this->_echoLinkTitle($name);
+ $this->doc .= ']]';
+ }
+ }
+
+ function internalmedia ($src, $title=NULL, $align=NULL, $width=NULL,
+ $height=NULL, $cache=NULL, $linking=NULL) {
+ $this->doc .= '{{';
+ if ($align === 'center' || $align === 'right') {
+ $this->doc .= ' ';
+ }
+ $this->doc .= $src;
+
+ $params = array();
+ if ($width !== null) {
+ $params[0] = $width;
+ if ($height !== null) {
+ $params[0] .= "x$height";
+ }
+ }
+ if ($cache !== 'cache') {
+ $params[] = $cache;
+ }
+ if ($linking !== 'details') {
+ $params[] = $linking;
+ }
+ if (count($params) > 0) {
+ $this->doc .= '?';
+ }
+ $this->doc .= join('&', $params);
+
+ if ($align === 'center' || $align === 'left') {
+ $this->doc .= ' ';
+ }
+ if ($title != null) {
+ $this->doc .= "|$title";
+ }
+ $this->doc .= '}}';
+ }
+
+ function externalmedia ($src, $title=NULL, $align=NULL, $width=NULL,
+ $height=NULL, $cache=NULL, $linking=NULL) {
+ $this->internalmedia($src, $title, $align, $width, $height, $cache, $linking);
+ }
+
+ /**
+ * Renders an RSS feed
+ *
+ * @author Andreas Gohr <[email protected]>
+ */
+ function rss ($url,$params){
+ $this->doc .= '{{' . $url;
+ $vals = array();
+ if ($params['max'] !== 8) {
+ $vals[] = $params['max'];
+ }
+ if ($params['reverse']) {
+ $vals[] = 'reverse';
+ }
+ if ($params['author']) {
+ $vals[] = 'author';
+ }
+ if ($params['date']) {
+ $vals[] = 'date';
+ }
+ if ($params['details']) {
+ $vals[] = 'desc';
+ }
+ if ($params['refresh'] !== 14400) {
+ $val = '10m';
+ foreach(array('d' => 86400, 'h' => 3600, 'm' => 60) as $p => $div) {
+ $res = $params['refresh'] / $div;
+ if ($res === intval($res)) {
+ $val = "$res$p";
+ break;
+ }
+ }
+ $vals[] = $val;
+ }
+ if (count($vals) > 0) {
+ $this->doc .= ' ' . join(' ', $vals);
+ }
+ $this->doc .= '}}';
+ }
+
+ function table_open() {
+ $this->_table = array();
+ $this->_row = 0;
+ $this->_rowspans = array();
+ }
+
+ // FIXME what is $end used for?
+ function table_close($begin, $end=false) {
+ $this->doc .= table_to_wikitext($this->_table);
+ }
+
+ function tablerow_open() {
+ $this->_table[++$this->_row] = array();
+ $this->_key = 1;
+ while (isset($this->_rowspans[$this->_key])) {
+ --$this->_rowspans[$this->_key];
+ if ($this->_rowspans[$this->_key] === 1) {
+ unset($this->_rowspans[$this->_key]);
+ }
+ ++$this->_key;
+ }
+ }
+
+ function tablerow_close(){
+ }
+
+ function tableheader_open($colspan = 1, $align = NULL, $rowspan = 1){
+ $this->_cellopen('th', $colspan, $align, $rowspan);
+ }
+
+ function _cellopen($tag, $colspan, $align, $rowspan) {
+ $this->_table[$this->_row][$this->_key] = compact('tag', 'colspan', 'align', 'rowspan');
+ if ($rowspan > 1) {
+ $this->_rowspans[$this->_key] = $rowspan;
+ $this->_ownspan = true;
+ }
+ $this->_pos = strlen($this->doc);
+ }
+
+ function tableheader_close(){
+ $this->_cellclose();
+ }
+
+ function _cellclose() {
+ $this->_table[$this->_row][$this->_key]['text'] = trim(substr($this->doc, $this->_pos));
+ $this->doc = substr($this->doc, 0, $this->_pos);
+ $this->_key += $this->_table[$this->_row][$this->_key]['colspan'];
+ while (isset($this->_rowspans[$this->_key]) && !$this->_ownspan) {
+ --$this->_rowspans[$this->_key];
+ if ($this->_rowspans[$this->_key] === 1) {
+ unset($this->_rowspans[$this->_key]);
+ }
+ ++$this->_key;
+ }
+ $this->_ownspan = false;
+ }
+
+ function tablecell_open($colspan = 1, $align = NULL, $rowspan = 1){
+ $this->_cellopen('td', $colspan, $align, $rowspan);
+ }
+
+ function tablecell_close(){
+ $this->_cellclose();
+ }
+
+ function plugin($plugin, $args, $state, $match) {
+ $this->doc .= $match;
+ }
+
+ function _echoLinkTitle($title) {
+ if (is_array($title)) {
+ extract($title);
+ $this->internalmedia($src, $title, $align, $width, $height, $cache,
+ $linking);
+ } else {
+ $this->doc .= $title;
+ }
+ }
+}
+
+//Setup VIM: ex: et ts=4 enc=utf-8 :
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..591b668
--- /dev/null
+++ b/script.js
@@ -0,0 +1,209 @@
+/**
+ * Javascript for DokuWiki Plugin pagemoveng
+ *
+ * @author Michael Klier <[email protected]>
+ */
+
+var pagemoveng = {
+ btn_popup: null,
+ btn_cancel: null,
+ btn_move: null,
+ dest: null,
+ mode: null,
+ popup: null,
+ sack: null,
+ id: null,
+ pages: null,
+ progress: null,
+ progressbar: null,
+ argv: new Array(),
+
+ init: function() {
+ pagemoveng.sack = new sack(DOKU_BASE + 'lib/exe/ajax.php');
+ pagemoveng.sack.AjaxFailedAlert = '';
+ pagemoveng.sack.encodeURIString = false;
+
+ pagemoveng.popup = $('plugin__pagemoveng_popup');
+
+ pagemoveng.attach_btn_popup();
+ },
+
+ attach_btn_popup: function() {
+ pagemoveng.btn_popup = $('plugin__pagemoveng_btn_popup');
+ if(!pagemoveng.btn_popup) return;
+ addEvent(pagemoveng.btn_popup, 'click', pagemoveng.open_popup);
+ },
+
+ attach_btn_cancel: function() {
+ pagemoveng.btn_cancel = $('plugin__pagemoveng_btn_cancel');
+ if(!pagemoveng.btn_cancel) return;
+ addEvent(pagemoveng.btn_cancel, 'click', pagemoveng.close_popup);
+ },
+
+ attach_btn_move: function() {
+ pagemoveng.btn_move = $('plugin__pagemoveng_btn_move');
+ if(!pagemoveng.btn_move) return;
+ addEvent(pagemoveng.btn_move, 'click', pagemoveng.validate);
+ },
+
+ attach_btn_move_page: function() {
+ pagemoveng.btn_move_page = $('plugin__pagemoveng_btn_move_page');
+ if(!pagemoveng.btn_move_page) return;
+ addEvent(pagemoveng.btn_move_page, 'click', function(e) {
+ e.preventDefault();
+ e.stopPropagation();
+ pagemoveng.mode = 'page';
+ pagemoveng.load_form();
+ return false;
+ });
+ },
+
+ attach_btn_move_ns: function() {
+ pagemoveng.btn_move_ns = $('plugin__pagemoveng_btn_move_ns');
+ if(!pagemoveng.btn_move_ns) return;
+ addEvent(pagemoveng.btn_move_ns, 'click', function(e) {
+ e.preventDefault();
+ e.stopPropagation();
+ pagemoveng.mode = 'ns';
+ pagemoveng.load_form();
+ return false;
+ });
+ },
+
+ load_form: function() {
+ pagemoveng.sack.setVar('call', 'pagemoveng_load_form');
+ pagemoveng.sack.setVar('pagemove[id]', pagemoveng.id);
+ pagemoveng.sack.setVar('pagemove[mode]', pagemoveng.mode);
+
+ pagemoveng.popup.innerHTML = '<img src="'+DOKU_BASE+'lib/images/loading.gif" alt="..." class="load" />';
+
+ pagemoveng.sack.onCompletion = function(){
+ var data = this.response;
+ if(data === ''){ return; }
+ pagemoveng.popup.innerHTML = data;
+ pagemoveng.attach_btn_cancel();
+ pagemoveng.attach_btn_move();
+ pagemoveng.progress = $('plugin__pagemoveng_progress');
+ pagemoveng.progressbar = $('plugin__pagemoveng_progressbar');
+ };
+
+ pagemoveng.sack.runAJAX();
+ },
+
+ open_popup: function(e) {
+ e.stopPropagation();
+ e.preventDefault();
+
+ pagemoveng.sack.setVar('call', 'pagemoveng_popup');
+ pagemoveng.prepare_ajax('plugin__pagemoveng_btn');
+
+ pagemoveng.sack.onCompletion = function(){
+ var data = this.response;
+ if(data === ''){ return; }
+ pagemoveng.popup.style.visibility = 'hidden';
+ pagemoveng.popup.innerHTML = data;
+ pagemoveng.popup.style.visibility = 'visible';
+ pagemoveng.attach_btn_cancel();
+ pagemoveng.attach_btn_move_page();
+ pagemoveng.attach_btn_move_ns();
+ // we dunno if we got straight to the move form
+ pagemoveng.attach_btn_move();
+ };
+
+ pagemoveng.sack.runAJAX();
+ return false;
+ },
+
+ close_popup: function(e) {
+ e.stopPropagation();
+ e.preventDefault();
+ pagemoveng.popup.style.visibility = 'hidden';
+ pagemoveng.popup.innerHTML = '';
+ return false;
+ },
+
+ validate: function(e) {
+ pagemoveng.dest = $('plugin__pagemoveng_dest');
+ e.stopPropagation();
+ e.preventDefault();
+ if(pagemoveng.dest.value == '') {
+ pagemoveng.dest.focus();
+ alert('validateme');
+ return false;
+ } else {
+ pagemoveng.check_dest(pagemoveng.dest.value);
+ return false;
+ }
+ },
+
+ check_dest: function(id) {
+ pagemoveng.sack.setVar('call', 'pagemoveng_check_dest');
+ pagemoveng.prepare_ajax('plugin__pagemoveng_dialog');
+ pagemoveng.sack.onCompletion = function(){
+ if(this.response == 'False') {
+ pagemoveng.progressbar.innerHTML = '<img src="'+DOKU_BASE+'lib/images/loading.gif" alt="..." class="load" />';
+ pagemoveng.move();
+ } else {
+ // FIXME
+ alert('page exists - if youre sure check overwrite');
+ pagemoveng.dest.focus();
+ }
+ return false;
+ };
+ pagemoveng.sack.runAJAX();
+ },
+
+ move: function() {
+ pagemoveng.sack.setVar('call', 'pagemoveng_move_page');
+ pagemoveng.page = pagemoveng.pages.shift();
+
+ if(pagemoveng.page) {
+ pagemoveng.sack.onCompletion = pagemoveng.update_progress;
+ pagemoveng.sack.setVar('pagemove[page]', pagemoveng.page);
+ pagemoveng.sack.setVar('pagemove[id]', pagemoveng.id);
+ pagemoveng.sack.setVar('pagemove[mode]', pagemoveng.mode);
+ for(var i = 0; i<pagemoveng.argv.length; i++) {
+ pagemoveng.sack.setVar(pagemoveng.argv[i], 1);
+ }
+ pagemoveng.sack.runAJAX();
+ } else {
+ alert('done');
+ pagemoveng.progressbar.innerHTML = '';
+ pagemoveng.progressbar.style.display = 'none';
+ // FIXME redirect????
+ }
+ },
+
+ update_progress: function() {
+ // FIXME use correct response states
+ var response = this.response;
+ pagemoveng.progress.innerHTML += response + '<br />';
+ window.setTimeout("pagemoveng.move()", 1000);
+ },
+
+ prepare_ajax: function(div) {
+ var form = $(div);
+ var inputs = form.getElementsByTagName('input');
+ pagemoveng.pages = new Array();
+
+ for(var i=0; i<inputs.length; i++) {
+ if(inputs[i].type == 'submit') continue;
+ if(inputs[i].name == 'pagemove[pages][]') {
+ pagemoveng.pages.unshift(inputs[i].value);
+ continue;
+ }
+ if(inputs[i].type == 'checkbox' && inputs[i].checked) {
+ pagemoveng.argv.unshift(inputs[i].name);
+ }
+ if(inputs[i].name == 'pagemove[mode]') pagemoveng.mode = inputs[i].value;
+ if(inputs[i].name == 'pagemove[id]') pagemoveng.id = inputs[i].value;
+ pagemoveng.sack.setVar(inputs[i].name, inputs[i].value);
+ }
+ },
+};
+
+addInitEvent(function() {
+ pagemoveng.init()
+});
+
+// vim:ts=4:sw=4:et:enc=utf-8
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..9d52e85
--- /dev/null
+++ b/style.css
@@ -0,0 +1,41 @@
+/**
+ * CSS for DokuWiki Plugin pagemoveng
+ *
+ * @author Michael Klier <[email protected]>
+ */
+
+div.dokuwiki div#plugin__pagemoveng_wrapper {
+ width: 100%;
+ position: absolute;
+ top: 0px;
+ visibility: hidden;
+}
+div.dokuwiki div#plugin__pagemoveng_wrapper div#plugin__pagemoveng_popup {
+ visibility: hidden;
+ background: __background__;
+ border: 1px solid __border__;
+ padding: 0.8125em;
+ width: 500px;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+div.dokuwiki div#plugin__pagemoveng_popup label {
+ display: block;
+}
+
+div.dokuwiki div#plugin__pagemoveng_popup fieldset {
+ text-align: left;
+}
+
+div.dokuwiki div#plugin__pagemoveng_popup .hidden {
+ display: none;
+}
+
+div.dokuwiki div#plugin__pagemoveng_progress {
+ margin-top: 1em;
+}
+
+div.dokuwiki div#plugin__pagemoveng_progressbar {
+ margin-bottom: 1em;
+}
|
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 the World of Warcraft Terms of Service. It is for educational purposes only.
+Use at your own risk. I am not responsible for any banned accounts.
+
+By using this program you release all liability of myself for any damage done to your computer, network, or Blizzard accounts.
\ No newline at end of file
diff --git a/License.txt b/License.txt
new file mode 100644
index 0000000..94a9ed0
--- /dev/null
+++ b/License.txt
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ <program> Copyright (C) <year> <name of author>
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..6aa5c6c
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,31 @@
+Home page: http://programiscellaneous.com/programming-projects/world-of-warcraft/wow-object-manager/what-is-it/
+
+Source available at http://github.com/johnmoore/WoW-Object-Manager
+
+=====
+
+WoW Object Manager
+Copyright (C) 2010 John Moore
+
+Thanks to jbrauman of MMOwned.com for basis of code
+MemoryReader.dll is not an original work of John Moore
+
+This program is not associated with or endorsed by Blizzard Entertainment in any way.
+World of Warcraft is copyright of Blizzard Entertainment.
+
+
+http://programiscellaneous.com/programming-projects/world-of-warcraft/wow-object-manager/what-is-it/
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see http://www.gnu.org/licenses/
+
diff --git a/WoWObjMgr.sln b/WoWObjMgr.sln
new file mode 100644
index 0000000..10c9f8d
--- /dev/null
+++ b/WoWObjMgr.sln
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual C# Express 2008
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WoWObjMgr", "WoWObjMgr\WoWObjMgr.csproj", "{F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/WoWObjMgr.suo b/WoWObjMgr.suo
new file mode 100644
index 0000000..11dc8ee
Binary files /dev/null and b/WoWObjMgr.suo differ
diff --git a/WoWObjMgr/PlayerScan.cs b/WoWObjMgr/PlayerScan.cs
new file mode 100644
index 0000000..bd897df
--- /dev/null
+++ b/WoWObjMgr/PlayerScan.cs
@@ -0,0 +1,321 @@
+// WoW Object Manager
+// Copyright (C) 2010 John Moore
+//
+// Thanks to jbrauman of MMOwned.com for basis of code
+// MemoryReader.dll is not an original work of John Moore
+//
+// This program is not associated with or endorsed by Blizzard Entertainment in any way.
+// World of Warcraft is copyright of Blizzard Entertainment.
+//
+//
+// http://programiscellaneous.com/programming-projects/world-of-warcraft/wow-object-manager/what-is-it/
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see http://www.gnu.org/licenses/
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Collections;
+
+namespace WoWObjMgr
+{
+ public class PlayerScan
+ {
+ uint ClientConnection = 0;
+ uint ObjectManager = 0;
+ uint FirstObject = 0;
+
+ //Offsets for 3.3.5 build 12340
+ //Thanks to MMOwned.com users
+
+ public enum ClientOffsets : uint
+ {
+ StaticClientConnection = 0x00C79CE0,
+ ObjectManagerOffset = 0x2ED0,
+ FirstObjectOffset = 0xAC,
+ LocalGuidOffset = 0xC0,
+ NextObjectOffset = 0x3C,
+ LocalPlayerGUID = 0xBD07A8,
+ LocalTargetGUID = 0x00BD07B0,
+ }
+
+ public enum NameOffsets : ulong
+ {
+ nameStore = 0x00C5D938 + 0x8,
+ nameMask = 0x24,
+ nameBase = 0x1C,
+ nameString = 0x20
+ }
+
+ enum ObjectOffsets : uint
+ {
+ Type = 0x14,
+ Pos_X = 0x79C,
+ Pos_Y = 0x798,
+ Pos_Z = 0x7A0,
+ Rot = 0x7A8,
+ Guid = 0x30,
+ UnitFields = 0x8
+ }
+
+ enum UnitOffsets : uint
+ {
+ Level = 0x36 * 4,
+ Health = 0x18 * 4,
+ Energy = 0x19 * 4,
+ MaxHealth = 0x20 * 4,
+ SummonedBy = 0xE * 4,
+ MaxEnergy = 0x21 * 4
+ }
+
+ WowObject LocalPlayer = new WowObject();
+ WowObject LocalTarget = new WowObject();
+ WowObject CurrentObject = new WowObject();
+ WowObject TempObject = new WowObject();
+
+ MemoryReader.Memory WowReader = new MemoryReader.Memory();
+
+ ArrayList CurrentPlayers = new ArrayList();
+
+ public PlayerScan()
+ {
+ if (LoadAddresses() != true)
+ {
+ throw new InvalidOperationException("WoW could not be read.");
+ }
+ }
+
+ public void Ping()
+ {
+ CurrentPlayers.Clear();
+
+ CurrentObject.BaseAddress = FirstObject;
+
+ LocalPlayer.BaseAddress = GetObjectBaseByGuid(LocalPlayer.Guid);
+ LocalPlayer.XPos = WowReader.ReadFloat((IntPtr)(LocalPlayer.BaseAddress + ObjectOffsets.Pos_X));
+ LocalPlayer.YPos = WowReader.ReadFloat((IntPtr)(LocalPlayer.BaseAddress + ObjectOffsets.Pos_Y));
+ LocalPlayer.ZPos = WowReader.ReadFloat((IntPtr)(LocalPlayer.BaseAddress + ObjectOffsets.Pos_Z));
+ LocalPlayer.Rotation = WowReader.ReadFloat((IntPtr)(LocalPlayer.BaseAddress + ObjectOffsets.Rot));
+ LocalPlayer.UnitFieldsAddress = WowReader.ReadUInt32((IntPtr)(LocalPlayer.BaseAddress + ObjectOffsets.UnitFields));
+ LocalPlayer.CurrentHealth = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.Health));
+ LocalPlayer.CurrentEnergy = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.Energy));
+ LocalPlayer.MaxHealth = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.MaxHealth));
+ LocalPlayer.Level = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.Level));
+ LocalPlayer.MaxEnergy = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.MaxEnergy));
+ LocalPlayer.Name = PlayerNameFromGuid(LocalPlayer.Guid);
+ if (LocalPlayer.CurrentHealth <= 0) { LocalPlayer.isDead = true; }
+
+ LocalTarget.Guid = WowReader.ReadUInt64((IntPtr)(ClientOffsets.LocalTargetGUID));
+
+ if (LocalTarget.Guid != 0)
+ {
+ LocalTarget.BaseAddress = GetObjectBaseByGuid(LocalTarget.Guid);
+ LocalTarget.XPos = WowReader.ReadFloat((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.Pos_X));
+ LocalTarget.YPos = WowReader.ReadFloat((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.Pos_Y));
+ LocalTarget.ZPos = WowReader.ReadFloat((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.Pos_Z));
+ LocalTarget.Type = (short)WowReader.ReadUInt32((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.Type));
+ LocalTarget.Rotation = WowReader.ReadFloat((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.Rot));
+ LocalTarget.UnitFieldsAddress = WowReader.ReadUInt32((IntPtr)(LocalTarget.BaseAddress + ObjectOffsets.UnitFields));
+ LocalTarget.CurrentHealth = WowReader.ReadUInt32((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.Health));
+ LocalTarget.CurrentEnergy = WowReader.ReadUInt32((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.Energy));
+ LocalTarget.MaxHealth = WowReader.ReadUInt32((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.MaxHealth));
+ LocalTarget.Level = WowReader.ReadUInt32((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.Level));
+ LocalTarget.SummonedBy = WowReader.ReadUInt64((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.SummonedBy));
+ LocalTarget.MaxEnergy = WowReader.ReadUInt32((IntPtr)(LocalTarget.UnitFieldsAddress + UnitOffsets.MaxEnergy));
+
+ if (LocalTarget.Type == 3) // not a human player
+ LocalTarget.Name = MobNameFromGuid(LocalTarget.Guid);
+ if (LocalTarget.Type == 4) // a human player
+ LocalTarget.Name = PlayerNameFromGuid(LocalTarget.Guid);
+ if (LocalTarget.CurrentHealth <= 0) { LocalTarget.isDead = true; }
+ //we don't add LocalTarget to the ArrayList because he or she will appear again later
+ }
+
+ // read the object manager from first object to last.
+ while (CurrentObject.BaseAddress != 0 && CurrentObject.BaseAddress % 2 == 0)
+ {
+ CurrentObject.Type = (short)(WowReader.ReadUInt32((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Type)));
+
+ if (CurrentObject.Type == 4)
+ {
+ CurrentObject.UnitFieldsAddress = WowReader.ReadUInt32((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.UnitFields));
+ CurrentObject.CurrentHealth = WowReader.ReadUInt32((IntPtr)(CurrentObject.UnitFieldsAddress + UnitOffsets.Health));
+ CurrentObject.CurrentEnergy = WowReader.ReadUInt32((IntPtr)(LocalPlayer.UnitFieldsAddress + UnitOffsets.Energy));
+ CurrentObject.MaxHealth = WowReader.ReadUInt32((IntPtr)(CurrentObject.UnitFieldsAddress + UnitOffsets.MaxHealth));
+ CurrentObject.XPos = WowReader.ReadFloat((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Pos_X));
+ CurrentObject.YPos = WowReader.ReadFloat((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Pos_Y));
+ CurrentObject.ZPos = WowReader.ReadFloat((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Pos_Z));
+ CurrentObject.Rotation = WowReader.ReadFloat((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Rot));
+ CurrentObject.Guid = WowReader.ReadUInt64((IntPtr)(CurrentObject.BaseAddress + ObjectOffsets.Guid));
+ CurrentObject.Level = WowReader.ReadUInt32((IntPtr)(CurrentObject.UnitFieldsAddress + UnitOffsets.Level));
+ CurrentObject.MaxEnergy = WowReader.ReadUInt32((IntPtr)(CurrentObject.UnitFieldsAddress + UnitOffsets.MaxEnergy));
+ CurrentObject.Name = PlayerNameFromGuid(CurrentObject.Guid);
+ // check to see whether this player is dead or not
+ if (CurrentObject.CurrentHealth <= 0)
+ {
+ CurrentObject.isDead = true;
+ }
+ CurrentPlayers.Add((WowObject)CurrentObject.Clone());
+ }
+ // set the current object as the next object in the object manager
+ CurrentObject.BaseAddress = WowReader.ReadUInt32((IntPtr)(CurrentObject.BaseAddress + ClientOffsets.NextObjectOffset));
+ }
+ }
+
+ public ArrayList GetPlayerList()
+ {
+ return (ArrayList)CurrentPlayers.Clone();
+ }
+
+ public WowObject GetLocalPlayer()
+ {
+ return (WowObject)LocalPlayer.Clone();
+ }
+
+ public WowObject GetLocalTarget()
+ {
+ return (WowObject)LocalTarget.Clone();
+ }
+
+ private Boolean LoadAddresses()
+ {
+ // set the process that we want to read from to be World of Warcraft
+ WowReader.SetProcess("Wow", "Read");
+
+ // fill in our missing addresses and find our way to the base of the
+ // first object in the object manager
+ ClientConnection = WowReader.ReadUInt32((IntPtr)(ClientOffsets.StaticClientConnection));
+ ObjectManager = WowReader.ReadUInt32((IntPtr)(ClientConnection + ClientOffsets.ObjectManagerOffset));
+ FirstObject = WowReader.ReadUInt32((IntPtr)(ObjectManager + ClientOffsets.FirstObjectOffset));
+ LocalTarget.Guid = WowReader.ReadUInt64((IntPtr)(ClientOffsets.LocalTargetGUID));
+ LocalPlayer.Guid = WowReader.ReadUInt64((IntPtr)(ObjectManager + ClientOffsets.LocalGuidOffset));
+
+ // if the local guid is zero it means that something failed.
+ if (LocalPlayer.Guid == 0)
+ return false;
+ else
+ return true;
+ }
+
+ private string MobNameFromGuid(ulong Guid)
+ {
+ uint ObjectBase = GetObjectBaseByGuid(Guid);
+ return WowReader.ReadString((IntPtr)(WowReader.ReadUInt32((IntPtr)(WowReader.ReadUInt32((IntPtr)(ObjectBase + 0x964)) + 0x05C))));
+ }
+
+ public string PlayerNameFromGuid(ulong guid)
+ {
+ ulong mask, base_, offset, current, shortGUID, testGUID;
+
+ mask = WowReader.ReadUInt32((IntPtr)((ulong)NameOffsets.nameStore + (ulong)NameOffsets.nameMask));
+ base_ = WowReader.ReadUInt32((IntPtr)((ulong)NameOffsets.nameStore + (ulong)NameOffsets.nameBase));
+
+ shortGUID = guid & 0xffffffff;
+ offset = 12 * (mask & shortGUID);
+
+ current = WowReader.ReadUInt32((IntPtr)(base_ + offset + 8));
+ offset = WowReader.ReadUInt32((IntPtr)(base_ + offset));
+
+ if ((current & 0x1) == 0x1) { return ""; }
+
+ testGUID = WowReader.ReadUInt32((IntPtr)(current));
+
+ while (testGUID != shortGUID)
+ {
+ current = WowReader.ReadUInt32((IntPtr)(current + offset + 4));
+
+ if ((current & 0x1) == 0x1) { return ""; }
+ testGUID = WowReader.ReadUInt32((IntPtr)(current));
+ }
+
+ return WowReader.ReadString((IntPtr)(current + NameOffsets.nameString));
+ }
+
+ private uint GetObjectBaseByGuid(ulong Guid)
+ {
+ TempObject.BaseAddress = FirstObject;
+
+ while (TempObject.BaseAddress != 0)
+ {
+ TempObject.Guid = WowReader.ReadUInt64((IntPtr)(TempObject.BaseAddress + ObjectOffsets.Guid));
+ if (TempObject.Guid == Guid)
+ return TempObject.BaseAddress;
+ TempObject.BaseAddress = WowReader.ReadUInt32((IntPtr)(TempObject.BaseAddress + ClientOffsets.NextObjectOffset));
+ }
+
+ return 0;
+ }
+
+ private ulong GetObjectGuidByBase(uint Base)
+ {
+ return WowReader.ReadUInt64((IntPtr)(Base + ObjectOffsets.Guid));
+ }
+
+ }
+
+ public class WowObject : ICloneable
+ {
+ // general properties
+ public ulong Guid = 0;
+ public ulong SummonedBy = 0;
+ public float XPos = 0;
+ public float YPos = 0;
+ public float ZPos = 0;
+ public float Rotation = 0;
+ public uint BaseAddress = 0;
+ public uint UnitFieldsAddress = 0;
+ public short Type = 0;
+ public String Name = "";
+
+ // more specialised properties (player or mob)
+ public uint CurrentHealth = 0;
+ public uint MaxHealth = 0;
+ public uint CurrentEnergy = 0; // mana, rage and energy will all fall under energy.
+ public uint MaxEnergy = 0;
+ public uint Level = 0;
+
+ public bool isDead = false;
+
+ public WowObject()
+ {
+ }
+
+ public WowObject(ulong cGuid, ulong cSummonedBy, float cXPos, float cYPos, float cZPos, float cRotation, uint cBaseAddress, uint cUnitFieldsAddress, short cType, String cName, uint cCurrentHealth, uint cMaxHealth, uint cCurrentEnergy, uint cMaxEnergy, uint cLevel, bool cisDead)
+ {
+ Guid = cGuid;
+ SummonedBy = cSummonedBy;
+ XPos = cXPos;
+ YPos = cYPos;
+ ZPos = cZPos;
+ Rotation = cRotation;
+ BaseAddress = cBaseAddress;
+ UnitFieldsAddress = cUnitFieldsAddress;
+ Type = cType;
+ Name = cName;
+ CurrentHealth = cCurrentHealth;
+ MaxHealth = cMaxHealth;
+ CurrentEnergy = cCurrentEnergy;
+ MaxEnergy = cMaxEnergy;
+ Level = cLevel;
+
+ isDead = cisDead;
+ }
+
+ public object Clone()
+ {
+ return new WowObject(Guid, SummonedBy, XPos, YPos, ZPos, Rotation, BaseAddress, UnitFieldsAddress, Type, Name, CurrentHealth, MaxHealth, CurrentEnergy, MaxEnergy, Level, isDead);
+ }
+ }
+}
diff --git a/WoWObjMgr/Properties/AssemblyInfo.cs b/WoWObjMgr/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..65cef88
--- /dev/null
+++ b/WoWObjMgr/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("WoWObjMgr")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Microsoft")]
+[assembly: AssemblyProduct("WoWObjMgr")]
+[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("60f063f7-0a70-410d-97c1-a3979d8a956a")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/WoWObjMgr/WoWObjMgr.csproj b/WoWObjMgr/WoWObjMgr.csproj
new file mode 100644
index 0000000..7bb8fe0
--- /dev/null
+++ b/WoWObjMgr/WoWObjMgr.csproj
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>9.0.30729</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{F3C0AB44-D268-4FE3-89FD-D86CBA4E79ED}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>WoWObjMgr</RootNamespace>
+ <AssemblyName>WoWObjMgr</AssemblyName>
+ <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <RegisterForComInterop>false</RegisterForComInterop>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <RegisterForComInterop>false</RegisterForComInterop>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="MemoryReader, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\MemoryReader.dll</HintPath>
+ </Reference>
+ <Reference Include="System" />
+ <Reference Include="System.Core">
+ <RequiredTargetFramework>3.5</RequiredTargetFramework>
+ </Reference>
+ <Reference Include="System.Xml.Linq">
+ <RequiredTargetFramework>3.5</RequiredTargetFramework>
+ </Reference>
+ <Reference Include="System.Data.DataSetExtensions">
+ <RequiredTargetFramework>3.5</RequiredTargetFramework>
+ </Reference>
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="PlayerScan.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file
diff --git a/WoWObjMgr/WoWObjMgr.csproj.user b/WoWObjMgr/WoWObjMgr.csproj.user
new file mode 100644
index 0000000..7ff3943
--- /dev/null
+++ b/WoWObjMgr/WoWObjMgr.csproj.user
@@ -0,0 +1 @@
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
\ No newline at end of file
diff --git a/WoWObjMgr/bin/Debug/MemoryReader.dll b/WoWObjMgr/bin/Debug/MemoryReader.dll
new file mode 100644
index 0000000..4d37018
Binary files /dev/null and b/WoWObjMgr/bin/Debug/MemoryReader.dll differ
diff --git a/WoWObjMgr/bin/Debug/WoWObjMgr.dll b/WoWObjMgr/bin/Debug/WoWObjMgr.dll
new file mode 100644
index 0000000..8bfad71
Binary files /dev/null and b/WoWObjMgr/bin/Debug/WoWObjMgr.dll differ
diff --git a/WoWObjMgr/bin/Debug/WoWObjMgr.pdb b/WoWObjMgr/bin/Debug/WoWObjMgr.pdb
new file mode 100644
index 0000000..1fb0c61
Binary files /dev/null and b/WoWObjMgr/bin/Debug/WoWObjMgr.pdb differ
diff --git a/WoWObjMgr/bin/Release/MemoryReader.dll b/WoWObjMgr/bin/Release/MemoryReader.dll
new file mode 100644
index 0000000..4d37018
Binary files /dev/null and b/WoWObjMgr/bin/Release/MemoryReader.dll differ
diff --git a/WoWObjMgr/bin/Release/WoWObjMgr.dll b/WoWObjMgr/bin/Release/WoWObjMgr.dll
new file mode 100644
index 0000000..4cd41e5
Binary files /dev/null and b/WoWObjMgr/bin/Release/WoWObjMgr.dll differ
diff --git a/WoWObjMgr/bin/Release/WoWObjMgr.pdb b/WoWObjMgr/bin/Release/WoWObjMgr.pdb
new file mode 100644
index 0000000..227cb2b
Binary files /dev/null and b/WoWObjMgr/bin/Release/WoWObjMgr.pdb differ
diff --git a/WoWObjMgr/obj/Debug/WoWObjMgr.csproj.FileListAbsolute.txt b/WoWObjMgr/obj/Debug/WoWObjMgr.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..eee085c
--- /dev/null
+++ b/WoWObjMgr/obj/Debug/WoWObjMgr.csproj.FileListAbsolute.txt
@@ -0,0 +1,7 @@
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Debug\WoWObjMgr.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Debug\WoWObjMgr.pdb
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Debug\WoWObjMgr.tlb
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Debug\MemoryReader.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Debug\ResolveAssemblyReference.cache
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Debug\WoWObjMgr.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Debug\WoWObjMgr.pdb
diff --git a/WoWObjMgr/obj/Debug/WoWObjMgr.dll b/WoWObjMgr/obj/Debug/WoWObjMgr.dll
new file mode 100644
index 0000000..8bfad71
Binary files /dev/null and b/WoWObjMgr/obj/Debug/WoWObjMgr.dll differ
diff --git a/WoWObjMgr/obj/Debug/WoWObjMgr.pdb b/WoWObjMgr/obj/Debug/WoWObjMgr.pdb
new file mode 100644
index 0000000..1fb0c61
Binary files /dev/null and b/WoWObjMgr/obj/Debug/WoWObjMgr.pdb differ
diff --git a/WoWObjMgr/obj/Release/WoWObjMgr.csproj.FileListAbsolute.txt b/WoWObjMgr/obj/Release/WoWObjMgr.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..9681d30
--- /dev/null
+++ b/WoWObjMgr/obj/Release/WoWObjMgr.csproj.FileListAbsolute.txt
@@ -0,0 +1,12 @@
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\obj\Release\ResolveAssemblyReference.cache
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\bin\Release\WoWObjMgr.dll
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\bin\Release\WoWObjMgr.pdb
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\bin\Release\MemoryReader.dll
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\obj\Release\WoWObjMgr.dll
+C:\Users\Administrator\AppData\Local\Temporary Projects\WoWObjMgr\obj\Release\WoWObjMgr.pdb
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Release\WoWObjMgr.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Release\WoWObjMgr.pdb
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\bin\Release\MemoryReader.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Release\ResolveAssemblyReference.cache
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Release\WoWObjMgr.dll
+C:\Users\Administrator\Documents\Visual Studio 2008\Projects\WoWObjMgr\WoWObjMgr\obj\Release\WoWObjMgr.pdb
diff --git a/WoWObjMgr/obj/Release/WoWObjMgr.dll b/WoWObjMgr/obj/Release/WoWObjMgr.dll
new file mode 100644
index 0000000..4cd41e5
Binary files /dev/null and b/WoWObjMgr/obj/Release/WoWObjMgr.dll differ
diff --git a/WoWObjMgr/obj/Release/WoWObjMgr.pdb b/WoWObjMgr/obj/Release/WoWObjMgr.pdb
new file mode 100644
index 0000000..227cb2b
Binary files /dev/null and b/WoWObjMgr/obj/Release/WoWObjMgr.pdb differ
|
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.html b/index.html
index 32589a6..81d1f4e 100644
--- a/index.html
+++ b/index.html
@@ -1,84 +1,75 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
+
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
- <link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen">
+ <link rel="stylesheet" type="text/css" href="stylesheets/github-dark.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
- <!--[if lt IE 9]>
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
-
<title>The Mendicant Bug by ealdent</title>
</head>
<body>
+
<header>
- <div class="inner">
+ <div class="container">
<h1>The Mendicant Bug</h1>
<h2>Wandering around computer science, computational linguistics, games, and dogs...</h2>
- <a href="https://github.com/ealdent" class="button"><small>Follow me on</small> GitHub</a>
+
+ <section id="downloads">
+ <a href="https://github.com/ealdent" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
+ </section>
</div>
</header>
- <div id="content-wrapper">
- <div class="inner clearfix">
- <section id="main-content">
- <h3>
-<a name="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages"><span class="octicon octicon-link"></span></a>Welcome to GitHub Pages.</h3>
+ <div class="container">
+ <section id="main_content">
+ <h3>
+<a id="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages" aria-hidden="true"><span class="octicon octicon-link"></span></a>Welcome to GitHub Pages.</h3>
<p>This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:</p>
<pre><code>$ cd your_repo_root/repo_name
$ git fetch origin
$ git checkout gh-pages
</code></pre>
<p>If you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.</p>
<h3>
-<a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>Designer Templates</h3>
+<a id="designer-templates" class="anchor" href="#designer-templates" aria-hidden="true"><span class="octicon octicon-link"></span></a>Designer Templates</h3>
<p>We've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.</p>
<h3>
-<a name="rather-drive-stick" class="anchor" href="#rather-drive-stick"><span class="octicon octicon-link"></span></a>Rather Drive Stick?</h3>
+<a id="rather-drive-stick" class="anchor" href="#rather-drive-stick" aria-hidden="true"><span class="octicon octicon-link"></span></a>Rather Drive Stick?</h3>
<p>If you prefer to not use the automatic generator, push a branch named <code>gh-pages</code> to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.</p>
<h3>
-<a name="authors-and-contributors" class="anchor" href="#authors-and-contributors"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
+<a id="authors-and-contributors" class="anchor" href="#authors-and-contributors" aria-hidden="true"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
<p>You can <a href="https://github.com/blog/821" class="user-mention">@mention</a> a GitHub username to generate a link to their profile. The resulting <code><a></code> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (<a href="https://github.com/defunkt" class="user-mention">@defunkt</a>), PJ Hyett (<a href="https://github.com/pjhyett" class="user-mention">@pjhyett</a>), and Tom Preston-Werner (<a href="https://github.com/mojombo" class="user-mention">@mojombo</a>) founded GitHub.</p>
<h3>
-<a name="support-or-contact" class="anchor" href="#support-or-contact"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
+<a id="support-or-contact" class="anchor" href="#support-or-contact" aria-hidden="true"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
<p>Having trouble with Pages? Check out the documentation at <a href="http://help.github.com/pages">http://help.github.com/pages</a> or contact <a href="mailto:[email protected]">[email protected]</a> and weâll help you sort it out.</p>
- </section>
-
- <aside id="sidebar">
-
-
- <p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.</p>
- </aside>
- </div>
+ </section>
</div>
- <script type="text/javascript">
+ <script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-6833988-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>
diff --git a/stylesheets/github-dark.css b/stylesheets/github-dark.css
new file mode 100644
index 0000000..0c393bf
--- /dev/null
+++ b/stylesheets/github-dark.css
@@ -0,0 +1,116 @@
+/*
+ Copyright 2014 GitHub Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+*/
+
+.pl-c /* comment */ {
+ color: #969896;
+}
+
+.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */,
+.pl-s .pl-v /* string variable */ {
+ color: #0099cd;
+}
+
+.pl-e /* entity */,
+.pl-en /* entity.name */ {
+ color: #9774cb;
+}
+
+.pl-s .pl-s1 /* string source */,
+.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ {
+ color: #ddd;
+}
+
+.pl-ent /* entity.name.tag */ {
+ color: #7bcc72;
+}
+
+.pl-k /* keyword, storage, storage.type */ {
+ color: #cc2372;
+}
+
+.pl-pds /* punctuation.definition.string, string.regexp.character-class */,
+.pl-s /* string */,
+.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */,
+.pl-sr /* string.regexp */,
+.pl-sr .pl-cce /* string.regexp constant.character.escape */,
+.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */,
+.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ {
+ color: #3c66e2;
+}
+
+.pl-v /* variable */ {
+ color: #fb8764;
+}
+
+.pl-id /* invalid.deprecated */ {
+ color: #e63525;
+}
+
+.pl-ii /* invalid.illegal */ {
+ background-color: #e63525;
+ color: #f8f8f8;
+}
+
+.pl-sr .pl-cce /* string.regexp constant.character.escape */ {
+ color: #7bcc72;
+ font-weight: bold;
+}
+
+.pl-ml /* markup.list */ {
+ color: #c26b2b;
+}
+
+.pl-mh /* markup.heading */,
+.pl-mh .pl-en /* markup.heading entity.name */,
+.pl-ms /* meta.separator */ {
+ color: #264ec5;
+ font-weight: bold;
+}
+
+.pl-mq /* markup.quote */ {
+ color: #00acac;
+}
+
+.pl-mi /* markup.italic */ {
+ color: #ddd;
+ font-style: italic;
+}
+
+.pl-mb /* markup.bold */ {
+ color: #ddd;
+ font-weight: bold;
+}
+
+.pl-md /* markup.deleted, meta.diff.header.from-file */ {
+ background-color: #ffecec;
+ color: #bd2c00;
+}
+
+.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ {
+ background-color: #eaffea;
+ color: #55a532;
+}
+
+.pl-mdr /* meta.diff.range */ {
+ color: #9774cb;
+ font-weight: bold;
+}
+
+.pl-mo /* meta.output */ {
+ color: #264ec5;
+}
+
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
index 3bb2a2f..a54a639 100644
--- a/stylesheets/stylesheet.css
+++ b/stylesheets/stylesheet.css
@@ -1,478 +1,247 @@
-/* http://meyerweb.com/eric/tools/css/reset/
- v2.0 | 20110126
- License: none (public domain)
-*/
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td,
-article, aside, canvas, details, embed,
-figure, figcaption, footer, header, hgroup,
-menu, nav, output, ruby, section, summary,
-time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
-}
-/* HTML5 display-role reset for older browsers */
-article, aside, details, figcaption, figure,
-footer, header, hgroup, menu, nav, section {
- display: block;
-}
body {
- line-height: 1;
-}
-ol, ul {
- list-style: none;
-}
-blockquote, q {
- quotes: none;
-}
-blockquote:before, blockquote:after,
-q:before, q:after {
- content: '';
- content: none;
+ margin: 0;
+ padding: 0;
+ background: #151515 url("../images/bkg.png") 0 0;
+ color: #eaeaea;
+ font: 16px;
+ line-height: 1.5;
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
}
-table {
- border-collapse: collapse;
- border-spacing: 0;
+
+/* General & 'Reset' Stuff */
+
+.container {
+ width: 90%;
+ max-width: 600px;
+ margin: 0 auto;
}
-/* LAYOUT STYLES */
-body {
- font-size: 15px;
- line-height: 1.5;
- background: #fafafa url(../images/body-bg.jpg) 0 0 repeat;
- font-family: 'Helvetica Neue', Helvetica, Arial, serif;
- font-weight: 400;
- color: #666;
+section {
+ display: block;
+ margin: 0 0 20px 0;
}
-a {
- color: #2879d0;
+h1, h2, h3, h4, h5, h6 {
+ margin: 0 0 20px;
}
-a:hover {
- color: #2268b2;
+
+li {
+ line-height: 1.4 ;
}
+/* Header, <header>
+ header - container
+ h1 - project name
+ h2 - project description
+*/
+
header {
- padding-top: 40px;
- padding-bottom: 40px;
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- background: #2e7bcf url(../images/header-bg.jpg) 0 0 repeat-x;
- border-bottom: solid 1px #275da1;
+ background: rgba(0, 0, 0, 0.1);
+ width: 100%;
+ border-bottom: 1px dashed #b5e853;
+ padding: 20px 0;
+ margin: 0 0 40px 0;
}
header h1 {
+ font-size: 30px;
+ line-height: 1.5;
+ margin: 0 0 0 -40px;
+ font-weight: bold;
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
+ color: #b5e853;
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
+ 0 0 5px rgba(181, 232, 83, 0.1),
+ 0 0 10px rgba(181, 232, 83, 0.1);
letter-spacing: -1px;
- font-size: 72px;
- color: #fff;
- line-height: 1;
- margin-bottom: 0.2em;
- width: 540px;
+ -webkit-font-smoothing: antialiased;
+}
+
+header h1:before {
+ content: "./ ";
+ font-size: 24px;
}
header h2 {
- font-size: 26px;
- color: #9ddcff;
- font-weight: normal;
- line-height: 1.3;
- width: 540px;
- letter-spacing: 0;
+ font-size: 18px;
+ font-weight: 300;
+ color: #666;
}
-.inner {
- position: relative;
- width: 940px;
- margin: 0 auto;
+#downloads .btn {
+ display: inline-block;
+ text-align: center;
+ margin: 0;
}
-#content-wrapper {
- border-top: solid 1px #fff;
- padding-top: 30px;
+/* Main Content
+*/
+
+#main_content {
+ width: 100%;
+ -webkit-font-smoothing: antialiased;
+}
+section img {
+ max-width: 100%
}
-#main-content {
- width: 690px;
- float: left;
+h1, h2, h3, h4, h5, h6 {
+ font-weight: normal;
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
+ color: #b5e853;
+ letter-spacing: -0.03em;
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
+ 0 0 5px rgba(181, 232, 83, 0.1),
+ 0 0 10px rgba(181, 232, 83, 0.1);
}
-#main-content img {
- max-width: 100%;
+#main_content h1 {
+ font-size: 30px;
}
-aside#sidebar {
- width: 200px;
- padding-left: 20px;
- min-height: 504px;
- float: right;
- background: transparent url(../images/sidebar-bg.jpg) 0 0 no-repeat;
- font-size: 12px;
- line-height: 1.3;
+#main_content h2 {
+ font-size: 24px;
}
-aside#sidebar p.repo-owner,
-aside#sidebar p.repo-owner a {
- font-weight: bold;
+#main_content h3 {
+ font-size: 18px;
}
-#downloads {
- margin-bottom: 40px;
+#main_content h4 {
+ font-size: 14px;
}
-a.button {
- width: 134px;
- height: 58px;
- line-height: 1.2;
- font-size: 23px;
- color: #fff;
- padding-left: 68px;
- padding-top: 22px;
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+#main_content h5 {
+ font-size: 12px;
+ text-transform: uppercase;
+ margin: 0 0 5px 0;
}
-a.button small {
- display: block;
- font-size: 11px;
+
+#main_content h6 {
+ font-size: 12px;
+ text-transform: uppercase;
+ color: #999;
+ margin: 0 0 5px 0;
}
-header a.button {
- position: absolute;
- right: 0;
- top: 0;
- background: transparent url(../images/github-button.png) 0 0 no-repeat;
+
+dt {
+ font-style: italic;
+ font-weight: bold;
}
-aside a.button {
- width: 138px;
- padding-left: 64px;
- display: block;
- background: transparent url(../images/download-button.png) 0 0 no-repeat;
- margin-bottom: 20px;
- font-size: 21px;
+
+ul li {
+ list-style: none;
}
-code, pre {
+ul li:before {
+ content: ">>";
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
- color: #222;
- margin-bottom: 30px;
font-size: 13px;
+ color: #b5e853;
+ margin-left: -37px;
+ margin-right: 21px;
+ line-height: 16px;
}
-code {
- background-color: #f2f8fc;
- border: solid 1px #dbe7f3;
- padding: 0 3px;
+blockquote {
+ color: #aaa;
+ padding-left: 10px;
+ border-left: 1px dotted #666;
}
pre {
- padding: 20px;
- background: #fff;
- text-shadow: none;
+ background: rgba(0, 0, 0, 0.9);
+ border: 1px solid rgba(255, 255, 255, 0.15);
+ padding: 10px;
+ font-size: 14px;
+ color: #b5e853;
+ border-radius: 2px;
+ -moz-border-radius: 2px;
+ -webkit-border-radius: 2px;
+ text-wrap: normal;
overflow: auto;
- border: solid 1px #f2f2f2;
-}
-pre code {
- color: #2879d0;
- background-color: #fff;
- border: none;
- padding: 0;
-}
-
-ul, ol, dl {
- margin-bottom: 20px;
-}
-
-
-/* COMMON STYLES */
-
-hr {
- height: 0;
- margin-top: 1em;
- margin-bottom: 1em;
- border: 0;
- border-top: solid 1px #ddd;
+ overflow-y: hidden;
}
table {
width: 100%;
- border: 1px solid #ebebeb;
+ margin: 0 0 20px 0;
}
th {
- font-weight: 500;
+ text-align: left;
+ border-bottom: 1px dashed #b5e853;
+ padding: 5px 10px;
}
td {
- border: 1px solid #ebebeb;
- text-align: center;
- font-weight: 300;
-}
-
-form {
- background: #f2f2f2;
- padding: 20px;
-
+ padding: 5px 10px;
}
-
-/* GENERAL ELEMENT TYPE STYLES */
-
-#main-content h1 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: 2.8em;
- letter-spacing: -1px;
- color: #474747;
-}
-
-#main-content h1:before {
- content: "/";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -0.9em;
-}
-
-#main-content h2 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: 22px;
- font-weight: bold;
- margin-bottom: 8px;
- color: #474747;
-}
-#main-content h2:before {
- content: "//";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -1.5em;
-}
-
-#main-content h3 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: 18px;
- font-weight: bold;
- margin-top: 24px;
- margin-bottom: 8px;
- color: #474747;
+hr {
+ height: 0;
+ border: 0;
+ border-bottom: 1px dashed #b5e853;
+ color: #b5e853;
}
-#main-content h3:before {
- content: "///";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -2em;
-}
+/* Buttons
+*/
-#main-content h4 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: 15px;
+.btn {
+ display: inline-block;
+ background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
+ padding: 8px 18px;
+ border-radius: 50px;
+ border: 2px solid rgba(0, 0, 0, 0.7);
+ border-bottom: 2px solid rgba(0, 0, 0, 0.7);
+ border-top: 2px solid rgba(0, 0, 0, 1);
+ color: rgba(255, 255, 255, 0.8);
+ font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
- color: #474747;
-}
-
-h4:before {
- content: "////";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -2.8em;
-}
-
-#main-content h5 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: 14px;
- color: #474747;
-}
-h5:before {
- content: "/////";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -3.2em;
-}
-
-#main-content h6 {
- font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
- font-size: .8em;
- color: #474747;
-}
-h6:before {
- content: "//////";
- color: #9ddcff;
- padding-right: 0.3em;
- margin-left: -3.7em;
-}
-
-p {
- margin-bottom: 20px;
-}
-
-a {
+ font-size: 13px;
text-decoration: none;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
-p a {
- font-weight: 400;
+.btn:hover {
+ background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
}
-blockquote {
- font-size: 1.6em;
- border-left: 10px solid #e9e9e9;
- margin-bottom: 20px;
- padding: 0 0 0 30px;
+.btn .icon {
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ margin: 1px 8px 0 0;
+ float: left;
}
-ul {
- list-style: disc inside;
- padding-left: 20px;
+.btn-github .icon {
+ opacity: 0.6;
+ background: url("../images/blacktocat.png") 0 0 no-repeat;
}
-ol {
- list-style: decimal inside;
- padding-left: 3px;
-}
+/* Links
+ a, a:hover, a:visited
+*/
-dl dd {
- font-style: italic;
- font-weight: 100;
+a {
+ color: #63c0f5;
+ text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
}
-footer {
- background: transparent url('../images/hr.png') 0 0 no-repeat;
- margin-top: 40px;
- padding-top: 20px;
- padding-bottom: 30px;
- font-size: 13px;
- color: #aaa;
-}
+/* Clearfix */
-footer a {
- color: #666;
-}
-footer a:hover {
- color: #444;
+.cf:before, .cf:after {
+ content:"";
+ display:table;
}
-/* MISC */
-.clearfix:after {
- clear: both;
- content: '.';
- display: block;
- visibility: hidden;
- height: 0;
+.cf:after {
+ clear:both;
}
-.clearfix {display: inline-block;}
-* html .clearfix {height: 1%;}
-.clearfix {display: block;}
-
-/* #Media Queries
-================================================== */
-
-/* Smaller than standard 960 (devices and browsers) */
-@media only screen and (max-width: 959px) {}
-
-/* Tablet Portrait size to standard 960 (devices and browsers) */
-@media only screen and (min-width: 768px) and (max-width: 959px) {
- .inner {
- width: 740px;
- }
- header h1, header h2 {
- width: 340px;
- }
- header h1 {
- font-size: 60px;
- }
- header h2 {
- font-size: 30px;
- }
- #main-content {
- width: 490px;
- }
- #main-content h1:before,
- #main-content h2:before,
- #main-content h3:before,
- #main-content h4:before,
- #main-content h5:before,
- #main-content h6:before {
- content: none;
- padding-right: 0;
- margin-left: 0;
- }
-}
-
-/* All Mobile Sizes (devices and browser) */
-@media only screen and (max-width: 767px) {
- .inner {
- width: 93%;
- }
- header {
- padding: 20px 0;
- }
- header .inner {
- position: relative;
- }
- header h1, header h2 {
- width: 100%;
- }
- header h1 {
- font-size: 48px;
- }
- header h2 {
- font-size: 24px;
- }
- header a.button {
- background-image: none;
- width: auto;
- height: auto;
- display: inline-block;
- margin-top: 15px;
- padding: 5px 10px;
- position: relative;
- text-align: center;
- font-size: 13px;
- line-height: 1;
- background-color: #9ddcff;
- color: #2879d0;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
- }
- header a.button small {
- font-size: 13px;
- display: inline;
- }
- #main-content,
- aside#sidebar {
- float: none;
- width: 100% ! important;
- }
- aside#sidebar {
- background-image: none;
- margin-top: 20px;
- border-top: solid 1px #ddd;
- padding: 20px 0;
- min-height: 0;
- }
- aside#sidebar a.button {
- display: none;
- }
- #main-content h1:before,
- #main-content h2:before,
- #main-content h3:before,
- #main-content h4:before,
- #main-content h5:before,
- #main-content h6:before {
- content: none;
- padding-right: 0;
- margin-left: 0;
- }
-}
-
-/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
-@media only screen and (min-width: 480px) and (max-width: 767px) {}
-
-/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
-@media only screen and (max-width: 479px) {}
+.cf {
+ zoom:1;
+}
\ No newline at end of file
|
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 differ
diff --git a/images/github-button.png b/images/github-button.png
new file mode 100644
index 0000000..cd41580
Binary files /dev/null and b/images/github-button.png differ
diff --git a/images/header-bg.jpg b/images/header-bg.jpg
new file mode 100644
index 0000000..d16497a
Binary files /dev/null and b/images/header-bg.jpg differ
diff --git a/images/highlight-bg.jpg b/images/highlight-bg.jpg
new file mode 100644
index 0000000..355e089
Binary files /dev/null and b/images/highlight-bg.jpg differ
diff --git a/images/sidebar-bg.jpg b/images/sidebar-bg.jpg
new file mode 100644
index 0000000..536ead9
Binary files /dev/null and b/images/sidebar-bg.jpg differ
diff --git a/index.html b/index.html
index 2f01493..32589a6 100644
--- a/index.html
+++ b/index.html
@@ -1,13 +1,84 @@
----
-layout: default
-title: The Mendicant Bug
----
-
-<div id="home">
- <h1>Blog Posts</h1>
- <ul class="posts">
- {% for post in site.posts %}
- <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
- {% endfor %}
- </ul>
-</div>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset='utf-8'>
+ <meta http-equiv="X-UA-Compatible" content="chrome=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+ <link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
+ <link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
+ <link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen">
+ <link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
+
+ <!--[if lt IE 9]>
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
+ <![endif]-->
+
+ <title>The Mendicant Bug by ealdent</title>
+ </head>
+
+ <body>
+ <header>
+ <div class="inner">
+ <h1>The Mendicant Bug</h1>
+ <h2>Wandering around computer science, computational linguistics, games, and dogs...</h2>
+ <a href="https://github.com/ealdent" class="button"><small>Follow me on</small> GitHub</a>
+ </div>
+ </header>
+
+ <div id="content-wrapper">
+ <div class="inner clearfix">
+ <section id="main-content">
+ <h3>
+<a name="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages"><span class="octicon octicon-link"></span></a>Welcome to GitHub Pages.</h3>
+
+<p>This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:</p>
+
+<pre><code>$ cd your_repo_root/repo_name
+$ git fetch origin
+$ git checkout gh-pages
+</code></pre>
+
+<p>If you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.</p>
+
+<h3>
+<a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>Designer Templates</h3>
+
+<p>We've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.</p>
+
+<h3>
+<a name="rather-drive-stick" class="anchor" href="#rather-drive-stick"><span class="octicon octicon-link"></span></a>Rather Drive Stick?</h3>
+
+<p>If you prefer to not use the automatic generator, push a branch named <code>gh-pages</code> to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.</p>
+
+<h3>
+<a name="authors-and-contributors" class="anchor" href="#authors-and-contributors"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
+
+<p>You can <a href="https://github.com/blog/821" class="user-mention">@mention</a> a GitHub username to generate a link to their profile. The resulting <code><a></code> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (<a href="https://github.com/defunkt" class="user-mention">@defunkt</a>), PJ Hyett (<a href="https://github.com/pjhyett" class="user-mention">@pjhyett</a>), and Tom Preston-Werner (<a href="https://github.com/mojombo" class="user-mention">@mojombo</a>) founded GitHub.</p>
+
+<h3>
+<a name="support-or-contact" class="anchor" href="#support-or-contact"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
+
+<p>Having trouble with Pages? Check out the documentation at <a href="http://help.github.com/pages">http://help.github.com/pages</a> or contact <a href="mailto:[email protected]">[email protected]</a> and weâll help you sort it out.</p>
+ </section>
+
+ <aside id="sidebar">
+
+
+ <p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.</p>
+ </aside>
+ </div>
+ </div>
+
+ <script type="text/javascript">
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+ </script>
+ <script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-6833988-1");
+ pageTracker._trackPageview();
+ } catch(err) {}
+ </script>
+
+ </body>
+</html>
diff --git a/javascripts/main.js b/javascripts/main.js
new file mode 100644
index 0000000..d8135d3
--- /dev/null
+++ b/javascripts/main.js
@@ -0,0 +1 @@
+console.log('This would be the main JS file.');
diff --git a/params.json b/params.json
new file mode 100644
index 0000000..83a32a1
--- /dev/null
+++ b/params.json
@@ -0,0 +1 @@
+{"name":"The Mendicant Bug","tagline":"Wandering around computer science, computational linguistics, games, and dogs...","body":"### Welcome to GitHub Pages.\r\nThis automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer, and publish. After your page is generated, you can check out the new branch:\r\n\r\n```\r\n$ cd your_repo_root/repo_name\r\n$ git fetch origin\r\n$ git checkout gh-pages\r\n```\r\n\r\nIf you're using the GitHub for Mac, simply sync your repository and you'll see the new branch.\r\n\r\n### Designer Templates\r\nWe've crafted some handsome templates for you to use. Go ahead and continue to layouts to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved if it remained markdown format.\r\n\r\n### Rather Drive Stick?\r\nIf you prefer to not use the automatic generator, push a branch named `gh-pages` to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.\r\n\r\n### Authors and Contributors\r\nYou can @mention a GitHub username to generate a link to their profile. The resulting `<a>` element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.\r\n\r\n### Support or Contact\r\nHaving trouble with Pages? Check out the documentation at http://help.github.com/pages or contact [email protected] and weâll help you sort it out.\r\n","google":"UA-6833988-1","note":"Don't delete this file! It's used internally to help with page regeneration."}
\ No newline at end of file
diff --git a/stylesheets/print.css b/stylesheets/print.css
new file mode 100644
index 0000000..541695b
--- /dev/null
+++ b/stylesheets/print.css
@@ -0,0 +1,226 @@
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+body {
+ font-size: 13px;
+ line-height: 1.5;
+ font-family: 'Helvetica Neue', Helvetica, Arial, serif;
+ color: #000;
+}
+
+a {
+ color: #d5000d;
+ font-weight: bold;
+}
+
+header {
+ padding-top: 35px;
+ padding-bottom: 10px;
+}
+
+header h1 {
+ font-weight: bold;
+ letter-spacing: -1px;
+ font-size: 48px;
+ color: #303030;
+ line-height: 1.2;
+}
+
+header h2 {
+ letter-spacing: -1px;
+ font-size: 24px;
+ color: #aaa;
+ font-weight: normal;
+ line-height: 1.3;
+}
+#downloads {
+ display: none;
+}
+#main_content {
+ padding-top: 20px;
+}
+
+code, pre {
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
+ color: #222;
+ margin-bottom: 30px;
+ font-size: 12px;
+}
+
+code {
+ padding: 0 3px;
+}
+
+pre {
+ border: solid 1px #ddd;
+ padding: 20px;
+ overflow: auto;
+}
+pre code {
+ padding: 0;
+}
+
+ul, ol, dl {
+ margin-bottom: 20px;
+}
+
+
+/* COMMON STYLES */
+
+table {
+ width: 100%;
+ border: 1px solid #ebebeb;
+}
+
+th {
+ font-weight: 500;
+}
+
+td {
+ border: 1px solid #ebebeb;
+ text-align: center;
+ font-weight: 300;
+}
+
+form {
+ background: #f2f2f2;
+ padding: 20px;
+
+}
+
+
+/* GENERAL ELEMENT TYPE STYLES */
+
+h1 {
+ font-size: 2.8em;
+}
+
+h2 {
+ font-size: 22px;
+ font-weight: bold;
+ color: #303030;
+ margin-bottom: 8px;
+}
+
+h3 {
+ color: #d5000d;
+ font-size: 18px;
+ font-weight: bold;
+ margin-bottom: 8px;
+}
+
+h4 {
+ font-size: 16px;
+ color: #303030;
+ font-weight: bold;
+}
+
+h5 {
+ font-size: 1em;
+ color: #303030;
+}
+
+h6 {
+ font-size: .8em;
+ color: #303030;
+}
+
+p {
+ font-weight: 300;
+ margin-bottom: 20px;
+}
+
+a {
+ text-decoration: none;
+}
+
+p a {
+ font-weight: 400;
+}
+
+blockquote {
+ font-size: 1.6em;
+ border-left: 10px solid #e9e9e9;
+ margin-bottom: 20px;
+ padding: 0 0 0 30px;
+}
+
+ul li {
+ list-style: disc inside;
+ padding-left: 20px;
+}
+
+ol li {
+ list-style: decimal inside;
+ padding-left: 3px;
+}
+
+dl dd {
+ font-style: italic;
+ font-weight: 100;
+}
+
+footer {
+ margin-top: 40px;
+ padding-top: 20px;
+ padding-bottom: 30px;
+ font-size: 13px;
+ color: #aaa;
+}
+
+footer a {
+ color: #666;
+}
+
+/* MISC */
+.clearfix:after {
+ clear: both;
+ content: '.';
+ display: block;
+ visibility: hidden;
+ height: 0;
+}
+
+.clearfix {display: inline-block;}
+* html .clearfix {height: 1%;}
+.clearfix {display: block;}
\ No newline at end of file
diff --git a/stylesheets/pygment_trac.css b/stylesheets/pygment_trac.css
new file mode 100644
index 0000000..c6a6452
--- /dev/null
+++ b/stylesheets/pygment_trac.css
@@ -0,0 +1,69 @@
+.highlight { background: #ffffff; }
+.highlight .c { color: #999988; font-style: italic } /* Comment */
+.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
+.highlight .k { font-weight: bold } /* Keyword */
+.highlight .o { font-weight: bold } /* Operator */
+.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
+.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
+.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #aa0000 } /* Generic.Error */
+.highlight .gh { color: #999999 } /* Generic.Heading */
+.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
+.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
+.highlight .go { color: #888888 } /* Generic.Output */
+.highlight .gp { color: #555555 } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */
+.highlight .gt { color: #aa0000 } /* Generic.Traceback */
+.highlight .kc { font-weight: bold } /* Keyword.Constant */
+.highlight .kd { font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
+.highlight .kr { font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
+.highlight .m { color: #009999 } /* Literal.Number */
+.highlight .s { color: #d14 } /* Literal.String */
+.highlight .na { color: #008080 } /* Name.Attribute */
+.highlight .nb { color: #0086B3 } /* Name.Builtin */
+.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
+.highlight .no { color: #008080 } /* Name.Constant */
+.highlight .ni { color: #800080 } /* Name.Entity */
+.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
+.highlight .nn { color: #555555 } /* Name.Namespace */
+.highlight .nt { color: #000080 } /* Name.Tag */
+.highlight .nv { color: #008080 } /* Name.Variable */
+.highlight .ow { font-weight: bold } /* Operator.Word */
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mf { color: #009999 } /* Literal.Number.Float */
+.highlight .mh { color: #009999 } /* Literal.Number.Hex */
+.highlight .mi { color: #009999 } /* Literal.Number.Integer */
+.highlight .mo { color: #009999 } /* Literal.Number.Oct */
+.highlight .sb { color: #d14 } /* Literal.String.Backtick */
+.highlight .sc { color: #d14 } /* Literal.String.Char */
+.highlight .sd { color: #d14 } /* Literal.String.Doc */
+.highlight .s2 { color: #d14 } /* Literal.String.Double */
+.highlight .se { color: #d14 } /* Literal.String.Escape */
+.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
+.highlight .si { color: #d14 } /* Literal.String.Interpol */
+.highlight .sx { color: #d14 } /* Literal.String.Other */
+.highlight .sr { color: #009926 } /* Literal.String.Regex */
+.highlight .s1 { color: #d14 } /* Literal.String.Single */
+.highlight .ss { color: #990073 } /* Literal.String.Symbol */
+.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
+.highlight .vc { color: #008080 } /* Name.Variable.Class */
+.highlight .vg { color: #008080 } /* Name.Variable.Global */
+.highlight .vi { color: #008080 } /* Name.Variable.Instance */
+.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
+
+.type-csharp .highlight .k { color: #0000FF }
+.type-csharp .highlight .kt { color: #0000FF }
+.type-csharp .highlight .nf { color: #000000; font-weight: normal }
+.type-csharp .highlight .nc { color: #2B91AF }
+.type-csharp .highlight .nn { color: #000000 }
+.type-csharp .highlight .s { color: #A31515 }
+.type-csharp .highlight .sc { color: #A31515 }
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
new file mode 100644
index 0000000..3bb2a2f
--- /dev/null
+++ b/stylesheets/stylesheet.css
@@ -0,0 +1,478 @@
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+/* LAYOUT STYLES */
+body {
+ font-size: 15px;
+ line-height: 1.5;
+ background: #fafafa url(../images/body-bg.jpg) 0 0 repeat;
+ font-family: 'Helvetica Neue', Helvetica, Arial, serif;
+ font-weight: 400;
+ color: #666;
+}
+
+a {
+ color: #2879d0;
+}
+a:hover {
+ color: #2268b2;
+}
+
+header {
+ padding-top: 40px;
+ padding-bottom: 40px;
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ background: #2e7bcf url(../images/header-bg.jpg) 0 0 repeat-x;
+ border-bottom: solid 1px #275da1;
+}
+
+header h1 {
+ letter-spacing: -1px;
+ font-size: 72px;
+ color: #fff;
+ line-height: 1;
+ margin-bottom: 0.2em;
+ width: 540px;
+}
+
+header h2 {
+ font-size: 26px;
+ color: #9ddcff;
+ font-weight: normal;
+ line-height: 1.3;
+ width: 540px;
+ letter-spacing: 0;
+}
+
+.inner {
+ position: relative;
+ width: 940px;
+ margin: 0 auto;
+}
+
+#content-wrapper {
+ border-top: solid 1px #fff;
+ padding-top: 30px;
+}
+
+#main-content {
+ width: 690px;
+ float: left;
+}
+
+#main-content img {
+ max-width: 100%;
+}
+
+aside#sidebar {
+ width: 200px;
+ padding-left: 20px;
+ min-height: 504px;
+ float: right;
+ background: transparent url(../images/sidebar-bg.jpg) 0 0 no-repeat;
+ font-size: 12px;
+ line-height: 1.3;
+}
+
+aside#sidebar p.repo-owner,
+aside#sidebar p.repo-owner a {
+ font-weight: bold;
+}
+
+#downloads {
+ margin-bottom: 40px;
+}
+
+a.button {
+ width: 134px;
+ height: 58px;
+ line-height: 1.2;
+ font-size: 23px;
+ color: #fff;
+ padding-left: 68px;
+ padding-top: 22px;
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+}
+a.button small {
+ display: block;
+ font-size: 11px;
+}
+header a.button {
+ position: absolute;
+ right: 0;
+ top: 0;
+ background: transparent url(../images/github-button.png) 0 0 no-repeat;
+}
+aside a.button {
+ width: 138px;
+ padding-left: 64px;
+ display: block;
+ background: transparent url(../images/download-button.png) 0 0 no-repeat;
+ margin-bottom: 20px;
+ font-size: 21px;
+}
+
+code, pre {
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
+ color: #222;
+ margin-bottom: 30px;
+ font-size: 13px;
+}
+
+code {
+ background-color: #f2f8fc;
+ border: solid 1px #dbe7f3;
+ padding: 0 3px;
+}
+
+pre {
+ padding: 20px;
+ background: #fff;
+ text-shadow: none;
+ overflow: auto;
+ border: solid 1px #f2f2f2;
+}
+pre code {
+ color: #2879d0;
+ background-color: #fff;
+ border: none;
+ padding: 0;
+}
+
+ul, ol, dl {
+ margin-bottom: 20px;
+}
+
+
+/* COMMON STYLES */
+
+hr {
+ height: 0;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ border: 0;
+ border-top: solid 1px #ddd;
+}
+
+table {
+ width: 100%;
+ border: 1px solid #ebebeb;
+}
+
+th {
+ font-weight: 500;
+}
+
+td {
+ border: 1px solid #ebebeb;
+ text-align: center;
+ font-weight: 300;
+}
+
+form {
+ background: #f2f2f2;
+ padding: 20px;
+
+}
+
+
+/* GENERAL ELEMENT TYPE STYLES */
+
+#main-content h1 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: 2.8em;
+ letter-spacing: -1px;
+ color: #474747;
+}
+
+#main-content h1:before {
+ content: "/";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -0.9em;
+}
+
+#main-content h2 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: 22px;
+ font-weight: bold;
+ margin-bottom: 8px;
+ color: #474747;
+}
+#main-content h2:before {
+ content: "//";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -1.5em;
+}
+
+#main-content h3 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: 18px;
+ font-weight: bold;
+ margin-top: 24px;
+ margin-bottom: 8px;
+ color: #474747;
+}
+
+#main-content h3:before {
+ content: "///";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -2em;
+}
+
+#main-content h4 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: 15px;
+ font-weight: bold;
+ color: #474747;
+}
+
+h4:before {
+ content: "////";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -2.8em;
+}
+
+#main-content h5 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: 14px;
+ color: #474747;
+}
+h5:before {
+ content: "/////";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -3.2em;
+}
+
+#main-content h6 {
+ font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-size: .8em;
+ color: #474747;
+}
+h6:before {
+ content: "//////";
+ color: #9ddcff;
+ padding-right: 0.3em;
+ margin-left: -3.7em;
+}
+
+p {
+ margin-bottom: 20px;
+}
+
+a {
+ text-decoration: none;
+}
+
+p a {
+ font-weight: 400;
+}
+
+blockquote {
+ font-size: 1.6em;
+ border-left: 10px solid #e9e9e9;
+ margin-bottom: 20px;
+ padding: 0 0 0 30px;
+}
+
+ul {
+ list-style: disc inside;
+ padding-left: 20px;
+}
+
+ol {
+ list-style: decimal inside;
+ padding-left: 3px;
+}
+
+dl dd {
+ font-style: italic;
+ font-weight: 100;
+}
+
+footer {
+ background: transparent url('../images/hr.png') 0 0 no-repeat;
+ margin-top: 40px;
+ padding-top: 20px;
+ padding-bottom: 30px;
+ font-size: 13px;
+ color: #aaa;
+}
+
+footer a {
+ color: #666;
+}
+footer a:hover {
+ color: #444;
+}
+
+/* MISC */
+.clearfix:after {
+ clear: both;
+ content: '.';
+ display: block;
+ visibility: hidden;
+ height: 0;
+}
+
+.clearfix {display: inline-block;}
+* html .clearfix {height: 1%;}
+.clearfix {display: block;}
+
+/* #Media Queries
+================================================== */
+
+/* Smaller than standard 960 (devices and browsers) */
+@media only screen and (max-width: 959px) {}
+
+/* Tablet Portrait size to standard 960 (devices and browsers) */
+@media only screen and (min-width: 768px) and (max-width: 959px) {
+ .inner {
+ width: 740px;
+ }
+ header h1, header h2 {
+ width: 340px;
+ }
+ header h1 {
+ font-size: 60px;
+ }
+ header h2 {
+ font-size: 30px;
+ }
+ #main-content {
+ width: 490px;
+ }
+ #main-content h1:before,
+ #main-content h2:before,
+ #main-content h3:before,
+ #main-content h4:before,
+ #main-content h5:before,
+ #main-content h6:before {
+ content: none;
+ padding-right: 0;
+ margin-left: 0;
+ }
+}
+
+/* All Mobile Sizes (devices and browser) */
+@media only screen and (max-width: 767px) {
+ .inner {
+ width: 93%;
+ }
+ header {
+ padding: 20px 0;
+ }
+ header .inner {
+ position: relative;
+ }
+ header h1, header h2 {
+ width: 100%;
+ }
+ header h1 {
+ font-size: 48px;
+ }
+ header h2 {
+ font-size: 24px;
+ }
+ header a.button {
+ background-image: none;
+ width: auto;
+ height: auto;
+ display: inline-block;
+ margin-top: 15px;
+ padding: 5px 10px;
+ position: relative;
+ text-align: center;
+ font-size: 13px;
+ line-height: 1;
+ background-color: #9ddcff;
+ color: #2879d0;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ }
+ header a.button small {
+ font-size: 13px;
+ display: inline;
+ }
+ #main-content,
+ aside#sidebar {
+ float: none;
+ width: 100% ! important;
+ }
+ aside#sidebar {
+ background-image: none;
+ margin-top: 20px;
+ border-top: solid 1px #ddd;
+ padding: 20px 0;
+ min-height: 0;
+ }
+ aside#sidebar a.button {
+ display: none;
+ }
+ #main-content h1:before,
+ #main-content h2:before,
+ #main-content h3:before,
+ #main-content h4:before,
+ #main-content h5:before,
+ #main-content h6:before {
+ content: none;
+ padding-right: 0;
+ margin-left: 0;
+ }
+}
+
+/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
+@media only screen and (min-width: 480px) and (max-width: 767px) {}
+
+/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
+@media only screen and (max-width: 479px) {}
|
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.github.com/$1.html
RedirectMatch 301 / http://ealdent.github.com/
-# </IfModule>
\ No newline at end of file
+</IfModule>
|
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.github.com/$1.html
RedirectMatch 301 / http://ealdent.github.com/
-</IfModule>
\ No newline at end of file
+# </IfModule>
\ No newline at end of file
|
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.html
+RedirectMatch 301 /(.*)/ http://ealdent.github.com/$1.html
RedirectMatch 301 / http://ealdent.github.com/
</IfModule>
\ No newline at end of file
|
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
+RedirectMatch 301 /(.*)/(.*)/(.*)/ http://ealdent.github.com/$1/$2/$3/$4.html
RedirectMatch 301 / http://ealdent.github.com/
</IfModule>
\ No newline at end of file
|
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 %{REQUEST_FILENAME} !-d
+RedirectMatch 301 /(.*)/(.*)/ http://ealdent.github.com/$2.html
+RedirectMatch 301 / http://ealdent.github.com/
+</IfModule>
\ No newline at end of file
|
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.com$1.html
\ No newline at end of file
|
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
+RedirectMatch 301 linguistic-homogenization-and-power/ http://ealdent.github.com/2009/01/12/linguistic-homogenization-and-power.html
\ No newline at end of file
|
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-and-power.html
\ No newline at end of file
|
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
--- a/_posts/2007-08-05-forays-into-the-blagoblag.html
+++ b/_posts/2007-08-05-forays-into-the-blagoblag.html
@@ -1,10 +1,9 @@
---
layout: post
title: "Forays into the Blagoblag"
-url: /2007/08/05/forays-into-the-blagoblag/index.html
tags: ["blagoblag", "blagoblag", "childhood", "childhood"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/08/05/forays-into-the-blagoblag/" target="_blank">http://ealdent.wordpress.com/2007/08/05/forays-into-the-blagoblag/</a><br /><br />
Well, I have finally decided to join the <a href="http://xkcd.com/181/">Blagoblag</a>. This will be my second blogging attempt. The <a href="http://www.blogigo.de/ealdent">first </a>was forced as part of one of my German classes. I actually got into it after a while, but when the class ended, so did my enthusiasm. I believe this confirms the fact that I am in love with anything school related. In fact, when I was a child, <span>playing school</span> was my favorite game. That's fairly understandable for pre-school children, but I still enjoyed it even after I started going to school.
So anyhow, I'm really writing this blog because I forget who I am every couple of years. I hear about things I did five to ten years ago and wonder, who the bloody hell was this guy doing this crap? So maybe here will be a record of who I was when and then I can look back over these posts and remember.
|
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 Blagoblag"
+url: /2007/08/05/forays-into-the-blagoblag/index.html
tags: ["blagoblag", "blagoblag", "childhood", "childhood"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/08/05/forays-into-the-blagoblag/" target="_blank">http://ealdent.wordpress.com/2007/08/05/forays-into-the-blagoblag/</a><br /><br />
Well, I have finally decided to join the <a href="http://xkcd.com/181/">Blagoblag</a>. This will be my second blogging attempt. The <a href="http://www.blogigo.de/ealdent">first </a>was forced as part of one of my German classes. I actually got into it after a while, but when the class ended, so did my enthusiasm. I believe this confirms the fact that I am in love with anything school related. In fact, when I was a child, <span>playing school</span> was my favorite game. That's fairly understandable for pre-school children, but I still enjoyed it even after I started going to school.
So anyhow, I'm really writing this blog because I forget who I am every couple of years. I hear about things I did five to ten years ago and wonder, who the bloody hell was this guy doing this crap? So maybe here will be a record of who I was when and then I can look back over these posts and remember.
|
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", "conferences", "japan", "japan", "pecha kucha", "pecha kucha", "performance art", "performance art", "presentations", "presentations", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/03/pecha-kucha/" target="_blank">http://ealdent.wordpress.com/2007/09/03/pecha-kucha/</a><br /><br />
I came across <a href="http://www.wired.com/techbiz/media/magazine/15-09/st_pechakucha#" title="Wired - Pecha Kucha" target="_blank">this article</a> in Wired today about a new format for presentations called Pecha Kucha, which comes from the Japanese word for <em>chit-chat</em>. It was invented by a foreign architect duo Mark Dytham (British) and Astrid Klein (Italian) living in Japan who saw a need for a way to showcase their work that blossomed quickly into a international fad. Four years after its inception, there are Pecha Kucha nights in over 80 cities worldwide.
The idea is simple: 20 slides. 20 seconds each. That's 400 seconds = 6 minutes 40 seconds. The result is a sort of performance art that allows people to network and showcase their work. Pecha Kucha seems to be bleeding over into the mainstream business world based on a couple of quick YouTube searches. I think it should bleed over into the scientific. I see two other places that would benefit greatly from it:
<!--more-->
<ol>
<li>Academic Conferences. In addition to a poster session, include a Pecha Kucha session where 14 posters get presented in Pecha Kucha format. Posters usually offer a more high-level view of some particular bit of research and so the Pecha Kucha is the perfect format for a quick presentation. With fewer nitty-gritty details, this format would force the presenter to consider how best to present the architecture and underlying ideas so as to not bore the audience. (Yes I am hoping for a miracle)</li>
<li>Student Presentations. How many times have I fallen asleep in student presentations where detailed algorithms or equations are displayed on the slide. I don't learn well off of clunky slides presented in dull monotones or heavily accented speech. Therefore, such slides shove me into a pitched battle of the eyelids with the constant fear of ambush by microsleep. Speeding the presentation up and forcing the presenter to consider the flow of their presentation would be an enormous bonus. Plus we wouldn't have to waste four class periods for 10-20 people to present their stuff. It could be done in two. I think Pecha Kucha forces the presenter to be more aware and more skillful in the design of their presentation which should actually improve their presentation skills far more than 80 detailed slides given in broken, unrehearsed mumbles.</li>
</ol>
If you agree with me, talk to your department/supervisor and start changing things so that I don't have to have the Pavlovian response of falling asleep whenever I hear the word <em>presentation</em>.
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=9NZOt6BkhUg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=9NZOt6BkhUg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://uk.youtube.com/watch?v=9NZOt6BkhUg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="left">See also: <a href="http://www.pecha-kucha.org/" title="Pecha Kucha" target="_blank">pecha-kucha.org</a></p>
diff --git a/_posts/2007-09-14-edwards-on-msnbc.html b/_posts/2007-09-14-edwards-on-msnbc.html
index 58d7839..1568894 100644
--- a/_posts/2007-09-14-edwards-on-msnbc.html
+++ b/_posts/2007-09-14-edwards-on-msnbc.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Edwards on MSNBC"
tags: ["W", "W", "candidates", "candidates", "edwards", "edwards", "endless war", "endless war", "evil politicians", "evil politicians", "iraq war", "iraq war", "kucinich", "kucinich", "media", "media", "obama", "obama", "politics", "politics", "presidential election", "presidential election", "vote", "vote", "war", "war"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/14/edwards-on-msnbc/" target="_blank">http://ealdent.wordpress.com/2007/09/14/edwards-on-msnbc/</a><br /><br />
Well, I didn't get a chance to listen to Edwards last night on MSNBC, since I apparently can't work a TV anymore. I thought I was watching MSNBC, it was actually NBC and then after Senator Jack Reed of Rhode Island made the Democratic response and there was no John Edwards, I realized my mistake. Thanks to the wonders of the giant tubes that make up the interwebs, I was able to watch his speech:
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=3u9Hib5LFOw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=3u9Hib5LFOw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=3u9Hib5LFOw&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="left">I was pretty happy about the speech, though it came off as disappointingly weak at the end. He made a convincing, fairly non-aggressive case against prolonging the war, arguing from simple practicality. It seems this approach could possibly be better at persuading conservatives and fence-sitters than saying that Bush and the military are terrorists (ala Rosie O'Donnell). And yes I know she didn't <em>actually</em> say that. What was weak in Edwards' speech was the whole "timeline" business. It annoys me whenever I hear it. It's so open-ended. If by timeline, he means in three weeks, then I can live with that.</p>
<p align="left">Another problem here is that while Edwards has come out on the side of peace, he still voted for the war: a serious failure in judgment. And I don't even listen to Obama (aka <a href="http://mendicantbug.com/2007/08/10/barack-obomba/" title="Barack Obama - aka Obomba" target="_blank">Obomba</a>) when he chastises other candidates for voting for the war. Based on his long history of voting to prolong W's endless war, I have little doubt that Obama would have been right there with his "aye" raised high when called upon to vote to overthrow a sovereign nation whose leadership we installed.</p>
<p align="left">It returns to the fact that there is only one choice: Dennis Kucinich. Electability is a term invented by the corporate-sponsored media. Real electability is what happens when you actually go out and vote with your mind and heart instead of voting because of what some plastic face on a TV screen tells you to do. Dennis Kucinich is the only one who has opposed this war at every turn, the only one who has a real plan to bring our troops home. Edwards was right when he said the only way to force a political solution between Shiites and Sunnis is for us to get out of there. Kucinich has been saying that all along. We should hold all of these democrats accountable and vote for the only one with the clarity of mind and morals to do what was right from the very beginning and elect Kucinich.</p>
diff --git a/_posts/2007-09-16-willow-and-the-frisbee.html b/_posts/2007-09-16-willow-and-the-frisbee.html
index b556409..5615b0e 100644
--- a/_posts/2007-09-16-willow-and-the-frisbee.html
+++ b/_posts/2007-09-16-willow-and-the-frisbee.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Willow and the Frisbee"
tags: ["dogs", "dogs", "fair", "fair", "frisbee", "frisbee", "york", "york"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/16/willow-and-the-frisbee/" target="_blank">http://ealdent.wordpress.com/2007/09/16/willow-and-the-frisbee/</a><br /><br />
This weekend we visited Donna's family in York, Pennsylvania. Mainly it was a chance to see family and friends and we also went to the York Interstate Fair. Pictures from that will be posted when I get a chance, but here is a video I took of Willow from my phone.
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=3NKip7Tp-yU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=3NKip7Tp-yU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=3NKip7Tp-yU&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html b/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
index af9993c..0ed23f1 100644
--- a/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
+++ b/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Avast, ye scurvy blagoblag!"
tags: ["accents", "accents", "blagoblag", "blagoblag", "pirates", "pirates", "talk like a pirate day", "talk like a pirate day"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/19/avast-ye-scurvy-blagoblag/" target="_blank">http://ealdent.wordpress.com/2007/09/19/avast-ye-scurvy-blagoblag/</a><br /><br />
Language Log has <a href="http://itre.cis.upenn.edu/~myl/languagelog/archives/004928.html" title="Talk like a pirate" target="_blank">a nice salute</a> to Talk Like a Pirate Day, where I found this clip:
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=2tL1jbs0ppQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=2tL1jbs0ppQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=2tL1jbs0ppQ&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
I used to have a pretty good pirate accent, but lately it's been turning into an Irish leprechaun accent. <em>Avast ye scurvy laddy, come look at me pot o' gold</em>. I'll have to practice. Oddly enough, my irish accent degenerates into a pseudo-pirate imitation. My current best is ze Frenchman and my Scottish brogue. Be sure to check out that Language Log post for the pirate ergonomic keyboard.
diff --git a/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html b/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
index 45970fd..ebf33e8 100644
--- a/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
+++ b/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
@@ -1,10 +1,10 @@
---
layout: post
title: "The seventh son of a seventh son"
tags: ["books", "books", "dark fantasy", "dark fantasy", "dark is rising", "dark is rising", "entertainment", "entertainment", "fantasy", "fantasy", "movies", "movies", "susan cooper", "susan cooper"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/28/the-seventh-son-of-a-seventh-son/" target="_blank">http://ealdent.wordpress.com/2007/09/28/the-seventh-son-of-a-seventh-son/</a><br /><br />
I read <em>The Dark is Rising</em> by Susan Cooper a few years ago at the insistence of my ex-brother-in-law. It was one of his favorite books from his childhood and I believe he put it near the level of <em>The Chronicles of Narnia</em> and <em>Lord of the Rings</em> (but not quite). I figured that was bloody high praise, but waited a while before I got around to it. I'm not above reading kids books and seeing kids movies. Especially when they promise to be dark. I love dark fantasy. So anyhow, I enjoyed the book, though there were parts that were a little slow.
And now of course, there is a movie coming out next Friday. I'm curious how well they will pull it off. I never read the whole series, but in the first book there was a lot of mystery about the back story. Hopefully they won't destroy that feeling.
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=0-4lycCvOE8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=0-4lycCvOE8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=0-4lycCvOE8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-09-29-wheres-rudy.html b/_posts/2007-09-29-wheres-rudy.html
index dd23d52..4e130df 100644
--- a/_posts/2007-09-29-wheres-rudy.html
+++ b/_posts/2007-09-29-wheres-rudy.html
@@ -1,20 +1,20 @@
---
layout: post
title: "Where's Rudy?"
tags: ["celebrities", "celebrities", "election", "election", "evil politicians", "evil politicians", "fundraising", "fundraising", "giuliani", "giuliani", "gop", "gop", "hispanics", "hispanics", "politics", "politics", "presidential election", "presidential election", "racism", "racism", "republican", "republican"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/29/wheres-rudy/" target="_blank">http://ealdent.wordpress.com/2007/09/29/wheres-rudy/</a><br /><br />
Came across <a href="http://therealrudy.org/" title="the real rudy giuliani" target="_blank">this funny little video</a> asking the simple question, where was Rudy? Rudy Giuliani had "scheduling issues" and so couldn't make it to the Republican Debate discussing issues pertaining to "Black America." The video explains exactly what he was doing.
<ol>
<li>Morning press conference announcing Pete Wilson supports him (more on Pete Wilson below the jump)</li>
<li>Evening fund raiser featuring Bo Derrick and Dennis Miller where he raised $100k.</li>
</ol>
The video leaves you with the question: "Where are his priorities?" Well, obviously not with Black America. And Republicans never really have bothered very much with Black America, so why start now. For a party that supposedly opposes abortion, they do very little to help the segment of the population who is forced into having the most of them. Black teens historically have twice as many abortions as hispanics and nearly three times as many as non-Hispanic whites. Of course, that doesn't matter to Rudy either.
I sure hope this joker doesn't get elected.
-<p align="center"><!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=VQ0GupTQVpA=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=VQ0GupTQVpA=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=VQ0GupTQVpA&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
Pete Wilson is a former Republican governor of California. Why anyone cares whether he's endorsing a candidate is beyond me, though I suppose there are a few in California who might care. Of course, there is no way in hell that Rudy will take California if he does get the GOP nod, but there you have it. I guess the benefit is in helping him get the GOP nod in the first place.
So in my quest to find out a little bit about Pete Wilson, and I do stress <em>little</em>, I happened on <a href="http://video1.washingtontimes.com/dinan/2007/09/the_blessing_or_curse_of_pete.html" title="washington times - blessing and curse of pete wilson" target="_blank">this nice little piece</a> in the Washington Times about the blessing/curse of his endorsement. Stephen Dinan reports that Wilson is often credited with turning California into a permanent blue state by alienating immigrants with Prop 187 - an evil little bit of legislation from back in 1994 designed to deny immigrants social services, health care, and public education. It was struck down by the federal courts and Gray Davis later let the case drop. However, it must make you wonder as a hispanic voter in California, whether any Republican can be trusted or is worth voting for. Of course, Republicans haven't done much to change things since.
But I think Rudy getting Pete's endorsement is indicative of the kind of presidency we'd see from this guy.
diff --git a/_posts/2007-09-30-daedalerberus.html b/_posts/2007-09-30-daedalerberus.html
index 8170efa..11244db 100644
--- a/_posts/2007-09-30-daedalerberus.html
+++ b/_posts/2007-09-30-daedalerberus.html
@@ -1,12 +1,12 @@
---
layout: post
title: "Daedalerberus"
tags: ["cerberus", "cerberus", "christmas", "christmas", "costumes", "costumes", "dogs", "dogs", "greek mythology", "greek mythology", "halloween", "halloween", "pets", "pets", "reindeer", "reindeer", "reindog", "reindog"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/30/daedalerberus/" target="_blank">http://ealdent.wordpress.com/2007/09/30/daedalerberus/</a><br /><br />
I came across this dog costume on <a href="http://thegreenman.net.au/mt/archives/000479.html" title="the Green Man" target="_blank">the Green Man</a>. I think Daedalus would look hilarious in it. Last Christmas, we dressed him as Daedal the red-nosed reindog. Just need to find some stuffed animals and someone who knows how to sew...
<p><a><img src="http://ealdent.files.wordpress.com/2007/09/fluffy.jpg" alt="Cerberus in New York - The Green Man" /></a></p>
<!--more-->
And Daedal the red-nosed reindog:
<p><img src="http://ealdent.files.wordpress.com/2007/09/daedal_rednosed1.jpg" alt="Daedal the Red Nosed Reindog" /></p>
-<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=fjlkFw16IvY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=fjlkFw16IvY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=fjlkFw16IvY&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-01-what-people-hear.html b/_posts/2007-10-01-what-people-hear.html
index 62668a2..f9273db 100644
--- a/_posts/2007-10-01-what-people-hear.html
+++ b/_posts/2007-10-01-what-people-hear.html
@@ -1,9 +1,9 @@
---
layout: post
title: "What people hear"
tags: ["entropy", "entropy", "humor", "humor", "information", "information", "information theory", "information theory", "memes", "memes", "memetics", "memetics", "presentations", "presentations"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/01/what-people-hear/" target="_blank">http://ealdent.wordpress.com/2007/10/01/what-people-hear/</a><br /><br />
While on <a href="http://mendicantbug.com/category/presentations/" title="The Mendicant Bug - presentations">the topic</a> of presentations, I came across this video in <a href="http://www.presentationzen.com/presentationzen/2007/04/powerpoint_some.html" title="Presentation Zen" target="_blank">the archives</a> of Presentation Zen and then <a href="http://www.badastronomy.com/bablog/2007/09/30/chicken/" title="Bad Astronomy - Chicken" target="_blank">again</a> on Bad Astronomy the same day. Coincidence or some hidden <a href="http://en.wikipedia.org/wiki/Meme#Memetics" title="Memetics" target="_blank">memetic</a> process?
-<p align="center"> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=yL_-1d9OSdk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=yL_-1d9OSdk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=yL_-1d9OSdk&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
I think it's an awesome example of how the worst PowerPoint presentations actually come across: as messages with zero entropy (that is, no information).
diff --git a/_posts/2007-10-06-mrs-mcgrath.html b/_posts/2007-10-06-mrs-mcgrath.html
index eda6ed9..e972186 100644
--- a/_posts/2007-10-06-mrs-mcgrath.html
+++ b/_posts/2007-10-06-mrs-mcgrath.html
@@ -1,87 +1,87 @@
---
layout: post
title: "Mrs. McGrath"
tags: ["anti-war", "anti-war", "folk", "folk", "france", "france", "great britain", "great britain", "history", "history", "lyrics", "lyrics", "music", "music", "napoleon", "napoleon", "peninsular war", "peninsular war", "pete seeger", "pete seeger", "songs", "songs", "spain", "spain"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/06/mrs-mcgrath/" target="_blank">http://ealdent.wordpress.com/2007/10/06/mrs-mcgrath/</a><br /><br />
While listening to Pandora a few months ago I heard "Mrs. McGrath" by Pete Seeger and found it catchy, but like most songs I hear on Pandora, it passed and didn't come again for a long while. But today I was sitting around and started singing the chorus:
<blockquote><em> Would you too-rye-ah
Foddle-diddle-dah
toorye oorye oorye-ah
Would you toorye-ah
Foddle diddle dah
toorye oorye oorye-ah</em><em>
</em></blockquote>
Feeling the need to pursue the song and listen to the full version, I found the name and then found the version I liked on iTunes. Of course, sharing is difficult, but I did find a version on YouTube by Raymond Crooke, bless him. The way Pete Seeger sang it was a little more clean and having the crowd singing the chorus in the background stirs me deeply in a way that Raymond doesn't quite capture, but his version is the more traditional one. Pete Seeger was singing that concert at Carnegie Hall in 1963, and I'm guessing the audience was a bunch of hippies.
-<p align="center"><!--more--> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=vqMU95Zen8M=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><!--more--> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=vqMU95Zen8M=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=vqMU95Zen8M&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
The song is an Irish folk song almost two hundred years old, dating back to a Dublin printing of the lyrics in 1815. It is also known as "Mrs. McGraw." In the song, Mrs. McGrath watches her son go to war as a soldier and waits for seven long years as the <a href="http://en.wikipedia.org/wiki/Peninsular_War" title="Peninsular War between Britain and France" target="_blank">Peninsular Wars</a> between Britain and Napoleon play out. On the fifth of May, a cannonball took off both her son's legs and he returns to her on wooden pegs.
Napoleon instituted a blockade of Europe against England in 1806. He then carried out a stealthy invasion of Spain in 1808 and in a <em>coup de main</em>, overthrew the government without any hopes for a Spanish military reprisal. Charles IV abdicated, leaving Napoleon's brother Joseph to assume the throne. However, Joseph was completely unwanted in Spain and a popular uprising ensued. The French forces put down the rebellion, inspiring the painting by Goya "The Third of May." The US should take a lesson here. Ruled by kings for centuries and then Napoleon comes in and puts up a government and the Spanish reject it. Iraq was taken in a <em>coup de main</em>, as well. Britain entered the war later that year.
<p><img src="http://ealdent.files.wordpress.com/2007/10/goya_3rdofmay.jpg" alt="The Third of May" /></p>
Mrs. McGrath's son Ted says his legs were swept away on the fifth of May, and I've been trying to figure out just what event this might be alluding to. The uprising in Madrid occurred on May 2, 1808 and was put down the same day. The prisoners were executed the next day. This was before British involvement, which began several months later in August. There was fighting in Portugal around May 10th between Wellesley (Britain) and Soult (France) in 1809. Then in 1811, there was the <a href="http://en.wikipedia.org/wiki/Battle_of_Fuentes_de_Onoro" title="Battle of Fuentes de Onoro" target="_blank"><em>Battle of Fuentes de Onoro</em></a>, from May 3-5. My guess is this is the battle where Ted lost his legs.
Interestingly, the term <em>guerrilla</em> entered English around this time. There were groups of Spanish irregulars who opposed the French, and the British gave them aid. The Spanish called these skirmishes <em>guerra de guerrillas (</em>"war of little wars").
The song is about more than just a mother's worry for her son at war and her lament for his lost legs. It's often considered an anti-war song. The mother rails against "all foreign wars" in the final verse. Anti-war sentiment is nothing new but many people seem to dismiss it as being for the hippies. I think it's cool that this song became popular in Ireland and was printed up so soon after the end of the war.
<blockquote> "Oh, Mrs. McGrath," the sergeant said
"Would you like to make a soldier out of your son Ted
With a scarlett coat and a big cocked hat
Now, Mrs. McGrath, wouldn't you like that?"
Chorus:
Would you too-rye-ah
Foddle-diddle-dah
toorye oorye oorye-ah
Would you toorye-ah
Foddle diddle dah
toorye oorye oorye-ah
So, Mrs. McGrath sat on the sea shore
For the space of seven long years or more
'Til she spied a ship come a sailin on the sea
"Hallah-loo babbah-loo and I think it is he"
Chorus
"Oh captain dear, where have you been
Or have you been sailing on the Meditereen
Have you any tidings of my son Ted
Is the poor boy living or is he dead?"
Chorus
Then up steps Ted without any legs
And in their place, two wooden pegs
She kissed him a dozen times or two
"Holy Moses, it isn't you"
Chorus
"Oh was you drunk or was you blind
When you left your two fine legs behind
Or was it walking upon the sea
Wore your two fine legs from the knees away?"
Chorus
"I wasn't drunk and I wasn't blind
When I left my two fine legs behind
But a cannon ball on the fifth of May
Swept my two fine legs from the knees away"
Chorus
"Oh, Teddy my boy," the widow cried
"Your two fine legs were your mother's pride
I'd rather have my Ted as he used to be
Than the King of France and his whole navy"
Chorus
"All foreign wars I do proclaim
Between Don John and the King of Spain
By the heavens I'll make 'em rue the time
They swept the legs from a child of mine!"
Chorus</blockquote>
diff --git a/_posts/2007-10-07-real-x-wing-disintegrates.html b/_posts/2007-10-07-real-x-wing-disintegrates.html
index 0681344..22ccc07 100644
--- a/_posts/2007-10-07-real-x-wing-disintegrates.html
+++ b/_posts/2007-10-07-real-x-wing-disintegrates.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Real X-Wing Disintegrates"
tags: ["model rocketry", "model rocketry", "r2d2", "r2d2", "real sci-fi", "real sci-fi", "rockets", "rockets", "star wars", "star wars", "x-wing", "x-wing"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/07/real-x-wing-disintegrates/" target="_blank">http://ealdent.wordpress.com/2007/10/07/real-x-wing-disintegrates/</a><br /><br />
Apparently I'm the last one to hear <a href="http://gizmodo.com/gadgets/star-wars/rocket+powered-21+foot-long-x+wing-model-actually-flies-305976.php" title="X-wing" target="_blank">about this</a> since I was the 3166th Digg, but Andy Woerner and a group of friends have built a working X-wing fighter powered by solid-fuel rocket engines. This bad boy is 21 feet long and complete with a model R2D2. It was set to launch yesterday. The results were about what you'd expect. I don't think R2 managed to eject though, poor little droid.
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=ogYrvEEM0Ts=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=ogYrvEEM0Ts=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=ogYrvEEM0Ts&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-13-giant-hurt-ball.html b/_posts/2007-10-13-giant-hurt-ball.html
index 296e477..87ee5fc 100644
--- a/_posts/2007-10-13-giant-hurt-ball.html
+++ b/_posts/2007-10-13-giant-hurt-ball.html
@@ -1,34 +1,34 @@
---
layout: post
title: "Giant hurt ball"
tags: ["astronomy", "astronomy", "cassini probe", "cassini probe", "craters", "craters", "death star", "death star", "greek mythology", "greek mythology", "imagination", "imagination", "nasa", "nasa", "parody", "parody", "planetology", "planetology", "space", "space", "star wars", "star wars"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/13/giant-hurt-ball/" target="_blank">http://ealdent.wordpress.com/2007/10/13/giant-hurt-ball/</a><br /><br />
If you were going to build a death star, then hide it, what would it look like? SciAm Observations today has <a href="http://blog.sciam.com/index.php?title=new_image_of_saturn_s_moon_iapetus_as_a&more=1&c=1&tb=1&pb=1&ref=rss" title="SciAm Observations - Iapetus backgrounds" target="_blank">an array of desktop backgrounds</a> of the moon <a href="http://en.wikipedia.org/wiki/Iapetus_%28moon%29" title="Iapetus" target="_blank">Iapetus</a>, which orbits Saturn. Iapetus is an especially fascinating moon for many reasons. For starters, it has a giant impact crater. Also there is an equatorial ridge which encircles the entire moon, making it slightly resemble a walnut. The moon is heavily pockmarked with craters.
<table align="center" border="0">
<tr>
<td><a href="http://www.nasa.gov/mission_pages/cassini/multimedia/pia08384.html" target="_blank"><img src="http://ealdent.files.wordpress.com/2007/10/iapetus.jpg" alt="Iapetus - a moon of Saturn" /></a></td>
</tr>
<tr>
<td>
<p class="comments-feed">Image courtesy of NASA and JPL. Taken by the Cassini probe.</p>
</td>
</tr>
</table>
<h3></h3>
<h3><!--more--></h3>
<h3>Imagine Iapetus</h3>
Imagine for a moment, you are one of the first explorers of Iapetus in your advanced spacesuit that lets you move about freely (and with booster packs). You land in the center of the large impact crater, which lies in the bright region of the planet known as <em>Roncevaux Terra</em>. Beneath you is a deep crust of ice and the temperatures outside are less than -220 degrees Fahrenheit. Across the sky hangs Saturn, like a giant. Even at night on Iapetus, Saturn's light is bright enough to guide you. You stare off into the distance. About 150 miles away is the scarp of the crater, the wall that climbs up out of it. It's basically a ring of giant mountains, the only visible feature in all directions. Mountains over 9 miles high. Off in the direction of the pole, the mountains dip slightly, leading off to another, smaller impact crater.
You decide to head towards the equator of the moon. After many long bounces (the gravity is 1/50th of Earth's), you make the long journey over the icy, pockmarked landscape. In a few places, there was no ice and the ground was a dingy reddish-brown. Finall, in the distance you see the first signs of the equatorial ridge creeping over the horizon. As you get closer, it stretches into the sky. The ground stays mostly flat as you approach, there are no foot hills. Once you finally reach the end of the plain and look up at the peaks. They are towering over you at a staggering height of 12 miles.
Using your booster packs and the low gravity, you make it to the top and survey this bizarre world. Half covered in ice and half in dirt, like a spherical yin-yang symbol. Above you are the swirling clouds of Saturn and the rings, glittering in the morning light. A very small, but bright sun creeps over the horizon, turning this small world into a glittering polar landscape.
<h3>Strange Similarities</h3>
<a href="http://ealdent.files.wordpress.com/2007/10/deathstariapetus.jpg" title="Death Star and Iapetus - Saturnâs moon"><img src="http://ealdent.files.wordpress.com/2007/10/deathstariapetus.jpg" alt="Death Star and Iapetus - Saturnâs moon" width="490" /></a>
Iapetus was named after <a href="http://en.wikipedia.org/wiki/Iapetus_%28mythology%29" title="Iapetus in Greek mythology" target="_blank">a titan</a> from Greek Mythology and many of the craters are named after characters from a French novel. Iapetus was the father of the titans Atlas and Prometheus. The dark region of Iapetus was named after <a href="http://en.wikipedia.org/wiki/Giovanni_Domenico_Cassini" title="Giovanni Domenico Cassini" target="_blank">Giovanni Domenico Cassini</a>, the Italian-French astronomer who discovered the moon on October 25, 1671 and first theorized that half of Iapetus must be dark and half light, since it seemed to disappear when it was on one side of Saturn. He named it one of the Louisian Stars (the <em>Sidera Lodoicea</em>) in honor of King Louis XIV.
What is bizarre to mean is its strange resemblance to the death star from Star Wars. If you wanted to build a death star and then hide it. What would it look like? The large impact crater would be the location of the giant laser used to destroy worlds. The equatorial ridge corresponds to the equatorial gulley on the death star. (And while this similarity occurred to me independently, I am by no means the first person to make this link as a quick google search will reveal.) Actually, it is usually Saturn's moon <a href="http://en.wikipedia.org/wiki/Mimas_%28moon%29" title="Mimas - Saturn's moon sometimes called the death star moon" target="_blank">Mimas</a> that has analogies drawn to it as being the death star moon.
And if you're in the mood for a really hilarious spoof of Star Wars epsiode 3, check out this video. It will also help you understand the post title. Skip to 2:13 (remaining time) if you're too impatient to watch it all.
-<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=R_aeMWC6IV4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=R_aeMWC6IV4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=R_aeMWC6IV4&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-21-previews-remixed.html b/_posts/2007-10-21-previews-remixed.html
index e967c6b..c93e913 100644
--- a/_posts/2007-10-21-previews-remixed.html
+++ b/_posts/2007-10-21-previews-remixed.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Previews Remixed"
tags: ["glengarry glenross", "glengarry glenross", "humor", "humor", "marc andreessen", "marc andreessen", "movies", "movies", "nsfw", "nsfw", "parodies", "parodies", "the shining", "the shining"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/21/previews-remixed/" target="_blank">http://ealdent.wordpress.com/2007/10/21/previews-remixed/</a><br /><br />
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=QipAqdomO3I=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=QipAqdomO3I=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=QipAqdomO3I&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
Saw <a href="http://blog.pmarca.com/2007/10/i-love-this-fil.html" target="_blank">this</a> on the blog of <a href="http://blog.pmarca.com/" target="_blank">Marc Andreessen</a>, co-founder of Netscape. Maybe NSFW, certainly the language is very intense, so if you're offended by the granddaddy f-word, it makes an appearance about 47 times (rough guess, I'm not gonna bother to count). In any case, it's a great example of what good editing can do. The best example of this I've seen is a classic that everyone has probably seen: Shining.
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=iVjl7gK4HGU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=iVjl7gK4HGU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=iVjl7gK4HGU&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-10-23-laptops-for-tanzania-part-2.html b/_posts/2007-10-23-laptops-for-tanzania-part-2.html
index d57470d..014c0c3 100644
--- a/_posts/2007-10-23-laptops-for-tanzania-part-2.html
+++ b/_posts/2007-10-23-laptops-for-tanzania-part-2.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Laptops for Tanzania part 2"
tags: ["charity", "charity", "facebook", "facebook", "friends", "friends", "laptops", "laptops", "razoo", "razoo", "tanzania", "tanzania"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/23/laptops-for-tanzania-part-2/" target="_blank">http://ealdent.wordpress.com/2007/10/23/laptops-for-tanzania-part-2/</a><br /><br />
<p align="justify">My friend Israel is trying to raise money for laptops for school kids in Tanzania. If you're on Facebook and have about 30 seconds, why not <a href="http://tinyurl.com/2b4udl" target="_blank">vote for him</a>? Razoo is a speed granting organization that gives money to small charitable projects. You can view his oh-so-pitiful video below. I've suggested he update it by putting on heavy eye makeup and getting under a sheet and lamenting the fact that only a few thousand Tanzanian kids graduate high school every year. They really could use your help, though and this requires you to spend no money!</p>
<p align="justify"> </p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1Fdqe7rKTto=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1Fdqe7rKTto=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=1Fdqe7rKTto&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-28-rube-goldberg-and-automata.html b/_posts/2007-10-28-rube-goldberg-and-automata.html
index f6c7e3e..9f23def 100644
--- a/_posts/2007-10-28-rube-goldberg-and-automata.html
+++ b/_posts/2007-10-28-rube-goldberg-and-automata.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Rube Goldberg and Automata"
tags: ["automata", "automata", "contraptions", "contraptions", "cool stuff", "cool stuff", "fun", "fun", "games", "games", "mouse trap", "mouse trap", "rube goldberg", "rube goldberg", "steampunk", "steampunk"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/28/rube-goldberg-and-automata/" target="_blank">http://ealdent.wordpress.com/2007/10/28/rube-goldberg-and-automata/</a><br /><br />
[digg=http://digg.com/design/Rube_Goldberg_and_Automata]
Rube Goldberg devices are quite fascinating. However, whenever I see one in practice (below), I am nagged the entire time by A) worry that something minor will go wrong, causing failure and a lot of work; B) wondering about how much time this wasted; and C) who is the person who has that kind of time, patience and space in their home to devote so much real estate to something ultimately pointless. That said, they are freaking cool. This is by far the most elaborate one I've seen that's actually real and not produced by people getting paid a lot of money. Of course there is the famous, much more elaborate <a href="http://blueballfixed.ytmnd.com/" title="Rube Goldberg Blue Ball Machine" target="_blank">Blue Ball Machine</a>, which has been known to captivate many a mind (hat tip for first showing me years ago to <a href="http://www.humphrelia.bluegosling.com" target="_blank">Josh</a>). Another crazy Rube Goldberg device below the jump.
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=hyvTjhcrLgg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=hyvTjhcrLgg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=hyvTjhcrLgg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<!--more-->
<a href="http://www.lycettebros.com/automata/auto.htm" target="_blank">The Modern Compendium of Miniature Automata</a> is quite a cool little site featuring some clockwork style machines done up as flash animations. While some of his points may be suspect, his creations are magnificent. Even better, you can make your own. When you visit the flash animation, you are presented with a book. Open the latch on the book and then pages will flip open. Click on "identify" to take you to the automaton you are looking at in the book. You can create your own by adjusting certain parameters. See if you can find mine amongst the horde.
<p><img src="http://ealdent.files.wordpress.com/2007/10/snizzlebot.png" alt="Snizzlebot - Miniature Automata" /></p>
These sorts of creations touch my <em>beauty nerve</em>. They exemplify what I find coolest about science and technology. They also harken back to the late 19th Century when science was new and the possibilities were limitless. They still are, just scarier, at least from my perspective (and of course, the possibilities were surely scary back then). Plus it's all very steampunk, which I love.
[googlevideo=http://video.google.com/videoplay?docid=-8664890805877937233]
diff --git a/_posts/2007-10-30-limbo.html b/_posts/2007-10-30-limbo.html
index 82d0acf..677bc11 100644
--- a/_posts/2007-10-30-limbo.html
+++ b/_posts/2007-10-30-limbo.html
@@ -1,27 +1,27 @@
---
layout: post
title: "Limbo"
tags: ["ads", "ads", "advertising", "advertising", "arnt jensen", "arnt jensen", "art", "art", "artistic", "artistic", "games", "games", "gears of war", "gears of war", "japanese horror", "japanese horror", "limbo", "limbo", "video games", "video games"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/30/limbo/" target="_blank">http://ealdent.wordpress.com/2007/10/30/limbo/</a><br /><br />
<p align="justify">[digg=http://digg.com/gaming_news/Art_in_Video_Games_and_the_Limbo_Game]I love how art evolves. Well sometimes I <a href="http://www.jasonvoos.com/jpol.html" target="_blank">hate it</a>, but usually it travels in interesting directions. One of my favorite new trends is art in video games, video games as art, and art in video game advertising. Andy Warhol helped bring art to pop culture and advertising. That hasn't stopped thousands of hacks from doing a lot of crummy advertising, but every once in a while you get something amazing. The same is true for video games.</p>
<h3><!--more-->7th Guest</h3>
<p align="justify">One of the first CD-ROM games we got for our brand new 486 way back in the day was <a href="http://en.wikipedia.org/wiki/7th_Guest" target="_blank">7th Guest</a>. It was a puzzle game based in a haunted mansion. Old Man Stauf was a beggar who started making amazing toys for children. And then the children started dying. You've been invited to dinner at the mansion, but the guests have begun disappearing. As you make your way through a series of increasingly complicated puzzles, the mystery of Stauf is unraveled. It was a very fun game and apparently was quite popular and is credited with accelerating CD-ROM game sales. The game was well done, incorporating a lot of live action scenes. Back then and in the fondness of my memory, I considered it to be art. Games like <a href="http://en.wikipedia.org/wiki/Myst" target="_blank">Myst</a> came out around the same time and were also lauded for their artistic vision.</p>
<h3>Gears of War</h3>
<p align="justify">An advertisement for Gears of War last year used the remake of <a href="http://www.myspace.com/garyjules" target="_blank">Mad World</a> by Gary Jules (not the Tears for Fears original). It's a haunting melody, made popular by <a href="http://imdb.com/title/tt0246578/" target="_blank"><em>Donnie Darko</em></a>. The original could have been better except for being plagued by 80's synth drums and some really odd sound choices throughout like a freakish trumpet motif. Also the pace was a bit fast perhaps. I'm probably tainted by the new version. Anyhow, the game commercial features a soldier in the wreckage of a city. He examines the broken head of a statue of a girl and then the earth begins to shake. Anyhow, I just thought it was the coolest commercial I've ever seen.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ccWrbGEFgI8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ccWrbGEFgI8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=ccWrbGEFgI8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">Another great set of ads are the Believe commercials for Halo 3. One example is below. On the surface they aren't especially catchy, but they are definitely edgy. They've drawn a fair amount of flack by playing on interviews of vets from World War II. I don't think they are disrespectful, myself.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cjLuqfb-1-4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cjLuqfb-1-4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=cjLuqfb-1-4&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<h3>Other Games</h3>
All games nowadays require at least one artist on staff to help create the various images, characters and landscapes. Often, there are entire teams. Games like <em>Silent Hill</em> create a mood and require a certain dark vision. This is not merely cobbling together other people's ideas into something mechanical. It is a very creative and collaborative process. The shots from <a href="http://www.us.playstation.com/PS2/Games/Shadow_of_the_Colossus/OGS/" target="_blank">Shadow of the Colossus</a> are beautiful. And then there are games like <a href="http://en.wikipedia.org/wiki/F.E.A.R" title="F.E.A.R. video game" target="_blank">F.E.A.R</a>. This game is probably one of the most artistic I've come across. The theme is heavily influenced by Japanese Horror like <a href="http://en.wikipedia.org/wiki/Ju-on" target="_blank">Ju-on</a> (the Grudge) and <a href="http://en.wikipedia.org/wiki/Ring_%28film%29" target="_blank">Ringu</a> (the Ring). Psychological element play a large role in the game. A telepath named Alma appears out of nowhere at odd times and can totally creep you out. Her appearances are often accompanied by disturbances. Good times.
<p><img src="http://ealdent.files.wordpress.com/2007/10/alma.jpg" alt="Alma from the video game F.E.A.R." /></p>
<h3>Limbo</h3>
<p align="justify">And now the reason for this post. <a href="http://www.limbogame.org/" target="_blank">Limbo</a>. This game is currently still in the concept stage as far I've been able to find out. But that looks very promising and quite artistic. <a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"></a></p>
<p><a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"><img src="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" alt="Limgbo game" width="490" /></a></p>
<p><a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"> </a></p>
The vision is dark and punctuated with bursts of contrast that create an atmosphere unlike anything I've ever seen in a game before. Plus it's just plain beautiful. I mean look at these shots. Be sure to check out <a href="http://www.limbogame.org/limbovideo.html" target="_blank">the video</a> too. This looks like it may be one of the coolest things to hit the shelves in a long while. Limbo comes from the mind of Arnt Jensen.
<p><img src="http://ealdent.files.wordpress.com/2007/10/02.jpg" alt="Limbo game" /></p>
diff --git a/_posts/2007-11-04-pc-on-the-decline.html b/_posts/2007-11-04-pc-on-the-decline.html
index 171d453..794aeb0 100644
--- a/_posts/2007-11-04-pc-on-the-decline.html
+++ b/_posts/2007-11-04-pc-on-the-decline.html
@@ -1,18 +1,18 @@
---
layout: post
title: "PC on the decline?"
tags: ["childhood", "childhood", "coleco", "coleco", "computer science", "computer science", "human computer interaction", "human computer interaction", "pc", "pc", "personal computers", "personal computers", "programming", "programming", "trs-80", "trs-80"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/04/pc-on-the-decline/" target="_blank">http://ealdent.wordpress.com/2007/11/04/pc-on-the-decline/</a><br /><br />
<p align="justify">Japanese electronics use is perhaps a faulty bellwether for the American market. Whereas new gadgets are often available in Japan long before they make their appearance (if ever) in the US, there are also interesting cultural differences that don't always translate popularity. There does seem to be a trend in the area of PC sales, however. An <a href="http://news.yahoo.com/s/ap/20071104/ap_on_hi_te/bye_bye_pcs" target="_blank">AP article</a> today points out that PCs are taking a less important role in Japanese households with the emergence of smart phones, consoles that can reproduce many PC functions (web browsing, gaming, playing DVDs & music), and flat screen TVs (versus flat screen monitors, say). If you can check your email on your phone, listen to music on your iPod, download music on your Wii, and play games on your 52" LCD, why would you want a computer in your home? <em>Note: throughout this post I will use the term PC in the general sense of computer, rather than specifically as an IBM-compatible PC.</em></p>
<p align="justify">So this got me thinking about what a PC is good for and why I liked it back in the day (well, I <em>still </em>like it).<!--more-->My first introduction to the PC was a commercial for the <a href="http://oldcomputers.net/adam.html" target="_blank">Coleco Adam</a>. And really, given these great ads, can you blame my 6-year-old self from being totally swept up in the magic? I love the last ad in the video below. Buy a ColecoVision, get a free Cabbage Patch kid. The tagline: "When you buy a CollecoVision, you make two kids happy." It's interesting too in that it's implicit that girls should care about dolls and boys should care about electronics.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=_PysRX8DQp0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=_PysRX8DQp0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=_PysRX8DQp0&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">So probably my earliest motivation for wanting a PC was the gaming potential. There were also cartoons like Inspector Gadget that showed computers being extremely powerful little toys. When I actually first got to use a PC, I was in the fifth grade. I instantly took to it. We were using a lab of Apple IIc (and IIe) in school and programming simple things in Basic. It made complete sense to me and the pace of the teacher's lesson was agonizingly slow. I wanted to run ahead and write new programs. So I also talked to my teacher and got some extra time in the lab after school hours.</p>
<p align="justify">In the sixth grade, we moved in with my second stepfather and he had a TRS-80 Model III(aka trash-80). A lovely hunk of junk. Two floppy (5.25") drives and no hard drive. I played around on it for hours, exploring the world of the Basic programming language. It was great. I made a rock, paper, scissors game, tic-tac-toe, and used it for scientific simulations. These were, of course, naive and simplistic, but looking back it was an early indicator of my interest in research. I used the computer to not just play games and solve problems (by writing programs), but to explore ideas and explore the realm of what computers were capable of doing. I really would have benefitted from having someone around who knew about computer science. But maybe forced direction would have turned me off, hard to say.</p>
<p align="justify">In high school, my friends (<a href="http://humphrelia.bluegosling.com" target="_blank">Josh</a> and <a href="http://wrathfuldove.org" target="_blank">John</a> mainly) and I also used PCs to produce some cool fractals. Mandelbrot set mostly. Back then, Pascal was the vogue. My stepfather actually bought Turbo Pascal, for some reason. I'm not sure if he was thinking of taking up programming himself or if it was a roundabout way of getting it for me (which would be a rare occurrence indeed). So it was the first Object Oriented Programming language I was exposed to and the manuals made no sense whatsoever. I mean, it made sense to think of an apple as an object, without having to model the skin and the core and the seeds and whatever, but how did that translate to computer programs? Again, I would've benefitted from some compsci guidance.</p>
<p align="justify">So I created a <a target="_blank">mindmap</a> of what I could think of as the primary uses for PCs that most Americans engage in. Mindmaps are something I want to go into further in a future post. So the six main categories of usage are web, work, entertainment, communication, programming, financial, and web. These categories certainly bleed over into each other at many different places. In the case of the web, it could be any one of the other categories. Increasingly, it is becoming all of them. Since it was a component of all I decided to make it its own category.</p>
<p align="justify">Next thing to consider is what devices support these activities. An iPhone can play music, surf the web, play YouTube videos, check email, and handle communications (IM and voice). If those functions are all you need your PC for, having an iPhone could impact your PC usage. Likewise, Google Docs (and similar offerings) make it easier to do office-style tasks on the web. Rather than needing a PC now, all you would need is a web appliance. These aren't especially popular, so I wouldn't consider this an area where PCs are facing competition, but it's possible. Gaming consoles are encroaching on the PC popular quite a bit more and appear to be hoping to continue that trend with no end in sight.</p>
<p align="justify">So as the major functionality of the PC is transitioned to other, more focused devices, the need for many niche users to have a PC is waning. Does this spell trouble for major PC manufacturers like Dell, HP, and so on?</p>
<p align="justify">Nope. Countries that haven't seen PCs before are seeing sales increase enormously. So the markets are shifting. I hope as the US market begins to transition away from the multipurpose all-in-one PC, we'll begin to see some sort of device for the power-user/programmer begin to emerge. I don't have a specific vision for this device, or else I'd be out making it. But I want it to facilitate the things I use my PC for: programming, data analysis, graphical visualizations (and of course, web surfing and games). Give me a super computer in a box that is more devoted towards giving me full power rather than a dumbed down interface that looks pretty.</p>
<p align="justify">But it's more than just the operating system, I want the device optimized for these tasks. Maybe a laptop with a fold-out screen. Right now I have widescreen at 1280x800 on my laptop. If the screen were a doubled-over fold out, that could be increased to 2560x800 -- essentially a dual monitor laptop - a must have for developers. How about built-in support for stack tracing and system performance monitoring that runs in hardware so when the OS starts to die, your performance monitors don't die with it?</p>
<p align="justify">If anyone has stayed with me to this point, I'm curious what other people want out of their PC.</p>
diff --git a/_posts/2007-11-14-crayon-physics.html b/_posts/2007-11-14-crayon-physics.html
index 369fd28..f95f16d 100644
--- a/_posts/2007-11-14-crayon-physics.html
+++ b/_posts/2007-11-14-crayon-physics.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Crayon Physics"
tags: ["cool stuff", "cool stuff", "crayon physics", "crayon physics", "crayons", "crayons", "experimental games", "experimental games", "games", "games", "kloonigames", "kloonigames", "physics", "physics"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/14/crayon-physics/" target="_blank">http://ealdent.wordpress.com/2007/11/14/crayon-physics/</a><br /><br />
<p align="justify">I stumbled on this the other day. The game is called <a href="http://www.kloonigames.com/blog/games/crayon/" target="_blank">Crayon Physics</a> and it's pretty much what it sounds like. You can make a crayon drawing of simple shapes like squares and circles and curves. The objects you create begin obeying the laws of physics (gravity and Newton's laws of motion mainly). So a square drawn in the air falls to the ground. A circle drawn on a slope begins to roll. The first version is pretty simple. On each level you have to move the ball to the star. You can drop things on the ball to get it to roll, you can set up obstacles, build bridges, etc. It's ingenious.</p>
<p align="justify">The <a href="http://www.kloonigames.com/blog/general/crayon-physics-deluxe-on-a-tablet-pc/" target="_blank">next version</a> will hopefully roll out soon. No telling though since it's a guy working in his spare time. But looks to be excruciatingly cool. Watch me play one level while trying to record it on my cell phone.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=lX1pQ6QKlNU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=lX1pQ6QKlNU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=lX1pQ6QKlNU&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-11-15-overeating.html b/_posts/2007-11-15-overeating.html
index 79ed4b6..d9a0d42 100644
--- a/_posts/2007-11-15-overeating.html
+++ b/_posts/2007-11-15-overeating.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Overeating"
tags: ["great swallower", "great swallower", "hippos", "hippos", "overeating", "overeating", "pennsylvania dutch", "pennsylvania dutch", "snakes", "snakes", "weird animals", "weird animals"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/15/overeating/" target="_blank">http://ealdent.wordpress.com/2007/11/15/overeating/</a><br /><br />
<p align="justify">After visiting my mother-in-law's and over-indulging in her Pennsylvania-Dutch cooking (and thereby avoiding the guilt that accompanies <em>not</em> over-indulging), I often feel like this. [<a href="http://scienceblogs.com/chaoticutopia/2007/11/one_fish_two_fish_little_red_f.php" target="_blank">hat tip</a>]</p>
<table align="center" border="0" cellpadding="5">
<tr>
<td><a href="http://www.caycompass.com/cgi-bin/CFPnews.cgi?ID=1025678" target="_blank"><img src="http://ealdent.files.wordpress.com/2007/11/20071009_1_localfishstory.jpg" alt="Great swallower kills itself eating a bigger fish" align="right" /></a></td>
</tr>
<tr>
<td align="right">Image credit: Phillippe Bush,
Department of the Environment</td>
</tr>
</table>
<p align="justify">This is very similar to one poor snake I saw a video of on YouTube a while back. You might not want to click play if you are faint of heart (below the jump).<!--more--></p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=dd7S6fRv224=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=dd7S6fRv224=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=dd7S6fRv224&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-11-18-killer-bean-forever.html b/_posts/2007-11-18-killer-bean-forever.html
index fdc7c89..59a3ce4 100644
--- a/_posts/2007-11-18-killer-bean-forever.html
+++ b/_posts/2007-11-18-killer-bean-forever.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Killer Bean Forever"
tags: ["cgi", "cgi", "hollywood", "hollywood", "independent films", "independent films", "jeff lew", "jeff lew", "killer bean", "killer bean", "killer bean forever", "killer bean forever", "matrix reloaded", "matrix reloaded", "movies", "movies", "trailers", "trailers"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/18/killer-bean-forever/" target="_blank">http://ealdent.wordpress.com/2007/11/18/killer-bean-forever/</a><br /><br />
<p align="justify">You gotta hand it to <a href="http://www.killerbeanforever.com/director.html" target="_blank">a guy</a> who drops all his money to pursue his dream. Even when that dream is a movie about a <em>baked bean </em>killing people with two dragon pistols. This was done by the lead animator of Matrix Reloaded (Jeff Lew) and looks like it might be amusing. Hard to say, though. At the very least, I like to see people working outside (or on the fringes) of the Hollywood superstructure. He was just the animator for Matrix Reloaded and the graphics were great despite the other problems the movie had. Personally I liked it, but I know a lot of people view it as an abomination.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=u1WGcyJhhE4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=u1WGcyJhhE4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=u1WGcyJhhE4&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-11-20-mike-chuckabee.html b/_posts/2007-11-20-mike-chuckabee.html
index 023298f..47b1207 100644
--- a/_posts/2007-11-20-mike-chuckabee.html
+++ b/_posts/2007-11-20-mike-chuckabee.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Mike Chuckabee"
tags: ["aliens", "aliens", "campaign ads", "campaign ads", "chuck norris", "chuck norris", "gimmicks", "gimmicks", "humor", "humor", "kucinich", "kucinich", "mike huckabee", "mike huckabee", "presidential election", "presidential election"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/20/mike-chuckabee/" target="_blank">http://ealdent.wordpress.com/2007/11/20/mike-chuckabee/</a><br /><br />
<p align="justify">I'm not sure if anyone realized it, but Mike Huckabee, the governor of Arkansas, is running for president. How do I know this? His first campaign ad. He has finally proposed doing what I've been saying do for years: unleash Chuck Norris on the world. Illegal aliens at the border? Walker Texas Ranger baby.</p>
<p align="justify">So this election, would you rather have Chuck Norris protecting America or space aliens? That's what I thought. Vote Dennis Kucinich.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=MDUQW8LUMs8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=MDUQW8LUMs8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=MDUQW8LUMs8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-12-01-celestia.html b/_posts/2007-12-01-celestia.html
index 69285a6..e6c1598 100644
--- a/_posts/2007-12-01-celestia.html
+++ b/_posts/2007-12-01-celestia.html
@@ -1,15 +1,15 @@
---
layout: post
title: "Celestia"
tags: ["astronomy", "astronomy", "astrophysics", "astrophysics", "celestia", "celestia", "dreams", "dreams", "open source", "open source", "physics", "physics", "software", "software", "space", "space", "space visualization", "space visualization"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/01/celestia/" target="_blank">http://ealdent.wordpress.com/2007/12/01/celestia/</a><br /><br />
<p align="justify">When I was around 12 or 13, I first got a hold of my stepfather's physics text book. It was magic. The rules that governed the physical world were right there in the form of equations on a page. I was totally captivated. Newton's laws of motion, gravity, angular momentum, and the theory of relativity. When I first learned about relativistic time dilation, it was life-changing. I resolved to become an astrophysicist. A lot of changes happened in my life that turned that dream into my current one. But, like all first loves, it never went away.</p>
<p align="justify">When I got my first computer, I had hopes of writing a program that would plot the positions of the stars as they were in space (3-D) versus how they appeared in the Earth's sky (2-D). I achieved a little bit of success getting the vectors worked out from the distance, right ascension, declination and so on. I had no easy way of visualizing it though. Doing 3-D plots in BASIC back in 1990 wasn't the easiest thing in the world. So that project died.</p>
<p align="justify">Then like a ghost, <a href="http://celestia.sourceforge.net/" target="_blank">Celestia</a> came to me last night. Wrapped up in her open source glory, I dared not even dream that she could perform what I had so long abandoned all hope of. But she did my friend, she did. (My wife won't like this imagery :))</p>
<p align="justify"><!--more-->
Anyhow, Celestia is a totally kickass program for the Mac, PC and Linux that lets you navigate space. You can go into orbit around Phobos and watch the sun rise over the horizon of Mars. You can latch onto the back of the International Space Station and watch the Earth fly by beneath you. You can jump into hyperspace and visit Betelgeuse or Antares. You can watch the Milky Way grow small beneath you as you rocket many megaparsecs to galaxy NGC-4732.
-</p><p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=jQ3iOs2rbuw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+</p><p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=jQ3iOs2rbuw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=jQ3iOs2rbuw&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">One of my early motivations for wanting to be able to make a program that can do this is to be able to really visualize what a constellation looks like. We look up in the sky and see the Big Dipper, but those stars are really, really, really far apart. From the view of anywhere but Earth, they don't form a constellation at all. They aren't even barely neighbors. Celestia lets you see just how jacked up constellations are in real space. I love it.</p>
<p align="justify">You can also record movies of your random flights through space and write (and run) scripts that take you on tours of celestial objects. You can watch Saturn from the perspective of the Cassini probe (in real time). Seriously, does it get any cooler?</p>
diff --git a/_posts/2007-12-19-eminent-domination.html b/_posts/2007-12-19-eminent-domination.html
index 9f4dcbc..874a5f7 100644
--- a/_posts/2007-12-19-eminent-domination.html
+++ b/_posts/2007-12-19-eminent-domination.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Eminent Domination"
tags: ["clonetown", "clonetown", "complaints", "complaints", "drew carey", "drew carey", "eminent domain", "eminent domain", "robin hood", "robin hood", "scooby do", "scooby do", "tv", "tv"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/19/eminent-domination/" target="_blank">http://ealdent.wordpress.com/2007/12/19/eminent-domination/</a><br /><br />
<p align="justify">I knew what eminent domain is, but I didn't know what cities are using it for now. How many made for TV, comedies, and kids movies have there been where the hero/heroine has to stop the evil developers from moving in and destroying the quaint hometown/small mom-and-pop store/diner/wildlife preserve? There were probably more than a dozen episodes of Scooby Do that used this theme. Who knew instead of dressing up like a ghost, they could have gotten Old Man Parker to move out just by appealing to the corruptibility of city officials? Who needs local flavor when you can have clonetown and lots of tax dollars?</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=x-V8ljoCmmg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=x-V8ljoCmmg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=x-V8ljoCmmg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">These cities are the new Sheriffs of Nottingham:Â steal from the little guy to give to the development conglomerate.</p>
diff --git a/_posts/2007-12-23-merry-christmas-tree-fractal.html b/_posts/2007-12-23-merry-christmas-tree-fractal.html
index 6b8f5bd..547952e 100644
--- a/_posts/2007-12-23-merry-christmas-tree-fractal.html
+++ b/_posts/2007-12-23-merry-christmas-tree-fractal.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Merry Christmas Tree Fractal"
tags: ["chaos", "chaos", "christmas", "christmas", "christmas tree", "christmas tree", "fractals", "fractals"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/23/merry-christmas-tree-fractal/" target="_blank">http://ealdent.wordpress.com/2007/12/23/merry-christmas-tree-fractal/</a><br /><br />
Courtesy of <a href="http://scienceblogs.com/chaoticutopia/2007/12/heres_wishing_you_the_very.php" target="_blank">Chaotic Utopia</a>:
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=NrumoeQSG_A=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=NrumoeQSG_A=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=NrumoeQSG_A&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-01-02-brother-rudy.html b/_posts/2008-01-02-brother-rudy.html
index 8f8389e..b7652ff 100644
--- a/_posts/2008-01-02-brother-rudy.html
+++ b/_posts/2008-01-02-brother-rudy.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Brother Rudy"
tags: ["FUD", "FUD", "advertising", "advertising", "giuliani", "giuliani", "goebbels", "goebbels", "nazis", "nazis", "presidential election", "presidential election", "propaganda", "propaganda"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/02/brother-rudy/" target="_blank">http://ealdent.wordpress.com/2008/01/02/brother-rudy/</a><br /><br />
<p align="justify">Good ole Rudy Giuliani is up to no good. His recent television spot is nothing short of evil. I'm sorry, but when you blatantly use FUD (fear, uncertainty, and doubt) for political gain, you might as well announce your intention to become a tyrant. He's apparently using the political playbook of Goebbels. By simultaneously portraying muslims as vicious animals and Iran as a warmongering nation led by a madman, this ad is a <strike>masterpiece</strike> clumsy bit of propaganda. I hate to think that people are stupid enough to believe him.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=y2iFhGtKO-Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=y2iFhGtKO-Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=y2iFhGtKO-Q&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-01-05-willow-and-the-frisbee-2.html b/_posts/2008-01-05-willow-and-the-frisbee-2.html
index 2c42821..264bf8e 100644
--- a/_posts/2008-01-05-willow-and-the-frisbee-2.html
+++ b/_posts/2008-01-05-willow-and-the-frisbee-2.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Willow and the Frisbee 2"
tags: ["dogs", "dogs", "edvard grieg", "edvard grieg", "family", "family", "frisbee", "frisbee", "greenville", "greenville", "video", "video"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/05/willow-and-the-frisbee-2/" target="_blank">http://ealdent.wordpress.com/2008/01/05/willow-and-the-frisbee-2/</a><br /><br />
<p align="justify">While at my mom's house in Greenville, South Carolina, I played a little frisbee with Willow (my australian shepherd) in the back yard. I took some video where I was throwing the frisbee, then switched over to my mom throwing it. However, insanely, when my mom started throwing I put the cap on and failed to notice for like 10 minutes!! Thereby losing all the good footage and left with only my crappy warmup footage. I was so pissed at myself. Bad noob cameraman!</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=RGiqVwDM40k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=RGiqVwDM40k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=RGiqVwDM40k&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">The soundtrack is <a href="http://www.musopen.com/view.php?type=piece&id=194" target="_blank">Piano Concerto in A Minor, Op. 16 by Edvard Grieg</a> and is in the public domain.</p>
diff --git a/_posts/2008-01-08-bills-last-keynote.html b/_posts/2008-01-08-bills-last-keynote.html
index 3916751..1273c7b 100644
--- a/_posts/2008-01-08-bills-last-keynote.html
+++ b/_posts/2008-01-08-bills-last-keynote.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Bill's Last Keynote"
tags: ["bill gates", "bill gates", "humor", "humor", "keynote speech", "keynote speech", "microsoft", "microsoft"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/08/bills-last-keynote/" target="_blank">http://ealdent.wordpress.com/2008/01/08/bills-last-keynote/</a><br /><br />
<p align="justify">I wonder if a campaign like this, executed a few years ago, would have helped endear him more to the public? He actually comes across as somewhat human.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1lE21kpE3M0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1lE21kpE3M0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=1lE21kpE3M0&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-01-09-running-the-world.html b/_posts/2008-01-09-running-the-world.html
index 8c8459d..8c785af 100644
--- a/_posts/2008-01-09-running-the-world.html
+++ b/_posts/2008-01-09-running-the-world.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Running the World"
tags: ["academy awards", "academy awards", "ampas", "ampas", "beauty", "beauty", "children of men", "children of men", "jarvis cocker", "jarvis cocker", "mad world", "mad world", "movies", "movies", "music", "music", "nsfw", "nsfw", "running the world", "running the world", "sadness", "sadness", "songs", "songs"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/09/running-the-world/" target="_blank">http://ealdent.wordpress.com/2008/01/09/running-the-world/</a><br /><br />
<p align="justify">Taking me completely by surprise, "Running the World" by <a href="http://www.myspace.com/jarvspace" target="_blank">Jarvis Cocker</a> is one of the coolest songs I've heard in a very long time. I'll leave it to you to figure out exactly what he's saying (it's <b>NSFW</b>). The lyrics are just plain awesome. This kind of song grabs a hold of the part of me that appreciates the beauty of sadness. I'm not sure which I appreciate more: the beauty of sadness or the beauty of majesty. The beauty I appreciate most of all is self-sacrifice. I can't see it without struggling really hard to not cry. Another song that uses the beauty of sadness is "Mad World" (the remake by Gary Jules from <a href="http://imdb.com/title/tt0246578/" target="_blank"><i>Donnie Darko</i></a>).</p>
<p align="justify">I happened upon the song because I was searching for a clip of a scene near the end of <a href="http://imdb.com/title/tt0206634/" target="_blank"><i>Children of Men</i></a>. So as not to spoil anything for the random reader who hasn't seen the movie, it's a moment of peace in the chaos, the characters are filled with a profound awe, and it is broken by intense violence (it also appears briefly in the clip below). This video appears to be promotional material used to influence the Academy of Motion Picture Arts and Sciences (AMPAS) people to nominate it for Best Picture. It didn't win anything, since the Academy is full of crap.</p>
Enjoy. Oh and <b><i>the video contains spoilers</i></b> (and is NSFW).
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=-lfs1UIKALQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=-lfs1UIKALQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=-lfs1UIKALQ&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-01-17-large-hadron-collider-movie.html b/_posts/2008-01-17-large-hadron-collider-movie.html
index d238684..603d86e 100644
--- a/_posts/2008-01-17-large-hadron-collider-movie.html
+++ b/_posts/2008-01-17-large-hadron-collider-movie.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Large Hadron Collider Movie"
tags: ["apocalypse", "apocalypse", "large hadron collider", "large hadron collider", "playing god", "playing god", "real sci-fi", "real sci-fi", "theoretical physics", "theoretical physics", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/17/large-hadron-collider-movie/" target="_blank">http://ealdent.wordpress.com/2008/01/17/large-hadron-collider-movie/</a><br /><br />
<p align="justify">Just came across this very amusing video via the <a href="http://www.badastronomy.com/bablog/2008/01/17/cern-movie-trailer/" target="_blank">Bad Astronomer</a>. The Large Hadron Collider is one of those things that could produce some amazing science, but has also caused a number of scientists to express worries that it might <a href="http://prola.aps.org/abstract/PRL/v87/i16/e161602" target="_blank">destroy the planet</a>. Cool, huh? Most scientists consider that to be doomsaying, and that the LHC will be benign while yielding amazing results. The video ignores any mention of dangers at the LHC (it is, after all, a propaganda piece), but I found it very fun to listen to it for what is <i>not</i> said.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=67q_2V6xOxE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=67q_2V6xOxE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=67q_2V6xOxE&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">Do I actually think the LHC poses a threat to human life? I have no idea, since I'm not a particle physicist, but my suspicion is that we'll still be here after it fires up. Imagining the end of the world is one of my favorite mental hobbies, though, so one can always hope.</p>
diff --git a/_posts/2008-01-21-cloverfield.html b/_posts/2008-01-21-cloverfield.html
index bd2a546..48a6ff0 100644
--- a/_posts/2008-01-21-cloverfield.html
+++ b/_posts/2008-01-21-cloverfield.html
@@ -1,12 +1,12 @@
---
layout: post
title: "Cloverfield"
tags: ["cloverfield", "cloverfield", "i am legend", "i am legend", "movies", "movies", "new york", "new york", "sci-fi", "sci-fi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/21/cloverfield/" target="_blank">http://ealdent.wordpress.com/2008/01/21/cloverfield/</a><br /><br />
<p align="justify">I just got back from watching Cloverfield. There are very few movies so interesting to me that I will actually go by myself to see them. I had tried to get a friend to come along, but he complained of "homework" and other such nonsense, and Donna can't handle anything with monsters in it. Without spoiling anything, I will say that the movie was absolutely freaking awesome. It was definitely a brilliant new take on the classic monster movie.</p>
<p align="justify">Since this is my blog, let me just rant quickly: people who bring six-year-olds to movies like this are bad parents. You're just not a good parent if you do this. You are bad. And stupid. You may think your kid can handle it, but you are wrong. And stupid. Ok, back to the movie.</p>
<p align="justify"><b>Spoilers follow.</b> I am putting a preview here to take up space on the page to prevent you from accidentally reading further if you don't want to see the spoilers.</p>
-<!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=AVzeATvSbK4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=AVzeATvSbK4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=AVzeATvSbK4&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">The movie consists of camcorder footage taken primarily during one night in Manhattan. It is often jerky and not getting the shot, like you would expect a real person to take. It's basically one long, uncut YouTube video. The effect is that for an hour and 20 minutes or so, I completely forgot where I was. I was running next to these guys as they made their way through dark subways, leaning high-rises, and streets filled with dust. It was truly a brilliant piece of work.</p>
<p align="justify">It was also really short. Sometimes this is better with movies that are as intense as <i>Cloverfield</i>. You just can't handle your nerves being on edge for much longer without it becoming troubling. <i>I am Legend</i> was far more intense and there were points in that movie where I was almost not able to tolerate it. In the end, the mystery of Cloverfield is still wide open. There is plenty of room for sequels, and I sincerely hope the powers-that-be restrain themselves. Was Cloverfield an ailen? A government project? Something from the deep? Knowing will probably only be a disappointment.</p>
diff --git a/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html b/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
index 0fd1aab..725620d 100644
--- a/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
+++ b/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Mein Führer, die Cowboys haben verloren..."
tags: ["cowboys", "cowboys", "football", "football", "german", "german", "hitler", "hitler", "humor", "humor", "videos", "videos", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/26/mein-fuhrer-die-cowboys-haben-verloren/" target="_blank">http://ealdent.wordpress.com/2008/01/26/mein-fuhrer-die-cowboys-haben-verloren/</a><br /><br />
<p align="justify">I'm not at all a sports fan, but even I can appreciate this humor. Sorry if you've already seen it (I actually saw it last week and was just reminded of it). My favorite line: "It's ok, he can afford one, don't worry."</p>
-<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=K2triiYXSY8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=K2triiYXSY8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=K2triiYXSY8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-02-24-lsd-still-in-french-candy.html b/_posts/2008-02-24-lsd-still-in-french-candy.html
index d459fbf..f791d45 100644
--- a/_posts/2008-02-24-lsd-still-in-french-candy.html
+++ b/_posts/2008-02-24-lsd-still-in-french-candy.html
@@ -1,8 +1,8 @@
---
layout: post
title: "LSD still in French Candy"
tags: ["candy", "candy", "commercials", "commercials", "france", "france", "kitkat", "kitkat", "lsd", "lsd"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/24/lsd-still-in-french-candy/" target="_blank">http://ealdent.wordpress.com/2008/02/24/lsd-still-in-french-candy/</a><br /><br />
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cx1j8jdo_P8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cx1j8jdo_P8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=cx1j8jdo_P8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">We've all had these days. But if we were in France, the outcome might have been different.</p>
diff --git a/_posts/2008-02-26-go-snapback-symmetry.html b/_posts/2008-02-26-go-snapback-symmetry.html
index 4f8fbf7..3fbc465 100644
--- a/_posts/2008-02-26-go-snapback-symmetry.html
+++ b/_posts/2008-02-26-go-snapback-symmetry.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Go Snapback Symmetry"
tags: ["board games", "board games", "games", "games", "go", "go", "online go server", "online go server", "strategy", "strategy", "symmetry", "symmetry"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/26/go-snapback-symmetry/" target="_blank">http://ealdent.wordpress.com/2008/02/26/go-snapback-symmetry/</a><br /><br />
<p align="justify">Go (<span>å´æ£, </span><span><span class="t_nihongo_kanji">ç¢, <span>ë°ë</span>) is one of my obsessions. I've been playing for a year, mostly as <a href="http://online-go.com/profile.asp?user=3854" target="_blank">ealdent</a> on <a href="http://online-go.com" target="_blank">Online Go Server</a> (OGS) and am currently about 12.5 kyu, though I shift around a bit. At the moment, I'm in a bit of downswing, mostly because stress and not concentrating is leading me to make foolish moves, plus I don't have a lot of time to devote to analyzing what I'm doing wrong. One of the coolest things about Go to me is the fact that it is an accepted fact in the Go world that your health and mental state contribute to your ability. It makes sense: when you sit down to a game that requires hours of concentration, if your health isn't good, you will be distracted.</span></span></p>
<p><img src="http://ealdent.files.wordpress.com/2008/02/gosymmetries.png" alt="Two snapback symmetries in a game of Go." /></p>
<p align="justify">So in one of my games against a lower-strength player (about 7 kyu lower), I just noticed the emergence of a really cool symmetry. I have a double snapback (I am the white stones) set up right now. If he plays at E12, I can kill the three stones at F11, E11 and E12 by playing again at F12. If he kills my stone at G13 by playing at H13, I can kill those three stones. Two identical snapbacks back to back. Cool huh? Plus, if he plays at F14, he will put my stones at E16 and F16 in the exact same snapback position by playing again at E15. Go is a beautiful game.</p>
<p align="justify">I recorded what this would look like via my cell phone, so sorry for the crappy video. I need to look into some sort of desktop recording software.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=rhF1wdSHoqE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=rhF1wdSHoqE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=rhF1wdSHoqE&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-02-26-the-enormity-of-space.html b/_posts/2008-02-26-the-enormity-of-space.html
index 5f9905e..f4cd330 100644
--- a/_posts/2008-02-26-the-enormity-of-space.html
+++ b/_posts/2008-02-26-the-enormity-of-space.html
@@ -1,14 +1,14 @@
---
layout: post
title: "The Enormity of Space"
tags: ["enormity", "enormity", "language change", "language change", "prescriptivism", "prescriptivism", "richard branson", "richard branson", "space", "space", "spaceflight", "spaceflight", "virgin galactic", "virgin galactic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/26/the-enormity-of-space/" target="_blank">http://ealdent.wordpress.com/2008/02/26/the-enormity-of-space/</a><br /><br />
<p align="justify">Whenever I hear the word <i>enormity </i>used to describe how gi-freakin-normous something is, I always willfully misinterpret it to mean <i>an act of extreme evil or extreme wickedness</i>. Now before you start screaming prescriptivist and throwing Kleenexes drenched in the snot of sociolinguistics at me -- I'm not being a prescriptivist. Of course people have the right to use <i>enormity </i>that way. It is certainly the trend for that word and it probably will be within my generation that almost everyone forgets its original meaning. I just so like the meaning of extreme wickedness that I want to be able to use it to mean that without being misinterpreted. And a lot of people only know that word to mean <i>gigantic</i>.</p>
<p align="justify">So I was listening to a promo video (below) by Richard Branson of Virgin Galactic. Branson opens up with this line:</p>
<div align="justify">
<blockquote>Â "Astronauts of the past 45 years have all returned to Earth struggling to convey the <b>enormity</b> of what they have discovered and with their perceptions clearly changed."</blockquote>
</div>
<p align="justify">And quite frankly, the sinister music blends with my interpretation of enormity far better. Astronauts have all returned overwhelmed by the vast wickedness they encountered in space. Awesome! I totally wanna go now. Actually, I've always wanted to go and probably would go even if I was told I had a 50/50 chance of making it back alive, so enormity just ups the thrill level.</p>
-<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=t4h247PPOrY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=t4h247PPOrY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=t4h247PPOrY&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-03-17-ants-are-awesome.html b/_posts/2008-03-17-ants-are-awesome.html
index e6be152..990b2e5 100644
--- a/_posts/2008-03-17-ants-are-awesome.html
+++ b/_posts/2008-03-17-ants-are-awesome.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Ants are awesome"
tags: ["ant colonies", "ant colonies", "ants", "ants", "books", "books", "city", "city", "clifford d simak", "clifford d simak", "emergent behavior", "emergent behavior", "sci-fi", "sci-fi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/03/17/ants-are-awesome/" target="_blank">http://ealdent.wordpress.com/2008/03/17/ants-are-awesome/</a><br /><br />
<p align="justify">Researchers in the video below filled an ant colony with concrete and dug it out to see just how exactly the colony was organized underground. The results are just plain awesome. Ants farm fungus and use livestock (aphids), build cities and wage wars. What the video refers to as a hive consciousness is emergent behavior: each ant following a series of simple rules results in a collective behavior that appears to be driven by a single conscious mind.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=xQERRbU23bU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=xQERRbU23bU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=xQERRbU23bU&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">
<table align="right" border="0" cellpadding="6">
<tr>
<td><img src="http://ealdent.files.wordpress.com/2008/03/cityclifforddsimak.jpg" alt="City by Clifford D Simak" align="right" /></td>
</tr>
</table>
</p><p align="justify">This reminds me of one of my favorite books growing up: <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FCity-Clifford-D-Simak%2Fdp%2F188296828X%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205759713%26sr%3D8-2&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">City</a><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /></i> by Clifford D. Simak. Simak seems to be a virtually forgotten author these days, though you can occasionally find his books in a Barnes & Noble (and of course, widely available online). <i>City</i> was probably his best work and had an incredible vision (it was written in 1952). I won't spoil much, but he introduces the idea of a colony of ants that is given the opportunity to survive many winters. They learn to produce heat on their own and make several appearances as the tale unfolds over hundreds of years. I highly recommend it and it's one of my favorite sci-fi books of all time. I've also read <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FGoblin-Reservation-Clifford-D-Simak%2Fdp%2F0881848972%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205759713%26sr%3D8-4&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">The Goblin Reservation</a></i><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /> and <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FVisitors-Clifford-D-Simak%2Fdp%2F0345283872%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205760225%26sr%3D8-4&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">The Visitors</a></i><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /> by him and I can recommend the former. The latter I still enjoyed, but if you are going to check out anything he has done, make that the third choice. Simak has an easy-to-read style that incorporates fantastic elements into what would otherwise be hard sci-fi, raising interesting philosophical questions in the process.</p>
diff --git a/_posts/2008-04-07-a-flyby-of-warthogs.html b/_posts/2008-04-07-a-flyby-of-warthogs.html
index a64f2ac..f4c93bd 100644
--- a/_posts/2008-04-07-a-flyby-of-warthogs.html
+++ b/_posts/2008-04-07-a-flyby-of-warthogs.html
@@ -1,8 +1,8 @@
---
layout: post
title: "A Flyby of Warthogs"
tags: ["a10 warthogs", "a10 warthogs", "airplanes", "airplanes", "childhood", "childhood", "jets", "jets", "lizard man", "lizard man", "military", "military", "pittsburgh", "pittsburgh", "south carolina", "south carolina"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/04/07/a-flyby-of-warthogs/" target="_blank">http://ealdent.wordpress.com/2008/04/07/a-flyby-of-warthogs/</a><br /><br />
<p>I have no idea why, but four A-10 Warthogs made several circuits around the skies of Pittsburgh today. They are quite noisy, subsonic jets used by the military against armored vehicles and ground positions. The last time I had seen one outside of an air show or museum was when I was kid camping in Sumter National Forest in South Carolina. A couple A-10's from a local air base were doing some target practice. Their tank-busting guns sound like a giant dumpster slamming from far off. At first, we had no idea what the sound was coming from, so we joked it was the lizard man.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=bVfAiIPoODI=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=bVfAiIPoODI=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=bVfAiIPoODI&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-04-28-coin-operated-boy.html b/_posts/2008-04-28-coin-operated-boy.html
index efc0609..f44ccdc 100644
--- a/_posts/2008-04-28-coin-operated-boy.html
+++ b/_posts/2008-04-28-coin-operated-boy.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Coin Operated Boy"
tags: ["amanda palmer", "amanda palmer", "bitterness", "bitterness", "cabaret", "cabaret", "dresden dolls", "dresden dolls", "music", "music", "music videos", "music videos", "punk", "punk"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/04/28/coin-operated-boy/" target="_blank">http://ealdent.wordpress.com/2008/04/28/coin-operated-boy/</a><br /><br />
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=YAnyYTjjhJ0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=YAnyYTjjhJ0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=YAnyYTjjhJ0&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>My new favorite band (thank you, Pandora): the <a href="http://www.pandora.com/music/artist/dresden+dolls" target="_blank">Dresden Dolls</a>. The band is a Boston duo with vocals by Amanda Palmer, who is supposed to be releasing an album this year with some collaboration by Ben Folds. They describe themselves as Brechtian (as in <a href="http://en.wikipedia.org/wiki/Bertolt_Brecht" target="_blank">Bertolt</a>) punk cabaret, which actually seems to fit. The lyrics are occasionally self-referential, often bitter and always insightful. The music is a blend of piano, carnival music, and the 1920's. Plus a million other things. So cool.</p>
<p>Note, the youtube version of "Coin Operated Boy" is about a minute short. If you can get your hands on the full version, I find it much better. Another song I love below.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Awnjw36mNEs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Awnjw36mNEs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=Awnjw36mNEs&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-14-games-with-a-purpose.html b/_posts/2008-05-14-games-with-a-purpose.html
index 63f8341..5a620f7 100644
--- a/_posts/2008-05-14-games-with-a-purpose.html
+++ b/_posts/2008-05-14-games-with-a-purpose.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Games with a Purpose"
tags: ["ai", "ai", "cmu", "cmu", "computer science", "computer science", "games", "games", "gaming", "gaming", "gwap", "gwap", "human computation", "human computation", "luis von ahn", "luis von ahn", "research", "research"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/14/games-with-a-purpose/" target="_blank">http://ealdent.wordpress.com/2008/05/14/games-with-a-purpose/</a><br /><br />
<p>Today is the official opening day of <a title="Games with a Purpose" href="http://www.gwap.com" target="_blank">GWAP: Games with a Purpose</a>. This is one of two research projects I have been working on for the past few months, though my involvement with GWAP so far has only been in the form of attending meetings, minor testing, and offering my sage gaming advice (and by sage, I mean the herb). GWAP is the next phase in <a href="http://www.cs.cmu.edu/~biglou" target="_blank">Luis von Ahn</a>'s human computation project. If you visit and play some games, not only will you be rewarded with a good time, but you'll be helping science! Science needs you. To play games. Now.</p>
<h3>The Idea</h3>
<p>Artificial intelligence has come a long way, but humans are still far better at computers at simple, everyday tasks. We can quickly pick out the key points in a photo, we know what words mean and how they are related, we can identify various elements in a piece of music, etc. All of these things are still very difficult for computers. So why not funnel some of the gazillion hours we waste on solitaire into something useful? Luis has already launched a couple websites that let people play games while solving these problems. Perhaps you've noticed the link to <a href="http://images.google.com/imagelabeler/" target="_blank">Google Image Labeler</a> on Google Image Search? That idea came from his ESP game (which is now on GWAP).</p>
<h3>The Motivation</h3>
<p>What researchers need to help them develop better algorithms for computers to do these tasks is data. The more data the better. Statistical machine translation has improved quite a bit over the past few years, in large part due to an increased amount of data. This is the reason why languages that are spoken by few people (even those spoken by as few as several million) still don't have machine translation tools: there is just not enough data. More data means more food for these algorithms which means better results. And if results don't improve, then we have learned something else.</p>
<h3>The Solution</h3>
<p>Multiple billions of hours are spent each year on computer games. If even a small fraction of that time were spent performing some task that computers aren't yet able to do, we could increase the size of the data sets available to researchers enormously. Luis puts this all a lot better than I can, and fortunately, you can watch him on YouTube (below).</p>
So, check it out already.
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qlzM3zcd-lk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qlzM3zcd-lk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=qlzM3zcd-lk&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-18-gwap-promo.html b/_posts/2008-05-18-gwap-promo.html
index 4e4b72b..be6756c 100644
--- a/_posts/2008-05-18-gwap-promo.html
+++ b/_posts/2008-05-18-gwap-promo.html
@@ -1,8 +1,8 @@
---
layout: post
title: "GWAP Promo"
tags: ["computer science", "computer science", "family", "family", "games", "games", "gwap", "gwap", "human computation", "human computation", "johnny lee", "johnny lee", "ohio", "ohio", "videos", "videos", "wii", "wii"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/18/gwap-promo/" target="_blank">http://ealdent.wordpress.com/2008/05/18/gwap-promo/</a><br /><br />
<p>Figured I'd post this promo video the GWAP group did. Unfortunately, I wasn't able to participate in the filming of it since I was visiting my dad and family in Ohio for the first time after many years. So unfortunate in that I missed the filming, but the alternative was worth it. <a href="http://www.youtube.com/user/jcl5m" target="_blank">Johnny Lee</a> had a not insignificant role in the making of the video, I believe. Check out his stuff if you haven't, he's doing some pretty amazing things with Wii remotes.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=vUH-eZTSTfs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=vUH-eZTSTfs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=vUH-eZTSTfs&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-19-is-that-all-there-is.html b/_posts/2008-05-19-is-that-all-there-is.html
index c7f23b1..b06543f 100644
--- a/_posts/2008-05-19-is-that-all-there-is.html
+++ b/_posts/2008-05-19-is-that-all-there-is.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Is that all there is?"
tags: ["movies", "movies", "music", "music", "pandora", "pandora", "peggy lee", "peggy lee", "revolver", "revolver", "the nines", "the nines", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/19/is-that-all-there-is/" target="_blank">http://ealdent.wordpress.com/2008/05/19/is-that-all-there-is/</a><br /><br />
<p>My taste in music is definitely in flux. Five years ago I would have found this intolerable, but now I can't stop listening to it. I blame <a href="http://www.pandora.com" target="_blank">Pandora</a>. The musical journeys it takes you on can be transformational.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qe9kKf7SHco=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qe9kKf7SHco=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=qe9kKf7SHco&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>Unfortunately the video stops before the song is over, but YouTube offers several full length suggestions immediately after. The videos themselves are all insane, so I didn't want to endorse any. I just listen to the sound track in another tab and don't watch them.</p>
<p>This question was a central theme in the movie <em>The Nines</em>, which I recommend. It also came up in <em>Revolver</em>, which I just watched tonight, though it wasn't asked explicitly. Instead, the question is who is your worst enemy? The movie's position is that it is not external, but internal. I think I can say that without spoiling anything. The trick is to avoid the lie that your perception is infallible. Pulling that off is a different matter altogether, though it is a helpful trait for a good scientist.</p>
diff --git a/_posts/2008-06-18-spore-creature-creator.html b/_posts/2008-06-18-spore-creature-creator.html
index 3d5f223..ad705d0 100644
--- a/_posts/2008-06-18-spore-creature-creator.html
+++ b/_posts/2008-06-18-spore-creature-creator.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Spore Creature Creator"
tags: ["creatures", "creatures", "demos", "demos", "games", "games", "gaming", "gaming", "maxis", "maxis", "spore", "spore", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/06/18/spore-creature-creator/" target="_blank">http://ealdent.wordpress.com/2008/06/18/spore-creature-creator/</a><br /><br />
<p><a href="http://www.spore.com" target="_blank">Spore</a> is probably the most anticipated game of the year. Indeed, it has been anticipated for quite a while. It's by the same dude who did SimCity and the Sims, yada yada, if you want to know all that you can check out the <a href="http://www.gamasutra.com/php-bin/news_index.php?story=18029" target="_blank">myriad gaming articles</a> out there who care a lot more about the particulars than I do. The main thing of interest to me is the creature creator at this point, since Maxis just released a <a href="http://www.spore.com/trial" target="_blank">demo version</a> of it. You can also buy a non-disabled version for $10 (digitally starting at noon CST today). The demo version limits the variety of parts you can add pretty significantly. What it does let you see is how well it animates and interprets the morphology of the creatures you make. And it's pretty frickin' cool.</p>
Below is one of my creations, Otzertzen.
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=h061RQq662k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=h061RQq662k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://youtube.com/watch?v=h061RQq662k&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-10-10-a-thing-of-horror.html b/_posts/2008-10-10-a-thing-of-horror.html
index 7ee3e33..28d54e7 100644
--- a/_posts/2008-10-10-a-thing-of-horror.html
+++ b/_posts/2008-10-10-a-thing-of-horror.html
@@ -1,9 +1,9 @@
---
layout: post
title: "A thing of horror"
tags: ["abomination", "abomination", "androids", "androids", "creepy", "creepy", "horror", "horror", "little girls", "little girls", "real sci-fi", "real sci-fi", "robots", "robots"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/10/a-thing-of-horror/" target="_blank">http://ealdent.wordpress.com/2008/10/10/a-thing-of-horror/</a><br /><br />
If you're in the mood for some bad dreams, look no further.
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=0P-Jl6Hb5Vw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=0P-Jl6Hb5Vw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://uk.youtube.com/watch?v=0P-Jl6Hb5Vw&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-10-11-daedal-on-the-hunt.html b/_posts/2008-10-11-daedal-on-the-hunt.html
index 99d05e4..0f732e8 100644
--- a/_posts/2008-10-11-daedal-on-the-hunt.html
+++ b/_posts/2008-10-11-daedal-on-the-hunt.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Daedal on the hunt"
tags: ["beagles", "beagles", "chipmunks", "chipmunks", "digging", "digging", "dog parks", "dog parks", "dogs", "dogs", "holes", "holes", "hunting", "hunting"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/11/daedal-on-the-hunt/" target="_blank">http://ealdent.wordpress.com/2008/10/11/daedal-on-the-hunt/</a><br /><br />
<p>Daedalus does a great job of finding where animals are or have been. Â He tends to let the smells consume his attention, though, and he fails to notice when the animal scurries away, mere feet from him. Â Today was one such day. Â I watched the chipmunks he was pursuing all slip away to safer places.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=g37PC73DD3Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=g37PC73DD3Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=g37PC73DD3Q&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>If I watch this video with the sound turned on, it drives both my dogs crazy.</p>
diff --git a/_posts/2008-11-10-fallout-3-teaser.html b/_posts/2008-11-10-fallout-3-teaser.html
index 18f38a8..2fa6a5f 100644
--- a/_posts/2008-11-10-fallout-3-teaser.html
+++ b/_posts/2008-11-10-fallout-3-teaser.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Fallout 3 Teaser"
tags: ["advertising", "advertising", "dystopian sci-fi", "dystopian sci-fi", "fallout", "fallout", "games", "games", "post-apocalyptic", "post-apocalyptic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/10/fallout-3-teaser/" target="_blank">http://ealdent.wordpress.com/2008/11/10/fallout-3-teaser/</a><br /><br />
<p>Fallout 2 was one of the best games I've ever played. Post-apocalpytic, satirical, and gritty. Good times.</p>
<p>The trailer for the next one is awesome, and apparently it's due out soon...</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=zPt08UYmyMo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=zPt08UYmyMo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=zPt08UYmyMo&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-11-13-fomalhaut-b.html b/_posts/2008-11-13-fomalhaut-b.html
index e32eeb8..cc89464 100644
--- a/_posts/2008-11-13-fomalhaut-b.html
+++ b/_posts/2008-11-13-fomalhaut-b.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Fomalhaut B"
tags: ["extra-solar planets", "extra-solar planets", "fomalhaut", "fomalhaut", "hubble", "hubble", "nasa", "nasa", "planets", "planets", "space", "space"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/13/fomalhaut-b/" target="_blank">http://ealdent.wordpress.com/2008/11/13/fomalhaut-b/</a><br /><br />
<p>Hubble <a href="http://science.nasa.gov/headlines/y2008/13nov_fomalhaut.htm" target="_blank">has captured</a> a visible-spectrum image of a planet revolving around Fomalhaut. Previously planets had only been observed indirectly, such as when the planet passes between Earth and the star. Fomalhaut is close enough that Hubble was able to catch a glimpse of the highly reflective giant planet, which is about three times the size of Jupiter and tens times as far from Fomalhaut as Saturn is from the sun.</p>
Check out the video for more info.
<p></p>
<a href="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg"><img class="size-full wp-image-855" title="formalhaut_b" src="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg" alt="Hubble captures first visible image of an extra solar planet" width="490" height="392" /></a>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=gRw-cNiVIVo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=gRw-cNiVIVo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=gRw-cNiVIVo&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p><em>Update:Â I originally misspelled this is as "Formalhaut," a mistake I've been making ever since I was a kid and always forget.</em></p>
diff --git a/_posts/2008-11-23-global-food-situation.html b/_posts/2008-11-23-global-food-situation.html
index 4e24a52..9695ee8 100644
--- a/_posts/2008-11-23-global-food-situation.html
+++ b/_posts/2008-11-23-global-food-situation.html
@@ -1,9 +1,9 @@
---
layout: post
title: "The global food problem is our problem"
tags: ["agriculture", "agriculture", "diet", "diet", "food", "food", "japan", "japan", "public service messages", "public service messages"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/23/global-food-situation/" target="_blank">http://ealdent.wordpress.com/2008/11/23/global-food-situation/</a><br /><br />
This is a brilliant way to convey the gravity of a fairly complicated message. [<a href="http://datamining.typepad.com/data_mining/2008/11/isometric-reasons-to-lose-weight.html" target="_blank">via</a>]
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ok3ykR2GHCc=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ok3ykR2GHCc=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=ok3ykR2GHCc&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-12-03-thanksgiving-2008.html b/_posts/2008-12-03-thanksgiving-2008.html
index e71f691..13638b6 100644
--- a/_posts/2008-12-03-thanksgiving-2008.html
+++ b/_posts/2008-12-03-thanksgiving-2008.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Thanksgiving 2008"
tags: ["2008", "2008", "babies", "babies", "family", "family", "fish", "fish", "north carolina", "north carolina", "thanksgiving", "thanksgiving", "turkey", "turkey", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/03/thanksgiving-2008/" target="_blank">http://ealdent.wordpress.com/2008/12/03/thanksgiving-2008/</a><br /><br />
<p>Bit late, but I wanted to post a couple thoughts on the just-passed Thanksgiving. My immediate family (mom and sisters) converged on my eldest younger sister's house in Durham, NC. We had an absolutely fantastic turkey covered in some sort of fennel-based concoction, courtesy of my brother-in-law. It was succulent. Rapturous, even. The trip there was frustrating. There were numerous accidents and tons of traffic. Much delay and cursing was to be had. I almost gave up and wanted to turn around, but we soldiered on.</p>
<p>The biggest downer was the fact that a close family member had to be taken to the emergency room. I won't say which, for medical privacy reasons, but it was a bit scary. They are better now, but it will require ongoing treatment. It wasn't food-related.</p>
<p>My sister and brother-in-law have some salt water fish, including a puffer that has grown a couple orders of magnitude since they got it. It's slowly eating its way through the other fish in the aquarium and gets really angry when you get near it and aren't feeding it.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=a1lWjW_6vPE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=a1lWjW_6vPE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=a1lWjW_6vPE&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>And (good gravy!) isn't this the cutest baby you've ever seen?</p>
<p>
<a href="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg"><img class="size-full wp-image-928" title="Baby niece" src="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg" alt="The cutest baby ever. Yes, even cuter than yours." width="490" height="367" /></a> </p>
diff --git a/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html b/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
index d6bac64..2ee5d0e 100644
--- a/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
+++ b/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
@@ -1,9 +1,9 @@
---
layout: post
title: "GUI interface for VB to track IP addresses"
tags: ["csi new york", "csi new york", "stupidity", "stupidity", "television", "television", "visual basic", "visual basic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/29/gui-interface-for-vb-to-track-ip-addresses/" target="_blank">http://ealdent.wordpress.com/2008/12/29/gui-interface-for-vb-to-track-ip-addresses/</a><br /><br />
<p>Television shows seldom get computer stuff right, so I shouldn't be surprised. But then I heard this humdinger on CSI New York during the 1 minute I was watching it. After I simultaneously guffawed and snorted in derision, I changed the channel.</p>
-<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Ni_rAamVP2s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Ni_rAamVP2s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-12-31-top-posts-of-2008.html b/_posts/2008-12-31-top-posts-of-2008.html
index 638b449..c2e2daf 100644
--- a/_posts/2008-12-31-top-posts-of-2008.html
+++ b/_posts/2008-12-31-top-posts-of-2008.html
@@ -1,61 +1,61 @@
---
layout: post
title: "Top posts of 2008"
tags: ["2008", "2008", "blagoblag", "blagoblag", "blogging", "blogging", "top posts", "top posts", "year in review", "year in review"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/31/top-posts-of-2008/" target="_blank">http://ealdent.wordpress.com/2008/12/31/top-posts-of-2008/</a><br /><br />
<p>Looking back over 2008, there have been a lot of changes in my life. Many of those are reflected in my blog, but few are reflected in the posts that have gotten the most traffic. But for the hell of it, here are the top posts anyway.</p>
<table border="1" cellpadding="3" align="center">
<thead>
<tr>
<th>Post</th>
<th>Hits in 2008</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/11/08/old-english-translator/">Old English Translator</a></td>
<td>10,589</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/12/09/christmas-tree-2007/">Christmas Tree 2007</a></td>
<td>4,393</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2008/03/30/steampunk-death-star/">Steampunk Death Star</a></td>
<td>1,362</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/09/30/salad-fingers-8/">Salad Fingers 8</a></td>
<td>1,108</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2008/11/30/10-reasons-to-use-git-for-research/">10 Reasons to Use Git for Research</a></td>
<td>1,032</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/09/18/merge-sort-fun/">Merge sort fun</a></td>
<td>777</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/25/the-noobs-guide-to-parsing/">The Noob's Guide to Parsing</a></td>
<td>774</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/12/05/java-properties/">Java Properties</a></td>
<td>759</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/16/ambigrams/">Ambigrams</a></td>
<td>719</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/04/substitution-ciphers/">Substitution Ciphers</a></td>
<td>680</td>
</tr>
</tbody></table>
<p></p>
<p>Of all of those posts, the best one is hands down <a href="http://ealdent.wordpress.com/2008/11/30/10-reasons-to-use-git-for-research/">10 Reasons to Use Git for Research</a>. After that, the <a href="http://ealdent.wordpress.com/2007/10/25/the-noobs-guide-to-parsing/">Noob's Guide to Parsing</a>. Some of the posts with the most hits are just link-sharing, where I saw something cool (Salad Fingers, Steampunk Star Wars, Ambigrams) and then other people found my link first. One definite change on this blog was a decrease in the frequency of my posts. Around the end of last year, I was posting close to 2 items per day. Now it has stretched out to about 2 items per week. Maybe I'll reflect more on that later.</p>
<p>I'll leave you with these thoughts.</p>
-<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=monyiOsoKxg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=monyiOsoKxg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v=monyiOsoKxg&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/converter.py b/converter.py
index 310e2f5..d9b1b7c 100755
--- a/converter.py
+++ b/converter.py
@@ -1,121 +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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
tags = list()
if len(tags) == 0:
return None
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".html"
original_link = "http://ealdent.wordpress.com" + entry.link.split(".com")[1]
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
# replace youtube links
idx = -1
while True:
idx = content.find(u"[youtube=", idx + 1)
if idx < 0:
break
print "\t\tFOUND YOUTUBE"
end_idx = content.find(u"]", idx) + 1
if end_idx < 0:
break
youtube = content[idx:end_idx]
youtube_link = youtube.split(u"youtube=")[1][:-1]
- new_youtube = u"""<div class="youtube"><object width="425" height="344"><param name="movie" value="%s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>""" % (youtube_link)
+ new_youtube = u"""<div class="youtube"><object width="425" height="344"><param name="movie" value="%s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="%s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>""" % (youtube_link, youtube_link)
content = content.replace(youtube, new_youtube)
print "Replaced youtube for %s." % (title)
print "**********************************************************************"
# replace captions
idx = -1
while True:
idx = content.find(u"[caption", idx + 1)
if idx < 0 :
break
print "\t\tFOUND CAPTION"
end_idx = content.find(u"]", idx) + 1
if end_idx < 0:
break
content = content.replace(content[idx:end_idx], u" ")
content = content.replace(u"[/caption]", u" ")
print "Replaced caption for %s." % (title)
print "**********************************************************************"
f.write(u"<hr /><br />Original post can be found at: <a href=\"%s\" target=\"_blank\">%s</a><br /><br />\n%s\n" % (original_link, original_link, content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
<td width="20%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
-
+<hr />
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
<td width="20%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
-{% if site.related_posts.size > 0 %}
-<div id="related">
- <hr>
- <h2>Related Posts</h2>
- <ul class="posts">
- {% for post in site.related_posts limit:3 %}
- <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
- {% endfor %}
- </ul>
-</div>
-{% endif %}
-
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
tags = list()
if len(tags) == 0:
return None
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".html"
original_link = "http://ealdent.wordpress.com" + entry.link.split(".com")[1]
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
# replace youtube links
idx = -1
while True:
idx = content.find(u"[youtube=", idx + 1)
if idx < 0:
break
print "\t\tFOUND YOUTUBE"
end_idx = content.find(u"]", idx) + 1
if end_idx < 0:
break
youtube = content[idx:end_idx]
youtube_link = youtube.split(u"youtube=")[1][:-1]
new_youtube = u"""<div class="youtube"><object width="425" height="344"><param name="movie" value="%s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>""" % (youtube_link)
content = content.replace(youtube, new_youtube)
print "Replaced youtube for %s." % (title)
print "**********************************************************************"
# replace captions
idx = -1
while True:
idx = content.find(u"[caption", idx + 1)
if idx < 0 :
break
print "\t\tFOUND CAPTION"
end_idx = content.find(u"]", idx) + 1
if end_idx < 0:
break
content = content.replace(content[idx:end_idx], u" ")
+ content = content.replace(u"[/caption]", u" ")
print "Replaced caption for %s." % (title)
print "**********************************************************************"
f.write(u"<hr /><br />Original post can be found at: <a href=\"%s\" target=\"_blank\">%s</a><br /><br />\n%s\n" % (original_link, original_link, content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
diff --git a/css/screen.css b/css/screen.css
index bb0c200..0526055 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -1,318 +1,323 @@
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
font-size: 75%;
font-family: Verdana;
color: #aaa;
}
#tags {
text-align: left;
font-family: Verdana;
color: #545454;
font-size: 80%;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
#top-bar table {
border: 0;
}
#top-bar tr {
vertical-align: top;
}
#tag-bar td {
margin: 0 75%;
}
#date-bar td {
margin: 0 25%;
}
textarea.comments {
margin-bottom: 5px;
+}
+
+.youtube {
+ text-align: center;
+ float: center;
}
\ No newline at end of file
|
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", "conferences", "japan", "japan", "pecha kucha", "pecha kucha", "performance art", "performance art", "presentations", "presentations", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/03/pecha-kucha/" target="_blank">http://ealdent.wordpress.com/2007/09/03/pecha-kucha/</a><br /><br />
I came across <a href="http://www.wired.com/techbiz/media/magazine/15-09/st_pechakucha#" title="Wired - Pecha Kucha" target="_blank">this article</a> in Wired today about a new format for presentations called Pecha Kucha, which comes from the Japanese word for <em>chit-chat</em>. It was invented by a foreign architect duo Mark Dytham (British) and Astrid Klein (Italian) living in Japan who saw a need for a way to showcase their work that blossomed quickly into a international fad. Four years after its inception, there are Pecha Kucha nights in over 80 cities worldwide.
The idea is simple: 20 slides. 20 seconds each. That's 400 seconds = 6 minutes 40 seconds. The result is a sort of performance art that allows people to network and showcase their work. Pecha Kucha seems to be bleeding over into the mainstream business world based on a couple of quick YouTube searches. I think it should bleed over into the scientific. I see two other places that would benefit greatly from it:
<!--more-->
<ol>
<li>Academic Conferences. In addition to a poster session, include a Pecha Kucha session where 14 posters get presented in Pecha Kucha format. Posters usually offer a more high-level view of some particular bit of research and so the Pecha Kucha is the perfect format for a quick presentation. With fewer nitty-gritty details, this format would force the presenter to consider how best to present the architecture and underlying ideas so as to not bore the audience. (Yes I am hoping for a miracle)</li>
<li>Student Presentations. How many times have I fallen asleep in student presentations where detailed algorithms or equations are displayed on the slide. I don't learn well off of clunky slides presented in dull monotones or heavily accented speech. Therefore, such slides shove me into a pitched battle of the eyelids with the constant fear of ambush by microsleep. Speeding the presentation up and forcing the presenter to consider the flow of their presentation would be an enormous bonus. Plus we wouldn't have to waste four class periods for 10-20 people to present their stuff. It could be done in two. I think Pecha Kucha forces the presenter to be more aware and more skillful in the design of their presentation which should actually improve their presentation skills far more than 80 detailed slides given in broken, unrehearsed mumbles.</li>
</ol>
If you agree with me, talk to your department/supervisor and start changing things so that I don't have to have the Pavlovian response of falling asleep whenever I hear the word <em>presentation</em>.
-<p align="center">[youtube=http://uk.youtube.com/watch?v=9NZOt6BkhUg]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=9NZOt6BkhUg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="left">See also: <a href="http://www.pecha-kucha.org/" title="Pecha Kucha" target="_blank">pecha-kucha.org</a></p>
diff --git a/_posts/2007-09-14-edwards-on-msnbc.html b/_posts/2007-09-14-edwards-on-msnbc.html
index e1d6676..58d7839 100644
--- a/_posts/2007-09-14-edwards-on-msnbc.html
+++ b/_posts/2007-09-14-edwards-on-msnbc.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Edwards on MSNBC"
tags: ["W", "W", "candidates", "candidates", "edwards", "edwards", "endless war", "endless war", "evil politicians", "evil politicians", "iraq war", "iraq war", "kucinich", "kucinich", "media", "media", "obama", "obama", "politics", "politics", "presidential election", "presidential election", "vote", "vote", "war", "war"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/14/edwards-on-msnbc/" target="_blank">http://ealdent.wordpress.com/2007/09/14/edwards-on-msnbc/</a><br /><br />
Well, I didn't get a chance to listen to Edwards last night on MSNBC, since I apparently can't work a TV anymore. I thought I was watching MSNBC, it was actually NBC and then after Senator Jack Reed of Rhode Island made the Democratic response and there was no John Edwards, I realized my mistake. Thanks to the wonders of the giant tubes that make up the interwebs, I was able to watch his speech:
-<p align="center">[youtube=http://www.youtube.com/watch?v=3u9Hib5LFOw]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=3u9Hib5LFOw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="left">I was pretty happy about the speech, though it came off as disappointingly weak at the end. He made a convincing, fairly non-aggressive case against prolonging the war, arguing from simple practicality. It seems this approach could possibly be better at persuading conservatives and fence-sitters than saying that Bush and the military are terrorists (ala Rosie O'Donnell). And yes I know she didn't <em>actually</em> say that. What was weak in Edwards' speech was the whole "timeline" business. It annoys me whenever I hear it. It's so open-ended. If by timeline, he means in three weeks, then I can live with that.</p>
<p align="left">Another problem here is that while Edwards has come out on the side of peace, he still voted for the war: a serious failure in judgment. And I don't even listen to Obama (aka <a href="http://mendicantbug.com/2007/08/10/barack-obomba/" title="Barack Obama - aka Obomba" target="_blank">Obomba</a>) when he chastises other candidates for voting for the war. Based on his long history of voting to prolong W's endless war, I have little doubt that Obama would have been right there with his "aye" raised high when called upon to vote to overthrow a sovereign nation whose leadership we installed.</p>
<p align="left">It returns to the fact that there is only one choice: Dennis Kucinich. Electability is a term invented by the corporate-sponsored media. Real electability is what happens when you actually go out and vote with your mind and heart instead of voting because of what some plastic face on a TV screen tells you to do. Dennis Kucinich is the only one who has opposed this war at every turn, the only one who has a real plan to bring our troops home. Edwards was right when he said the only way to force a political solution between Shiites and Sunnis is for us to get out of there. Kucinich has been saying that all along. We should hold all of these democrats accountable and vote for the only one with the clarity of mind and morals to do what was right from the very beginning and elect Kucinich.</p>
diff --git a/_posts/2007-09-16-willow-and-the-frisbee.html b/_posts/2007-09-16-willow-and-the-frisbee.html
index d566495..b556409 100644
--- a/_posts/2007-09-16-willow-and-the-frisbee.html
+++ b/_posts/2007-09-16-willow-and-the-frisbee.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Willow and the Frisbee"
tags: ["dogs", "dogs", "fair", "fair", "frisbee", "frisbee", "york", "york"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/16/willow-and-the-frisbee/" target="_blank">http://ealdent.wordpress.com/2007/09/16/willow-and-the-frisbee/</a><br /><br />
This weekend we visited Donna's family in York, Pennsylvania. Mainly it was a chance to see family and friends and we also went to the York Interstate Fair. Pictures from that will be posted when I get a chance, but here is a video I took of Willow from my phone.
-<p align="center">[youtube=http://youtube.com/watch?v=3NKip7Tp-yU]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=3NKip7Tp-yU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html b/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
index 3c0fac3..af9993c 100644
--- a/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
+++ b/_posts/2007-09-19-avast-ye-scurvy-blagoblag.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Avast, ye scurvy blagoblag!"
tags: ["accents", "accents", "blagoblag", "blagoblag", "pirates", "pirates", "talk like a pirate day", "talk like a pirate day"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/19/avast-ye-scurvy-blagoblag/" target="_blank">http://ealdent.wordpress.com/2007/09/19/avast-ye-scurvy-blagoblag/</a><br /><br />
Language Log has <a href="http://itre.cis.upenn.edu/~myl/languagelog/archives/004928.html" title="Talk like a pirate" target="_blank">a nice salute</a> to Talk Like a Pirate Day, where I found this clip:
-<p align="center">[youtube=http://www.youtube.com/watch?v=2tL1jbs0ppQ]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=2tL1jbs0ppQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
I used to have a pretty good pirate accent, but lately it's been turning into an Irish leprechaun accent. <em>Avast ye scurvy laddy, come look at me pot o' gold</em>. I'll have to practice. Oddly enough, my irish accent degenerates into a pseudo-pirate imitation. My current best is ze Frenchman and my Scottish brogue. Be sure to check out that Language Log post for the pirate ergonomic keyboard.
diff --git a/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html b/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
index 4349b12..45970fd 100644
--- a/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
+++ b/_posts/2007-09-28-the-seventh-son-of-a-seventh-son.html
@@ -1,10 +1,10 @@
---
layout: post
title: "The seventh son of a seventh son"
tags: ["books", "books", "dark fantasy", "dark fantasy", "dark is rising", "dark is rising", "entertainment", "entertainment", "fantasy", "fantasy", "movies", "movies", "susan cooper", "susan cooper"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/28/the-seventh-son-of-a-seventh-son/" target="_blank">http://ealdent.wordpress.com/2007/09/28/the-seventh-son-of-a-seventh-son/</a><br /><br />
I read <em>The Dark is Rising</em> by Susan Cooper a few years ago at the insistence of my ex-brother-in-law. It was one of his favorite books from his childhood and I believe he put it near the level of <em>The Chronicles of Narnia</em> and <em>Lord of the Rings</em> (but not quite). I figured that was bloody high praise, but waited a while before I got around to it. I'm not above reading kids books and seeing kids movies. Especially when they promise to be dark. I love dark fantasy. So anyhow, I enjoyed the book, though there were parts that were a little slow.
And now of course, there is a movie coming out next Friday. I'm curious how well they will pull it off. I never read the whole series, but in the first book there was a lot of mystery about the back story. Hopefully they won't destroy that feeling.
-<p align="center">[youtube=http://youtube.com/watch?v=0-4lycCvOE8]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=0-4lycCvOE8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-09-29-wheres-rudy.html b/_posts/2007-09-29-wheres-rudy.html
index d5d1caa..dd23d52 100644
--- a/_posts/2007-09-29-wheres-rudy.html
+++ b/_posts/2007-09-29-wheres-rudy.html
@@ -1,20 +1,20 @@
---
layout: post
title: "Where's Rudy?"
tags: ["celebrities", "celebrities", "election", "election", "evil politicians", "evil politicians", "fundraising", "fundraising", "giuliani", "giuliani", "gop", "gop", "hispanics", "hispanics", "politics", "politics", "presidential election", "presidential election", "racism", "racism", "republican", "republican"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/29/wheres-rudy/" target="_blank">http://ealdent.wordpress.com/2007/09/29/wheres-rudy/</a><br /><br />
Came across <a href="http://therealrudy.org/" title="the real rudy giuliani" target="_blank">this funny little video</a> asking the simple question, where was Rudy? Rudy Giuliani had "scheduling issues" and so couldn't make it to the Republican Debate discussing issues pertaining to "Black America." The video explains exactly what he was doing.
<ol>
<li>Morning press conference announcing Pete Wilson supports him (more on Pete Wilson below the jump)</li>
<li>Evening fund raiser featuring Bo Derrick and Dennis Miller where he raised $100k.</li>
</ol>
The video leaves you with the question: "Where are his priorities?" Well, obviously not with Black America. And Republicans never really have bothered very much with Black America, so why start now. For a party that supposedly opposes abortion, they do very little to help the segment of the population who is forced into having the most of them. Black teens historically have twice as many abortions as hispanics and nearly three times as many as non-Hispanic whites. Of course, that doesn't matter to Rudy either.
I sure hope this joker doesn't get elected.
-<p align="center"><!--more-->[youtube=http://www.youtube.com/watch?v=VQ0GupTQVpA]</p>
+<p align="center"><!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=VQ0GupTQVpA=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
Pete Wilson is a former Republican governor of California. Why anyone cares whether he's endorsing a candidate is beyond me, though I suppose there are a few in California who might care. Of course, there is no way in hell that Rudy will take California if he does get the GOP nod, but there you have it. I guess the benefit is in helping him get the GOP nod in the first place.
So in my quest to find out a little bit about Pete Wilson, and I do stress <em>little</em>, I happened on <a href="http://video1.washingtontimes.com/dinan/2007/09/the_blessing_or_curse_of_pete.html" title="washington times - blessing and curse of pete wilson" target="_blank">this nice little piece</a> in the Washington Times about the blessing/curse of his endorsement. Stephen Dinan reports that Wilson is often credited with turning California into a permanent blue state by alienating immigrants with Prop 187 - an evil little bit of legislation from back in 1994 designed to deny immigrants social services, health care, and public education. It was struck down by the federal courts and Gray Davis later let the case drop. However, it must make you wonder as a hispanic voter in California, whether any Republican can be trusted or is worth voting for. Of course, Republicans haven't done much to change things since.
But I think Rudy getting Pete's endorsement is indicative of the kind of presidency we'd see from this guy.
diff --git a/_posts/2007-09-30-daedalerberus.html b/_posts/2007-09-30-daedalerberus.html
index 3212b3b..8170efa 100644
--- a/_posts/2007-09-30-daedalerberus.html
+++ b/_posts/2007-09-30-daedalerberus.html
@@ -1,12 +1,12 @@
---
layout: post
title: "Daedalerberus"
tags: ["cerberus", "cerberus", "christmas", "christmas", "costumes", "costumes", "dogs", "dogs", "greek mythology", "greek mythology", "halloween", "halloween", "pets", "pets", "reindeer", "reindeer", "reindog", "reindog"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/09/30/daedalerberus/" target="_blank">http://ealdent.wordpress.com/2007/09/30/daedalerberus/</a><br /><br />
I came across this dog costume on <a href="http://thegreenman.net.au/mt/archives/000479.html" title="the Green Man" target="_blank">the Green Man</a>. I think Daedalus would look hilarious in it. Last Christmas, we dressed him as Daedal the red-nosed reindog. Just need to find some stuffed animals and someone who knows how to sew...
<p><a><img src="http://ealdent.files.wordpress.com/2007/09/fluffy.jpg" alt="Cerberus in New York - The Green Man" /></a></p>
<!--more-->
And Daedal the red-nosed reindog:
<p><img src="http://ealdent.files.wordpress.com/2007/09/daedal_rednosed1.jpg" alt="Daedal the Red Nosed Reindog" /></p>
-<p>[youtube=http://youtube.com/watch?v=fjlkFw16IvY]</p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=fjlkFw16IvY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-01-what-people-hear.html b/_posts/2007-10-01-what-people-hear.html
index 0843fe2..62668a2 100644
--- a/_posts/2007-10-01-what-people-hear.html
+++ b/_posts/2007-10-01-what-people-hear.html
@@ -1,9 +1,9 @@
---
layout: post
title: "What people hear"
tags: ["entropy", "entropy", "humor", "humor", "information", "information", "information theory", "information theory", "memes", "memes", "memetics", "memetics", "presentations", "presentations"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/01/what-people-hear/" target="_blank">http://ealdent.wordpress.com/2007/10/01/what-people-hear/</a><br /><br />
While on <a href="http://mendicantbug.com/category/presentations/" title="The Mendicant Bug - presentations">the topic</a> of presentations, I came across this video in <a href="http://www.presentationzen.com/presentationzen/2007/04/powerpoint_some.html" title="Presentation Zen" target="_blank">the archives</a> of Presentation Zen and then <a href="http://www.badastronomy.com/bablog/2007/09/30/chicken/" title="Bad Astronomy - Chicken" target="_blank">again</a> on Bad Astronomy the same day. Coincidence or some hidden <a href="http://en.wikipedia.org/wiki/Meme#Memetics" title="Memetics" target="_blank">memetic</a> process?
-<p align="center"> [youtube=http://www.youtube.com/watch?v=yL_-1d9OSdk]</p>
+<p align="center"> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=yL_-1d9OSdk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
I think it's an awesome example of how the worst PowerPoint presentations actually come across: as messages with zero entropy (that is, no information).
diff --git a/_posts/2007-10-06-hickory-horned-devil.html b/_posts/2007-10-06-hickory-horned-devil.html
index 41362a7..04a94b7 100644
--- a/_posts/2007-10-06-hickory-horned-devil.html
+++ b/_posts/2007-10-06-hickory-horned-devil.html
@@ -1,15 +1,15 @@
---
layout: post
title: "Hickory Horned Devil"
tags: ["biology", "biology", "caterpillars", "caterpillars", "hickory horned devil", "hickory horned devil", "hiking", "hiking", "insects", "insects", "moths", "moths", "nature", "nature", "trails", "trails"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/06/hickory-horned-devil/" target="_blank">http://ealdent.wordpress.com/2007/10/06/hickory-horned-devil/</a><br /><br />
<p>Donna and I were lucky a couple weeks ago while at the park with the dogs. We were walking back to the car from the water area where Willow was swimming when we came upon two people hunched over something in the trail. When we got closer, we saw a giant green caterpillar with bizarre head spikes. Everyone was afraid to touch it, because the spikes looked pretty nasty (an effective defense, indeed!). The dogs were only semi-curious, but we kept them away just in case. It was crossing the trail, one frequented by dogs and bikers, so the two people hunched over it were trying to protect it as it made its way to safety. I took a couple shots, which didn't come out perfectly, but should still give you an idea.</p>
-[caption id="" align="aligncenter" width="490" caption="Hickory Horned Devil caterpillar"]<img title="Hickory Horned Devil" src="http://ealdent.files.wordpress.com/2007/10/caterpillar.jpg" alt="Hickory Horned Devil Caterpillar or Larvae" width="490" height="368" />[/caption]
+ <img title="Hickory Horned Devil" src="http://ealdent.files.wordpress.com/2007/10/caterpillar.jpg" alt="Hickory Horned Devil Caterpillar or Larvae" width="490" height="368" />[/caption]
<p><!--more-->
These caterpillars turn into Royal Walnut Moths (aka Regal Moths), which are quite beautiful. They are typically found in late summer, growing during the caterpillar (larvae) stage for about 40 days before wandering around looking for a place to burrow in order to pupate over the winter. The moths are usually found during mid-summer. It turns out the Hickory Horned Devil is quite harmless, so we could have picked it up with no worries. But, better safe than sorry.
-[caption id="" align="aligncenter" width="400" caption="Royal Walnut Moth"]<img src="http://ealdent.files.wordpress.com/2007/10/jsc-9908-male-royal-walnut-4.JPG" alt="Royal Walnut Moth or Regal Moth" width="400" height="300" />[/caption]</p>
+ <img src="http://ealdent.files.wordpress.com/2007/10/jsc-9908-male-royal-walnut-4.JPG" alt="Royal Walnut Moth or Regal Moth" width="400" height="300" />[/caption]</p>
diff --git a/_posts/2007-10-06-mrs-mcgrath.html b/_posts/2007-10-06-mrs-mcgrath.html
index b949f1a..eda6ed9 100644
--- a/_posts/2007-10-06-mrs-mcgrath.html
+++ b/_posts/2007-10-06-mrs-mcgrath.html
@@ -1,87 +1,87 @@
---
layout: post
title: "Mrs. McGrath"
tags: ["anti-war", "anti-war", "folk", "folk", "france", "france", "great britain", "great britain", "history", "history", "lyrics", "lyrics", "music", "music", "napoleon", "napoleon", "peninsular war", "peninsular war", "pete seeger", "pete seeger", "songs", "songs", "spain", "spain"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/06/mrs-mcgrath/" target="_blank">http://ealdent.wordpress.com/2007/10/06/mrs-mcgrath/</a><br /><br />
While listening to Pandora a few months ago I heard "Mrs. McGrath" by Pete Seeger and found it catchy, but like most songs I hear on Pandora, it passed and didn't come again for a long while. But today I was sitting around and started singing the chorus:
<blockquote><em> Would you too-rye-ah
Foddle-diddle-dah
toorye oorye oorye-ah
Would you toorye-ah
Foddle diddle dah
toorye oorye oorye-ah</em><em>
</em></blockquote>
Feeling the need to pursue the song and listen to the full version, I found the name and then found the version I liked on iTunes. Of course, sharing is difficult, but I did find a version on YouTube by Raymond Crooke, bless him. The way Pete Seeger sang it was a little more clean and having the crowd singing the chorus in the background stirs me deeply in a way that Raymond doesn't quite capture, but his version is the more traditional one. Pete Seeger was singing that concert at Carnegie Hall in 1963, and I'm guessing the audience was a bunch of hippies.
-<p align="center"><!--more--> [youtube=http://youtube.com/watch?v=vqMU95Zen8M]</p>
+<p align="center"><!--more--> <div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=vqMU95Zen8M=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
The song is an Irish folk song almost two hundred years old, dating back to a Dublin printing of the lyrics in 1815. It is also known as "Mrs. McGraw." In the song, Mrs. McGrath watches her son go to war as a soldier and waits for seven long years as the <a href="http://en.wikipedia.org/wiki/Peninsular_War" title="Peninsular War between Britain and France" target="_blank">Peninsular Wars</a> between Britain and Napoleon play out. On the fifth of May, a cannonball took off both her son's legs and he returns to her on wooden pegs.
Napoleon instituted a blockade of Europe against England in 1806. He then carried out a stealthy invasion of Spain in 1808 and in a <em>coup de main</em>, overthrew the government without any hopes for a Spanish military reprisal. Charles IV abdicated, leaving Napoleon's brother Joseph to assume the throne. However, Joseph was completely unwanted in Spain and a popular uprising ensued. The French forces put down the rebellion, inspiring the painting by Goya "The Third of May." The US should take a lesson here. Ruled by kings for centuries and then Napoleon comes in and puts up a government and the Spanish reject it. Iraq was taken in a <em>coup de main</em>, as well. Britain entered the war later that year.
<p><img src="http://ealdent.files.wordpress.com/2007/10/goya_3rdofmay.jpg" alt="The Third of May" /></p>
Mrs. McGrath's son Ted says his legs were swept away on the fifth of May, and I've been trying to figure out just what event this might be alluding to. The uprising in Madrid occurred on May 2, 1808 and was put down the same day. The prisoners were executed the next day. This was before British involvement, which began several months later in August. There was fighting in Portugal around May 10th between Wellesley (Britain) and Soult (France) in 1809. Then in 1811, there was the <a href="http://en.wikipedia.org/wiki/Battle_of_Fuentes_de_Onoro" title="Battle of Fuentes de Onoro" target="_blank"><em>Battle of Fuentes de Onoro</em></a>, from May 3-5. My guess is this is the battle where Ted lost his legs.
Interestingly, the term <em>guerrilla</em> entered English around this time. There were groups of Spanish irregulars who opposed the French, and the British gave them aid. The Spanish called these skirmishes <em>guerra de guerrillas (</em>"war of little wars").
The song is about more than just a mother's worry for her son at war and her lament for his lost legs. It's often considered an anti-war song. The mother rails against "all foreign wars" in the final verse. Anti-war sentiment is nothing new but many people seem to dismiss it as being for the hippies. I think it's cool that this song became popular in Ireland and was printed up so soon after the end of the war.
<blockquote> "Oh, Mrs. McGrath," the sergeant said
"Would you like to make a soldier out of your son Ted
With a scarlett coat and a big cocked hat
Now, Mrs. McGrath, wouldn't you like that?"
Chorus:
Would you too-rye-ah
Foddle-diddle-dah
toorye oorye oorye-ah
Would you toorye-ah
Foddle diddle dah
toorye oorye oorye-ah
So, Mrs. McGrath sat on the sea shore
For the space of seven long years or more
'Til she spied a ship come a sailin on the sea
"Hallah-loo babbah-loo and I think it is he"
Chorus
"Oh captain dear, where have you been
Or have you been sailing on the Meditereen
Have you any tidings of my son Ted
Is the poor boy living or is he dead?"
Chorus
Then up steps Ted without any legs
And in their place, two wooden pegs
She kissed him a dozen times or two
"Holy Moses, it isn't you"
Chorus
"Oh was you drunk or was you blind
When you left your two fine legs behind
Or was it walking upon the sea
Wore your two fine legs from the knees away?"
Chorus
"I wasn't drunk and I wasn't blind
When I left my two fine legs behind
But a cannon ball on the fifth of May
Swept my two fine legs from the knees away"
Chorus
"Oh, Teddy my boy," the widow cried
"Your two fine legs were your mother's pride
I'd rather have my Ted as he used to be
Than the King of France and his whole navy"
Chorus
"All foreign wars I do proclaim
Between Don John and the King of Spain
By the heavens I'll make 'em rue the time
They swept the legs from a child of mine!"
Chorus</blockquote>
diff --git a/_posts/2007-10-07-real-x-wing-disintegrates.html b/_posts/2007-10-07-real-x-wing-disintegrates.html
index e18e5d3..0681344 100644
--- a/_posts/2007-10-07-real-x-wing-disintegrates.html
+++ b/_posts/2007-10-07-real-x-wing-disintegrates.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Real X-Wing Disintegrates"
tags: ["model rocketry", "model rocketry", "r2d2", "r2d2", "real sci-fi", "real sci-fi", "rockets", "rockets", "star wars", "star wars", "x-wing", "x-wing"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/07/real-x-wing-disintegrates/" target="_blank">http://ealdent.wordpress.com/2007/10/07/real-x-wing-disintegrates/</a><br /><br />
Apparently I'm the last one to hear <a href="http://gizmodo.com/gadgets/star-wars/rocket+powered-21+foot-long-x+wing-model-actually-flies-305976.php" title="X-wing" target="_blank">about this</a> since I was the 3166th Digg, but Andy Woerner and a group of friends have built a working X-wing fighter powered by solid-fuel rocket engines. This bad boy is 21 feet long and complete with a model R2D2. It was set to launch yesterday. The results were about what you'd expect. I don't think R2 managed to eject though, poor little droid.
-<p align="center">[youtube=http://youtube.com/watch?v=ogYrvEEM0Ts]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=ogYrvEEM0Ts=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-13-giant-hurt-ball.html b/_posts/2007-10-13-giant-hurt-ball.html
index 83a24be..296e477 100644
--- a/_posts/2007-10-13-giant-hurt-ball.html
+++ b/_posts/2007-10-13-giant-hurt-ball.html
@@ -1,34 +1,34 @@
---
layout: post
title: "Giant hurt ball"
tags: ["astronomy", "astronomy", "cassini probe", "cassini probe", "craters", "craters", "death star", "death star", "greek mythology", "greek mythology", "imagination", "imagination", "nasa", "nasa", "parody", "parody", "planetology", "planetology", "space", "space", "star wars", "star wars"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/13/giant-hurt-ball/" target="_blank">http://ealdent.wordpress.com/2007/10/13/giant-hurt-ball/</a><br /><br />
If you were going to build a death star, then hide it, what would it look like? SciAm Observations today has <a href="http://blog.sciam.com/index.php?title=new_image_of_saturn_s_moon_iapetus_as_a&more=1&c=1&tb=1&pb=1&ref=rss" title="SciAm Observations - Iapetus backgrounds" target="_blank">an array of desktop backgrounds</a> of the moon <a href="http://en.wikipedia.org/wiki/Iapetus_%28moon%29" title="Iapetus" target="_blank">Iapetus</a>, which orbits Saturn. Iapetus is an especially fascinating moon for many reasons. For starters, it has a giant impact crater. Also there is an equatorial ridge which encircles the entire moon, making it slightly resemble a walnut. The moon is heavily pockmarked with craters.
<table align="center" border="0">
<tr>
<td><a href="http://www.nasa.gov/mission_pages/cassini/multimedia/pia08384.html" target="_blank"><img src="http://ealdent.files.wordpress.com/2007/10/iapetus.jpg" alt="Iapetus - a moon of Saturn" /></a></td>
</tr>
<tr>
<td>
<p class="comments-feed">Image courtesy of NASA and JPL. Taken by the Cassini probe.</p>
</td>
</tr>
</table>
<h3></h3>
<h3><!--more--></h3>
<h3>Imagine Iapetus</h3>
Imagine for a moment, you are one of the first explorers of Iapetus in your advanced spacesuit that lets you move about freely (and with booster packs). You land in the center of the large impact crater, which lies in the bright region of the planet known as <em>Roncevaux Terra</em>. Beneath you is a deep crust of ice and the temperatures outside are less than -220 degrees Fahrenheit. Across the sky hangs Saturn, like a giant. Even at night on Iapetus, Saturn's light is bright enough to guide you. You stare off into the distance. About 150 miles away is the scarp of the crater, the wall that climbs up out of it. It's basically a ring of giant mountains, the only visible feature in all directions. Mountains over 9 miles high. Off in the direction of the pole, the mountains dip slightly, leading off to another, smaller impact crater.
You decide to head towards the equator of the moon. After many long bounces (the gravity is 1/50th of Earth's), you make the long journey over the icy, pockmarked landscape. In a few places, there was no ice and the ground was a dingy reddish-brown. Finall, in the distance you see the first signs of the equatorial ridge creeping over the horizon. As you get closer, it stretches into the sky. The ground stays mostly flat as you approach, there are no foot hills. Once you finally reach the end of the plain and look up at the peaks. They are towering over you at a staggering height of 12 miles.
Using your booster packs and the low gravity, you make it to the top and survey this bizarre world. Half covered in ice and half in dirt, like a spherical yin-yang symbol. Above you are the swirling clouds of Saturn and the rings, glittering in the morning light. A very small, but bright sun creeps over the horizon, turning this small world into a glittering polar landscape.
<h3>Strange Similarities</h3>
<a href="http://ealdent.files.wordpress.com/2007/10/deathstariapetus.jpg" title="Death Star and Iapetus - Saturnâs moon"><img src="http://ealdent.files.wordpress.com/2007/10/deathstariapetus.jpg" alt="Death Star and Iapetus - Saturnâs moon" width="490" /></a>
Iapetus was named after <a href="http://en.wikipedia.org/wiki/Iapetus_%28mythology%29" title="Iapetus in Greek mythology" target="_blank">a titan</a> from Greek Mythology and many of the craters are named after characters from a French novel. Iapetus was the father of the titans Atlas and Prometheus. The dark region of Iapetus was named after <a href="http://en.wikipedia.org/wiki/Giovanni_Domenico_Cassini" title="Giovanni Domenico Cassini" target="_blank">Giovanni Domenico Cassini</a>, the Italian-French astronomer who discovered the moon on October 25, 1671 and first theorized that half of Iapetus must be dark and half light, since it seemed to disappear when it was on one side of Saturn. He named it one of the Louisian Stars (the <em>Sidera Lodoicea</em>) in honor of King Louis XIV.
What is bizarre to mean is its strange resemblance to the death star from Star Wars. If you wanted to build a death star and then hide it. What would it look like? The large impact crater would be the location of the giant laser used to destroy worlds. The equatorial ridge corresponds to the equatorial gulley on the death star. (And while this similarity occurred to me independently, I am by no means the first person to make this link as a quick google search will reveal.) Actually, it is usually Saturn's moon <a href="http://en.wikipedia.org/wiki/Mimas_%28moon%29" title="Mimas - Saturn's moon sometimes called the death star moon" target="_blank">Mimas</a> that has analogies drawn to it as being the death star moon.
And if you're in the mood for a really hilarious spoof of Star Wars epsiode 3, check out this video. It will also help you understand the post title. Skip to 2:13 (remaining time) if you're too impatient to watch it all.
-<p align="center">[youtube=http://www.youtube.com/watch?v=R_aeMWC6IV4]</p>
+<p align="center"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=R_aeMWC6IV4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-21-previews-remixed.html b/_posts/2007-10-21-previews-remixed.html
index ac2ab14..e967c6b 100644
--- a/_posts/2007-10-21-previews-remixed.html
+++ b/_posts/2007-10-21-previews-remixed.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Previews Remixed"
tags: ["glengarry glenross", "glengarry glenross", "humor", "humor", "marc andreessen", "marc andreessen", "movies", "movies", "nsfw", "nsfw", "parodies", "parodies", "the shining", "the shining"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/21/previews-remixed/" target="_blank">http://ealdent.wordpress.com/2007/10/21/previews-remixed/</a><br /><br />
-[youtube=http://www.youtube.com/watch?v=QipAqdomO3I]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=QipAqdomO3I=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
Saw <a href="http://blog.pmarca.com/2007/10/i-love-this-fil.html" target="_blank">this</a> on the blog of <a href="http://blog.pmarca.com/" target="_blank">Marc Andreessen</a>, co-founder of Netscape. Maybe NSFW, certainly the language is very intense, so if you're offended by the granddaddy f-word, it makes an appearance about 47 times (rough guess, I'm not gonna bother to count). In any case, it's a great example of what good editing can do. The best example of this I've seen is a classic that everyone has probably seen: Shining.
-[youtube=http://www.youtube.com/watch?v=iVjl7gK4HGU]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=iVjl7gK4HGU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-10-23-laptops-for-tanzania-part-2.html b/_posts/2007-10-23-laptops-for-tanzania-part-2.html
index d5bfe47..d57470d 100644
--- a/_posts/2007-10-23-laptops-for-tanzania-part-2.html
+++ b/_posts/2007-10-23-laptops-for-tanzania-part-2.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Laptops for Tanzania part 2"
tags: ["charity", "charity", "facebook", "facebook", "friends", "friends", "laptops", "laptops", "razoo", "razoo", "tanzania", "tanzania"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/23/laptops-for-tanzania-part-2/" target="_blank">http://ealdent.wordpress.com/2007/10/23/laptops-for-tanzania-part-2/</a><br /><br />
<p align="justify">My friend Israel is trying to raise money for laptops for school kids in Tanzania. If you're on Facebook and have about 30 seconds, why not <a href="http://tinyurl.com/2b4udl" target="_blank">vote for him</a>? Razoo is a speed granting organization that gives money to small charitable projects. You can view his oh-so-pitiful video below. I've suggested he update it by putting on heavy eye makeup and getting under a sheet and lamenting the fact that only a few thousand Tanzanian kids graduate high school every year. They really could use your help, though and this requires you to spend no money!</p>
<p align="justify"> </p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=1Fdqe7rKTto]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1Fdqe7rKTto=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-10-28-rube-goldberg-and-automata.html b/_posts/2007-10-28-rube-goldberg-and-automata.html
index 24dcdd8..f6c7e3e 100644
--- a/_posts/2007-10-28-rube-goldberg-and-automata.html
+++ b/_posts/2007-10-28-rube-goldberg-and-automata.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Rube Goldberg and Automata"
tags: ["automata", "automata", "contraptions", "contraptions", "cool stuff", "cool stuff", "fun", "fun", "games", "games", "mouse trap", "mouse trap", "rube goldberg", "rube goldberg", "steampunk", "steampunk"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/28/rube-goldberg-and-automata/" target="_blank">http://ealdent.wordpress.com/2007/10/28/rube-goldberg-and-automata/</a><br /><br />
[digg=http://digg.com/design/Rube_Goldberg_and_Automata]
Rube Goldberg devices are quite fascinating. However, whenever I see one in practice (below), I am nagged the entire time by A) worry that something minor will go wrong, causing failure and a lot of work; B) wondering about how much time this wasted; and C) who is the person who has that kind of time, patience and space in their home to devote so much real estate to something ultimately pointless. That said, they are freaking cool. This is by far the most elaborate one I've seen that's actually real and not produced by people getting paid a lot of money. Of course there is the famous, much more elaborate <a href="http://blueballfixed.ytmnd.com/" title="Rube Goldberg Blue Ball Machine" target="_blank">Blue Ball Machine</a>, which has been known to captivate many a mind (hat tip for first showing me years ago to <a href="http://www.humphrelia.bluegosling.com" target="_blank">Josh</a>). Another crazy Rube Goldberg device below the jump.
-[youtube=http://www.youtube.com/watch?v=hyvTjhcrLgg]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=hyvTjhcrLgg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<!--more-->
<a href="http://www.lycettebros.com/automata/auto.htm" target="_blank">The Modern Compendium of Miniature Automata</a> is quite a cool little site featuring some clockwork style machines done up as flash animations. While some of his points may be suspect, his creations are magnificent. Even better, you can make your own. When you visit the flash animation, you are presented with a book. Open the latch on the book and then pages will flip open. Click on "identify" to take you to the automaton you are looking at in the book. You can create your own by adjusting certain parameters. See if you can find mine amongst the horde.
<p><img src="http://ealdent.files.wordpress.com/2007/10/snizzlebot.png" alt="Snizzlebot - Miniature Automata" /></p>
These sorts of creations touch my <em>beauty nerve</em>. They exemplify what I find coolest about science and technology. They also harken back to the late 19th Century when science was new and the possibilities were limitless. They still are, just scarier, at least from my perspective (and of course, the possibilities were surely scary back then). Plus it's all very steampunk, which I love.
[googlevideo=http://video.google.com/videoplay?docid=-8664890805877937233]
diff --git a/_posts/2007-10-30-limbo.html b/_posts/2007-10-30-limbo.html
index 68cc552..82d0acf 100644
--- a/_posts/2007-10-30-limbo.html
+++ b/_posts/2007-10-30-limbo.html
@@ -1,27 +1,27 @@
---
layout: post
title: "Limbo"
tags: ["ads", "ads", "advertising", "advertising", "arnt jensen", "arnt jensen", "art", "art", "artistic", "artistic", "games", "games", "gears of war", "gears of war", "japanese horror", "japanese horror", "limbo", "limbo", "video games", "video games"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/10/30/limbo/" target="_blank">http://ealdent.wordpress.com/2007/10/30/limbo/</a><br /><br />
<p align="justify">[digg=http://digg.com/gaming_news/Art_in_Video_Games_and_the_Limbo_Game]I love how art evolves. Well sometimes I <a href="http://www.jasonvoos.com/jpol.html" target="_blank">hate it</a>, but usually it travels in interesting directions. One of my favorite new trends is art in video games, video games as art, and art in video game advertising. Andy Warhol helped bring art to pop culture and advertising. That hasn't stopped thousands of hacks from doing a lot of crummy advertising, but every once in a while you get something amazing. The same is true for video games.</p>
<h3><!--more-->7th Guest</h3>
<p align="justify">One of the first CD-ROM games we got for our brand new 486 way back in the day was <a href="http://en.wikipedia.org/wiki/7th_Guest" target="_blank">7th Guest</a>. It was a puzzle game based in a haunted mansion. Old Man Stauf was a beggar who started making amazing toys for children. And then the children started dying. You've been invited to dinner at the mansion, but the guests have begun disappearing. As you make your way through a series of increasingly complicated puzzles, the mystery of Stauf is unraveled. It was a very fun game and apparently was quite popular and is credited with accelerating CD-ROM game sales. The game was well done, incorporating a lot of live action scenes. Back then and in the fondness of my memory, I considered it to be art. Games like <a href="http://en.wikipedia.org/wiki/Myst" target="_blank">Myst</a> came out around the same time and were also lauded for their artistic vision.</p>
<h3>Gears of War</h3>
<p align="justify">An advertisement for Gears of War last year used the remake of <a href="http://www.myspace.com/garyjules" target="_blank">Mad World</a> by Gary Jules (not the Tears for Fears original). It's a haunting melody, made popular by <a href="http://imdb.com/title/tt0246578/" target="_blank"><em>Donnie Darko</em></a>. The original could have been better except for being plagued by 80's synth drums and some really odd sound choices throughout like a freakish trumpet motif. Also the pace was a bit fast perhaps. I'm probably tainted by the new version. Anyhow, the game commercial features a soldier in the wreckage of a city. He examines the broken head of a statue of a girl and then the earth begins to shake. Anyhow, I just thought it was the coolest commercial I've ever seen.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=ccWrbGEFgI8]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ccWrbGEFgI8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">Another great set of ads are the Believe commercials for Halo 3. One example is below. On the surface they aren't especially catchy, but they are definitely edgy. They've drawn a fair amount of flack by playing on interviews of vets from World War II. I don't think they are disrespectful, myself.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=cjLuqfb-1-4]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cjLuqfb-1-4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<h3>Other Games</h3>
All games nowadays require at least one artist on staff to help create the various images, characters and landscapes. Often, there are entire teams. Games like <em>Silent Hill</em> create a mood and require a certain dark vision. This is not merely cobbling together other people's ideas into something mechanical. It is a very creative and collaborative process. The shots from <a href="http://www.us.playstation.com/PS2/Games/Shadow_of_the_Colossus/OGS/" target="_blank">Shadow of the Colossus</a> are beautiful. And then there are games like <a href="http://en.wikipedia.org/wiki/F.E.A.R" title="F.E.A.R. video game" target="_blank">F.E.A.R</a>. This game is probably one of the most artistic I've come across. The theme is heavily influenced by Japanese Horror like <a href="http://en.wikipedia.org/wiki/Ju-on" target="_blank">Ju-on</a> (the Grudge) and <a href="http://en.wikipedia.org/wiki/Ring_%28film%29" target="_blank">Ringu</a> (the Ring). Psychological element play a large role in the game. A telepath named Alma appears out of nowhere at odd times and can totally creep you out. Her appearances are often accompanied by disturbances. Good times.
<p><img src="http://ealdent.files.wordpress.com/2007/10/alma.jpg" alt="Alma from the video game F.E.A.R." /></p>
<h3>Limbo</h3>
<p align="justify">And now the reason for this post. <a href="http://www.limbogame.org/" target="_blank">Limbo</a>. This game is currently still in the concept stage as far I've been able to find out. But that looks very promising and quite artistic. <a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"></a></p>
<p><a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"><img src="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" alt="Limgbo game" width="490" /></a></p>
<p><a href="http://ealdent.files.wordpress.com/2007/10/limbo_tp.jpg" title="Limgbo game"> </a></p>
The vision is dark and punctuated with bursts of contrast that create an atmosphere unlike anything I've ever seen in a game before. Plus it's just plain beautiful. I mean look at these shots. Be sure to check out <a href="http://www.limbogame.org/limbovideo.html" target="_blank">the video</a> too. This looks like it may be one of the coolest things to hit the shelves in a long while. Limbo comes from the mind of Arnt Jensen.
<p><img src="http://ealdent.files.wordpress.com/2007/10/02.jpg" alt="Limbo game" /></p>
diff --git a/_posts/2007-11-04-pc-on-the-decline.html b/_posts/2007-11-04-pc-on-the-decline.html
index 9e21b87..171d453 100644
--- a/_posts/2007-11-04-pc-on-the-decline.html
+++ b/_posts/2007-11-04-pc-on-the-decline.html
@@ -1,18 +1,18 @@
---
layout: post
title: "PC on the decline?"
tags: ["childhood", "childhood", "coleco", "coleco", "computer science", "computer science", "human computer interaction", "human computer interaction", "pc", "pc", "personal computers", "personal computers", "programming", "programming", "trs-80", "trs-80"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/04/pc-on-the-decline/" target="_blank">http://ealdent.wordpress.com/2007/11/04/pc-on-the-decline/</a><br /><br />
<p align="justify">Japanese electronics use is perhaps a faulty bellwether for the American market. Whereas new gadgets are often available in Japan long before they make their appearance (if ever) in the US, there are also interesting cultural differences that don't always translate popularity. There does seem to be a trend in the area of PC sales, however. An <a href="http://news.yahoo.com/s/ap/20071104/ap_on_hi_te/bye_bye_pcs" target="_blank">AP article</a> today points out that PCs are taking a less important role in Japanese households with the emergence of smart phones, consoles that can reproduce many PC functions (web browsing, gaming, playing DVDs & music), and flat screen TVs (versus flat screen monitors, say). If you can check your email on your phone, listen to music on your iPod, download music on your Wii, and play games on your 52" LCD, why would you want a computer in your home? <em>Note: throughout this post I will use the term PC in the general sense of computer, rather than specifically as an IBM-compatible PC.</em></p>
<p align="justify">So this got me thinking about what a PC is good for and why I liked it back in the day (well, I <em>still </em>like it).<!--more-->My first introduction to the PC was a commercial for the <a href="http://oldcomputers.net/adam.html" target="_blank">Coleco Adam</a>. And really, given these great ads, can you blame my 6-year-old self from being totally swept up in the magic? I love the last ad in the video below. Buy a ColecoVision, get a free Cabbage Patch kid. The tagline: "When you buy a CollecoVision, you make two kids happy." It's interesting too in that it's implicit that girls should care about dolls and boys should care about electronics.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=_PysRX8DQp0]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=_PysRX8DQp0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">So probably my earliest motivation for wanting a PC was the gaming potential. There were also cartoons like Inspector Gadget that showed computers being extremely powerful little toys. When I actually first got to use a PC, I was in the fifth grade. I instantly took to it. We were using a lab of Apple IIc (and IIe) in school and programming simple things in Basic. It made complete sense to me and the pace of the teacher's lesson was agonizingly slow. I wanted to run ahead and write new programs. So I also talked to my teacher and got some extra time in the lab after school hours.</p>
<p align="justify">In the sixth grade, we moved in with my second stepfather and he had a TRS-80 Model III(aka trash-80). A lovely hunk of junk. Two floppy (5.25") drives and no hard drive. I played around on it for hours, exploring the world of the Basic programming language. It was great. I made a rock, paper, scissors game, tic-tac-toe, and used it for scientific simulations. These were, of course, naive and simplistic, but looking back it was an early indicator of my interest in research. I used the computer to not just play games and solve problems (by writing programs), but to explore ideas and explore the realm of what computers were capable of doing. I really would have benefitted from having someone around who knew about computer science. But maybe forced direction would have turned me off, hard to say.</p>
<p align="justify">In high school, my friends (<a href="http://humphrelia.bluegosling.com" target="_blank">Josh</a> and <a href="http://wrathfuldove.org" target="_blank">John</a> mainly) and I also used PCs to produce some cool fractals. Mandelbrot set mostly. Back then, Pascal was the vogue. My stepfather actually bought Turbo Pascal, for some reason. I'm not sure if he was thinking of taking up programming himself or if it was a roundabout way of getting it for me (which would be a rare occurrence indeed). So it was the first Object Oriented Programming language I was exposed to and the manuals made no sense whatsoever. I mean, it made sense to think of an apple as an object, without having to model the skin and the core and the seeds and whatever, but how did that translate to computer programs? Again, I would've benefitted from some compsci guidance.</p>
<p align="justify">So I created a <a target="_blank">mindmap</a> of what I could think of as the primary uses for PCs that most Americans engage in. Mindmaps are something I want to go into further in a future post. So the six main categories of usage are web, work, entertainment, communication, programming, financial, and web. These categories certainly bleed over into each other at many different places. In the case of the web, it could be any one of the other categories. Increasingly, it is becoming all of them. Since it was a component of all I decided to make it its own category.</p>
<p align="justify">Next thing to consider is what devices support these activities. An iPhone can play music, surf the web, play YouTube videos, check email, and handle communications (IM and voice). If those functions are all you need your PC for, having an iPhone could impact your PC usage. Likewise, Google Docs (and similar offerings) make it easier to do office-style tasks on the web. Rather than needing a PC now, all you would need is a web appliance. These aren't especially popular, so I wouldn't consider this an area where PCs are facing competition, but it's possible. Gaming consoles are encroaching on the PC popular quite a bit more and appear to be hoping to continue that trend with no end in sight.</p>
<p align="justify">So as the major functionality of the PC is transitioned to other, more focused devices, the need for many niche users to have a PC is waning. Does this spell trouble for major PC manufacturers like Dell, HP, and so on?</p>
<p align="justify">Nope. Countries that haven't seen PCs before are seeing sales increase enormously. So the markets are shifting. I hope as the US market begins to transition away from the multipurpose all-in-one PC, we'll begin to see some sort of device for the power-user/programmer begin to emerge. I don't have a specific vision for this device, or else I'd be out making it. But I want it to facilitate the things I use my PC for: programming, data analysis, graphical visualizations (and of course, web surfing and games). Give me a super computer in a box that is more devoted towards giving me full power rather than a dumbed down interface that looks pretty.</p>
<p align="justify">But it's more than just the operating system, I want the device optimized for these tasks. Maybe a laptop with a fold-out screen. Right now I have widescreen at 1280x800 on my laptop. If the screen were a doubled-over fold out, that could be increased to 2560x800 -- essentially a dual monitor laptop - a must have for developers. How about built-in support for stack tracing and system performance monitoring that runs in hardware so when the OS starts to die, your performance monitors don't die with it?</p>
<p align="justify">If anyone has stayed with me to this point, I'm curious what other people want out of their PC.</p>
diff --git a/_posts/2007-11-14-crayon-physics.html b/_posts/2007-11-14-crayon-physics.html
index 8749fba..369fd28 100644
--- a/_posts/2007-11-14-crayon-physics.html
+++ b/_posts/2007-11-14-crayon-physics.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Crayon Physics"
tags: ["cool stuff", "cool stuff", "crayon physics", "crayon physics", "crayons", "crayons", "experimental games", "experimental games", "games", "games", "kloonigames", "kloonigames", "physics", "physics"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/14/crayon-physics/" target="_blank">http://ealdent.wordpress.com/2007/11/14/crayon-physics/</a><br /><br />
<p align="justify">I stumbled on this the other day. The game is called <a href="http://www.kloonigames.com/blog/games/crayon/" target="_blank">Crayon Physics</a> and it's pretty much what it sounds like. You can make a crayon drawing of simple shapes like squares and circles and curves. The objects you create begin obeying the laws of physics (gravity and Newton's laws of motion mainly). So a square drawn in the air falls to the ground. A circle drawn on a slope begins to roll. The first version is pretty simple. On each level you have to move the ball to the star. You can drop things on the ball to get it to roll, you can set up obstacles, build bridges, etc. It's ingenious.</p>
<p align="justify">The <a href="http://www.kloonigames.com/blog/general/crayon-physics-deluxe-on-a-tablet-pc/" target="_blank">next version</a> will hopefully roll out soon. No telling though since it's a guy working in his spare time. But looks to be excruciatingly cool. Watch me play one level while trying to record it on my cell phone.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=lX1pQ6QKlNU]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=lX1pQ6QKlNU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-11-15-overeating.html b/_posts/2007-11-15-overeating.html
index c70d8be..79ed4b6 100644
--- a/_posts/2007-11-15-overeating.html
+++ b/_posts/2007-11-15-overeating.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Overeating"
tags: ["great swallower", "great swallower", "hippos", "hippos", "overeating", "overeating", "pennsylvania dutch", "pennsylvania dutch", "snakes", "snakes", "weird animals", "weird animals"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/15/overeating/" target="_blank">http://ealdent.wordpress.com/2007/11/15/overeating/</a><br /><br />
<p align="justify">After visiting my mother-in-law's and over-indulging in her Pennsylvania-Dutch cooking (and thereby avoiding the guilt that accompanies <em>not</em> over-indulging), I often feel like this. [<a href="http://scienceblogs.com/chaoticutopia/2007/11/one_fish_two_fish_little_red_f.php" target="_blank">hat tip</a>]</p>
<table align="center" border="0" cellpadding="5">
<tr>
<td><a href="http://www.caycompass.com/cgi-bin/CFPnews.cgi?ID=1025678" target="_blank"><img src="http://ealdent.files.wordpress.com/2007/11/20071009_1_localfishstory.jpg" alt="Great swallower kills itself eating a bigger fish" align="right" /></a></td>
</tr>
<tr>
<td align="right">Image credit: Phillippe Bush,
Department of the Environment</td>
</tr>
</table>
<p align="justify">This is very similar to one poor snake I saw a video of on YouTube a while back. You might not want to click play if you are faint of heart (below the jump).<!--more--></p>
-<p align="justify">[youtube=http://youtube.com/watch?v=dd7S6fRv224]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=dd7S6fRv224=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2007-11-18-killer-bean-forever.html b/_posts/2007-11-18-killer-bean-forever.html
index 07f5a82..fdc7c89 100644
--- a/_posts/2007-11-18-killer-bean-forever.html
+++ b/_posts/2007-11-18-killer-bean-forever.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Killer Bean Forever"
tags: ["cgi", "cgi", "hollywood", "hollywood", "independent films", "independent films", "jeff lew", "jeff lew", "killer bean", "killer bean", "killer bean forever", "killer bean forever", "matrix reloaded", "matrix reloaded", "movies", "movies", "trailers", "trailers"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/18/killer-bean-forever/" target="_blank">http://ealdent.wordpress.com/2007/11/18/killer-bean-forever/</a><br /><br />
<p align="justify">You gotta hand it to <a href="http://www.killerbeanforever.com/director.html" target="_blank">a guy</a> who drops all his money to pursue his dream. Even when that dream is a movie about a <em>baked bean </em>killing people with two dragon pistols. This was done by the lead animator of Matrix Reloaded (Jeff Lew) and looks like it might be amusing. Hard to say, though. At the very least, I like to see people working outside (or on the fringes) of the Hollywood superstructure. He was just the animator for Matrix Reloaded and the graphics were great despite the other problems the movie had. Personally I liked it, but I know a lot of people view it as an abomination.</p>
-[youtube=http://www.youtube.com/watch?v=u1WGcyJhhE4]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=u1WGcyJhhE4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-11-20-mike-chuckabee.html b/_posts/2007-11-20-mike-chuckabee.html
index f69bb6e..023298f 100644
--- a/_posts/2007-11-20-mike-chuckabee.html
+++ b/_posts/2007-11-20-mike-chuckabee.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Mike Chuckabee"
tags: ["aliens", "aliens", "campaign ads", "campaign ads", "chuck norris", "chuck norris", "gimmicks", "gimmicks", "humor", "humor", "kucinich", "kucinich", "mike huckabee", "mike huckabee", "presidential election", "presidential election"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/11/20/mike-chuckabee/" target="_blank">http://ealdent.wordpress.com/2007/11/20/mike-chuckabee/</a><br /><br />
<p align="justify">I'm not sure if anyone realized it, but Mike Huckabee, the governor of Arkansas, is running for president. How do I know this? His first campaign ad. He has finally proposed doing what I've been saying do for years: unleash Chuck Norris on the world. Illegal aliens at the border? Walker Texas Ranger baby.</p>
<p align="justify">So this election, would you rather have Chuck Norris protecting America or space aliens? That's what I thought. Vote Dennis Kucinich.</p>
-[youtube=http://www.youtube.com/watch?v=MDUQW8LUMs8]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=MDUQW8LUMs8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2007-12-01-celestia.html b/_posts/2007-12-01-celestia.html
index 9b1a674..69285a6 100644
--- a/_posts/2007-12-01-celestia.html
+++ b/_posts/2007-12-01-celestia.html
@@ -1,15 +1,15 @@
---
layout: post
title: "Celestia"
tags: ["astronomy", "astronomy", "astrophysics", "astrophysics", "celestia", "celestia", "dreams", "dreams", "open source", "open source", "physics", "physics", "software", "software", "space", "space", "space visualization", "space visualization"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/01/celestia/" target="_blank">http://ealdent.wordpress.com/2007/12/01/celestia/</a><br /><br />
<p align="justify">When I was around 12 or 13, I first got a hold of my stepfather's physics text book. It was magic. The rules that governed the physical world were right there in the form of equations on a page. I was totally captivated. Newton's laws of motion, gravity, angular momentum, and the theory of relativity. When I first learned about relativistic time dilation, it was life-changing. I resolved to become an astrophysicist. A lot of changes happened in my life that turned that dream into my current one. But, like all first loves, it never went away.</p>
<p align="justify">When I got my first computer, I had hopes of writing a program that would plot the positions of the stars as they were in space (3-D) versus how they appeared in the Earth's sky (2-D). I achieved a little bit of success getting the vectors worked out from the distance, right ascension, declination and so on. I had no easy way of visualizing it though. Doing 3-D plots in BASIC back in 1990 wasn't the easiest thing in the world. So that project died.</p>
<p align="justify">Then like a ghost, <a href="http://celestia.sourceforge.net/" target="_blank">Celestia</a> came to me last night. Wrapped up in her open source glory, I dared not even dream that she could perform what I had so long abandoned all hope of. But she did my friend, she did. (My wife won't like this imagery :))</p>
<p align="justify"><!--more-->
Anyhow, Celestia is a totally kickass program for the Mac, PC and Linux that lets you navigate space. You can go into orbit around Phobos and watch the sun rise over the horizon of Mars. You can latch onto the back of the International Space Station and watch the Earth fly by beneath you. You can jump into hyperspace and visit Betelgeuse or Antares. You can watch the Milky Way grow small beneath you as you rocket many megaparsecs to galaxy NGC-4732.
-</p><p align="justify">[youtube=http://www.youtube.com/watch?v=jQ3iOs2rbuw]</p>
+</p><p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=jQ3iOs2rbuw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
<p align="justify">One of my early motivations for wanting to be able to make a program that can do this is to be able to really visualize what a constellation looks like. We look up in the sky and see the Big Dipper, but those stars are really, really, really far apart. From the view of anywhere but Earth, they don't form a constellation at all. They aren't even barely neighbors. Celestia lets you see just how jacked up constellations are in real space. I love it.</p>
<p align="justify">You can also record movies of your random flights through space and write (and run) scripts that take you on tours of celestial objects. You can watch Saturn from the perspective of the Cassini probe (in real time). Seriously, does it get any cooler?</p>
diff --git a/_posts/2007-12-19-eminent-domination.html b/_posts/2007-12-19-eminent-domination.html
index 2718cb4..9f4dcbc 100644
--- a/_posts/2007-12-19-eminent-domination.html
+++ b/_posts/2007-12-19-eminent-domination.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Eminent Domination"
tags: ["clonetown", "clonetown", "complaints", "complaints", "drew carey", "drew carey", "eminent domain", "eminent domain", "robin hood", "robin hood", "scooby do", "scooby do", "tv", "tv"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/19/eminent-domination/" target="_blank">http://ealdent.wordpress.com/2007/12/19/eminent-domination/</a><br /><br />
<p align="justify">I knew what eminent domain is, but I didn't know what cities are using it for now. How many made for TV, comedies, and kids movies have there been where the hero/heroine has to stop the evil developers from moving in and destroying the quaint hometown/small mom-and-pop store/diner/wildlife preserve? There were probably more than a dozen episodes of Scooby Do that used this theme. Who knew instead of dressing up like a ghost, they could have gotten Old Man Parker to move out just by appealing to the corruptibility of city officials? Who needs local flavor when you can have clonetown and lots of tax dollars?</p>
-[youtube=http://www.youtube.com/watch?v=x-V8ljoCmmg]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=x-V8ljoCmmg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">These cities are the new Sheriffs of Nottingham:Â steal from the little guy to give to the development conglomerate.</p>
diff --git a/_posts/2007-12-23-merry-christmas-tree-fractal.html b/_posts/2007-12-23-merry-christmas-tree-fractal.html
index 3776d95..6b8f5bd 100644
--- a/_posts/2007-12-23-merry-christmas-tree-fractal.html
+++ b/_posts/2007-12-23-merry-christmas-tree-fractal.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Merry Christmas Tree Fractal"
tags: ["chaos", "chaos", "christmas", "christmas", "christmas tree", "christmas tree", "fractals", "fractals"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2007/12/23/merry-christmas-tree-fractal/" target="_blank">http://ealdent.wordpress.com/2007/12/23/merry-christmas-tree-fractal/</a><br /><br />
Courtesy of <a href="http://scienceblogs.com/chaoticutopia/2007/12/heres_wishing_you_the_very.php" target="_blank">Chaotic Utopia</a>:
-[youtube=http://www.youtube.com/watch?v=NrumoeQSG_A]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=NrumoeQSG_A=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-01-02-brother-rudy.html b/_posts/2008-01-02-brother-rudy.html
index b11c5c1..8f8389e 100644
--- a/_posts/2008-01-02-brother-rudy.html
+++ b/_posts/2008-01-02-brother-rudy.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Brother Rudy"
tags: ["FUD", "FUD", "advertising", "advertising", "giuliani", "giuliani", "goebbels", "goebbels", "nazis", "nazis", "presidential election", "presidential election", "propaganda", "propaganda"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/02/brother-rudy/" target="_blank">http://ealdent.wordpress.com/2008/01/02/brother-rudy/</a><br /><br />
<p align="justify">Good ole Rudy Giuliani is up to no good. His recent television spot is nothing short of evil. I'm sorry, but when you blatantly use FUD (fear, uncertainty, and doubt) for political gain, you might as well announce your intention to become a tyrant. He's apparently using the political playbook of Goebbels. By simultaneously portraying muslims as vicious animals and Iran as a warmongering nation led by a madman, this ad is a <strike>masterpiece</strike> clumsy bit of propaganda. I hate to think that people are stupid enough to believe him.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=y2iFhGtKO-Q]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=y2iFhGtKO-Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-01-05-willow-and-the-frisbee-2.html b/_posts/2008-01-05-willow-and-the-frisbee-2.html
index 2d7afdc..2c42821 100644
--- a/_posts/2008-01-05-willow-and-the-frisbee-2.html
+++ b/_posts/2008-01-05-willow-and-the-frisbee-2.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Willow and the Frisbee 2"
tags: ["dogs", "dogs", "edvard grieg", "edvard grieg", "family", "family", "frisbee", "frisbee", "greenville", "greenville", "video", "video"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/05/willow-and-the-frisbee-2/" target="_blank">http://ealdent.wordpress.com/2008/01/05/willow-and-the-frisbee-2/</a><br /><br />
<p align="justify">While at my mom's house in Greenville, South Carolina, I played a little frisbee with Willow (my australian shepherd) in the back yard. I took some video where I was throwing the frisbee, then switched over to my mom throwing it. However, insanely, when my mom started throwing I put the cap on and failed to notice for like 10 minutes!! Thereby losing all the good footage and left with only my crappy warmup footage. I was so pissed at myself. Bad noob cameraman!</p>
-[youtube=http://www.youtube.com/watch?v=RGiqVwDM40k]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=RGiqVwDM40k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">The soundtrack is <a href="http://www.musopen.com/view.php?type=piece&id=194" target="_blank">Piano Concerto in A Minor, Op. 16 by Edvard Grieg</a> and is in the public domain.</p>
diff --git a/_posts/2008-01-08-bills-last-keynote.html b/_posts/2008-01-08-bills-last-keynote.html
index a2f4869..3916751 100644
--- a/_posts/2008-01-08-bills-last-keynote.html
+++ b/_posts/2008-01-08-bills-last-keynote.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Bill's Last Keynote"
tags: ["bill gates", "bill gates", "humor", "humor", "keynote speech", "keynote speech", "microsoft", "microsoft"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/08/bills-last-keynote/" target="_blank">http://ealdent.wordpress.com/2008/01/08/bills-last-keynote/</a><br /><br />
<p align="justify">I wonder if a campaign like this, executed a few years ago, would have helped endear him more to the public? He actually comes across as somewhat human.</p>
-[youtube=http://www.youtube.com/watch?v=1lE21kpE3M0]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=1lE21kpE3M0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-01-09-running-the-world.html b/_posts/2008-01-09-running-the-world.html
index 74f7ad5..8c8459d 100644
--- a/_posts/2008-01-09-running-the-world.html
+++ b/_posts/2008-01-09-running-the-world.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Running the World"
tags: ["academy awards", "academy awards", "ampas", "ampas", "beauty", "beauty", "children of men", "children of men", "jarvis cocker", "jarvis cocker", "mad world", "mad world", "movies", "movies", "music", "music", "nsfw", "nsfw", "running the world", "running the world", "sadness", "sadness", "songs", "songs"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/09/running-the-world/" target="_blank">http://ealdent.wordpress.com/2008/01/09/running-the-world/</a><br /><br />
<p align="justify">Taking me completely by surprise, "Running the World" by <a href="http://www.myspace.com/jarvspace" target="_blank">Jarvis Cocker</a> is one of the coolest songs I've heard in a very long time. I'll leave it to you to figure out exactly what he's saying (it's <b>NSFW</b>). The lyrics are just plain awesome. This kind of song grabs a hold of the part of me that appreciates the beauty of sadness. I'm not sure which I appreciate more: the beauty of sadness or the beauty of majesty. The beauty I appreciate most of all is self-sacrifice. I can't see it without struggling really hard to not cry. Another song that uses the beauty of sadness is "Mad World" (the remake by Gary Jules from <a href="http://imdb.com/title/tt0246578/" target="_blank"><i>Donnie Darko</i></a>).</p>
<p align="justify">I happened upon the song because I was searching for a clip of a scene near the end of <a href="http://imdb.com/title/tt0206634/" target="_blank"><i>Children of Men</i></a>. So as not to spoil anything for the random reader who hasn't seen the movie, it's a moment of peace in the chaos, the characters are filled with a profound awe, and it is broken by intense violence (it also appears briefly in the clip below). This video appears to be promotional material used to influence the Academy of Motion Picture Arts and Sciences (AMPAS) people to nominate it for Best Picture. It didn't win anything, since the Academy is full of crap.</p>
Enjoy. Oh and <b><i>the video contains spoilers</i></b> (and is NSFW).
-<p align="justify">[youtube=http://www.youtube.com/watch?v=-lfs1UIKALQ]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=-lfs1UIKALQ=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-01-17-large-hadron-collider-movie.html b/_posts/2008-01-17-large-hadron-collider-movie.html
index 6f02216..d238684 100644
--- a/_posts/2008-01-17-large-hadron-collider-movie.html
+++ b/_posts/2008-01-17-large-hadron-collider-movie.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Large Hadron Collider Movie"
tags: ["apocalypse", "apocalypse", "large hadron collider", "large hadron collider", "playing god", "playing god", "real sci-fi", "real sci-fi", "theoretical physics", "theoretical physics", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/17/large-hadron-collider-movie/" target="_blank">http://ealdent.wordpress.com/2008/01/17/large-hadron-collider-movie/</a><br /><br />
<p align="justify">Just came across this very amusing video via the <a href="http://www.badastronomy.com/bablog/2008/01/17/cern-movie-trailer/" target="_blank">Bad Astronomer</a>. The Large Hadron Collider is one of those things that could produce some amazing science, but has also caused a number of scientists to express worries that it might <a href="http://prola.aps.org/abstract/PRL/v87/i16/e161602" target="_blank">destroy the planet</a>. Cool, huh? Most scientists consider that to be doomsaying, and that the LHC will be benign while yielding amazing results. The video ignores any mention of dangers at the LHC (it is, after all, a propaganda piece), but I found it very fun to listen to it for what is <i>not</i> said.</p>
-[youtube=http://www.youtube.com/watch?v=67q_2V6xOxE]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=67q_2V6xOxE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">Do I actually think the LHC poses a threat to human life? I have no idea, since I'm not a particle physicist, but my suspicion is that we'll still be here after it fires up. Imagining the end of the world is one of my favorite mental hobbies, though, so one can always hope.</p>
diff --git a/_posts/2008-01-21-cloverfield.html b/_posts/2008-01-21-cloverfield.html
index 6d44d1f..bd2a546 100644
--- a/_posts/2008-01-21-cloverfield.html
+++ b/_posts/2008-01-21-cloverfield.html
@@ -1,12 +1,12 @@
---
layout: post
title: "Cloverfield"
tags: ["cloverfield", "cloverfield", "i am legend", "i am legend", "movies", "movies", "new york", "new york", "sci-fi", "sci-fi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/21/cloverfield/" target="_blank">http://ealdent.wordpress.com/2008/01/21/cloverfield/</a><br /><br />
<p align="justify">I just got back from watching Cloverfield. There are very few movies so interesting to me that I will actually go by myself to see them. I had tried to get a friend to come along, but he complained of "homework" and other such nonsense, and Donna can't handle anything with monsters in it. Without spoiling anything, I will say that the movie was absolutely freaking awesome. It was definitely a brilliant new take on the classic monster movie.</p>
<p align="justify">Since this is my blog, let me just rant quickly: people who bring six-year-olds to movies like this are bad parents. You're just not a good parent if you do this. You are bad. And stupid. You may think your kid can handle it, but you are wrong. And stupid. Ok, back to the movie.</p>
<p align="justify"><b>Spoilers follow.</b> I am putting a preview here to take up space on the page to prevent you from accidentally reading further if you don't want to see the spoilers.</p>
-<!--more-->[youtube=http://www.youtube.com/watch?v=AVzeATvSbK4]
+<!--more--><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=AVzeATvSbK4=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">The movie consists of camcorder footage taken primarily during one night in Manhattan. It is often jerky and not getting the shot, like you would expect a real person to take. It's basically one long, uncut YouTube video. The effect is that for an hour and 20 minutes or so, I completely forgot where I was. I was running next to these guys as they made their way through dark subways, leaning high-rises, and streets filled with dust. It was truly a brilliant piece of work.</p>
<p align="justify">It was also really short. Sometimes this is better with movies that are as intense as <i>Cloverfield</i>. You just can't handle your nerves being on edge for much longer without it becoming troubling. <i>I am Legend</i> was far more intense and there were points in that movie where I was almost not able to tolerate it. In the end, the mystery of Cloverfield is still wide open. There is plenty of room for sequels, and I sincerely hope the powers-that-be restrain themselves. Was Cloverfield an ailen? A government project? Something from the deep? Knowing will probably only be a disappointment.</p>
diff --git a/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html b/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
index 86d1eea..0fd1aab 100644
--- a/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
+++ b/_posts/2008-01-26-mein-fuhrer-die-cowboys-haben-verloren.html
@@ -1,8 +1,8 @@
---
layout: post
title: "Mein Führer, die Cowboys haben verloren..."
tags: ["cowboys", "cowboys", "football", "football", "german", "german", "hitler", "hitler", "humor", "humor", "videos", "videos", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/01/26/mein-fuhrer-die-cowboys-haben-verloren/" target="_blank">http://ealdent.wordpress.com/2008/01/26/mein-fuhrer-die-cowboys-haben-verloren/</a><br /><br />
<p align="justify">I'm not at all a sports fan, but even I can appreciate this humor. Sorry if you've already seen it (I actually saw it last week and was just reminded of it). My favorite line: "It's ok, he can afford one, don't worry."</p>
-<p>[youtube=http://youtube.com/watch?v=K2triiYXSY8]</p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=K2triiYXSY8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-02-24-lsd-still-in-french-candy.html b/_posts/2008-02-24-lsd-still-in-french-candy.html
index 5e4a644..d459fbf 100644
--- a/_posts/2008-02-24-lsd-still-in-french-candy.html
+++ b/_posts/2008-02-24-lsd-still-in-french-candy.html
@@ -1,8 +1,8 @@
---
layout: post
title: "LSD still in French Candy"
tags: ["candy", "candy", "commercials", "commercials", "france", "france", "kitkat", "kitkat", "lsd", "lsd"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/24/lsd-still-in-french-candy/" target="_blank">http://ealdent.wordpress.com/2008/02/24/lsd-still-in-french-candy/</a><br /><br />
-[youtube=http://www.youtube.com/watch?v=cx1j8jdo_P8]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=cx1j8jdo_P8=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">We've all had these days. But if we were in France, the outcome might have been different.</p>
diff --git a/_posts/2008-02-26-go-snapback-symmetry.html b/_posts/2008-02-26-go-snapback-symmetry.html
index 58619a8..4f8fbf7 100644
--- a/_posts/2008-02-26-go-snapback-symmetry.html
+++ b/_posts/2008-02-26-go-snapback-symmetry.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Go Snapback Symmetry"
tags: ["board games", "board games", "games", "games", "go", "go", "online go server", "online go server", "strategy", "strategy", "symmetry", "symmetry"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/26/go-snapback-symmetry/" target="_blank">http://ealdent.wordpress.com/2008/02/26/go-snapback-symmetry/</a><br /><br />
<p align="justify">Go (<span>å´æ£, </span><span><span class="t_nihongo_kanji">ç¢, <span>ë°ë</span>) is one of my obsessions. I've been playing for a year, mostly as <a href="http://online-go.com/profile.asp?user=3854" target="_blank">ealdent</a> on <a href="http://online-go.com" target="_blank">Online Go Server</a> (OGS) and am currently about 12.5 kyu, though I shift around a bit. At the moment, I'm in a bit of downswing, mostly because stress and not concentrating is leading me to make foolish moves, plus I don't have a lot of time to devote to analyzing what I'm doing wrong. One of the coolest things about Go to me is the fact that it is an accepted fact in the Go world that your health and mental state contribute to your ability. It makes sense: when you sit down to a game that requires hours of concentration, if your health isn't good, you will be distracted.</span></span></p>
<p><img src="http://ealdent.files.wordpress.com/2008/02/gosymmetries.png" alt="Two snapback symmetries in a game of Go." /></p>
<p align="justify">So in one of my games against a lower-strength player (about 7 kyu lower), I just noticed the emergence of a really cool symmetry. I have a double snapback (I am the white stones) set up right now. If he plays at E12, I can kill the three stones at F11, E11 and E12 by playing again at F12. If he kills my stone at G13 by playing at H13, I can kill those three stones. Two identical snapbacks back to back. Cool huh? Plus, if he plays at F14, he will put my stones at E16 and F16 in the exact same snapback position by playing again at E15. Go is a beautiful game.</p>
<p align="justify">I recorded what this would look like via my cell phone, so sorry for the crappy video. I need to look into some sort of desktop recording software.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=rhF1wdSHoqE]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=rhF1wdSHoqE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-02-26-the-enormity-of-space.html b/_posts/2008-02-26-the-enormity-of-space.html
index 6050cea..5f9905e 100644
--- a/_posts/2008-02-26-the-enormity-of-space.html
+++ b/_posts/2008-02-26-the-enormity-of-space.html
@@ -1,14 +1,14 @@
---
layout: post
title: "The Enormity of Space"
tags: ["enormity", "enormity", "language change", "language change", "prescriptivism", "prescriptivism", "richard branson", "richard branson", "space", "space", "spaceflight", "spaceflight", "virgin galactic", "virgin galactic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/02/26/the-enormity-of-space/" target="_blank">http://ealdent.wordpress.com/2008/02/26/the-enormity-of-space/</a><br /><br />
<p align="justify">Whenever I hear the word <i>enormity </i>used to describe how gi-freakin-normous something is, I always willfully misinterpret it to mean <i>an act of extreme evil or extreme wickedness</i>. Now before you start screaming prescriptivist and throwing Kleenexes drenched in the snot of sociolinguistics at me -- I'm not being a prescriptivist. Of course people have the right to use <i>enormity </i>that way. It is certainly the trend for that word and it probably will be within my generation that almost everyone forgets its original meaning. I just so like the meaning of extreme wickedness that I want to be able to use it to mean that without being misinterpreted. And a lot of people only know that word to mean <i>gigantic</i>.</p>
<p align="justify">So I was listening to a promo video (below) by Richard Branson of Virgin Galactic. Branson opens up with this line:</p>
<div align="justify">
<blockquote>Â "Astronauts of the past 45 years have all returned to Earth struggling to convey the <b>enormity</b> of what they have discovered and with their perceptions clearly changed."</blockquote>
</div>
<p align="justify">And quite frankly, the sinister music blends with my interpretation of enormity far better. Astronauts have all returned overwhelmed by the vast wickedness they encountered in space. Awesome! I totally wanna go now. Actually, I've always wanted to go and probably would go even if I was told I had a 50/50 chance of making it back alive, so enormity just ups the thrill level.</p>
-<p align="justify">[youtube=http://www.youtube.com/watch?v=t4h247PPOrY]</p>
+<p align="justify"><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=t4h247PPOrY=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2008-03-17-ants-are-awesome.html b/_posts/2008-03-17-ants-are-awesome.html
index ac920d7..e6be152 100644
--- a/_posts/2008-03-17-ants-are-awesome.html
+++ b/_posts/2008-03-17-ants-are-awesome.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Ants are awesome"
tags: ["ant colonies", "ant colonies", "ants", "ants", "books", "books", "city", "city", "clifford d simak", "clifford d simak", "emergent behavior", "emergent behavior", "sci-fi", "sci-fi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/03/17/ants-are-awesome/" target="_blank">http://ealdent.wordpress.com/2008/03/17/ants-are-awesome/</a><br /><br />
<p align="justify">Researchers in the video below filled an ant colony with concrete and dug it out to see just how exactly the colony was organized underground. The results are just plain awesome. Ants farm fungus and use livestock (aphids), build cities and wage wars. What the video refers to as a hive consciousness is emergent behavior: each ant following a series of simple rules results in a collective behavior that appears to be driven by a single conscious mind.</p>
-[youtube=http://www.youtube.com/watch?v=xQERRbU23bU]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=xQERRbU23bU=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p align="justify">
<table align="right" border="0" cellpadding="6">
<tr>
<td><img src="http://ealdent.files.wordpress.com/2008/03/cityclifforddsimak.jpg" alt="City by Clifford D Simak" align="right" /></td>
</tr>
</table>
</p><p align="justify">This reminds me of one of my favorite books growing up: <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FCity-Clifford-D-Simak%2Fdp%2F188296828X%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205759713%26sr%3D8-2&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">City</a><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /></i> by Clifford D. Simak. Simak seems to be a virtually forgotten author these days, though you can occasionally find his books in a Barnes & Noble (and of course, widely available online). <i>City</i> was probably his best work and had an incredible vision (it was written in 1952). I won't spoil much, but he introduces the idea of a colony of ants that is given the opportunity to survive many winters. They learn to produce heat on their own and make several appearances as the tale unfolds over hundreds of years. I highly recommend it and it's one of my favorite sci-fi books of all time. I've also read <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FGoblin-Reservation-Clifford-D-Simak%2Fdp%2F0881848972%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205759713%26sr%3D8-4&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">The Goblin Reservation</a></i><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /> and <i><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FVisitors-Clifford-D-Simak%2Fdp%2F0345283872%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1205760225%26sr%3D8-4&tag=themenbug-20&linkCode=ur2&camp=1789&creative=9325">The Visitors</a></i><img src="http://www.assoc-amazon.com/e/ir?t=themenbug-20&l=ur2&o=1" border="0" height="1" width="1" /> by him and I can recommend the former. The latter I still enjoyed, but if you are going to check out anything he has done, make that the third choice. Simak has an easy-to-read style that incorporates fantastic elements into what would otherwise be hard sci-fi, raising interesting philosophical questions in the process.</p>
diff --git a/_posts/2008-04-07-a-flyby-of-warthogs.html b/_posts/2008-04-07-a-flyby-of-warthogs.html
index fbc408f..a64f2ac 100644
--- a/_posts/2008-04-07-a-flyby-of-warthogs.html
+++ b/_posts/2008-04-07-a-flyby-of-warthogs.html
@@ -1,8 +1,8 @@
---
layout: post
title: "A Flyby of Warthogs"
tags: ["a10 warthogs", "a10 warthogs", "airplanes", "airplanes", "childhood", "childhood", "jets", "jets", "lizard man", "lizard man", "military", "military", "pittsburgh", "pittsburgh", "south carolina", "south carolina"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/04/07/a-flyby-of-warthogs/" target="_blank">http://ealdent.wordpress.com/2008/04/07/a-flyby-of-warthogs/</a><br /><br />
<p>I have no idea why, but four A-10 Warthogs made several circuits around the skies of Pittsburgh today. They are quite noisy, subsonic jets used by the military against armored vehicles and ground positions. The last time I had seen one outside of an air show or museum was when I was kid camping in Sumter National Forest in South Carolina. A couple A-10's from a local air base were doing some target practice. Their tank-busting guns sound like a giant dumpster slamming from far off. At first, we had no idea what the sound was coming from, so we joked it was the lizard man.</p>
-[youtube=http://www.youtube.com/watch?v=bVfAiIPoODI]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=bVfAiIPoODI=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-04-28-coin-operated-boy.html b/_posts/2008-04-28-coin-operated-boy.html
index 4a66bad..efc0609 100644
--- a/_posts/2008-04-28-coin-operated-boy.html
+++ b/_posts/2008-04-28-coin-operated-boy.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Coin Operated Boy"
tags: ["amanda palmer", "amanda palmer", "bitterness", "bitterness", "cabaret", "cabaret", "dresden dolls", "dresden dolls", "music", "music", "music videos", "music videos", "punk", "punk"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/04/28/coin-operated-boy/" target="_blank">http://ealdent.wordpress.com/2008/04/28/coin-operated-boy/</a><br /><br />
-[youtube=http://www.youtube.com/watch?v=YAnyYTjjhJ0]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=YAnyYTjjhJ0=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>My new favorite band (thank you, Pandora): the <a href="http://www.pandora.com/music/artist/dresden+dolls" target="_blank">Dresden Dolls</a>. The band is a Boston duo with vocals by Amanda Palmer, who is supposed to be releasing an album this year with some collaboration by Ben Folds. They describe themselves as Brechtian (as in <a href="http://en.wikipedia.org/wiki/Bertolt_Brecht" target="_blank">Bertolt</a>) punk cabaret, which actually seems to fit. The lyrics are occasionally self-referential, often bitter and always insightful. The music is a blend of piano, carnival music, and the 1920's. Plus a million other things. So cool.</p>
<p>Note, the youtube version of "Coin Operated Boy" is about a minute short. If you can get your hands on the full version, I find it much better. Another song I love below.</p>
-[youtube=http://www.youtube.com/watch?v=Awnjw36mNEs]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Awnjw36mNEs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-14-games-with-a-purpose.html b/_posts/2008-05-14-games-with-a-purpose.html
index fae39f7..63f8341 100644
--- a/_posts/2008-05-14-games-with-a-purpose.html
+++ b/_posts/2008-05-14-games-with-a-purpose.html
@@ -1,19 +1,19 @@
---
layout: post
title: "Games with a Purpose"
tags: ["ai", "ai", "cmu", "cmu", "computer science", "computer science", "games", "games", "gaming", "gaming", "gwap", "gwap", "human computation", "human computation", "luis von ahn", "luis von ahn", "research", "research"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/14/games-with-a-purpose/" target="_blank">http://ealdent.wordpress.com/2008/05/14/games-with-a-purpose/</a><br /><br />
<p>Today is the official opening day of <a title="Games with a Purpose" href="http://www.gwap.com" target="_blank">GWAP: Games with a Purpose</a>. This is one of two research projects I have been working on for the past few months, though my involvement with GWAP so far has only been in the form of attending meetings, minor testing, and offering my sage gaming advice (and by sage, I mean the herb). GWAP is the next phase in <a href="http://www.cs.cmu.edu/~biglou" target="_blank">Luis von Ahn</a>'s human computation project. If you visit and play some games, not only will you be rewarded with a good time, but you'll be helping science! Science needs you. To play games. Now.</p>
<h3>The Idea</h3>
<p>Artificial intelligence has come a long way, but humans are still far better at computers at simple, everyday tasks. We can quickly pick out the key points in a photo, we know what words mean and how they are related, we can identify various elements in a piece of music, etc. All of these things are still very difficult for computers. So why not funnel some of the gazillion hours we waste on solitaire into something useful? Luis has already launched a couple websites that let people play games while solving these problems. Perhaps you've noticed the link to <a href="http://images.google.com/imagelabeler/" target="_blank">Google Image Labeler</a> on Google Image Search? That idea came from his ESP game (which is now on GWAP).</p>
<h3>The Motivation</h3>
<p>What researchers need to help them develop better algorithms for computers to do these tasks is data. The more data the better. Statistical machine translation has improved quite a bit over the past few years, in large part due to an increased amount of data. This is the reason why languages that are spoken by few people (even those spoken by as few as several million) still don't have machine translation tools: there is just not enough data. More data means more food for these algorithms which means better results. And if results don't improve, then we have learned something else.</p>
<h3>The Solution</h3>
<p>Multiple billions of hours are spent each year on computer games. If even a small fraction of that time were spent performing some task that computers aren't yet able to do, we could increase the size of the data sets available to researchers enormously. Luis puts this all a lot better than I can, and fortunately, you can watch him on YouTube (below).</p>
So, check it out already.
-[youtube=http://www.youtube.com/watch?v=qlzM3zcd-lk]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qlzM3zcd-lk=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-18-gwap-promo.html b/_posts/2008-05-18-gwap-promo.html
index d2a628d..4e4b72b 100644
--- a/_posts/2008-05-18-gwap-promo.html
+++ b/_posts/2008-05-18-gwap-promo.html
@@ -1,8 +1,8 @@
---
layout: post
title: "GWAP Promo"
tags: ["computer science", "computer science", "family", "family", "games", "games", "gwap", "gwap", "human computation", "human computation", "johnny lee", "johnny lee", "ohio", "ohio", "videos", "videos", "wii", "wii"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/18/gwap-promo/" target="_blank">http://ealdent.wordpress.com/2008/05/18/gwap-promo/</a><br /><br />
<p>Figured I'd post this promo video the GWAP group did. Unfortunately, I wasn't able to participate in the filming of it since I was visiting my dad and family in Ohio for the first time after many years. So unfortunate in that I missed the filming, but the alternative was worth it. <a href="http://www.youtube.com/user/jcl5m" target="_blank">Johnny Lee</a> had a not insignificant role in the making of the video, I believe. Check out his stuff if you haven't, he's doing some pretty amazing things with Wii remotes.</p>
-[youtube=http://www.youtube.com/watch?v=vUH-eZTSTfs]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=vUH-eZTSTfs=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-05-19-is-that-all-there-is.html b/_posts/2008-05-19-is-that-all-there-is.html
index 9ae642e..c7f23b1 100644
--- a/_posts/2008-05-19-is-that-all-there-is.html
+++ b/_posts/2008-05-19-is-that-all-there-is.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Is that all there is?"
tags: ["movies", "movies", "music", "music", "pandora", "pandora", "peggy lee", "peggy lee", "revolver", "revolver", "the nines", "the nines", "youtube", "youtube"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/05/19/is-that-all-there-is/" target="_blank">http://ealdent.wordpress.com/2008/05/19/is-that-all-there-is/</a><br /><br />
<p>My taste in music is definitely in flux. Five years ago I would have found this intolerable, but now I can't stop listening to it. I blame <a href="http://www.pandora.com" target="_blank">Pandora</a>. The musical journeys it takes you on can be transformational.</p>
-[youtube=http://www.youtube.com/watch?v=qe9kKf7SHco]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=qe9kKf7SHco=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>Unfortunately the video stops before the song is over, but YouTube offers several full length suggestions immediately after. The videos themselves are all insane, so I didn't want to endorse any. I just listen to the sound track in another tab and don't watch them.</p>
<p>This question was a central theme in the movie <em>The Nines</em>, which I recommend. It also came up in <em>Revolver</em>, which I just watched tonight, though it wasn't asked explicitly. Instead, the question is who is your worst enemy? The movie's position is that it is not external, but internal. I think I can say that without spoiling anything. The trick is to avoid the lie that your perception is infallible. Pulling that off is a different matter altogether, though it is a helpful trait for a good scientist.</p>
diff --git a/_posts/2008-06-18-spore-creature-creator.html b/_posts/2008-06-18-spore-creature-creator.html
index b98a84d..3d5f223 100644
--- a/_posts/2008-06-18-spore-creature-creator.html
+++ b/_posts/2008-06-18-spore-creature-creator.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Spore Creature Creator"
tags: ["creatures", "creatures", "demos", "demos", "games", "games", "gaming", "gaming", "maxis", "maxis", "spore", "spore", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/06/18/spore-creature-creator/" target="_blank">http://ealdent.wordpress.com/2008/06/18/spore-creature-creator/</a><br /><br />
<p><a href="http://www.spore.com" target="_blank">Spore</a> is probably the most anticipated game of the year. Indeed, it has been anticipated for quite a while. It's by the same dude who did SimCity and the Sims, yada yada, if you want to know all that you can check out the <a href="http://www.gamasutra.com/php-bin/news_index.php?story=18029" target="_blank">myriad gaming articles</a> out there who care a lot more about the particulars than I do. The main thing of interest to me is the creature creator at this point, since Maxis just released a <a href="http://www.spore.com/trial" target="_blank">demo version</a> of it. You can also buy a non-disabled version for $10 (digitally starting at noon CST today). The demo version limits the variety of parts you can add pretty significantly. What it does let you see is how well it animates and interprets the morphology of the creatures you make. And it's pretty frickin' cool.</p>
Below is one of my creations, Otzertzen.
-[youtube=http://youtube.com/watch?v=h061RQq662k]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://youtube.com/watch?v=h061RQq662k=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-08-21-bisfree.html b/_posts/2008-08-21-bisfree.html
index c111d0a..d45dc5e 100644
--- a/_posts/2008-08-21-bisfree.html
+++ b/_posts/2008-08-21-bisfree.html
@@ -1,14 +1,14 @@
---
layout: post
title: "Bisfree"
tags: ["dogs", "dogs", "frisbee", "frisbee", "moving", "moving"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/08/21/bisfree/" target="_blank">http://ealdent.wordpress.com/2008/08/21/bisfree/</a><br /><br />
<p>I tried to get some action shots of Willow catching the frisbee, with limited success. Daedal had his nose to the ground, as usual. I've been in high gear preparing for the move and trying to finish up work here by the end of the month, which has left me little time for blogging.</p>
-[caption id="attachment_721" align="alignnone" width="500" caption="Daedalus sniffing the ground, doing what beagles do best"]<img class="size-full wp-image-721" src="http://ealdent.files.wordpress.com/2008/08/daedalsniffing.jpg" alt="Daedalus sniffing the ground, doing what beagles do best" width="500" height="375" />[/caption]
+ <img class="size-full wp-image-721" src="http://ealdent.files.wordpress.com/2008/08/daedalsniffing.jpg" alt="Daedalus sniffing the ground, doing what beagles do best" width="500" height="375" />[/caption]
-[caption id="attachment_722" align="alignnone" width="500" caption="My australian shepherd Willow catching a frisbee in mid-air"]<img class="size-full wp-image-722" src="http://ealdent.files.wordpress.com/2008/08/willow_midflight.jpg" alt="My australian shepherd Willow catching a frisbee in mid-air" width="500" height="325" />[/caption]
+ <img class="size-full wp-image-722" src="http://ealdent.files.wordpress.com/2008/08/willow_midflight.jpg" alt="My australian shepherd Willow catching a frisbee in mid-air" width="500" height="325" />[/caption]
-[caption id="attachment_723" align="alignnone" width="500" caption="And of course, Willow can't be happy until she's messed up the bed."]<img class="size-full wp-image-723" src="http://ealdent.files.wordpress.com/2008/08/willow_messedupbed.jpg" alt="And of course, Willow can't be happy until she's messed up the bed." width="500" height="375" />[/caption]
+ <img class="size-full wp-image-723" src="http://ealdent.files.wordpress.com/2008/08/willow_messedupbed.jpg" alt="And of course, Willow can't be happy until she's messed up the bed." width="500" height="375" />[/caption]
diff --git a/_posts/2008-08-23-the-mind-of-daedalus.html b/_posts/2008-08-23-the-mind-of-daedalus.html
index 2797e1d..35f1fa9 100644
--- a/_posts/2008-08-23-the-mind-of-daedalus.html
+++ b/_posts/2008-08-23-the-mind-of-daedalus.html
@@ -1,15 +1,15 @@
---
layout: post
title: "The mind of Daedalus"
tags: ["beagles", "beagles", "dog behavior", "dog behavior", "dog parks", "dog parks", "dogs", "dogs", "moving", "moving"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/08/23/the-mind-of-daedalus/" target="_blank">http://ealdent.wordpress.com/2008/08/23/the-mind-of-daedalus/</a><br /><br />
<p>Donna is visiting family with Willow, while I have remained behind in Pittsburgh with Daedalus to pack and show the place. The Jason sweepstakes (<a href="http://thelousylinguist.blogspot.com" target="_blank">hat tip</a> for the great term) have ended, and I may talk about that further in the near future. Suffice it to say, it turned out very well for me, and I'm glad the stress and monumental effort involved in juggling dozens of phone calls per week and plane trips is over.</p>
<p>As a dog-obsessed person, I am always observing the behavior of my dogs and trying to guess what they are thinking and what motivates them. Dogs are great creatures. They are simple in their basic needs: food and companionship. Different dogs have different levels of needs in both categories. For Daedalus, the food need is paramount. It trumps all else. For Willow, the companionship need is paramount. She would rather go hungry than be left alone. Not that we give her that choice, but she will abandon her food even when hungry for the chance to be petted or to not be left behind when we leave.</p>
<p>So this weekend has given me some time to reflect on what is going on in Daedal's head. We watched Donna and Willow pull away in the car around noon. Daedal followed them with his eyes for a little bit before going back to his sniffing. Food trumps companionship. Later that evening, whenever we went out, he would go to the end of the walkway and look out on the street. This wasn't his usual pattern, so I assumed he wanted to go on a walk or something. A white car (not the same white car Donna drives) passed by and parked. Daedal went freakin nuts. He never cares about neighbors parking, so I think he must have thought it was Donna and Willow. Every time I took him out, he would continue to stand watch for them. Even though food trumps companionship, it was sweet to see how much he missed his pack.</p>
<p>A secondary need for Daedalus is comfort. During the day, he will find the one sliver of sunlight to bask in. I've even seem him get up and move to follow the sliver as it progresses across the floor. I normally keep the shades closed to keep it cooler, but I had to lift it a little today to give him a bit more sunlight (below). Also in search of comfort, he enjoys sleeping on pillows even when on the bed or the couch.</p>
-[caption id="attachment_729" align="alignnone" width="490" caption="Daedalus - a dog apart"]<a href="http://ealdent.files.wordpress.com/2008/08/a_daedalus_apart.jpg" target="_blank"><img class="size-large wp-image-729" src="http://ealdent.files.wordpress.com/2008/08/a_daedalus_apart.jpg?w=500" alt="Daedalus - a dog apart" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/08/a_daedalus_apart.jpg" target="_blank"><img class="size-large wp-image-729" src="http://ealdent.files.wordpress.com/2008/08/a_daedalus_apart.jpg?w=500" alt="Daedalus - a dog apart" width="490" height="368" /></a>[/caption]
<p>At the dog park, Daedalus is like a dog apart. He may greet a dog or two, but for the most part he is interested in sniffing. He immediately goes to the borders of whatever enclosure we're in and will sniff around the edges. Most dogs will stick around the center, where the action is, but Daedalus prefers to wander.</p>
<p>Daedalus is an odd mixture of dominant and submissive, so when a dominant dog encounters him, they are often confused. They will try to hump him, which usually prompts Daedal's characteristic snarl-bark. It sounds kind of vicious, but he never bites so it's really all warning and show. He only ever escalates with Willow, because Willow is the thorn in his side. The dominant dog will hear this snarl-bark and back off, not knowing what to make of it. Whereas with another dog that might prompt a fight, with Daedal they take it seriously. For a few seconds. Then they come back and try to hump him again, and the process repeats. The thing is, when they do it, Daedal doesn't give a <em>crap</em> about the perpetrator. He is bothered by the fact that his sniffing is being interrupted. He completely ignores them otherwise.</p>
diff --git a/_posts/2008-08-29-creature-comforts.html b/_posts/2008-08-29-creature-comforts.html
index e2e3a5c..db22f61 100644
--- a/_posts/2008-08-29-creature-comforts.html
+++ b/_posts/2008-08-29-creature-comforts.html
@@ -1,13 +1,13 @@
---
layout: post
title: "Creature Comforts"
tags: ["blankets", "blankets", "boxes", "boxes", "comfort", "comfort", "dogs", "dogs", "funny dogs", "funny dogs", "humor", "humor", "moving", "moving"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/08/29/creature-comforts/" target="_blank">http://ealdent.wordpress.com/2008/08/29/creature-comforts/</a><br /><br />
Let's say you are standing next to a 10-foot tall box filled to the brim with blankets. Wouldn't you bark at it so the giant could lift you up and put you in it?
-[caption id="attachment_737" align="aligncenter" width="490" caption="My lemon beagle Daedalus seeking out the comfort only a box of blankets can provide."]<a href="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box0.jpg"><img class="size-large wp-image-737" src="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box0.jpg?w=500" alt="My lemon beagle Daedalus seeking out the comfort only a box of blankets can provide." width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box0.jpg"><img class="size-large wp-image-737" src="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box0.jpg?w=500" alt="My lemon beagle Daedalus seeking out the comfort only a box of blankets can provide." width="490" height="368" /></a>[/caption]
<p>After a short period of discomfort, because he didn't know what he was getting himself into, the little buddy is sleeping peacefully.</p>
-[caption id="attachment_738" align="aligncenter" width="490" caption="Daedalus now sleeping comfortably in the box of blankets."]<a href="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box.jpg"><img class="size-large wp-image-738" src="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box.jpg?w=500" alt="Daedalus now sleeping comfortably in the box of blankets." width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box.jpg"><img class="size-large wp-image-738" src="http://ealdent.files.wordpress.com/2008/08/daedal_in_the_blanket_box.jpg?w=500" alt="Daedalus now sleeping comfortably in the box of blankets." width="490" height="368" /></a>[/caption]
diff --git a/_posts/2008-09-12-new-dog-park.html b/_posts/2008-09-12-new-dog-park.html
index c7d5682..97da9c6 100644
--- a/_posts/2008-09-12-new-dog-park.html
+++ b/_posts/2008-09-12-new-dog-park.html
@@ -1,12 +1,12 @@
---
layout: post
title: "New Dog Park"
tags: ["atlanta", "atlanta", "dog parks", "dog parks", "dogs", "dogs", "georgia", "georgia", "jobs", "jobs", "pittsburgh", "pittsburgh"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/09/12/new-dog-park/" target="_blank">http://ealdent.wordpress.com/2008/09/12/new-dog-park/</a><br /><br />
<p>Well, we have finally completed our move to Atlanta, GA. Â It amuses me how each city in the US arranges itself differently. Â Of course, this process can be traced by looking at the city's history, if you're really interested, but I'm not going to go into that further. Â Whereas Pittsburgh was arranged into neighborhoods, Atlanta is like a star system. Â At the center of the system is the city proper. Â Radiating out from the center are numerous suburbs (planets). Â We live in one of the northern suburbs, Alpharetta. Â We are very close to a park again, which is nice, but so far we haven't found a dog park like Frick Park in Pittsburgh. Â Our new dog park is a bit more strict about being off-leash. Â Also, the off-leash area is a good deal smaller. Â Another drawback is the prevalence of sand in the South, which means Willow gets it in her fur and then tracks it into the apartment. Â We're still trying to figure out how to deal with that.</p>
-[caption id="attachment_743" align="aligncenter" width="490" caption="My Australian Shepherd Willow at our new dog park in Alpharetta, GA."]<a href="http://ealdent.files.wordpress.com/2008/09/willow_newdogpark.jpg"><img class="size-large wp-image-743 " title="Willow at the New Dog Park" src="http://ealdent.files.wordpress.com/2008/09/willow_newdogpark.jpg?w=500" alt="My Australian Shepherd Willow at our new dog park in Alpharetta, GA." width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/09/willow_newdogpark.jpg"><img class="size-large wp-image-743 " title="Willow at the New Dog Park" src="http://ealdent.files.wordpress.com/2008/09/willow_newdogpark.jpg?w=500" alt="My Australian Shepherd Willow at our new dog park in Alpharetta, GA." width="490" height="368" /></a>[/caption]
<p>Despite these minor complaints, we're really enjoying our new place. Â The location is amazing for shopping, which is a major plus for my wife. Â It's also about one mile from my new job (for a rapidly growing software startup), which is a major plus for me. Â If I want, I can walk through the park straight to my office. Â I haven't quite figured out how to get to this trail, but I know it exists. Â I'm going to try to find it tomorrow morning.</p>
<p>As for my new job, I will be mainly working on <a href="http://mendicantbug.com/2008/08/14/opinion-mining/" target="_self">opinion mining</a>, which I have written about before. Â I expect I will be writing about it a bit more here in the near future.</p>
diff --git a/_posts/2008-09-24-deer-park.html b/_posts/2008-09-24-deer-park.html
index ce0efb4..d10c8a4 100644
--- a/_posts/2008-09-24-deer-park.html
+++ b/_posts/2008-09-24-deer-park.html
@@ -1,21 +1,21 @@
---
layout: post
title: "Deer Park"
tags: ["deer", "deer", "hiking", "hiking", "parks", "parks", "snakes", "snakes", "trails", "trails", "walking", "walking"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/09/24/deer-park/" target="_blank">http://ealdent.wordpress.com/2008/09/24/deer-park/</a><br /><br />
<p>There was a gas shortage in Atlanta over the weekend, so I figured it was a good time to walk to work. Â Of course, I only use about an eighth of a tank per week if I do drive. Â Last week I found the path through the Greenway from my apartment to my office building, and today the car stayed home. Â I couldn't have picked a better day. Â The sky was crystal clear (such a change from Pittsburgh), the temperature was cool, and the sun was just above the trees.</p>
<p>On the way in, I saw three deer. Â I managed to snap a pic of two of them. These two seemed especially cautious compared to the others I've come across. Â The first time I walked the trail, I had both of my dogs and came across a 4-point buck. Â He didn't give a crap about me or the two dogs that were snarling and barking into the trees. Â It wasn't until the pre-flash from the red-eye reduction on my camera that he turned and bolted. Â And then finally today on the way home I came upon two fawns without any doe in sight. They let me get about 8 feet away before darting off further into the woods. Everyday in the woods around my apartment I see at least one deer. Last night there was one rustling in the bushes and it sent Willow and Daedal into fits. Â The woods are literally crawling with them. Looking for them is becoming my obsession. I think I'll probably walk tomorrow even though I'm going in almost an hour and a half earlier than usual, just so I can spot some more.</p>
<p>Anyhow, pics below. Â I've also spotted two snakes and had a run-in with a copperhead. Â I stepped on it and it thrashed all over my leg, but I managed to avoid being bitten. Â That got the old adrenaline flowing...</p>
Â
-[caption id="attachment_751" align="aligncenter" width="490" caption="A buck running off through the woods"]<a href="http://ealdent.files.wordpress.com/2008/09/s1051077.jpg"><img class="size-large wp-image-751 " title="buck in the woods" src="http://ealdent.files.wordpress.com/2008/09/s1051077.jpg?w=500" alt="A buck running off through the woods" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/09/s1051077.jpg"><img class="size-large wp-image-751 " title="buck in the woods" src="http://ealdent.files.wordpress.com/2008/09/s1051077.jpg?w=500" alt="A buck running off through the woods" width="490" height="368" /></a>[/caption]
Â
-[caption id="attachment_756" align="aligncenter" width="490" caption="Two deer at the edge of the woods"]<a href="http://ealdent.files.wordpress.com/2008/09/603945.jpg"><img class="size-large wp-image-756 " title="Two deer" src="http://ealdent.files.wordpress.com/2008/09/603945.jpg?w=500" alt="Two deer at the edge of the woods" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/09/603945.jpg"><img class="size-large wp-image-756 " title="Two deer" src="http://ealdent.files.wordpress.com/2008/09/603945.jpg?w=500" alt="Two deer at the edge of the woods" width="490" height="368" /></a>[/caption]
Â
-[caption id="attachment_757" align="aligncenter" width="490" caption="Two fawns on the path (the second is on the left side)"]<a href="http://ealdent.files.wordpress.com/2008/09/606966.jpg"><img class="size-large wp-image-757 " title="Two fawns" src="http://ealdent.files.wordpress.com/2008/09/606966.jpg?w=500" alt="Two fawns on the path (the second is on the left side)" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/09/606966.jpg"><img class="size-large wp-image-757 " title="Two fawns" src="http://ealdent.files.wordpress.com/2008/09/606966.jpg?w=500" alt="Two fawns on the path (the second is on the left side)" width="490" height="368" /></a>[/caption]
diff --git a/_posts/2008-09-30-smiley-pareidolia.html b/_posts/2008-09-30-smiley-pareidolia.html
index 6431015..c7f65bf 100644
--- a/_posts/2008-09-30-smiley-pareidolia.html
+++ b/_posts/2008-09-30-smiley-pareidolia.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Smiley Pareidolia"
tags: ["condensation", "condensation", "ice water", "ice water", "pareidolia", "pareidolia", "smiley", "smiley"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/09/30/smiley-pareidolia/" target="_blank">http://ealdent.wordpress.com/2008/09/30/smiley-pareidolia/</a><br /><br />
<p><a href="http://en.wikipedia.org/wiki/Pareidolia" target="_blank">Pareidolia is </a>the psychological phenomenon where people think they see some significant pattern or image in something random. Â This may be the face of Elvis in pork chop grease or <a href="http://news.bbc.co.uk/2/hi/americas/4034787.stm" target="_blank">the face of the Virgin Mary in a once-bitten sandwich</a>. Â I have a coaster on my desk and an almost unempty glass of ice water, which is sweating profusely. Â When I lifted the glass, I was surprised to see a little pareidolia of the smiley variety. Â Incidentally, the 26th <a href="http://mendicantbug.com/2007/09/18/x-25/" target="_self">birthday of the smiley</a> was just a week or so ago.</p>
-[caption id="attachment_763" align="aligncenter" width="490" caption="Smiley pareidolia on a coaster, left behind by a sweating glass of ice water"]<a href="http://ealdent.files.wordpress.com/2008/10/water_smiley_coaster.jpg"><img class="size-large wp-image-763 " title="water_smiley_coaster" src="http://ealdent.files.wordpress.com/2008/10/water_smiley_coaster.jpg?w=500" alt="Smiley pareidolia on a coaster, left behind by a sweating glass of ice water" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/10/water_smiley_coaster.jpg"><img class="size-large wp-image-763 " title="water_smiley_coaster" src="http://ealdent.files.wordpress.com/2008/10/water_smiley_coaster.jpg?w=500" alt="Smiley pareidolia on a coaster, left behind by a sweating glass of ice water" width="490" height="368" /></a>[/caption]
diff --git a/_posts/2008-10-10-a-thing-of-horror.html b/_posts/2008-10-10-a-thing-of-horror.html
index 19539bf..7ee3e33 100644
--- a/_posts/2008-10-10-a-thing-of-horror.html
+++ b/_posts/2008-10-10-a-thing-of-horror.html
@@ -1,9 +1,9 @@
---
layout: post
title: "A thing of horror"
tags: ["abomination", "abomination", "androids", "androids", "creepy", "creepy", "horror", "horror", "little girls", "little girls", "real sci-fi", "real sci-fi", "robots", "robots"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/10/a-thing-of-horror/" target="_blank">http://ealdent.wordpress.com/2008/10/10/a-thing-of-horror/</a><br /><br />
If you're in the mood for some bad dreams, look no further.
-[youtube=http://uk.youtube.com/watch?v=0P-Jl6Hb5Vw]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://uk.youtube.com/watch?v=0P-Jl6Hb5Vw=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-10-11-daedal-on-the-hunt.html b/_posts/2008-10-11-daedal-on-the-hunt.html
index 214c549..99d05e4 100644
--- a/_posts/2008-10-11-daedal-on-the-hunt.html
+++ b/_posts/2008-10-11-daedal-on-the-hunt.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Daedal on the hunt"
tags: ["beagles", "beagles", "chipmunks", "chipmunks", "digging", "digging", "dog parks", "dog parks", "dogs", "dogs", "holes", "holes", "hunting", "hunting"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/11/daedal-on-the-hunt/" target="_blank">http://ealdent.wordpress.com/2008/10/11/daedal-on-the-hunt/</a><br /><br />
<p>Daedalus does a great job of finding where animals are or have been. Â He tends to let the smells consume his attention, though, and he fails to notice when the animal scurries away, mere feet from him. Â Today was one such day. Â I watched the chipmunks he was pursuing all slip away to safer places.</p>
-[youtube=http://www.youtube.com/watch?v=g37PC73DD3Q]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=g37PC73DD3Q=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>If I watch this video with the sound turned on, it drives both my dogs crazy.</p>
diff --git a/_posts/2008-10-22-gwap-gender-guesser.html b/_posts/2008-10-22-gwap-gender-guesser.html
index c5406a0..67f4632 100644
--- a/_posts/2008-10-22-gwap-gender-guesser.html
+++ b/_posts/2008-10-22-gwap-gender-guesser.html
@@ -1,10 +1,10 @@
---
layout: post
title: "GWAP Gender Guesser"
tags: ["games", "games", "gender", "gender", "gwap", "gwap", "human computation", "human computation", "preferences", "preferences"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/22/gwap-gender-guesser/" target="_blank">http://ealdent.wordpress.com/2008/10/22/gwap-gender-guesser/</a><br /><br />
<p>I don't have a lot to say about the mechanics behind it, since I'm not privy to them, but my former project GWAP is testing out a gender guesser. Â Based on your preferences for 10 pairs of images, it seems to achieve decent accuracy guessing your gender. Â At least of the 10 or so times that I took it, it got it wrong twice.</p>
-[caption id="attachment_801" align="aligncenter" width="485" caption="GWAP's new gender guessing game"]<a href="http://www.gwap.com/gwap/"><img class="size-full wp-image-801 " title="gwap_gender_guesser" src="http://ealdent.files.wordpress.com/2008/10/gwap_gender_guesser.jpg" alt="GWAP's new gender guesser" width="485" height="315" /></a>[/caption]
+ <a href="http://www.gwap.com/gwap/"><img class="size-full wp-image-801 " title="gwap_gender_guesser" src="http://ealdent.files.wordpress.com/2008/10/gwap_gender_guesser.jpg" alt="GWAP's new gender guesser" width="485" height="315" /></a>[/caption]
diff --git a/_posts/2008-10-24-hes-dead-jim.html b/_posts/2008-10-24-hes-dead-jim.html
index 0019d9c..4ab5c7c 100644
--- a/_posts/2008-10-24-hes-dead-jim.html
+++ b/_posts/2008-10-24-hes-dead-jim.html
@@ -1,11 +1,11 @@
---
layout: post
title: "He's dead, Jim"
tags: ["deforest kelley", "deforest kelley", "enterprise", "enterprise", "nasa", "nasa", "real sci-fi", "real sci-fi", "shuttles", "shuttles", "sociolinguistics", "sociolinguistics", "space travel", "space travel", "spaceships", "spaceships", "spelling", "spelling", "star trek", "star trek"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/10/24/hes-dead-jim/" target="_blank">http://ealdent.wordpress.com/2008/10/24/hes-dead-jim/</a><br /><br />
Something about <a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1204.html" target="_blank">this photo</a> speaks to me:
-[caption id="attachment_808" align="aligncenter" width="490" caption="Some actors from Star Trek standing near the Shuttle Enterprise. Credit: NASA"]<a href="http://ealdent.files.wordpress.com/2008/10/284701main_image_1204_1600-1200.jpg"><img class="size-large wp-image-808" title="Crew of the Enterprise and the real Enterprise" src="http://ealdent.files.wordpress.com/2008/10/284701main_image_1204_1600-1200.jpg?w=500" alt="Some actors from Star Trek standing near the Shuttle Enterprise" width="490" height="368" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/10/284701main_image_1204_1600-1200.jpg"><img class="size-large wp-image-808" title="Crew of the Enterprise and the real Enterprise" src="http://ealdent.files.wordpress.com/2008/10/284701main_image_1204_1600-1200.jpg?w=500" alt="Some actors from Star Trek standing near the Shuttle Enterprise" width="490" height="368" /></a>[/caption]
<p>Now, I wonder if DeForest Kelley (Dr. McCoy) is really that interested in talking to the NASA engineer-looking dude on the left. It just brings to mind hundreds of conversations between scientists and laymen where the laymen appears interested and the scientist rambles on about stuff way too esoteric to be meaningful. Of course, maybe he's talking about his daughter: "She's about yay tall..."</p>
<p>On a mildly interesting side note, I was trying to figure out the correct spelling of "yay" in the phrase "yay tall." Is it "yay" or "yea"? The Googles shows about 325 results for "about yea tall" and 821 for "about yay tall." So I went with "yay". Yay for me! Anyone know which one the Queen uses?</p>
diff --git a/_posts/2008-11-10-fallout-3-teaser.html b/_posts/2008-11-10-fallout-3-teaser.html
index 5861512..18f38a8 100644
--- a/_posts/2008-11-10-fallout-3-teaser.html
+++ b/_posts/2008-11-10-fallout-3-teaser.html
@@ -1,10 +1,10 @@
---
layout: post
title: "Fallout 3 Teaser"
tags: ["advertising", "advertising", "dystopian sci-fi", "dystopian sci-fi", "fallout", "fallout", "games", "games", "post-apocalyptic", "post-apocalyptic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/10/fallout-3-teaser/" target="_blank">http://ealdent.wordpress.com/2008/11/10/fallout-3-teaser/</a><br /><br />
<p>Fallout 2 was one of the best games I've ever played. Post-apocalpytic, satirical, and gritty. Good times.</p>
<p>The trailer for the next one is awesome, and apparently it's due out soon...</p>
-[youtube=http://www.youtube.com/watch?v=zPt08UYmyMo]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=zPt08UYmyMo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-11-11-dog-of-man.html b/_posts/2008-11-11-dog-of-man.html
index b165a54..f233c6d 100644
--- a/_posts/2008-11-11-dog-of-man.html
+++ b/_posts/2008-11-11-dog-of-man.html
@@ -1,15 +1,15 @@
---
layout: post
title: "Dog of Man"
tags: ["david firth", "david firth", "demented", "demented", "dogs", "dogs", "flash", "flash", "twisted", "twisted"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/11/dog-of-man/" target="_blank">http://ealdent.wordpress.com/2008/11/11/dog-of-man/</a><br /><br />
<p>I'm a big fan of <a href="http://fat-pie.com" target="_blank">David Firth</a>. His flash animations are the most genuinely demented things I've come across. It's delightful!</p>
<em>Warning:Â Don't click the image below if utterly twisted crap spooks you.</em>
<p><em></em></p>
-[caption id="attachment_850" align="aligncenter" width="490" caption="Dog of Man by David Firth"]<em></em><em><a href="http://www.fat-pie.com/dogofman.htm" target="_blank"><img class="size-full wp-image-850" title="dogofman" src="http://ealdent.files.wordpress.com/2008/11/dogofman.png" alt="Dog of Man by David Firth" width="490" height="328" /></a></em>[/caption]
+ <em></em><em><a href="http://www.fat-pie.com/dogofman.htm" target="_blank"><img class="size-full wp-image-850" title="dogofman" src="http://ealdent.files.wordpress.com/2008/11/dogofman.png" alt="Dog of Man by David Firth" width="490" height="328" /></a></em>[/caption]
<em></em>
diff --git a/_posts/2008-11-13-fomalhaut-b.html b/_posts/2008-11-13-fomalhaut-b.html
index 0e744d4..36bb6ac 100644
--- a/_posts/2008-11-13-fomalhaut-b.html
+++ b/_posts/2008-11-13-fomalhaut-b.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Fomalhaut B"
tags: ["extra-solar planets", "extra-solar planets", "fomalhaut", "fomalhaut", "hubble", "hubble", "nasa", "nasa", "planets", "planets", "space", "space"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/13/fomalhaut-b/" target="_blank">http://ealdent.wordpress.com/2008/11/13/fomalhaut-b/</a><br /><br />
<p>Hubble <a href="http://science.nasa.gov/headlines/y2008/13nov_fomalhaut.htm" target="_blank">has captured</a> a visible-spectrum image of a planet revolving around Fomalhaut. Previously planets had only been observed indirectly, such as when the planet passes between Earth and the star. Fomalhaut is close enough that Hubble was able to catch a glimpse of the highly reflective giant planet, which is about three times the size of Jupiter and tens times as far from Fomalhaut as Saturn is from the sun.</p>
Check out the video for more info.
<p></p>
-[caption id="attachment_855" align="aligncenter" width="490" caption="Hubble captures first visible image of an extra solar planet"]<a href="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg"><img class="size-full wp-image-855" title="formalhaut_b" src="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg" alt="Hubble captures first visible image of an extra solar planet" width="490" height="392" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg"><img class="size-full wp-image-855" title="formalhaut_b" src="http://ealdent.files.wordpress.com/2008/11/formalhaut_b.jpg" alt="Hubble captures first visible image of an extra solar planet" width="490" height="392" /></a>[/caption]
-[youtube=http://www.youtube.com/watch?v=gRw-cNiVIVo]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=gRw-cNiVIVo=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p><em>Update:Â I originally misspelled this is as "Formalhaut," a mistake I've been making ever since I was a kid and always forget.</em></p>
diff --git a/_posts/2008-11-16-am-i-an-aspie.html b/_posts/2008-11-16-am-i-an-aspie.html
index b2e5524..745aff8 100644
--- a/_posts/2008-11-16-am-i-an-aspie.html
+++ b/_posts/2008-11-16-am-i-an-aspie.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Am I an Aspie?"
tags: ["aspberger syndrome", "aspberger syndrome", "aspie", "aspie", "neanderthals", "neanderthals", "psychology", "psychology", "quizzes", "quizzes"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/16/am-i-an-aspie/" target="_blank">http://ealdent.wordpress.com/2008/11/16/am-i-an-aspie/</a><br /><br />
<p><a href="http://en.wikipedia.org/wiki/Aspberger" target="_blank">Aspberger syndrome</a> is a social interaction disorder that falls under the autism umbrella, but isn't accompanied by any delay in cognitive development. I've considered the possibility that I have it a few times given the fact that I seem to have a lot of trouble in social situations. However, based on the descriptions of Aspies, I think if I do have it, it's very mild. I think this may be one of those cases where a simpler explanation is called for. If you don't practice something (in my case, social interaction), how can you expect to be good at it? It may even be a little insulting to people with real Aspberger syndrome to suggest that I have it. Who knows, since I don't want to see a shrink about it.</p>
<p>So I took <a href="http://www.rdos.net/eng/Aspie-quiz.php" target="_blank">a quiz</a> and the results indicate that I'm very likely an Aspie. Of course I have no idea how reliable the test is, not being a psychologist, but it was interesting. There is also <a href="http://www.rdos.net/eng/asperger.htm" target="_blank">an edgy theory about neanderthals </a>espoused on a different part of that site. So if you take the quiz, take it with the appropriate amount of skepticism. I have admitted before that quizzes are my guilty pleasure.</p>
My results:
<p></p>
-[caption id="" align="aligncenter" width="490" caption="My Aspie quiz results"]<img title="My Aspie quiz results" src="http://www.rdos.net/eng/poly12b.php?p1=85&p2=86&p3=56&p4=78&p5=48&p6=81&p7=61&p8=60&p9=39&p10=40&p11=58&p12=54" alt="My Aspie quiz results" width="490" height="306" />[/caption]
+ <img title="My Aspie quiz results" src="http://www.rdos.net/eng/poly12b.php?p1=85&p2=86&p3=56&p4=78&p5=48&p6=81&p7=61&p8=60&p9=39&p10=40&p11=58&p12=54" alt="My Aspie quiz results" width="490" height="306" />[/caption]
If you take it, post a link to your results.
diff --git a/_posts/2008-11-23-global-food-situation.html b/_posts/2008-11-23-global-food-situation.html
index 3b9fa69..4e24a52 100644
--- a/_posts/2008-11-23-global-food-situation.html
+++ b/_posts/2008-11-23-global-food-situation.html
@@ -1,9 +1,9 @@
---
layout: post
title: "The global food problem is our problem"
tags: ["agriculture", "agriculture", "diet", "diet", "food", "food", "japan", "japan", "public service messages", "public service messages"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/23/global-food-situation/" target="_blank">http://ealdent.wordpress.com/2008/11/23/global-food-situation/</a><br /><br />
This is a brilliant way to convey the gravity of a fairly complicated message. [<a href="http://datamining.typepad.com/data_mining/2008/11/isometric-reasons-to-lose-weight.html" target="_blank">via</a>]
-[youtube=http://www.youtube.com/watch?v=ok3ykR2GHCc]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=ok3ykR2GHCc=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-11-23-herding-bee.html b/_posts/2008-11-23-herding-bee.html
index d9b44ce..c15a735 100644
--- a/_posts/2008-11-23-herding-bee.html
+++ b/_posts/2008-11-23-herding-bee.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Herding Bee"
tags: ["bucks", "bucks", "deer", "deer", "dog training", "dog training", "dogs", "dogs", "georgia", "georgia", "herding", "herding", "sheep", "sheep", "stalking", "stalking", "woods", "woods"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/11/23/herding-bee/" target="_blank">http://ealdent.wordpress.com/2008/11/23/herding-bee/</a><br /><br />
<p>We took Willow herding yesterday. There is a nice little setup near Cumming, GA that offers herding lessons for beginning and intermediate dogs. We got three sessions in the circular pen with three sheep. Willow did really well the first time and it seemed like her herding instincts had kicked in full-force. She kept trying to get at the sheep afterwards, unable to rest as long as she wasn't in the pen. The sheep got changed out and were replaced with three sheep who were more "dog-broke" (meaning, they were less afraid of dogs). Willow, being a fearful girl with low self-esteem, didn't take to these sheep and decided it was better to run away. So in the end, we had two failed attempts and one successful. We'll probably head back in a couple weeks and hope for either more skittish sheep or a more confident dog.</p>
<p></p>
-[caption id="attachment_900" align="aligncenter" width="490" caption="My australian shepherd Willow herding sheep!"]<a href="http://ealdent.files.wordpress.com/2008/11/willow_herding1.jpg"><img class="size-full wp-image-900" title="willow_herding1" src="http://ealdent.files.wordpress.com/2008/11/willow_herding1.jpg" alt="My australian shepherd Willow herding sheep!" width="490" height="264" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/11/willow_herding1.jpg"><img class="size-full wp-image-900" title="willow_herding1" src="http://ealdent.files.wordpress.com/2008/11/willow_herding1.jpg" alt="My australian shepherd Willow herding sheep!" width="490" height="264" /></a>[/caption]
<p>After we got back, I took Daedal out for a walk and there were a bunch of deer moving through the woods. I went sneaking after them and Daedalus was happy to oblige. The bug was sniffing like crazy and making his typical beagle hunting noises, which did nothing for our sneaking. I got a couple shots, none of them excellent. But this one wasn't so bad.</p>
<p>
-[caption id="attachment_902" align="aligncenter" width="490" caption="Six-point buck (I think) in the woods behind my apartment."]<a href="http://ealdent.files.wordpress.com/2008/11/buckshot1.jpg"><img class="size-full wp-image-902" title="buckshot1" src="http://ealdent.files.wordpress.com/2008/11/buckshot1.jpg" alt="Six-point buck (I think) in the woods behind my apartment." width="490" height="235" /></a>[/caption]</p>
+ <a href="http://ealdent.files.wordpress.com/2008/11/buckshot1.jpg"><img class="size-full wp-image-902" title="buckshot1" src="http://ealdent.files.wordpress.com/2008/11/buckshot1.jpg" alt="Six-point buck (I think) in the woods behind my apartment." width="490" height="235" /></a>[/caption]</p>
diff --git a/_posts/2008-12-03-thanksgiving-2008.html b/_posts/2008-12-03-thanksgiving-2008.html
index 56f67e0..ab37170 100644
--- a/_posts/2008-12-03-thanksgiving-2008.html
+++ b/_posts/2008-12-03-thanksgiving-2008.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Thanksgiving 2008"
tags: ["2008", "2008", "babies", "babies", "family", "family", "fish", "fish", "north carolina", "north carolina", "thanksgiving", "thanksgiving", "turkey", "turkey", "videos", "videos"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/03/thanksgiving-2008/" target="_blank">http://ealdent.wordpress.com/2008/12/03/thanksgiving-2008/</a><br /><br />
<p>Bit late, but I wanted to post a couple thoughts on the just-passed Thanksgiving. My immediate family (mom and sisters) converged on my eldest younger sister's house in Durham, NC. We had an absolutely fantastic turkey covered in some sort of fennel-based concoction, courtesy of my brother-in-law. It was succulent. Rapturous, even. The trip there was frustrating. There were numerous accidents and tons of traffic. Much delay and cursing was to be had. I almost gave up and wanted to turn around, but we soldiered on.</p>
<p>The biggest downer was the fact that a close family member had to be taken to the emergency room. I won't say which, for medical privacy reasons, but it was a bit scary. They are better now, but it will require ongoing treatment. It wasn't food-related.</p>
<p>My sister and brother-in-law have some salt water fish, including a puffer that has grown a couple orders of magnitude since they got it. It's slowly eating its way through the other fish in the aquarium and gets really angry when you get near it and aren't feeding it.</p>
-[youtube=http://www.youtube.com/watch?v=a1lWjW_6vPE]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=a1lWjW_6vPE=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>And (good gravy!) isn't this the cutest baby you've ever seen?</p>
<p>
-[caption id="attachment_928" align="aligncenter" width="490" caption="The cutest baby ever. Yes, even cuter than yours."]<a href="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg"><img class="size-full wp-image-928" title="Baby niece" src="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg" alt="The cutest baby ever. Yes, even cuter than yours." width="490" height="367" /></a>[/caption]</p>
+ <a href="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg"><img class="size-full wp-image-928" title="Baby niece" src="http://ealdent.files.wordpress.com/2008/12/s1051462.jpg" alt="The cutest baby ever. Yes, even cuter than yours." width="490" height="367" /></a>[/caption]</p>
diff --git a/_posts/2008-12-04-pernicious-spam.html b/_posts/2008-12-04-pernicious-spam.html
index 9db59da..95a3837 100644
--- a/_posts/2008-12-04-pernicious-spam.html
+++ b/_posts/2008-12-04-pernicious-spam.html
@@ -1,11 +1,11 @@
---
layout: post
title: "Pernicious Spam"
tags: ["facebook", "facebook", "friendster", "friendster", "spam", "spam", "usc", "usc"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/04/pernicious-spam/" target="_blank">http://ealdent.wordpress.com/2008/12/04/pernicious-spam/</a><br /><br />
<p>The spammers have been working hard to infiltrate Facebook. I just got this (below) today, and it tripped my mental spam alarm. These sorts of messages were commonplace on Friendster. I would get messages from girls with near-pornographic profile pictures wanting to chat or asking me inane questions like which was the better hair color. This is more insidious.</p>
-[caption id="attachment_933" align="aligncenter" width="490" caption="Insidious Facebook spam."]<a href="http://ealdent.files.wordpress.com/2008/12/picture-1.png"><img class="size-full wp-image-933" title="picture-1" src="http://ealdent.files.wordpress.com/2008/12/picture-1.png" alt="Insidious Facebook spam." width="490" height="260" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2008/12/picture-1.png"><img class="size-full wp-image-933" title="picture-1" src="http://ealdent.files.wordpress.com/2008/12/picture-1.png" alt="Insidious Facebook spam." width="490" height="260" /></a>[/caption]
<p>And for the record, I went to USC 2 ½ years ago.</p>
diff --git a/_posts/2008-12-18-clerk-dogs.html b/_posts/2008-12-18-clerk-dogs.html
index 5435d20..2a0c543 100644
--- a/_posts/2008-12-18-clerk-dogs.html
+++ b/_posts/2008-12-18-clerk-dogs.html
@@ -1,13 +1,13 @@
---
layout: post
title: "clerk dogs"
tags: ["brazil", "brazil", "clerk dogs", "clerk dogs", "dark comedy", "dark comedy", "jinni", "jinni", "movie genome project", "movie genome project", "movie recommendations", "movie recommendations", "movies", "movies", "netflix", "netflix", "recommender systems", "recommender systems", "sci-fi", "sci-fi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/18/clerk-dogs/" target="_blank">http://ealdent.wordpress.com/2008/12/18/clerk-dogs/</a><br /><br />
<p>I happened on <a href="http://www.clerkdogs.com/" target="_blank">clerk dogs</a>, a new movie recommender, the other day. They are still in beta and are missing data in many key areas of film, but they are definitely worth checking out. Like Pandora, clerk dogs uses human editors to classify movies along several dimensions. Indeed, the founder Stuart Skorman (also founder of Reel.com) calls it the movie genome project. Of course, another movie recommender (also, still in beta) is <a href="http://www.rotorblog.com/2008/12/03/find-movies-w-the-movie-genome-project/" target="_blank">using that term</a>. Stuart goes on to say:</p>
<blockquote>We have designed this innovative search engine for the movie buffs who have seen so many movies that theyâre having a hard time finding new ones (or old ones) that they will really love. I hope you find hundreds of great movies!</blockquote>
-[caption id="attachment_960" align="alignright" width="261" caption="Brazil"]<img class="size-full wp-image-960" title="clerk-dogs-brazil" src="http://ealdent.files.wordpress.com/2008/12/picture-11.png" alt="Brazil" width="261" height="463" />[/caption]
+ <img class="size-full wp-image-960" title="clerk-dogs-brazil" src="http://ealdent.files.wordpress.com/2008/12/picture-11.png" alt="Brazil" width="261" height="463" />[/caption]
<p>This is a problem I've been noticing with Netflix lately. I would be pretty sure I've seen every sci-fi movie worth seeing that has been released if all I had to go on was Netflix's recommendations. I gave clerk dogs a shot, starting with my favorite movie. They seem to have done a decent job with classifying Brazil and a number of the similar movies they have listed are indeed similar in many ways to it. When I first visited the site, they showed the similar movies on a grid and said whether it was "more dark", "less disturbing", "more violent", and so on. If that functionality still exists, I can't find it.</p>
<p>However, you can "Mash it" to find movies that fit your mood. Pick your base movie and mash it. Then change the sliding scale to decide what sort of differences you are looking for. Can you say kickass?</p>
<p>I applaud clerk dogs for a job well done. I've already found a number of movies that Netflix was hiding from me. I added them to my Netflix queue though so I guess they are still benefitting.</p>
diff --git a/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html b/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
index d3aa947..d6bac64 100644
--- a/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
+++ b/_posts/2008-12-29-gui-interface-for-vb-to-track-ip-addresses.html
@@ -1,9 +1,9 @@
---
layout: post
title: "GUI interface for VB to track IP addresses"
tags: ["csi new york", "csi new york", "stupidity", "stupidity", "television", "television", "visual basic", "visual basic"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/29/gui-interface-for-vb-to-track-ip-addresses/" target="_blank">http://ealdent.wordpress.com/2008/12/29/gui-interface-for-vb-to-track-ip-addresses/</a><br /><br />
<p>Television shows seldom get computer stuff right, so I shouldn't be surprised. But then I heard this humdinger on CSI New York during the 1 minute I was watching it. After I simultaneously guffawed and snorted in derision, I changed the channel.</p>
-[youtube=http://www.youtube.com/watch?v=Ni_rAamVP2s]
+<div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=Ni_rAamVP2s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
diff --git a/_posts/2008-12-31-top-posts-of-2008.html b/_posts/2008-12-31-top-posts-of-2008.html
index c91658b..638b449 100644
--- a/_posts/2008-12-31-top-posts-of-2008.html
+++ b/_posts/2008-12-31-top-posts-of-2008.html
@@ -1,61 +1,61 @@
---
layout: post
title: "Top posts of 2008"
tags: ["2008", "2008", "blagoblag", "blagoblag", "blogging", "blogging", "top posts", "top posts", "year in review", "year in review"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2008/12/31/top-posts-of-2008/" target="_blank">http://ealdent.wordpress.com/2008/12/31/top-posts-of-2008/</a><br /><br />
<p>Looking back over 2008, there have been a lot of changes in my life. Many of those are reflected in my blog, but few are reflected in the posts that have gotten the most traffic. But for the hell of it, here are the top posts anyway.</p>
<table border="1" cellpadding="3" align="center">
<thead>
<tr>
<th>Post</th>
<th>Hits in 2008</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/11/08/old-english-translator/">Old English Translator</a></td>
<td>10,589</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/12/09/christmas-tree-2007/">Christmas Tree 2007</a></td>
<td>4,393</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2008/03/30/steampunk-death-star/">Steampunk Death Star</a></td>
<td>1,362</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/09/30/salad-fingers-8/">Salad Fingers 8</a></td>
<td>1,108</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2008/11/30/10-reasons-to-use-git-for-research/">10 Reasons to Use Git for Research</a></td>
<td>1,032</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/09/18/merge-sort-fun/">Merge sort fun</a></td>
<td>777</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/25/the-noobs-guide-to-parsing/">The Noob's Guide to Parsing</a></td>
<td>774</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/12/05/java-properties/">Java Properties</a></td>
<td>759</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/16/ambigrams/">Ambigrams</a></td>
<td>719</td>
</tr>
<tr>
<td><a href="http://ealdent.wordpress.com/2007/10/04/substitution-ciphers/">Substitution Ciphers</a></td>
<td>680</td>
</tr>
</tbody></table>
<p></p>
<p>Of all of those posts, the best one is hands down <a href="http://ealdent.wordpress.com/2008/11/30/10-reasons-to-use-git-for-research/">10 Reasons to Use Git for Research</a>. After that, the <a href="http://ealdent.wordpress.com/2007/10/25/the-noobs-guide-to-parsing/">Noob's Guide to Parsing</a>. Some of the posts with the most hits are just link-sharing, where I saw something cool (Salad Fingers, Steampunk Star Wars, Ambigrams) and then other people found my link first. One definite change on this blog was a decrease in the frequency of my posts. Around the end of last year, I was posting close to 2 items per day. Now it has stretched out to about 2 items per week. Maybe I'll reflect more on that later.</p>
<p>I'll leave you with these thoughts.</p>
-<p>[youtube=http://www.youtube.com/watch?v=monyiOsoKxg]</p>
+<p><div class="youtube"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/watch?v=monyiOsoKxg=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div></p>
diff --git a/_posts/2009-01-08-adwords-fail.html b/_posts/2009-01-08-adwords-fail.html
index f17ee4f..f2b3701 100644
--- a/_posts/2009-01-08-adwords-fail.html
+++ b/_posts/2009-01-08-adwords-fail.html
@@ -1,9 +1,9 @@
---
layout: post
title: "Adwords Fail"
tags: ["adwords", "adwords", "email", "email", "fail", "fail", "germany", "germany", "gmail", "gmail", "google", "google", "israel", "israel", "nazi", "nazi"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2009/01/08/adwords-fail/" target="_blank">http://ealdent.wordpress.com/2009/01/08/adwords-fail/</a><br /><br />
These are the gmail ads presented to me upon receiving an email with the subject "Nazi Israel."Â The text of the email contained no mention of Germany.
-[caption id="attachment_996" align="aligncenter" width="246" caption="Adwords for "Nazi Israel""]<img class="size-full wp-image-996" title="adwords_fail" src="http://ealdent.files.wordpress.com/2009/01/screenshot.png" alt="Adwords for " />[/caption]
+ <img class="size-full wp-image-996" title="adwords_fail" src="http://ealdent.files.wordpress.com/2009/01/screenshot.png" alt="Adwords for " />[/caption]
diff --git a/_posts/2009-01-10-initial-observations-from-windows-7-beta.html b/_posts/2009-01-10-initial-observations-from-windows-7-beta.html
index 406b03d..0d2771d 100644
--- a/_posts/2009-01-10-initial-observations-from-windows-7-beta.html
+++ b/_posts/2009-01-10-initial-observations-from-windows-7-beta.html
@@ -1,16 +1,16 @@
---
layout: post
title: "Initial observations from Windows 7 Beta"
tags: ["beta", "beta", "chrome", "chrome", "microsoft", "microsoft", "operating systems", "operating systems", "snipping tool", "snipping tool", "ubuntu", "ubuntu", "windows", "windows", "windows 7 beta", "windows 7 beta", "wordpress", "wordpress"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2009/01/10/initial-observations-from-windows-7-beta/" target="_blank">http://ealdent.wordpress.com/2009/01/10/initial-observations-from-windows-7-beta/</a><br /><br />
<p>Since I got my work MacBook Pro, I've been using my Windows XP laptop less and less. I went three weeks without even opening it, at one point. When I did finally open it again, XP took so long to boot I knew it was reinstall time. A part of my Windows experience for as long as I can remember is having to format my hard drive and starting over. Performance goes back to the good old days, when it's nice and fast. No more weird program glitches. So rather than reinstall XP, I decided to forget Windows and just install Ubuntu. Ubuntu set up so easily it was shocking. Good times.</p>
<p>But I knew Windows 7 Beta was coming out soon so I held out 40 GB of unused space to install it. Aside from several false starts downloading it (resulting in a wasted 1.5 GB of bandwidth), I finally got it. I've downloaded so much today, I'm a little worried Comcast is going to shut me down. Installation went well -- no hitches. It had to install updates and reboot before it detected my correct system settings, but after that, everything is good.</p>
<p>First thing I didn't like is a generated password for a "home workgroup". Please, give me the option to enter my own password. For the most part, the UI feels like XP. I haven't used Vista for more than a few minutes at a time, so I can't really compare to it. The default background is pretty drab, but since it's a "Betta" fish, I appreciate the joke. The task bar is a little cleaner. Chrome installed with no problems. Internet Explorer turned me off immediately, but nothing new there.</p>
<p>The snipping tool that comes with it lets you take a variety of screenshots, including free form ones. That's a new one for me. The games stuff seems bundled by providers. I have no idea who these providers might be, but I imagine that might be useful. Most online game providers ship their software with spyware, though, so I avoid them.  <em>Update:  I mean providers beyond Microsoft, there are some default games that are fairly decent that come with it.</em></p>
Â
-[caption id="attachment_1018" align="aligncenter" width="331" caption="Windows free-form snip example."]<img class="size-full wp-image-1018" title="snipexample1" src="http://ealdent.files.wordpress.com/2009/01/snipexample1.png" alt="Windows free-form snip example." width="331" height="426" />[/caption]
+ <img class="size-full wp-image-1018" title="snipexample1" src="http://ealdent.files.wordpress.com/2009/01/snipexample1.png" alt="Windows free-form snip example." width="331" height="426" />[/caption]
<p>Naturally, there are the standard complaints about not having virus scan installed and that Windows defender hasn't been run. Â There's a great big warning when you try to run something for the first time you downloaded off the net. Â Same as Mac there, no surprises. Also, after installing it, it overwrote the MBR (or however that works), so I no longer can boot from my Ubuntu installation if I want to. Â I'll probably just reinstall Ubuntu since it's so fast and easy and probably will be less of a headache than fooling with grub.</p>
<p>The biggest bonus to Windows 7 Beta is that I can run Chrome again. Â I didn't realize how much I missed it. Â WordPress dashboard runs so much faster under Chrome than Firefox or Safari.</p>
diff --git a/_posts/2009-01-10-twitter-wordle.html b/_posts/2009-01-10-twitter-wordle.html
index b0fc653..fd11d8c 100644
--- a/_posts/2009-01-10-twitter-wordle.html
+++ b/_posts/2009-01-10-twitter-wordle.html
@@ -1,15 +1,15 @@
---
layout: post
title: "Twitter Wordle"
tags: ["tweetstats", "tweetstats", "twitpic", "twitpic", "twitter", "twitter", "word clouds", "word clouds", "wordle", "wordle"]
---
<hr /><br />Original post can be found at: <a href="http://ealdent.wordpress.com/2009/01/10/twitter-wordle/" target="_blank">http://ealdent.wordpress.com/2009/01/10/twitter-wordle/</a><br /><br />
<p>I was recently pointed to <a href="http://twitter.com/miljoshi" target="_blank">@miljoshi</a>'s blog and a post on <a href="http://pagehtdnim.blogspot.com/2008/12/my-twitter-footprint-dec08.html" target="_blank">twitter word clouds</a> (using <a href="http://www.wordle.net" target="_blank">Wordle</a>, of course!). My <a href="http://twitter.com/ealdent" target="_blank">twitter background</a> was made <a href="http://mendicantbug.com/2008/06/29/kickass-tag-clouds/" target="_self">using Wordle </a>from a sampling of text from my blog. <a href="http://tweetstats.com/" target="_blank">Tweetstats</a> offers the ability to create a Wordle cloud automatically from your tweets, which is fairly cool. Mine is below. It's dominated by twitpic, since I frequently use it for <a href="http://twitpic.com/photos/ealdent" target="_blank">posting pictures</a>.</p>
-[caption id="attachment_1006" align="aligncenter" width="486" caption="Word cloud for my twitter stream."]<a href="http://ealdent.files.wordpress.com/2009/01/picture-12.png"><img class="size-full wp-image-1006" title="ealdent_twitter_stream" src="http://ealdent.files.wordpress.com/2009/01/picture-12.png" alt="//twitter.com/ealdent" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2009/01/picture-12.png"><img class="size-full wp-image-1006" title="ealdent_twitter_stream" src="http://ealdent.files.wordpress.com/2009/01/picture-12.png" alt="//twitter.com/ealdent" /></a>[/caption]
Update: Here's my wordle after removing some words that don't reflect the content of my tweets as much (e.g. good, great, new, old, etc.). Good idea, Melinda!
<p></p>
-[caption id="attachment_1010" align="aligncenter" width="486" caption="Updated word cloud for my twitter stream."]<a href="http://ealdent.files.wordpress.com/2009/01/twitterwordl2.png"><img class="size-full wp-image-1010" title="twitterwordle2" src="http://ealdent.files.wordpress.com/2009/01/twitterwordl2.png" alt="//twitter.com/ealdent" /></a>[/caption]
+ <a href="http://ealdent.files.wordpress.com/2009/01/twitterwordl2.png"><img class="size-full wp-image-1010" title="twitterwordle2" src="http://ealdent.files.wordpress.com/2009/01/twitterwordl2.png" alt="//twitter.com/ealdent" /></a>[/caption]
diff --git a/converter.py b/converter.py
index 7452ae7..aecf0ca 100755
--- a/converter.py
+++ b/converter.py
@@ -1,102 +1,120 @@
#!/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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
tags = list()
if len(tags) == 0:
return None
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".html"
original_link = "http://ealdent.wordpress.com" + entry.link.split(".com")[1]
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
- idx = -2
+ # replace youtube links
+ idx = -1
while True:
- idx = content.find("[youtube=", idx + 1)
- if idx == -1:
+ idx = content.find(u"[youtube=", idx + 1)
+ if idx < 0:
break
- end_idx = content.find("]", idx) + 1
- if end_idx == -1:
+ print "\t\tFOUND YOUTUBE"
+ end_idx = content.find(u"]", idx) + 1
+ if end_idx < 0:
break
youtube = content[idx:end_idx]
- youtube_link = youtube.split("youtube=")[1][:-1]
- new_youtube = """<div class="youtube"><object width="425" height="344"><param name="movie" value="%s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>""" % (youtube_link)
+ youtube_link = youtube.split(u"youtube=")[1][:-1]
+ new_youtube = u"""<div class="youtube"><object width="425" height="344"><param name="movie" value="%s=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ni_rAamVP2s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>""" % (youtube_link)
content = content.replace(youtube, new_youtube)
+ print "Replaced youtube for %s." % (title)
+ print "**********************************************************************"
+
+ # replace captions
+ idx = -1
+ while True:
+ idx = content.find(u"[caption", idx + 1)
+ if idx < 0 :
+ break
+ print "\t\tFOUND CAPTION"
+ end_idx = content.find(u"]", idx) + 1
+ if end_idx < 0:
+ break
+ content = content.replace(content[idx:end_idx], u" ")
+ print "Replaced caption for %s." % (title)
+ print "**********************************************************************"
f.write(u"<hr /><br />Original post can be found at: <a href=\"%s\" target=\"_blank\">%s</a><br /><br />\n%s\n" % (original_link, original_link, content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
tags = list()
if len(tags) == 0:
return None
content = entry.content[0].value
- link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".textile"
+ link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".html"
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
f.write(u"%s\n" % (content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
- else
+ else:
tags = list()
if len(tags) == 0:
return None
content = entry.content[0].value
- link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".markdown"
+ link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".textile"
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
f.write(u"%s\n" % (content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
- else:
+ else
+ tags = list()
+ if len(tags) == 0:
return None
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".markdown"
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
if len(tags) > 0:
f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
else:
print "*******************************************************************************"
f.write(u"---\n")
f.write(u"%s\n" % (content))
f.close()
print "Finished writing new post: %s" % (link)
# def parse_entry(entry):
# # given an entry turn into a proper post
# # url => YYYY-MM-DD-slug-words-blah.html
# # tags => list of tags
# # title => title of post
# # content => actual post
# title = entry.title
# print title
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
- tags = [u'Uncategorized']
+ return None
content = entry.content[0].value
- link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".textile"
+ link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-") + ".markdown"
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: \"%s\"\n" % (title))
- f.write(u"tags:\n")
- for tag in tags:
- f.write(u"- \"%s\"\n" % (tag))
+ if len(tags) > 0:
+ f.write(u"tags: [%s]\n" % (', ').join(["\"%s\"" % (tag) for tag in tags]))
+ else:
+ print "*******************************************************************************"
f.write(u"---\n")
- f.write(u"%s" % (content))
+ f.write(u"%s\n" % (content))
f.close()
print "Finished writing new post: %s" % (link)
+# def parse_entry(entry):
+# # given an entry turn into a proper post
+# # url => YYYY-MM-DD-slug-words-blah.html
+# # tags => list of tags
+# # title => title of post
+# # content => actual post
+# title = entry.title
+# print title
+
+
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
if entry.has_key('tags'):
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
else:
- tags = list()
+ tags = [u'Uncategorized']
content = entry.content[0].value
- link = "_posts/" + entry.link.split(".com")[1][1:].replace("/", "-")
+ link = "_posts/" + entry.link.split(".com")[1][1:-1].replace("/", "-")
print "Processing entry: %s" % (title)
f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: %s\n" % (title))
f.write(u"tags:\n")
for tag in tags:
f.write(u"- %s\n" % (tag))
f.write(u"---\n")
f.write(u"%s" % (content), )
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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 = open(feed_filename, 'r')
txt = f.read()
f.close()
- txt = txt.decode('utf-8')
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
- tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
+ if entry.has_key('tags'):
+ tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
+ else:
+ tags = list()
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:].replace("/", "-")
print "Processing entry: %s" % (title)
- f = open(link, 'w')
+ f = codecs.open(link, 'w', 'utf-8')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: %s\n" % (title))
f.write(u"tags:\n")
for tag in tags:
f.write(u"- %s\n" % (tag))
f.write(u"---\n")
- f.write(content)
+ f.write(u"%s" % (content), )
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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')
txt = f.read()
f.close()
+ txt = txt.decode('utf-8')
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1][1:].replace("/", "-")
print "Processing entry: %s" % (title)
f = open(link, 'w')
f.write(u"---\n")
f.write(u"layout: post\n")
f.write(u"title: %s\n" % (title))
f.write(u"tags:\n")
for tag in tags:
f.write(u"- %s\n" % (tag))
f.write(u"---\n")
f.write(content)
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
# post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
content = entry.content[0].value
- link = "_posts/" + entry.link.split(".com")[1].replace("/", "-")
+ link = "_posts/" + entry.link.split(".com")[1][1:].replace("/", "-")
print "Processing entry: %s" % (title)
f = open(link, 'w')
- f.write("---\n")
- f.write("layout: post\n")
- f.write("title: %s\n" % (title))
- f.write("tags:\n")
+ f.write(u"---\n")
+ f.write(u"layout: post\n")
+ f.write(u"title: %s\n" % (title))
+ f.write(u"tags:\n")
for tag in tags:
- f.write("- %s\n" % (tag))
- f.write("---\n")
+ f.write(u"- %s\n" % (tag))
+ f.write(u"---\n")
f.write(content)
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
- date = date.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
+ # post_date = time.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1].replace("/", "-")
print "Processing entry: %s" % (title)
f = open(link, 'w')
f.write("---\n")
f.write("layout: post\n")
f.write("title: %s\n" % (title))
f.write("tags:\n")
for tag in tags:
f.write("- %s\n" % (tag))
f.write("---\n")
f.write(content)
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
if len(sys.argv) < 2:
print "Usage: %s <feed file>" % (sys.argv[0])
sys.exit(0)
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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: Linguistic Homogenization and Power
-tags:
-- black iron prison
-- english
-- history
-- language
-- linguistic homogenization
-- linguistics
-- philip k dick
-- power
-- sociolinguistics
-- thought
-- uniformitarianism
----
-This is a subject much larger than the treatment I am about to give it. Linguistic homogenization occurs in modern states where regional dialects are marginalized and a standard dialect is advanced as the primary method for acceptable public communication. The powerful favoring a single dialect is nothing new, but now more than ever, states are able to impose this on the wider populace. European countries encourage one or two primary languages to be taught in school and used in public. America does something similar with Standard American English. Speaking a non-standard dialect is often seen as a barrier to employment and movement in higher social circles. Basically, the snobs keep you down if you don't talk like they do.
-
-
-I was reading on [Language Log][:languagelog] earlier about the [Uniformitarian][:uniformitarianism] Principle. Uniformitarianism is simply the idea that things are now as they have always been, so we can learn how things were by learning how they are now. Language Log describes how modern Europe no longer holds the key to language in prehistoric Europe thanks to the ability of modern states to impose linguistic homogenization. Think about that for a second. Modern states, presumably democratic, are so powerful they even tell you how to talk. Perhaps even [how you think][:sapirwhorf]. Is that a paranoid leap? Am I overstating it? Even absolute dictators of past centuries didn't have that kind of power.
-
-
-But it's not like one single person is doing this. Instead *they* are doing it. The ineffable [they][:they]. But if they are telling us how to think, why do we listen? We can't help it, we're too young when it happens, and then we become them.
-
-
-Absolute dictators of the past could not do this for many reasons. They didn't have the infrastructure to educate the masses, nor did they have popular media to transmit one dialect into every home on a daily basis. A population too large for all of its parts to remain in constant contact will begin to diverge dialectally. But educating the masses would have been looked down upon anyway since giving people too many ideas tends to make them question things like a single all-powerful leader calling all the shots. So now that we are educated enough to know all-powerful dictators are bad news, we have replaced them with power structures more complicated and inscrutable.
-
-
-A recent post by Daniel Lemire posing [a simple <span style="text-decoration: line-through;">mathematical</span> puzzle][:ineq] revealed in stark contrast the bars of my mental prison. So what are the bars like of this bigger prison we cannot see? Philip K Dick called it the [Black Iron Prison][:blackironprison]. I've always found that concept appealing.
-
-
-[:languagelog]: http://languagelog.ldc.upenn.edu/nll/?p=980
-[:uniformitarianism]: http://en.wikipedia.org/wiki/Uniformitarianism_(science)
-[:sapirwhorf]: http://en.wikipedia.org/wiki/Sapir_Whorf
-[:they]: http://www.youtube.com/watch?v=qSLvcJ4I1mw
-[:ineq]: http://www.daniel-lemire.com/blog/archives/2009/01/10/finish-this-sequence-of-equalities/
-[:blackironprison]: http://en.wikipedia.org/wiki/Black_Iron_Prison#Black_Iron_Prison
diff --git a/converter.py b/converter.py
old mode 100644
new mode 100755
index f22a4b0..de74a00
--- a/converter.py
+++ b/converter.py
@@ -1,67 +1,71 @@
#!/usr/bin/env python
-import date
+import time
import feedparser
import sys
def load_feed(feed_filename):
print "Loading feed %s." % (feed_filename)
f = open(feed_filename, 'r')
txt = f.read()
f.close()
print "Parsing feed..."
feed = feedparser.parse(txt)
return feed
def parse_entry(entry):
# given an entry turn into a proper post
# url => YYYY-MM-DD-slug-words-blah.html
# tags => list of tags
# title => title of post
# content => actual post
title = entry.title
date = date.strptime(entry.wp_post_date, "%Y-%m-%d %H:%M:%S")
tags = [tag['term'] for tag in entry.tags if tag['term'] != u'Uncategorized']
content = entry.content[0].value
link = "_posts/" + entry.link.split(".com")[1].replace("/", "-")
print "Processing entry: %s" % (title)
f = open(link, 'w')
f.write("---\n")
f.write("layout: post\n")
f.write("title: %s\n" % (title))
f.write("tags:\n")
for tag in tags:
f.write("- %s\n" % (tag))
f.write("---\n")
f.write(content)
f.close()
print "Finished writing new post: %s" % (link)
def process_feed(feed):
for entry in feed.entries:
parse_entry(entry)
if __name__ == '__main__':
+ if len(sys.argv) < 2:
+ print "Usage: %s <feed file>" % (sys.argv[0])
+ sys.exit(0)
+
feed = load_feed(sys.argv[1])
process_feed(feed)
|
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
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
font-size: 75%;
font-family: Verdana;
color: #aaa;
}
#tags {
text-align: left;
font-family: Verdana;
color: #545454;
font-size: 80%;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
#top-bar table {
border: 0;
}
#top-bar tr {
vertical-align: top;
}
#tag-bar td {
margin: 0 75%;
}
#date-bar td {
margin: 0 25%;
+}
+
+textarea.comments {
+ margin-bottom: 5px;
}
\ No newline at end of file
|
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/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{{ page.title }}</title>
<meta name="author" content="Jason M. Adams" />
<link href="http://feeds.feedburner.com/TheMendicantBug" rel="alternate" title="The Mendicant Bug" type="application/atom+xml" />
<!-- syntax highlighting CSS -->
<link rel="stylesheet" href="/css/syntax.css" type="text/css" />
<!-- Homepage CSS -->
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
<!-- Google analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-6833988-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</head>
<body>
<div class="site">
<div class="title-rss">
<a href="http://feeds.feedburner.com/TheMendicantBug">
<img src="/images/rss.png" alt="Subscribe to RSS Feed" />
</a>
</div>
<div class="title">
<a href="/">The Mendicant Bug</a>
<div class="title-slug">
Wanderings into computational linguistics, science, social media and life...
</div>
</div>
{{ content }}
<table class="footer" width="100%">
<tr>
- <td class="contact">
+ <td class="contact" width="50%" align="left">
<a href="http://www.cs.cmu.edu/~jmadams" rel="alternate">Jason Adams</a><br />
jaso<a href="http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@gmail.com
</td>
- <td class="contact">
+ <td class="contact" width="50%" align="right">
<a href="http://github.com/ealdent">github.com/ealdent</a><br />
<a href="http://twitter.com/ealdent">twitter.com/ealdent</a>
</td>
</tr>
</table>
<a href="http://github.com/ealdent"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
<script type="text/javascript">
//<![CDATA[
(function() {
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/get_num_replies.js' + query + '"></' + 'script>');
})();
//]]>
</script>
</body>
</html>
\ No newline at end of file
|
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
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
-.site .footer .contact {
- float: left;
- margin-right: 3em;
-}
-
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
font-size: 75%;
font-family: Verdana;
color: #aaa;
}
#tags {
text-align: left;
font-family: Verdana;
color: #545454;
font-size: 80%;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
#top-bar table {
border: 0;
}
#top-bar tr {
vertical-align: top;
}
#tag-bar td {
margin: 0 75%;
}
#date-bar td {
margin: 0 25%;
}
\ No newline at end of file
|
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/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{{ page.title }}</title>
<meta name="author" content="Jason M. Adams" />
<link href="http://feeds.feedburner.com/TheMendicantBug" rel="alternate" title="The Mendicant Bug" type="application/atom+xml" />
<!-- syntax highlighting CSS -->
<link rel="stylesheet" href="/css/syntax.css" type="text/css" />
<!-- Homepage CSS -->
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
<!-- Google analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-6833988-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</head>
<body>
<div class="site">
<div class="title-rss">
<a href="http://feeds.feedburner.com/TheMendicantBug">
<img src="/images/rss.png" alt="Subscribe to RSS Feed" />
</a>
</div>
<div class="title">
<a href="/">The Mendicant Bug</a>
<div class="title-slug">
Wanderings into computational linguistics, science, social media and life...
</div>
</div>
{{ content }}
- <div class="footer">
- <div class="contact">
- <p>
+ <table class="footer" width="100%">
+ <tr>
+ <td class="contact">
<a href="http://www.cs.cmu.edu/~jmadams" rel="alternate">Jason Adams</a><br />
- jaso<a href="http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@gmail.com<br />
- </p>
- </div>
- <div class="contact">
- <p>
+ jaso<a href="http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01d1AzK5LnKkbjrIsoWzSA7A==&c=QAwiCbP0hqAwoLgwfGVYukpSyGGAN0U0DC2_vkWfiY4=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@gmail.com
+ </td>
+ <td class="contact">
<a href="http://github.com/ealdent">github.com/ealdent</a><br />
- <a href="http://twitter.com/ealdent">twitter.com/ealdent</a><br />
- </p>
- </div>
- <!-- <div class="rss">
- <a href="http://feeds.feedburner.com/TheMendicantBug">
- <img src="/images/rss.png" alt="Subscribe to RSS Feed" />
- </a>
- </div> -->
- </div>
- </div>
+ <a href="http://twitter.com/ealdent">twitter.com/ealdent</a>
+ </td>
+ </tr>
+ </table>
<a href="http://github.com/ealdent"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
<script type="text/javascript">
//<![CDATA[
(function() {
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/get_num_replies.js' + query + '"></' + 'script>');
})();
//]]>
</script>
</body>
</html>
\ No newline at end of file
|
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="80%">
<div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
<td width="20%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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%">
<div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
- <td width="25%">
+ <td width="20%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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%">
<div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
- <td id="date-bar">
+ <td width="25%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact {
float: left;
margin-right: 3em;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
font-size: 75%;
font-family: Verdana;
color: #aaa;
}
#tags {
text-align: left;
font-family: Verdana;
color: #545454;
font-size: 80%;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
#top-bar table {
border: 0;
}
#top-bar tr {
vertical-align: top;
}
#tag-bar td {
- width: 75%;
+ margin: 0 75%;
}
#date-bar td {
- width: 25%;
+ margin: 0 25%;
}
\ No newline at end of file
|
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>
+ <td id="tag-bar">
<div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
- <td width="25%">
+ <td id="date-bar">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
diff --git a/css/screen.css b/css/screen.css
index 420469c..23942e0 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -1,303 +1,319 @@
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact {
float: left;
margin-right: 3em;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
font-size: 75%;
font-family: Verdana;
color: #aaa;
}
#tags {
text-align: left;
font-family: Verdana;
color: #545454;
font-size: 80%;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
+}
+
+#top-bar table {
+ border: 0;
+}
+
+#top-bar tr {
+ vertical-align: top;
+}
+
+#tag-bar td {
+ width: 75%;
+}
+
+#date-bar td {
+ width: 25%;
}
\ No newline at end of file
|
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 page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
</td>
- <td>
+ <td width="25%">
<div id="post-date">Published: {{ page.date | date_to_string }}</div>
</td>
</tr>
</table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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 %}Uncategorized{% endif %}</div>
- <div id="post-date">Published: {{ page.date | date_to_string }}</div>
+ <table border=0 cellspacing=5>
+ <tr>
+ <td>
+ <div id="tags">{% if page.tags %}{{ page.tags | sort | join: ", " }}{% else %}Uncategorized{% endif %}</div>
+ </td>
+ <td>
+ <div id="post-date">Published: {{ page.date | date_to_string }}</div>
+ </td>
+ </tr>
+ </table>
{{ content }}
</div>
{% if site.related_posts.size > 0 %}
<div id="related">
<hr>
<h2>Related Posts</h2>
<ul class="posts">
{% for post in site.related_posts limit:3 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript" src="http://disqus.com/forums/themendicantbug/embed.js"></script>
<noscript><a href="http://themendicantbug.disqus.com/?url=ref">View the discussion thread.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
|
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
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact {
float: left;
margin-right: 3em;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
- font-size: 65%;
+ font-size: 75%;
font-family: Verdana;
color: #aaa;
}
+#tags {
+ text-align: left;
+ font-family: Verdana;
+ color: #545454;
+ font-size: 80%;
+}
+
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
- font-size: 50%;
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
\ No newline at end of file
|
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
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family:Verdana, Helvetica, Arial, sans-serif;
font-size:76%;
color:#545454;
background:#fff;
line-height:120%;
min-width:760px;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h1 {
margin-bottom: 1em;
}
p {
margin: 1em 0;
}
a {
color: #00a;
}
a:hover {
color: black;
}
a:visited {
color: #a0a;
}
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 80%;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
font-size: 110%;
text-align: justify;
width: 60em;
margin: 3em auto 2em auto;
line-height: 1.5em;
}
.title {
color: #666e7e;
font-weight: bold;
font-size: 36pt;
margin-bottom: 0.5em;
}
.title-slug {
font-family: "Times new roman", "Serif";
color: #7f755d;
font-size: 14pt;
font-weight: normal;
margin-top: 20px;
font-style: italic;
}
.site .title a {
color: #666e7e;
text-decoration: none;
}
.site .title a:hover {
color: #676f7f;
}
.site .title a.extra {
color: #aaa;
text-decoration: none;
margin-left: 1em;
}
.site .title a.extra:hover {
color: black;
}
.posts a {
color: #666e7e;
text-decoration: none;
}
.posts a:active {
color: #666e7e;
text-decoration: none;
}
.posts a:visited {
color: #666e7e;
text-decoration: none;
}
.posts a:hover {
color: #333e7e;
text-decoration: underline;
}
.site .title-rss img {
border: 0;
float: right;
margin-top: -30px;
}
.posts img {
border: 0;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact {
float: left;
margin-right: 3em;
}
.site .footer .contact a {
color: #666e7e;
}
.site .footer .contact a:hover {
color: #333e7e;
text-decoration: none;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
#post {
text-align: justify;
}
#post-date {
text-align: right;
- font-size: 75%;
+ font-size: 65%;
font-family: Verdana;
color: #aaa;
}
#post h1 {
font-size: 140%;
}
#post hr {
color: #a00;
margin-top: -5px;
}
/* standard */
#post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
#post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 95%;
padding: 0 .2em;
}
#post pre code {
border: none;
}
/* terminal */
#post pre.terminal {
border: 1px solid black;
background-color: #333;
color: white;
}
#post pre.terminal code {
background-color: #333;
}
#post a {
color: #333e7e;
text-decoration: none;
}
#post a:active {
color: #333e7e;
text-decoration: none;
}
#post a:visited {
color: #333e7e;
text-decoration: none;
}
#post a:hover {
color: #666e7e;
text-decoration: underline;
}
#post ul {
list-style-position: inside;
}
#post img {
border: 0;
}
#related {
margin-top: 2em;
}
#related h2 {
margin-bottom: 1em;
}
#tags hr {
- font-size: 75%;
+ font-size: 50%;
color: #a00;
margin-bottom: 8px;
}
#related hr {
color: #a00;
margin-bottom: 8px;
}
\ No newline at end of file
|
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.1"
s.date = "2009-06-03"
s.summary = "Prevents potentitial DoS attacks to BigDecimal"
s.email = "[email protected]"
s.homepage = "http://github.com/NZKoz/rexml-expansion-fix"
s.description = "Prevents users from exploiting the BigDecimal bugs and causing your application to segfault."
s.has_rdoc = false
s.authors = ["Michael Koziarski"]
s.files = ["README.textile",
"LICENSE",
- "example.xml",
+ "example.rb",
"bigdecimal-segfault-fix.gemspec",
"lib/bigdecimal-segfault-fix.rb"]
end
|
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 application is secure run +example.rb+. This script should exit normally, not segfault.
The workaround has negative side-effects. Specifically it prevents you from using BigDecimal to deal with large numbers (more than 255 digits) or from providing the numbers in scientific notation (e.g. "5E6" for 5000000). If you require those features you must upgrade to a patched ruby.
You are strongly advised to upgrade ruby following "the instructions on the ruby site":http://www.ruby-lang.org/en/news/2009/06/09/dos-vulnerability-in-bigdecimal/. This work around is only intended for temporary use.
h2. Affected ruby versions:
h3. 1.8 series
* 1.8.6-p368 and *all* prior versions
* 1.8.7-p160 and *all* prior versions
h3. 1.9 series
* All 1.9.1 versions are safe
h2. Installation Instructions
h3. Gem installation
This fix is available as a gem from github. To install it you should run the following commands:
<pre>
$ gem sources -a http://gems.github.com
$ sudo gem install NZKoz-bigdecimal-segfault-fix
</pre>
Then in your code add:
<pre>
gem 'NZKoz-bigdecimal-segfault-fix'
require 'bigdecimal-segfault-fix'
</pre>
h3. Rails Initializer Installation
-To apply this fix to a Rails Application you can simply copy the `bigdecimal-segfault-fix`
+To apply this fix to a Rails Application you can simply copy the +bigdecimal-segfault-fix.rb+ file into your config/initializers directory.
|
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/.zshrc
+++ b/.zshrc
@@ -1,26 +1,28 @@
# 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
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
# Use nvim as $EDITOR
export EDITOR=nvim
# Packages
source <(antibody init)
-antibody bundle < ~/.config/.zsh_plugins.txt
+antibody bundle zsh-users/zsh-syntax-highlighting
+antibody bundle zsh-users/zsh-autosuggestions
+antibody bundle zsh-users/zsh-history-substring-search
# Bind up and down arrows to history substring search
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
# fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
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 "/usr/local/opt/fzf/shell/completion.zsh" 2> /dev/null
+
+# Key bindings
+# ------------
+source "/usr/local/opt/fzf/shell/key-bindings.zsh"
+
diff --git a/.zshrc b/.zshrc
index d3dcade..4baf04d 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,23 +1,26 @@
# 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
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
# Use nvim as $EDITOR
export EDITOR=nvim
# Packages
source <(antibody init)
antibody bundle < ~/.config/.zsh_plugins.txt
# Bind up and down arrows to history substring search
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
+
+# fzf
+[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
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
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
+# Use nvim as $EDITOR
+export EDITOR=nvim
+
# Packages
source <(antibody init)
antibody bundle < ~/.config/.zsh_plugins.txt
# Bind up and down arrows to history substring search
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
|
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/.zshrc
+++ b/.zshrc
@@ -1,12 +1,20 @@
# 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
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
+
+# Packages
+source <(antibody init)
+antibody bundle < ~/.config/.zsh_plugins.txt
+
+# Bind up and down arrows to history substring search
+bindkey '^[[A' history-substring-search-up
+bindkey '^[[B' history-substring-search-down
|
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
+setopt HIST_IGNORE_ALL_DUPS
+setopt HIST_IGNORE_SPACE
|
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:
# - ignorespace: lines which begin with a space character are not saved
# - ignoredups: lines matching the previous history entry are not saved
# - erasedups: all previous lines matching the current line are removed before
# the new line is saved
export HISTCONTROL=ignorespace:ignoredups:erasedups
# Unlimited history
export HISTFILESIZE=
export HISTSIZE=
# Append to history instead of overwriting
shopt -s histappend
# Write and read history after every command
export PROMPT_COMMAND="history -a; history -n;"
# Use nvim as $EDITOR
export EDITOR=nvim
# Colorize ls by default
alias ls='ls -G'
# asdf
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
diff --git a/.gitmodules b/.gitmodules
index c3ccab0..a5c0a09 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,45 +1,87 @@
[submodule "nvim/pack/plugins/start/vim-tmux-navigator"]
path = nvim/pack/plugins/start/vim-tmux-navigator
url = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
[submodule "nvim/pack/plugins/start/deoplete.nvim"]
path = nvim/pack/plugins/start/deoplete.nvim
url = [email protected]:Shougo/deoplete.nvim.git
[submodule "nvim/pack/plugins/start/alchemist.vim"]
path = nvim/pack/plugins/start/alchemist.vim
url = [email protected]:slashmili/alchemist.vim
[submodule ".tmux/plugins/tmux-resurrect"]
path = .tmux/plugins/tmux-resurrect
url = [email protected]:tmux-plugins/tmux-resurrect.git
[submodule ".tmux/plugins/tmux-continuum"]
path = .tmux/plugins/tmux-continuum
url = [email protected]:tmux-plugins/tmux-continuum.git
+[submodule "nvim/pack/plugins/start/vim-surround"]
+ path = nvim/pack/plugins/start/vim-surround
+ url = [email protected]:tpope/vim-surround.git
+[submodule "nvim/pack/plugins/start/vim-test"]
+ path = nvim/pack/plugins/start/vim-test
+ url = [email protected]:janko-m/vim-test.git
+[submodule "nvim/pack/plugins/start/tslime.vim"]
+ path = nvim/pack/plugins/start/tslime.vim
+ url = [email protected]:jgdavey/tslime.vim.git
+[submodule "nvim/pack/plugins/start/dracula"]
+ path = nvim/pack/plugins/start/dracula
+ url = [email protected]:dracula/vim.git
+[submodule "nvim/pack/plugins/start/vimux"]
+ path = nvim/pack/plugins/start/vimux
+ url = [email protected]:benmills/vimux.git
+[submodule "nvim/pack/plugins/start/vim-tmux-runner"]
+ path = nvim/pack/plugins/start/vim-tmux-runner
+ url = [email protected]:christoomey/vim-tmux-runner.git
+[submodule "nvim/pack/plugins/start/neosnippet.vim"]
+ path = nvim/pack/plugins/start/neosnippet.vim
+ url = [email protected]:Shougo/neosnippet.vim.git
+[submodule "nvim/pack/plugins/start/vim-snippets"]
+ path = nvim/pack/plugins/start/vim-snippets
+ url = [email protected]:honza/vim-snippets.git
+[submodule "nvim/pack/plugins/start/vim-mix-format"]
+ path = nvim/pack/plugins/start/vim-mix-format
+ url = [email protected]:mhinz/vim-mix-format.git
+[submodule "nvim/pack/plugins/start/vim-noctu"]
+ path = nvim/pack/plugins/start/vim-noctu
+ url = [email protected]:noahfrederick/vim-noctu.git
+[submodule "nvim/pack/plugins/start/vim-mucomplete"]
+ path = nvim/pack/plugins/start/vim-mucomplete
+ url = [email protected]:lifepillar/vim-mucomplete.git
+[submodule "nvim/pack/plugins/start/vim-auto-save"]
+ path = nvim/pack/plugins/start/vim-auto-save
+ url = [email protected]:vim-scripts/vim-auto-save.git
+[submodule "nvim/pack/plugins/start/ultisnips"]
+ path = nvim/pack/plugins/start/ultisnips
+ url = [email protected]:SirVer/ultisnips.git
+[submodule "git-prompt.sh"]
+ path = git-prompt.sh
+ url = https://github.com/jeffkreeftmeijer/git-prompt.sh.git
diff --git a/bash/git-prompt.sh b/git-prompt.sh
similarity index 100%
rename from bash/git-prompt.sh
rename to git-prompt.sh
|
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:
# - ignorespace: lines which begin with a space character are not saved
# - ignoredups: lines matching the previous history entry are not saved
# - erasedups: all previous lines matching the current line are removed before
# the new line is saved
export HISTCONTROL=ignorespace:ignoredups:erasedups
# Unlimited history
export HISTFILESIZE=
export HISTSIZE=
# Append to history instead of overwriting
shopt -s histappend
# Write and read history after every command
export PROMPT_COMMAND="history -a; history -n;"
# Use nvim as $EDITOR
export EDITOR=nvim
# Colorize ls by default
alias ls='ls -G'
# asdf
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
|
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-index 1
# Use vim keybindings in copy mode
setw -g mode-keys vi
-# Setup 'v' to begin selection as in Vim
-bind-key -t vi-copy v begin-selection
-bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
-
-# Update default binding of `Enter` to also use copy-pipe
-unbind -t vi-copy Enter
-bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
-
-# Bind ']' to use pbpaste
-bind ] run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer"
+# Use 'v' to begin selection
+bind-key -T copy-mode-vi 'v' send -X begin-selection
+# Use 'y' to yank to system clipboard
+bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
# Open new windows and splits in the current path
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Enable mouse/trackpad scrolling
set -g mouse on
# Clear right side of status bar
set -g status-right ''
# List of plugins
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
run '~/.tmux/plugins/tpm/tpm'
# Automatically restore the last session when tmux is started
set -g @continuum-restore 'on'
# Restore vim sessions
set -g @resurrect-strategy-nvim 'session'
|
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 = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
[submodule "nvim/pack/plugins/start/deoplete.nvim"]
path = nvim/pack/plugins/start/deoplete.nvim
url = [email protected]:Shougo/deoplete.nvim.git
[submodule "nvim/pack/plugins/start/alchemist.vim"]
path = nvim/pack/plugins/start/alchemist.vim
url = [email protected]:slashmili/alchemist.vim
-[submodule "nvim/pack/plugins/tmux-yank"]
- path = nvim/pack/plugins/tmux-yank
- url = [email protected]:tmux-plugins/tmux-yank.git
[submodule ".tmux/plugins/tmux-resurrect"]
path = .tmux/plugins/tmux-resurrect
url = [email protected]:tmux-plugins/tmux-resurrect.git
[submodule ".tmux/plugins/tmux-continuum"]
path = .tmux/plugins/tmux-continuum
url = [email protected]:tmux-plugins/tmux-continuum.git
diff --git a/.tmux.conf b/.tmux.conf
index d37ea8e..4d29250 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,35 +1,45 @@
# 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-index 1
# Use vim keybindings in copy mode
setw -g mode-keys vi
+# Setup 'v' to begin selection as in Vim
+bind-key -t vi-copy v begin-selection
+bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
+
+# Update default binding of `Enter` to also use copy-pipe
+unbind -t vi-copy Enter
+bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
+
+# Bind ']' to use pbpaste
+bind ] run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer"
+
# Open new windows and splits in the current path
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Enable mouse/trackpad scrolling
set -g mouse on
# Clear right side of status bar
set -g status-right ''
# List of plugins
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
-set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
run '~/.tmux/plugins/tpm/tpm'
# Automatically restore the last session when tmux is started
set -g @continuum-restore 'on'
# Restore vim sessions
set -g @resurrect-strategy-nvim 'session'
diff --git a/nvim/pack/plugins/tmux-yank b/nvim/pack/plugins/tmux-yank
deleted file mode 160000
index c6a73eb..0000000
--- a/nvim/pack/plugins/tmux-yank
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit c6a73eba6bfcde51edf57e1cc5fa12c4c7bd98d9
|
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" . "http://stable.melpa.org/packages/"))
(setq package-enable-at-startup nil)
(package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(package-selected-packages (quote (evil-visual-mark-mode))))
+ '(package-selected-packages (quote (use-package evil-visual-mark-mode))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
+;; use-package
+(unless (package-installed-p 'use-package)
+ (package-refresh-contents)
+ (package-install 'use-package))
+
+(eval-when-compile
+ (require 'use-package))
+
;; evil mode
-(require 'evil)
-(evil-mode t)
+(use-package evil
+ :ensure t
+ :config
+ (evil-mode 1)
+ )
;; pbcopy & pbpaste (https://gist.github.com/the-kenny/267162)
(defun copy-from-osx ()
(shell-command-to-string "pbpaste"))
(defun paste-to-osx (text &optional push)
(let ((process-connection-type nil))
(let ((proc (start-process "pbcopy" "*Messages*" "pbcopy")))
(process-send-string proc text)
(process-send-eof proc))))
(setq interprogram-cut-function 'paste-to-osx)
(setq interprogram-paste-function 'copy-from-osx)
|
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" . "http://stable.melpa.org/packages/"))
(setq package-enable-at-startup nil)
(package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages (quote (evil-visual-mark-mode))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
;; evil mode
(require 'evil)
(evil-mode t)
+
+;; pbcopy & pbpaste (https://gist.github.com/the-kenny/267162)
+(defun copy-from-osx ()
+ (shell-command-to-string "pbpaste"))
+
+(defun paste-to-osx (text &optional push)
+ (let ((process-connection-type nil))
+ (let ((proc (start-process "pbcopy" "*Messages*" "pbcopy")))
+ (process-send-string proc text)
+ (process-send-eof proc))))
+
+(setq interprogram-cut-function 'paste-to-osx)
+(setq interprogram-paste-function 'copy-from-osx)
|
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" . "http://stable.melpa.org/packages/"))
(setq package-enable-at-startup nil)
(package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages (quote (evil-visual-mark-mode))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
+
+;; evil mode
+(require 'evil)
+(evil-mode t)
|
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" . "http://stable.melpa.org/packages/"))
(setq package-enable-at-startup nil)
(package-initialize)
+(custom-set-variables
+ ;; custom-set-variables was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ '(package-selected-packages (quote (evil-visual-mark-mode))))
+(custom-set-faces
+ ;; custom-set-faces was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ )
|
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 '("melpa-stable" . "http://stable.melpa.org/packages/"))
+
+(setq package-enable-at-startup nil)
+(package-initialize)
|
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 = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
[submodule "nvim/pack/plugins/start/deoplete.nvim"]
path = nvim/pack/plugins/start/deoplete.nvim
url = [email protected]:Shougo/deoplete.nvim.git
[submodule "nvim/pack/plugins/start/alchemist.vim"]
path = nvim/pack/plugins/start/alchemist.vim
url = [email protected]:slashmili/alchemist.vim
[submodule "nvim/pack/plugins/tmux-yank"]
path = nvim/pack/plugins/tmux-yank
url = [email protected]:tmux-plugins/tmux-yank.git
+[submodule ".tmux/plugins/tmux-resurrect"]
+ path = .tmux/plugins/tmux-resurrect
+ url = [email protected]:tmux-plugins/tmux-resurrect.git
+[submodule ".tmux/plugins/tmux-continuum"]
+ path = .tmux/plugins/tmux-continuum
+ url = [email protected]:tmux-plugins/tmux-continuum.git
diff --git a/.tmux.conf b/.tmux.conf
index c5cc289..d37ea8e 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,27 +1,35 @@
# 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-index 1
# Use vim keybindings in copy mode
setw -g mode-keys vi
# Open new windows and splits in the current path
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Enable mouse/trackpad scrolling
set -g mouse on
# Clear right side of status bar
set -g status-right ''
# List of plugins
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-yank'
+set -g @plugin 'tmux-plugins/tmux-resurrect'
+set -g @plugin 'tmux-plugins/tmux-continuum'
run '~/.tmux/plugins/tpm/tpm'
+
+# Automatically restore the last session when tmux is started
+set -g @continuum-restore 'on'
+
+# Restore vim sessions
+set -g @resurrect-strategy-nvim 'session'
diff --git a/.tmux/plugins/tmux-continuum b/.tmux/plugins/tmux-continuum
new file mode 160000
index 0000000..90f4a00
--- /dev/null
+++ b/.tmux/plugins/tmux-continuum
@@ -0,0 +1 @@
+Subproject commit 90f4a00c41de094864dd4e29231253bcd80d4409
diff --git a/.tmux/plugins/tmux-resurrect b/.tmux/plugins/tmux-resurrect
new file mode 160000
index 0000000..e5cbe54
--- /dev/null
+++ b/.tmux/plugins/tmux-resurrect
@@ -0,0 +1 @@
+Subproject commit e5cbe54c7526e8b00cec4652f760d4b8cdb8fece
|
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 = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
[submodule "nvim/pack/plugins/start/deoplete.nvim"]
path = nvim/pack/plugins/start/deoplete.nvim
url = [email protected]:Shougo/deoplete.nvim.git
[submodule "nvim/pack/plugins/start/alchemist.vim"]
path = nvim/pack/plugins/start/alchemist.vim
url = [email protected]:slashmili/alchemist.vim
+[submodule "nvim/pack/plugins/tmux-yank"]
+ path = nvim/pack/plugins/tmux-yank
+ url = [email protected]:tmux-plugins/tmux-yank.git
diff --git a/.tmux.conf b/.tmux.conf
index 63f721b..c5cc289 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,37 +1,27 @@
# 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-index 1
# Use vim keybindings in copy mode
setw -g mode-keys vi
-# Setup 'v' to begin selection as in Vim
-bind-key -t vi-copy v begin-selection
-bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
-
-# Update default binding of `Enter` to also use copy-pipe
-unbind -t vi-copy Enter
-bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
-
-# Bind ']' to use pbpaste
-bind ] run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer"
-
# Open new windows and splits in the current path
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Enable mouse/trackpad scrolling
set -g mouse on
# Clear right side of status bar
set -g status-right ''
# List of plugins
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
+set -g @plugin 'tmux-plugins/tmux-yank'
run '~/.tmux/plugins/tpm/tpm'
diff --git a/nvim/pack/plugins/tmux-yank b/nvim/pack/plugins/tmux-yank
new file mode 160000
index 0000000..c6a73eb
--- /dev/null
+++ b/nvim/pack/plugins/tmux-yank
@@ -0,0 +1 @@
+Subproject commit c6a73eba6bfcde51edf57e1cc5fa12c4c7bd98d9
|
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-index 1
# Use vim keybindings in copy mode
setw -g mode-keys vi
# Setup 'v' to begin selection as in Vim
bind-key -t vi-copy v begin-selection
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
# Update default binding of `Enter` to also use copy-pipe
unbind -t vi-copy Enter
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
# Bind ']' to use pbpaste
bind ] run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer"
# Open new windows and splits in the current path
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Enable mouse/trackpad scrolling
set -g mouse on
+# Clear right side of status bar
+set -g status-right ''
+
# List of plugins
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
run '~/.tmux/plugins/tpm/tpm'
|
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 space character are not saved
# - ignoredups: lines matching the previous history entry are not saved
# - erasedups: all previous lines matching the current line are removed before
# the new line is saved
export HISTCONTROL=ignorespace:ignoredups:erasedups
# Unlimited history
export HISTFILESIZE=
export HISTSIZE=
# Append to history instead of overwriting
shopt -s histappend
# Write and read history after every command
export PROMPT_COMMAND="history -a; history -n;"
# Use nvim as $EDITOR
export EDITOR=nvim
# Colorize ls by default
alias ls='ls -G'
+
+# asdf
+. $HOME/.asdf/asdf.sh
+. $HOME/.asdf/completions/asdf.bash
|
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 space character are not saved
# - ignoredups: lines matching the previous history entry are not saved
# - erasedups: all previous lines matching the current line are removed before
# the new line is saved
export HISTCONTROL=ignorespace:ignoredups:erasedups
# Unlimited history
export HISTFILESIZE=
export HISTSIZE=
# Append to history instead of overwriting
shopt -s histappend
+# Write and read history after every command
+export PROMPT_COMMAND="history -a; history -n;"
+
# Use nvim as $EDITOR
export EDITOR=nvim
# Colorize ls by default
alias ls='ls -G'
|
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 = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
[submodule "nvim/pack/plugins/start/deoplete.nvim"]
path = nvim/pack/plugins/start/deoplete.nvim
url = [email protected]:Shougo/deoplete.nvim.git
+[submodule "nvim/pack/plugins/start/alchemist.vim"]
+ path = nvim/pack/plugins/start/alchemist.vim
+ url = [email protected]:slashmili/alchemist.vim
diff --git a/nvim/pack/plugins/start/alchemist.vim b/nvim/pack/plugins/start/alchemist.vim
new file mode 160000
index 0000000..6ccfc51
--- /dev/null
+++ b/nvim/pack/plugins/start/alchemist.vim
@@ -0,0 +1 @@
+Subproject commit 6ccfc513d42465247341225e1a3fd06993345cca
|
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_on_text_changed = 'never'
+
+" deoplete.nvim
+let g:deoplete#enable_at_startup = 1
+
+inoremap <silent><expr> <TAB>
+ \ pumvisible() ? "\<C-n>" :
+ \ <SID>check_back_space() ? "\<TAB>" :
+ \ deoplete#mappings#manual_complete()
+
+function! s:check_back_space() abort "{{{
+ let col = col('.') - 1
+ return !col || getline('.')[col - 1] =~ '\s'
+endfunction"}}}
|
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 = [email protected]:christoomey/vim-tmux-navigator.git
[submodule "nvim/pack/plugins/start/neovim-sensible"]
path = nvim/pack/plugins/start/neovim-sensible
url = [email protected]:jeffkreeftmeijer/neovim-sensible.git
[submodule "nvim/pack/plugins/start/vim-dim"]
path = nvim/pack/plugins/start/vim-dim
url = [email protected]:jeffkreeftmeijer/vim-dim.git
[submodule "nvim/pack/plugins/start/vim-numbertoggle"]
path = nvim/pack/plugins/start/vim-numbertoggle
url = [email protected]:jeffkreeftmeijer/vim-numbertoggle.git
[submodule "nvim/pack/plugins/start/fzf.vim"]
path = nvim/pack/plugins/start/fzf.vim
url = [email protected]:junegunn/fzf.vim.git
[submodule "nvim/pack/plugins/start/goyo.vim"]
path = nvim/pack/plugins/start/goyo.vim
url = [email protected]:junegunn/goyo.vim.git
[submodule "nvim/pack/plugins/start/vim-polyglot"]
path = nvim/pack/plugins/start/vim-polyglot
url = [email protected]:sheerun/vim-polyglot.git
[submodule "nvim/pack/plugins/start/vim-commentary"]
path = nvim/pack/plugins/start/vim-commentary
url = [email protected]:tpope/vim-commentary.git
[submodule "nvim/pack/plugins/start/vim-fugitive"]
path = nvim/pack/plugins/start/vim-fugitive
url = [email protected]:tpope/vim-fugitive.git
[submodule "nvim/pack/plugins/start/ale"]
path = nvim/pack/plugins/start/ale
url = [email protected]:w0rp/ale.git
[submodule "nvim/pack/plugins/start/vim-rhubarb"]
path = nvim/pack/plugins/start/vim-rhubarb
url = [email protected]:tpope/vim-rhubarb.git
+[submodule "nvim/pack/plugins/start/deoplete.nvim"]
+ path = nvim/pack/plugins/start/deoplete.nvim
+ url = [email protected]:Shougo/deoplete.nvim.git
diff --git a/nvim/pack/plugins/start/deoplete.nvim b/nvim/pack/plugins/start/deoplete.nvim
new file mode 160000
index 0000000..821d375
--- /dev/null
+++ b/nvim/pack/plugins/start/deoplete.nvim
@@ -0,0 +1 @@
+Subproject commit 821d375307183ac5c0936a8d4e4ae872dba76a8e
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.