Spring Fest 2018 Spring Bootで作るRESTful Web ServiceWataruOhno
?
Spring Fest 2018の資料です。
本セッションでは、Spring BootでRESTful Web Serviceを作成する方法についてお話しします。 環境構築から実装方法、またMockMVCを使ったテストまでを簡単なサンプルを使って解説していきます。 初心者向けのセッションですので、興味のある方はお気軽にお越しください。
AWS Black Belt Tech Webinar 2015
Amazon Kinesis
次回のWebinarは、下記よりご確認ください。
http://aws.amazon.com/jp/about-aws/events/#webinar
★AWS Black Belt Tech Webinarとは
AWSのソリューションアーキテクト、TechメンバがAWSのプロダクト/ソリューションを深堀りして解説し、参加されている皆さまからの質問にお答えする無料のWebinar(Webセミナー)です。
毎週水曜日(祝日などを除く)、日本時間の18:00から約1時間にわたってお送りしています。
AWS Black Belt Tech Webinar 2015
Amazon Kinesis
次回のWebinarは、下記よりご確認ください。
http://aws.amazon.com/jp/about-aws/events/#webinar
★AWS Black Belt Tech Webinarとは
AWSのソリューションアーキテクト、TechメンバがAWSのプロダクト/ソリューションを深堀りして解説し、参加されている皆さまからの質問にお答えする無料のWebinar(Webセミナー)です。
毎週水曜日(祝日などを除く)、日本時間の18:00から約1時間にわたってお送りしています。
【MT東京?31】バレンタインデー1ヶ月前から始めるSwift×MT Data APIでのLT登壇資料になります。
Firebaseを使用したサンプル作成にあたり、ファイルアップロード処理の際に実装に詰まった経験やデータ設計の整理に苦労しました。
その経験からFirebaseを扱いやすくするライブラリ「Salada」を導入してサンプルアプリを作成した際の知見や実装ポイント等をまとめました。
Remixing Vol.3 with オールアバウト and LIG
https://remixing.doorkeeper.jp/events/34982
で発表した資料になります。
CMS開発を汎用CMSを使うのかフルスクラッチするのか。
また、LaravelでフルスクラッチCMSを作る時のノウハウなどについて。
PDF版 世界中のゲーム分析をしてきたPlayFabが大進化!一緒に裏側の最新データ探索の仕組みを覗いてみよう Db tech showcase2020Daisuke Masubuchi
?
世界中のオンラインゲームやスマフォアプリの分析をしてきたPlayFab。最近、従来のイベント分析に加えて様々なテレメトリーを包含したクラウド分析機能が備わりました。今回は、その裏の Azure Data Explorer a.k.a Kusto での構成や仕組みをご紹介します。Windowsのテレメトリー分析やAzureのログ解析基盤の裏側と共通した仕掛けが含まれているのでお楽しみに!ゲーム業界に限らず、ビックデータ運用を考えている大規模なSaaS事業やIoT事業にもご参考いただけたら幸いです。
at db tech showcase ONLINE 2020 https://db-tech-showcase.com/dbts/2020/online #dbts2020 #gamestackjp
*本資料は 2020年11月11日に開催された DB Tech Showcase イベントにてお話させていただいた、同タイトルのセッション資料となります
2014年3月15日に開催された、関西Firefox OS勉強会6GiGでの講演資料です。Firefox OSにおけるアプリ間通信についてまとめました。インテントであるWebアクティビティ、Data Store API、そしてInterApp Communication APIについてまとめてあります。
This document provides an overview of Firebase and how to use it with Android applications. It discusses Firebase features like the realtime database, authentication, and hosting. It then covers how to set up a Firebase project in Android Studio, write and read data from the Firebase database using the SDK, handle different types of read events, query data, and secure data with security rules. Authentication options like custom authentication are also explained. Code samples are provided for common tasks like writing, reading, and querying data.
Subject represents an object that is both an Observable and an Observer. It allows objects to subscribe to it as an Observable and also emit events to observers as an Observer. There are different types of Subjects including PublishSubject, BehaviorSubject, AsyncSubject, and ReplaySubject. PublishSubject simply publishes events to observers, BehaviorSubject caches the last emitted value, AsyncSubject only emits the last value upon completion, and ReplaySubject caches emitted values and replays them to new observers. Subjects can be used to build event buses to facilitate loose coupling between components.
33. Firebase ref = new Firebase("https://docs-examples.?rebaseio.com/web/saving-data/?reblog/posts");
ref.addChildEventListener(new ChildEventListener() {
// Retrieve new posts as they are added to the database
@Override
public void onChildAdded(DataSnapshot snapshot, String previousChildKey) {
BlogPost newPost = snapshot.getValue(BlogPost.class);
System.out.println("Author: " + newPost.getAuthor());
System.out.println("Title: " + newPost.getTitle());
}
//... ChildEventListener also de?nes onChildChanged, onChildRemoved,
// onChildMoved and onCanceled, covered in later sections.
});