Skip to content

Instantly share code, notes, and snippets.

View aiya000's full-sized avatar
🐶
Inu

aiya000 aiya000

🐶
Inu
View GitHub Profile
The MIT License (MIT)
Copyright (c) 2021 aiya000
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Param([String]$title = "VRChat")
<# Description, Setup, and License {{{
# Record-Replay-VRChat
## What is this?
An easy way to record replay of games via 'Xbox Game Bar'.
## Setup

【無料・VRChat SDK3】UdonSharpCommon【ワールド作成支援・UdonSharpライブラリ】

VRC SDK3・UdonSharp(Udon#, U#)向けの便利なスクリプト集(機能集)です✨

SDK3でVRChatワールド開発をしてみたものの、Udon GraphやUdonSharpで機能が実装できない人向けのアセットになります!

ライセンス

MIT

module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: ['plugin:import/errors', 'plugin:import/warnings', 'plugin:import/typescript'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
const chars = [
'亜',
'哀',
'挨',
'愛',
'曖',
'悪',
'握',
'圧',
'扱',
#!/bin/bash
negative_state=$(cat <<- END
{
"state": "failure",
"context": "poi",
"description": "hi"
}
END
)
echo "$negative_state"
module.exports = {
trailingComma: 'all',
tabWidth: 2,
semi: false,
singleQuote: true,
printWidth: 100,
}
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
extends: [
'@nuxtjs/eslint-config-typescript',
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
const x: { x: number } | null = { x: 10 }
console.log(x.x) // no errors
const y: { x: number } | null = null
console.log(y.x) // 2531: Object is possibly 'null'.
/**
* The type 'true' means a proof is satisfied.
* The type 'never' means a proof is not satisfied.
*/
// Basic of this idea.
type AWrongProof = { x: number } extends { x: string } ? true : never
// Compile NG