Affective Computing | MIT Media Lab
- AMA : A Tool for Annotation, Monitoring, and Analysis
- Analysis of Autonomic Sleep Patterns
- Auditory Desensitization Games
- Automatic Stress Recognition in Real-Life Settings
Affective Computing | MIT Media Lab
| # < 1.9.3 | |
| print "type PASSWORD : " | |
| system "stty -echo" | |
| password = gets.chop | |
| system "stty echo" | |
| # > 1.9.3 | |
| require 'io/console' | |
| print "type PASSWORD : " | |
| password = STDIN.noecho(&:gets).chop |
知識データベースシステムについて調べる. とりあえず使ってみて調査.他にも候補があれば教えてください.
| using System; | |
| using UnityEngine; | |
| using System.Collections; | |
| public class AssetBundleSample : MonoBehaviour { | |
| public GUIText guitext; | |
| // Use this for initialization | |
| void Start () { |
| ~/Library/Android/sdk/platform-tools/adb forward tcp:4444 localabstract:/adb-hub | |
| ~/Library/Android/sdk/platform-tools/adb connect localhost:4444 |
| class SomeDevice { | |
| constructor(private peripheral: Noble.Peripheral) { | |
| } | |
| public connect(): void { | |
| this.peripheral.connect(); | |
| } | |
| public disconnect(): void { | |
| this.peripheral.disconnect(); |
| module.exports = function(cube) { | |
| return new Promise((resolve, reject) => { | |
| cube.peripheral.disconnect(error => { | |
| if (error !== null) { | |
| reject(error) | |
| } else { | |
| resolve() | |
| } | |
| }) | |
| }) |
| const useSTL = (path) => { | |
| return useLoader(STLLoader, path) | |
| } | |
| useSTL.preload = (path) => useLoader.preload(STLLoader, path) | |
| useSTL.clear = (input) => useLoader.clear(STLLoader, input) | |
| const ModelSTL = () => { | |
| const stl = useSTL(stlPath) |
| import { ContactShadows, Environment } from '@react-three/drei' | |
| import { useThree } from '@react-three/fiber' | |
| import * as React from 'react' | |
| import * as THREE from 'three' | |
| const presets = { | |
| rembrandt: { | |
| main: [1, 2, 1], | |
| fill: [-2, -0.5, -2], | |
| }, |