2007-05-11から1日間の記事一覧

むりやりなあざーじょいんたいぷ

class QJoin(Q): def get_sql(self, opts): joins, where, params = super(QJoin,self).get_sql(opts) for join in joins: (table, join_type, condition) = joins[join] joins[join] = (table, "LEFT OUTER JOIN", condition) return joins, where, params …

あざーじょいんたいぷ

DjangoのデータベースAPIを使うと必ずINNER JOINになってしまうが、 ソースコードに書かれている通り、 # At present, this method only every returns INNER JOINs; the option is # there for others to implement custom Q()s, etc that return other joi…

Z80

Nao_uさんの日記経由で、 Z80でバイオハザード まぁ、Z80というかGBCですが、Z80カスタムなのでZ80。(各命令サイクル減少、幾つかの命令削除...DJNZとか、I/O関連もメモリマップドに) 初めて触ったコンシューマ機がまさにGBCだったので懐かしさもあって凄…