- https://docs.microsoft.com/windows/mixed-reality/install-the-tools#system-requirements
- [オプション] モーション コントローラー搭載 Windows Mixed Reality イマーシブ ヘッドセット
- [オプション] HoloLens デバイス
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
pipeline { | |
agent { docker 'python:3.6' } | |
stages { | |
stage('setup') { | |
steps { | |
sh 'pip install mkdocs' | |
} | |
} | |
stage('build') { | |
steps { |
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
FROM redmine:4.0.5-alpine | |
COPY --chown=redmine:redmine config.ru config.ru |
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
using Microsoft.ML; | |
using Microsoft.ML.Core.Data; | |
using Microsoft.ML.Runtime.Api; | |
using Microsoft.ML.Runtime.Data; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Threading.Tasks; |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"sourceMap": true, | |
"target": "es5", | |
"removeComments": true, | |
"module": "es2015" | |
} | |
} |
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
const path = require('path'); | |
mode = process.env.NODE_ENV, | |
devMode = mode !== 'production', | |
MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
module.exports = { | |
mode: mode, | |
entry: { | |
main: path.resolve(__dirname, './ts/login.ts') | |
}, |
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
{ | |
"name": "shoppingapp", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"webpack:dev": "webpack --mode development", | |
"webpack:prod": "webpack --mode production" | |
}, | |
"keywords": [], |
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
import * as React from "react"; | |
export interface HelloProps { compiler: string; framework: string; } | |
export const Hello = (props: HelloProps) => <h1>Hello from {props.compiler} and {props.framework}!</h1>; |
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
protocol FooDelegate { | |
func Foo() | |
} | |
class FooApi { | |
var delegate: FooDelegate | |
func Someone() { | |
if delegate != nil { | |
// delegateのFooメソッドが呼ばれる |
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
using System.Web.Mvc; | |
namespace WebApplication1.Controllers | |
{ | |
/// <summary> | |
/// セッションに格納するデータ | |
/// </summary> | |
[Serializable] | |
public class Foo | |
{ |
NewerOlder