タグ

2010年7月1日のブックマーク (12件)

  • 出演者を掲載しました

    「Learn Languages 2018 in ODC」当日のご案内 2018年8月23日 「Learn Languages 2018 in ODC」開催のお知らせ 2018年7月25日 LLイベント当日に関するご案内 2017年8月18日 Learn Languages 2017 in ODCプログラム公開&参加登録開始 2017年7月26日 「Learn Languages 2017 in ODC」を開催します 2017年6月18日 LLoT当日に関するお知らせ 2016年8月26日 LLoTプログラム確定 2016年8月12日 「帰ってきたデモ自慢」出場選手募集のお知らせ 2016年6月30日 2018年8月 (1) 2018年7月 (1) 2017年8月 (1) 2017年7月 (1) 2017年6月 (1) 2016年8月 (2) 2016年6月 (1) 2016年5月 (1)

    出演者を掲載しました
  • Tumblr

    ats2019
    ats2019 2010/07/01
    きょうのさいたま: さいたま市誕生前、某所の道路案内表示は「←大宮 ↑与野 →浦和」といった看板があって、それが合併後に「←さいたま ↑さいたま →さいたま」と書き換えられて、当のさいたま市民からも苦情殺到
  • Pythonのantigravityモジュール | TRIVIAL TECHNOLOGIES 4 @ats のイクメン日記

    みんなのIoT/みんなのPythonの著者。二子玉近く160平米の庭付き一戸建てに嫁/息子/娘/わんこと暮らしてます。月間1000万PV/150万UUのWebサービス運営中。 免責事項 プライバシーポリシー Python 3.xで >>> import antigravity すると↓こうなる。 2.xのころからあった「import this」や「 from __future__ import braces」みたいなPythonのイースターエッグは知ってたけど,3.0からantigravityというモジュールが追加されてたなんて知らなかった。 Webブラウザが勝手に開くのは,Python標準ライブラリに搭載されているwebbrowserモジュールの機能を使っているのね。 参考: import antigravity(The History of Python)

  • 2080年に立ってそうなスレ : あじゃじゃしたー

    1 名前:以下、VIPがお送りします[] 投稿日:2010/06/25(金) 11:28:32.74 ID:QjZ3QTU90 【訃報】俳優の加藤清史郎さん(78) 死去1 名前 以下、名無しにかわりましてVIPがお送りします 2080/06/25(金) 11:04:04.83 このおじいさん 誰?2 名前 以下、名無しにかわりましてVIPがお送りします 2080/06/25(金) 11:05:12.11 >>1  大昔の子役 当時CMとか出まくってたらしい 3 名前:以下、VIPがお送りします[] 投稿日:2010/06/25(金) 11:33:37.33 ID:ehQlZCtDO ゆとり爺どもが長生きな件 コメント:今とあんまり変わっていない気がしなくもない。 以下、VIPがお送りします[] 投稿日:2010/06/25(金) 11:36:45.49 ID:hkux9hksO ワンピ

    ats2019
    ats2019 2010/07/01
    荒木飛呂彦の顔が100年以上も前から変わってない件
  • django-pdf

    ats2019
    ats2019 2010/07/01
    A Django app for managing and processing PDF documents.
  • App Engine SDK 1.3.5 Released With New Task Queue, Python Precompilation, and Blob Features

    News, notes, tips and tricks from the Google App Engine Team Today we are happy to announce the 1.3.5 release of the App Engine SDK for both Python and Java developers. Due to popular demand, we have increased the throughput of the Task Queue API, from 50 reqs/sec per app to 50 reqs/sec per queue. You can also now specify the amount of storage available to the taskqueue in your app, for those with

    ats2019
    ats2019 2010/07/01
    Additionally, in this release we’ve also added support for precompilation of Python source files to match the same feature we launched for Java last year. For Python, you can now use precompilation to speed up application loading time and to reduce CPU usage for new app instances. You can enable p
  • Python 2.xと3.xの間にコンパチなレイヤーを提供する「Six」 | TRIVIAL TECHNOLOGIES 4 @ats のイクメン日記

    みんなのIoT/みんなのPythonの著者。二子玉近く160平米の庭付き一戸建てに嫁/息子/娘/わんこと暮らしてます。月間1000万PV/150万UUのWebサービス運営中。 免責事項 プライバシーポリシー Python 2最後のバージョンと公言される2.7のリリースも近づき,いよいよPython 3移行の足音が大きく鳴り響いてくるようになりました。フレームワークや各種サードパーティライブラリの3追従はまだ時間がかかると見込まれるものの,スタンドアロンな,またはPython 3に対応したライブラリのみに依存して書けるたぐいのスクリプトについては,そろそろ3で動かすことを意識してもよい時期に来ていると言えます。 2と3両方で動くプログラムを書くのは実はそれほど難しくありません。いくつか具体的な方法を挙げると 辞書型のhas_key()のように3で廃止された機能を使わないようにする print

  • TechCrunch | Startup and Technology News

    Elon Musk’s AI startup, xAI, has raised $6 billion in a new funding round, it said today, in one of the largest deals in the red-hot nascent space, as he…

    TechCrunch | Startup and Technology News
    ats2019
    ats2019 2010/07/01
    今回の制限強化は非常に多くの人に影響を与えることとなる。「twitter.comへのアクセスのうち、ほぼ75%がAPI経由というのが現状です」とTwitterは記している。
  • Common Python Patterns

    Here are some tricks, hacks and patterns I like using most while coding Python. I will try to add more when I come across them. Basic One-Liners print [item*2 for item in [1, 2, 3]] # prints: [2, 4, 6] cond = True print 'yes' if cond else 'no' # prints: yes Dynamic Function Arguments def somefunc(self, *args, **kwargs): print 'args: %s' % args print 'kwargs: %s' % kwargs somefunc(1, 2, thirdarg=3)

    ats2019
    ats2019 2010/07/01
    Here are some tricks, hacks and patterns I like using most while coding Python. I will try to add more when I come across them.
  • Python internals: adding a new statement to Python - Eli Bendersky's website

    This article is an attempt to better understand how the front-end of Python works. Just reading documentation and source code may be a bit boring, so I'm taking a hands-on approach here: I'm going to add an until statement to Python. All the coding for this article was done against the cutting-edge Py3k branch in the Python Mercurial repository mirror. The until statement Some languages, like Ruby

    ats2019
    ats2019 2010/07/01
    This article is an attempt to better understand how the front-end of Python works. Just reading documentation and source code may be a bit boring, so I’m taking a hands-on approach here: I’m going to add an until statement to Python.
  • https://livedoor.2.blogimg.jp/amplit/imgs/d/b/db8a5d55.jpg

    ats2019
    ats2019 2010/07/01
  • 年収1000万円のビジネスマンに聞いた「就活生にオススメする中堅・中小企業ランキング」 : SIerブログ

    1 :@@@ハリケーン@@@φ ★:2010/06/29(火) 23:48:49 〜1位は会員数1700万人を超え躍進を続ける「株式会社ディー・エヌ・エー」〜 ビズリーチ年収1000万円研究所では、年収1000万円以上のビジネスパーソンに対してさまざま なアンケートを取り、“年収1000万円を稼ぐビジネスパーソンの考え方”を調査しています。 すでに大手企業の採用は終了し、中堅・中小企業の採用も終盤に近付いていますが、内定を 獲得していない学生は多数いるのが現状です。そこで今回は、年収 1000万円のビジネスパー ソンにアンケートを実施して分かった、「まだ内定を獲得していない来春卒業予定の就活生 にオススメする中堅・中小企業ランキング」をご報告します。 就活生にオススメしたい中堅・中小企業ランキングはこちらです。 @@@ハリケーン@@@φ ★:2010/06/29(火) 23:49:47 I

    ats2019
    ats2019 2010/07/01
    「年収1000 万のビジネスマンが選ぶ企業」なんだから 激務でも歩合制だったり独立し易い企業が上の方に来るのは当たり前だろう。 別に安定した会社を選んでる訳じゃないだろ。 つーかそんな会社だと、例え一流企業でも1