いつも書いてる .subscribe((x) => {}, (err) => {}); は、RxJS 7.x から、@deprecated がつく。 ので、.subscribe({ next: (x) => {}, error: (err) => {} }); が recommended migration tools がやってくれるかどうか… RxJS - Subscribe Arguments https://rxjs.dev/deprecations/subscribe-arguments 6.6.4 https://github.com/ReactiveX/rxjs/blob/6.6.4/src/internal/Observable.ts#L80
This file contains 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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class BgmController : MonoBehaviour | |
{ | |
//private CriAtomSource criAtomSource; | |
private CriAtomExPlayback playback; | |
private CriAtomExPlayer criAtomExPlayer; |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset=utf-8> | |
<title></title> | |
</head> | |
<body> | |
<button id="start-button">start</button> |
This file contains 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
const somethingPromise = (ms) => | |
new Promise((resolve) => setTimeout(resolve, ms)); | |
const somethingErrorPromise = (ms) => | |
new Promise((resolve) => { | |
throw new Error(); | |
}); | |
describe("test", () => { | |
it("test", async (done) => { |
This file contains 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
{ | |
"1": { | |
"0": { | |
"title": "患者情報レコード" | |
}, | |
"1": { | |
"title": "患者氏名" | |
}, | |
"2": { | |
"title": "患者性別" |
.....................
............4C4......
..........1.404TFFFD.
..U..E...E..:02F.....
.......1D4...........
...N.51X...H.........
...........S.........
...........j.........
.....................
This file contains 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
................... | |
.1D4.C.......C5.... | |
....A62......1..... | |
..:18A.......J..... | |
.............1..... | |
..........C4.J..... | |
..........2Y21..... | |
............JJ..... | |
...........F21..... | |
............:11Aa.. |
This file contains 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
const synth = new Tone.Synth().toMaster(); | |
const polySynth = new Tone.PolySynth(6, Tone.Synth).toMaster(); | |
polySynth.volume.value = -5; | |
Tone.Transport.bpm.value = 90; | |
const chordAb = ["Ab3", "Cb4", "Eb4", "Gb4"]; | |
const chordDb = ["Ab3", "Cb4", "Db4", "F4"]; | |
const chordEb = ["Gb3", "Bb3", "Db4"]; |
This file contains 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
interface PersonA { | |
name: string, | |
group: string, | |
item1: string, | |
item2: string, | |
} | |
interface PersonB { | |
name: string, |
NewerOlder