以下の内容はMarkdownとして体裁を整える以外、修正は加えていません。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * Tech talk のスピーカーを選ぶスクリプト | |
| * | |
| */ | |
| const speakerLimit = 5; | |
| // 一度も発表したことない発表者 | |
| const newSpeakers = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.superarai.android.sample.imageview; | |
| import java.io.BufferedInputStream; | |
| import android.app.Activity; | |
| import android.content.Intent; | |
| import android.graphics.Bitmap; | |
| import android.graphics.BitmapFactory; | |
| import android.os.Bundle; | |
| import android.view.Menu; |

