Skip to content

Instantly share code, notes, and snippets.

View dorayakikun's full-sized avatar

Tomohide Takao dorayakikun

View GitHub Profile
@dorayakikun
dorayakikun / .commit_template
Created December 25, 2016 01:18
Git Commit Messages
# ==== Emojis ====
# 📦 :package: New release
# ✨ :sparkles: when adding a new feature
# ♻️ :recycle: when improving the format/structure of the code
# 🚀 :rocket: when improving performance
# 🚱 :non-potable_water: when plugging memory leaks
# 📕 :closed_book: when writing docs
# 🐛 :bug: when fixing a bug
@dorayakikun
dorayakikun / Ansibleでいつも同じ環境に.md
Last active December 11, 2018 08:09
Ansibleでいつも同じ環境に

Ansibleでいつも同じ環境に


環境構築だるいですよね... 😩


何がだるいか

@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!");
});
@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 / 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 / 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 / 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 / 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 / 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 / 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"