タグ

2010年11月8日のブックマーク (4件)

  • 組織概要 - MIAU

    組織名 Movements for Internet Active Users (MIAU) (日語名「インターネットユーザー協会」) Movements for Internet Active Users (MIAU) は、インターネットやデジタル機器等の、技術発展や利用者の利便性に関わる分野における、意見の表明・知識の普及などの活動を行うことを目的とする。 我々は、インターネットやデジタル機器等の利用者にとって、以下のような環境を実現することが望ましいと考える。 利用者がより創造的に活動でき、そして技術自身が発展できるような環境。 既存のシステムを守るための制度が、技術の発展を制限しない環境。 我々は、以上のような環境を実現するために、インターネットやデジタル機器等の利用者から意見を集め、政策サイドに対して政策提言を行う。 また同時に、インターネット社会におけるユーザーに求められる情

    組織概要 - MIAU
    muranoki3
    muranoki3 2010/11/08
    インターネットユーザー協会
  • egashira > Google App Engine > エラーの解決方法

    更新日:2010年5月19日 アップデートに失敗したときにRollbackする デプロイ中に間違ってGoogleAppEngineLauncherを終了してしまったり、正常に終了しなかった場合に、以下のようなエラーが出ることがあります。 *** Running appfg.py with the following flags: --no_cookies --email=UserName@gmail.com --passin update google_appengine/appcfg.py:41: DeprecationWarning: the sha module is deprecated; use the hashlib module instead os.path.join(DIR_PATH, 'lib', 'antlr3'), /Applications/GoogleAppEn

  • Majek's technical blog: Google App Engine tips&tricks

    A while ago I was writing some sample applications (source) for Google App Engine. I noted the things that can be useful for other GAE programmers. I used Google's webapp framework, my code here is using it. Please take a look at the shell application, it can help you test simple code. How to dynamically get application name and version?This question was asked before. You can use os.getcwd() or os

    Majek's technical blog: Google App Engine tips&tricks
    muranoki3
    muranoki3 2010/11/08
    GAEのtips
  • Pythonでクッキーを発行する - wayd Wiki

    ユーザIDとセッションIDのクッキーを送信する。 セッションIDはブラウザを終了するまで残す。ユーザIDはリクエスト毎に1年間に設定する。 #!/usr/bin/env python import sys if sys.hexversion < 0x02040000: print 'This script requires Python 2.4 or later.' print 'Currently run with version: %s' % sys.version sys.exit(1) import os import time import cgi import Cookie import random ## Initialize variables # _sid = None _uid = None ID_MAX_LENGTH = 15 ##