IROHA GRAND HOTEL 【いろはグランホテル松本駅前】コラボパートナーになってホテル... 詳細を見る

IROHA GRAND HOTEL 【いろはグランホテル松本駅前】コラボパートナーになってホテル... 詳細を見る
アメーバ事業本部 API 基盤グループでプログラマをしている @na_ga です。 API 基盤グループでは、弊社の様々なサービスから利用される共通 API の開発・運用を行なっております。今回は、私が担当した API でメッセージキューとして利用した RabbitMQ を紹介させていただきたいと思います。 はじめにAPI 基盤グループで提供している API には、リクエストをリアルタイムに処理する必要がないものもあります。例えばメール配信 API や、投稿内容の有人監視 API などが挙げられます。 これらの非同期処理が可能な API では、大量のリクエストを受け取るためにメッセージキューを使用しています。 メッセージキューを使用した構成では、リクエストを受け取るプログラムが、受け取ったリクエストから生成したメッセージをキューに格納します。キューに格納されたメッセージは、メッセージを処理
Introduction In many VPS environments, it is often the case that you will have a number of small programs that you want to run persistently, whether these are small shell scripts, Node.js apps, or any large-sized packages. Usually, external packages are supplied with a unit file that allows them to be managed by an init system such as systemd, or packaged as docker images which can be managed by a
使い方 HTML flipbook.jsのパスを読み込んでおき、対象となる要素を記述。適当なid等を付与しておきます。 <body> <!-- 対象の要素 --> <div id="screen"></div> <!-- flipbook.js を読み込み --> <script src="flipbook.js"></script> </body> CSS 対象要素に幅、高さ、背景画像(スプライトシート)を設定しておきます。 #screen { width; 300px; height: 200px; background: url(../img/spritesheet.png) 0 0 no-repeat; } JavaScript Flipbookのインスタンスを作成、必要に応じてイベントハンドラなどを設定し、play()で再生します。 コンストラクタの第一引数にidを指定する場合、
django-skel¶ A modern Django 1.5 project skeleton. Django is a great framework. Unfortunately, like any framework, it is only as useful as the tools you use with it. This is where django-skel really shines. django-skel gives you a great project skeleton, complete with: Database migrations via South. Static file management via django-compressor. Task queueing via Celery. Helper utilities for workin
Powered by Trac 1.6 By Edgewall Software . Visit the Trac open source project at http://trac.edgewall.org/
目次 はじめに Git を使ったことがない方へ 生のデータが見たい方へ Git の全体像 .git の中身 Git オブジェクトデータベース 4種類のオブジェクト リファレンス リファレンスのリファレンス 大きなツリー Git オブジェクトの ID と 中身 ハッシュ関数 SHA1 の簡単な説明 tree と blob オブジェクト tree と blob の参照関係 ルートツリーの ID でツリー全体を識別する commit オブジェクト リファレンスとブランチ ブランチ ブランチ先頭を指すリファレンス HEAD リファレンス detached HEAD 2種類のタグ 一時待避 (stash) インデックス キャッシュとしての役割 マージ Fast-Forward マージ non Fast-Forward マージ rebase reset 2種類のブランチ 各リポジトリが自分のブランチを
Varnish HTTP Cache¶ I’m new here, please explain this Varnish thing What is happening¶ 2023-11-13 - Varnish HTTP/2 Rapid Reset Attack¶ All Varnish Cache releases with HTTP/2 support suffer a vulnerability in the HTTP/2 protocol. Please see VSV00013 Varnish HTTP/2 Rapid Reset Attack for more information. 2023-11-13 - Security releases: 6.0.12, 7.3.1 and 7.4.2¶ Varnish versions 6.0.12, 7.3.1 and 7.4
▼ 2018 (6) ▼ 06/10 - 06/17 (1) ► 05/13 - 05/20 (1) ► 04/08 - 04/15 (1) ► 02/04 - 02/11 (1) ► 01/21 - 01/28 (1) ► 01/14 - 01/21 (1) ► 2017 (31) ► 12/31 - 01/07 (1) ► 12/10 - 12/17 (2) ► 12/03 - 12/10 (2) ► 11/19 - 11/26 (1) ► 11/05 - 11/12 (1) ► 10/29 - 11/05 (1) ► 09/24 - 10/01 (1) ► 09/10 - 09/17 (1) ► 08/20 - 08/27 (1) ► 07/16 - 07/23 (1) ► 07/09 - 07/16 (1) ► 06/25 - 07/02 (1) ► 06/11 - 06/18 (
1 Name: Anonymous 2011-01-20 12:22 Man, am I a genius. Check out this sorting algorithm I just invented. #!/bin/bash function f() { sleep "$1" echo "$1" } while [ -n "$1" ] do f "$1" & shift done wait example usage: ./sleepsort.bash 5 3 6 3 6 3 1 4 7 2 Name: Anonymous 2011-01-20 12:27 >>1 Oh god, it works. But I don't like to wait 218382 seconds to sort '(0 218382)
現在ではREST APIはとても一般的な話題です。ほとんどすべてのWebアプリケーションの一部分となっています。シンプルで一貫性があり実際的なインターフェースは必須です。これは皆さんのAPIを他の人が使うことをとても容易にします。皆さんにとってはRESTの実践が日常的に感じられるかもしれませんが、RESTをあまり尊重しない人々もよく見かけます。これがRESTについて投稿するきっかけでした。 この記事にはRESTfulなAPIを設計する時に考慮すべきベストプラクティスがあります。 注意 : ここでのベストプラクティスは、私が過去の経験に基づいて良いと考える事例です。もし違う考えをお持ちであれば、お気軽にメールをくだされば意見交換できると思います。 APIのバージョンを示す APIのバージョンは必須であるべきです。これがあると時間が経ってAPIが変わっても影響を受けません。その方法の1つはUR
Your browser appears to be unsupported! Pirates ♥ Daisies is a tower defense game, developed using JavaScript and HTML5 features, many of which are not supported by older browsers. Current supported browsers are: Internet Explorer 9 (Recommended) Safari 5 Chrome 6 or higher Opera 10 or higher Firefox 3.6
A sumo wrestling tournament. A failed coup ending in seppuku. A search for a forgotten man. How one writer’s trip to Japan became a journey through oblivion. A sumo wrestling tournament. A failed coup ending in seppuku. A search for a forgotten man. How one writer’s trip to Japan became a journey through oblivion. • THE WHITE BIRD • when he comes into the ring, Hakuho, the greatest sumotori in the
キミはionicを知っているか?AngularJS+PhoneGap+美麗コンポーネント群! 金井 健一(フリーランス) ionic 概要 ionicはそのサイトのデザインからも見てわかるとおり、シンプルかつ美しいUIを取り揃えたコンポーネント群で、Apache Cordova を拡張して作られているフレームワークです。 また、動的なUIコンポーネントを実装するために、 AngularJS を採用してる点もその特徴の1つです。 ionicがサポートしているプラットフォームは、iOS 6+とAndroid 4+です。(ただしAndroidについては、2.3+でもいくつかの機能を提供してるとのこと) 現状ではこの2つのプラットフォームのみですが、Windows PhoneとFirefoxOSについても今後対応を進めていくようです。 特徴 Apache Cordovaを拡張して作られている、モバ
The first generation of NoSQL Database technologies are undergoing rapid evolution, with new approaches being actively explored after decades of relative stability. As late as 2008, relational databases were both commercially dominant and well-entrenched in the development community. However, many large web applications had requirements that were poorly matched to relational databases, and alterna
Note: this is now a very old tutorial that I’m leaving up, but I don’t believe should be referenced or used. Better materials include CS231n course lectures, slides, and notes, or the Deep Learning book. Hi there, I’m a CS PhD student at Stanford. I’ve worked on Deep Learning for a few years as part of my research and among several of my related pet projects is ConvNetJS - a Javascript library for
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く