You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
The document provides instructions for deploying a Play application to Google App Engine. It outlines steps to create a new Play project, install the GAE module, edit the configuration file to include GAE, run the application locally, and deploy the WAR file to App Engine, configuring the application and version in the appengine-web.xml file.
1. 10分で作る Scala開発環境 using vim @georgenano 発表者:@georgenano URL: https://github.com/georgenano/vimrc 2. 自己紹介 • 名前:@georgenano • 普段:某SIerでCOBOLから設計書を リバースエンジニアリングするツールを Haskellで実装してます • 好きな芸能人:栗山千明様 • 趣味:ろくろを回すこと 発表者:@georgenano URL: https://github.com/georgenano/vimrc 3. 自己紹介 • Scalaを初めて1週間のドシロウトです。 • 「defとvalの違いって何よ? 全部でvalで書けばいいじゃん。 varとかいる?valでよくね?」 と無邪気に思うくらい素人です。 • なので、お手柔らかにお願いします。。 発表者:@georg
ある程度複雑なソフトウェアを書くには型による支援はやっぱり欲しい。普段から Perl や JavaScript を書いている身としては、それなりに型の推論とかしてくれる書きやすいのがうれしい。goはたいへん簡潔な言語でコードもシンプルに保てそう、型のサポートも柔軟かつ十分で良い感じ。でも、ライブラリもこなれてきてそうで、ばりばり使われているScalaも気になる。 ということで最近はScalaの本を読んでた。コップ本は昔読んだけど、その後Scalaを使わなくてもう忘れてしまったので、O'Reillyの本で再入門した。 プログラミングScala 作者: Dean Wampler,Alex Payne,株式会社オージス総研オブジェクトの広場編集部出版社/メーカー: オライリージャパン発売日: 2011/01/20メディア: 大型本購入: 3人 クリック: 320回この商品を含むブログ (38件)
TwitterServer¶ TwitterServer defines a template from which servers at Twitter are built. It provides common application components such as an administrative HTTP server, tracing, stats, etc. These features are wired in correctly for use in production at Twitter. Getting Started¶ TwitterServer is published to Maven central: <dependency> <groupId>com.twitter</groupId> <artifactId>twitter-server_2.12
Buyer Protection ProgramUndeveloped safeguards your purchase. You never have to worry! We protect every transaction through a careful escrow process, leading to 100% successful acquisitions since 2014. First, we secure the domain from its current owner. Then, we help you become the new owner. Finally, we only proceed with paying the seller out after you confirm the reception of the domain.
原文(投稿日:2011/11/30)へのリンク Yammerの従業員であるCoda Hale氏がScalaの商用ベンダであるTypesafe社へ送ったメールがYCombinatorとGitHubのgist経由でリークした。メールによれば、Yammerは複雑さや性能面を鑑みて、基盤のインフラをScalaからJavaへ戻すそうだ。 YammerのPR部門のShelley Risk氏によればこのメールはCoda Hale氏の個人的な意見であり、Yammerの公式な見解ではないとのことだ。このリーク後、Coda Hale氏は自身の考えをhttp://codahale.com/the-rest-of-the-story/で表明している。氏はこのメールはDonald Fischer氏(Typesafe社のCEO)からのフィードバックの要請に答えたもので、移行を示唆するツイートを補足したものだと説明して
http://twitter.com/#!/yamaji/status/28840058526105600 twitterで見かけたこの発言を受けてScalaで書いてみた。 118 bytes 1 to 100 map{case i if i%15==0=>"FizzBuzz" case i if i%5==0=>"Buzz" case i if i%3==0=>"Fizz" case i=>i}foreach println とりあえず書いてみたもの。最初にmap + caseが思い浮かんだのでこんな形。 せめて100bytesはクリアしたい。 99 bytes 1 to 100 foreach(i=>println(if(i%15==0)"FizzBuzz"else if(i%5==0)"Buzz"else if(i%3==0)"Fizz"else i)) 2つ目。if式で書きなおした
Twitter is famous for its use of Ruby on Rails, but as it has scaled the service up it has migrated some of its code to other technologies. The company began by migrating its back-end message queue to Scala (which runs on the Java Virtual Machine), continued by rebuilding its back-end search in Java and most recently replaced its search front-end with a Java server. InfoQ is running an interview w
先日、Hadoop ConferenceでScala on Hadoopというタイトルで発表してきました。スライドを以下に置いておきます。 Scala on HadoopView more presentations from Shinji Tanaka. ダイジェストとして、ScalaをHadoopで動かすための方法を書いておきます。 まず、Hadoop上でScalaを実行させるためには、JavaとScalaを接続するライブラリが必要となります。ここでは、SHadoop( http://code.google.com/p/jweslley/source/browse/#svn/trunk/scala/shadoop )を使用します。SHadoopは、型変換を行うシンプルなライブラリです。 よくあるWordCountのサンプル、WordCount.scala (http://blog.jo
前書き Scalaという言語をご存知ですか? Javaと同じくコンパイルされるとclassファイルになり、実行時はJVM上で動作する、オブジェクト指向+関数型のプログラミング言語です。 Scalaを開発したのはJavaのgenericsの設計を手がけたり、javacの開発をしていた経歴も持つMartin Odersky氏。 Scalaは後発の言語ということもあって、Javaを書いている時に感じる冗長さに対する様々な解が用意されています。 本記事では、ScalaとJavaのコードを比較しながら、JavaユーザがScalaに移った際に得られるメリットを提示していきます。 尚、序盤のサンプルコードはJavaユーザに伝わりやすいように、returnを明記したり、メソッドは必ず{ }で囲むなど、極力Javaっぽい記述をしています。 だいたいJavaと同じような書き方ができます ScalaはJavaの
Effective Scala Marius Eriksen, Twitter Inc. marius@twitter.com (@marius) Table of Contents Introduction Formatting: Whitespace, Naming, Imports, Braces, Pattern matching, Comments Types and Generics: Return type annotations, Variance, Type aliases, Implicits Collections: Hierarchy, Use, Style, Performance, Java Collections Concurrency: Futures, Collections Control structures: Recursion, Returns,
The document discusses Twitter4J, a Java library for accessing the Twitter API. It notes that Twitter4J allows 100 requests per hour to the Twitter API, while Twitter4S, its Scala equivalent, allows 500 requests per hour by making 5 requests in parallel for each call. The rest of the document lists various Scala libraries and tools related to building Scala applications that interact with services
Twitterが分散フレームワーク「Gizzard」公開! Scalaで書かれたShardingを実現するミドルウェア Twitterは独自に開発した分散フレームワークの「Gizzard」をオープンソースとして公開しました。GizzardはScalaで書かれたJavaVM上で動作するミドルウェアで、PHPやRubyといったWebアプリケーションからの要求を自動的にデータベースに分散することで、大規模で可用性の高い分散データベースを容易に実現するためのものです。 Gizzard:フォルトトレラントな分散データベースを実現 The Twitter Engineering Blog: Introducing Gizzard, a framework for creating distributed datastores Twitterのブログにポストされた「Introducing Gizzard
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く