Skip to content

Instantly share code, notes, and snippets.

View dorayakikun's full-sized avatar

Tomohide Takao dorayakikun

View GitHub Profile

Keybase proof

I hereby claim:

  • I am dorayakikun on github.
  • I am dorayakikun (https://keybase.io/dorayakikun) on keybase.
  • I have a public key ASC8FOHrpqKR5fAiGPk_TeJRVN_UoMvnt6YvYjjN5YzWCgo

To claim this, I am signing this object:

@dorayakikun
dorayakikun / matrix_strategy.yml
Created March 9, 2019 08:53
Azure Pipelines使ってみた_matrix-strategy
strategy:
matrix:
node_8_x:
node_version: 8.x
node_10_x:
node_version: 10.x
@dorayakikun
dorayakikun / dependencies.yml
Last active March 9, 2019 09:09
Azure Pipelines使ってみた_dependencies
jobs:
- job: A
steps:
- script: "echo A"
- job: B
dependsOn:
- A
steps:
- script: "echo B"
@dorayakikun
dorayakikun / container.yml
Created March 9, 2019 08:49
Azure Pipelines使ってみた_specify_container
resources:
containers:
- container: dev1
image: ubuntu:16.04
jobs:
- job: job_container
pool:
name: default
container: dev1
steps:
@dorayakikun
dorayakikun / rust_example.yml
Created March 9, 2019 08:47
Azure Pipelines使ってみた_rust_example
resources:
containers:
- container: rust
image: rust:latest
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
strategy:
@dorayakikun
dorayakikun / specify_node_version.yml
Last active March 9, 2019 08:46
Azure Pipelines使ってみた_specify_node_version
# Node.js Tool Installer
# Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH.
- task: NodeTool@0
inputs:
versionSpec: '6.x'
#checkLatest: false # Optional
@dorayakikun
dorayakikun / exec.bash
Created January 14, 2019 04:57
Run create-react-app without polluting the global environment / グローバル環境を汚さずにcreate-react-appを実行する
#!/bin/bash
npx --package create-react-app create-react-app my-project
@dorayakikun
dorayakikun / css-sandbox.html
Last active January 14, 2019 04:45
CSS練習帳
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>CSS練習帳</title>
<style>
.title {
@dorayakikun
dorayakikun / user-setting.json
Created January 10, 2019 13:34
VSCodeの設定
{
//-------- Editor configuration --------
"editor.fontSize": 20,
"editor.fontFamily": "Source Code Pro for Powerline",
"editor.tabSize": 2,
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"window.zoomLevel": -1,
"workbench.iconTheme": "vscode-icons",
@dorayakikun
dorayakikun / index.js
Last active December 15, 2018 07:51
Rust入門者向けハンズオン #5向け向け
const js = import("./rust_handson");
js.then(js => {
js.to_hash("World!");
});