https://docs.google.com/spreadsheets/d/1U0V9_9nBt4fLXVWhqh6of1Nc__b5aSBcVh9pehCDf3o/edit?usp=sharing
- AWSアソシエイト
---カテゴリ1. Too Much Information | |
===説明:We notice things already primed in memory or repeated often. | |
Availability heuristic | |
Attentional bias | |
Illusory truth effect | |
Mere exposure effect | |
Context effect | |
Cue-dependent forgetting | |
Mood-congruent memory bias | |
Frequency illusion |
# General API Info | |
| annotation | description |example | | |
|--------------------|----------------------------------------------------------|---------------------------------| | |
| title | **Required.** The title of the application. | // @title Swagger Example API | |
package tdd | |
import ( | |
"fmt" | |
"reflect" | |
) | |
// Semver a | |
type Semver struct { | |
major uint |
object Main { | |
def main(args: Array[String]): Unit = { | |
val v1: Either[String, Int] = Right(123) | |
val v2: Either[String, Int] = Left("abc") | |
v1 match { | |
case Right(i) => println(i) | |
case Left(s) => println(s) | |
} // 123 |
cl_interp "0" | |
cl_interp_ratio "1" | |
cl_interpolate "1" | |
cl_lagcomp_errorcheck "1" | |
cl_lagcompensation "1" | |
rate "786432" | |
cl_cmdrate "128" | |
cl_updaterate "128" | |
snd_mixahead "0.025" | |
fps_max "300" |
import scala.concurrent.{Await, Future} | |
import scala.concurrent.duration._ | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import scala.util.{Failure, Random, Success} | |
object Example1 extends App { | |
def sleep(time: Long) { Thread.sleep(time) } | |
implicit val baseTime = System.currentTimeMillis | |
// 別スレッドで計算開始 |
// 分割代入 | |
// 従来 | |
var numbers = [1, 2, 3]; | |
var a = numbers[0]; | |
var b = numbers[1]; | |
var c = numbers[2]; | |
a; | |
b; | |
c; |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
) | |
type simpleHandler struct{} |