日時: | 2018-11-23 |
---|---|
作: | @voluntas |
バージョン: | 18.11.6 |
url: | https://voluntas.github.io/ |
概要
/* | |
* Copyright (c) 2020 Fastly, Kazuho Oku | |
* | |
* 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: | |
* |
日時: | 2018-11-23 |
---|---|
作: | @voluntas |
バージョン: | 18.11.6 |
url: | https://voluntas.github.io/ |
概要
日時: | 2020-08-04 |
---|---|
作: | 時雨堂 |
バージョン: | 2020.5 |
URL: | https://sora-labo.shiguredo.jp/ |
このサービスに興味がある人はこの資料に Star をつけてもらえると嬉しいです。
Sora Labo と Momo の使い方は把握している前提の資料です
#Installing nginx on OS X
brew install nginx sudo cp -v /usr/local/opt/nginx/*.plist /Library/LaunchDaemons/ sudo chown root:wheel /Library/LaunchDaemons/homebrew.mxcl.nginx.plist mkdir -p /usr/local/etc/nginx/logs mkdir -p /usr/local/etc/nginx/sites-available mkdir -p /usr/local/etc/nginx/sites-enabled mkdir -p /usr/local/etc/nginx/conf.d mkdir -p /usr/local/etc/nginx/ssl
var socket = null; | |
function bootstrap() { | |
// 適当な図形を描画 | |
var c = document.getElementById('mycanvas'); | |
var ctx = c.getContext('2d'); | |
ctx.globalalpha = 0.3; | |
for(var i=0; i<1000; i++) { | |
ctx.beginPath(); |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { | |
// no easing, no acceleration | |
linear: function (t) { return t }, | |
// accelerating from zero velocity | |
easeInQuad: function (t) { return t*t }, | |
// decelerating to zero velocity |
9:00にオフィス(Sticky Fingers)
食料品は事前に用意しておく。食べ過ぎない。胃に負担をかけないようにする。
運営の櫛井さんからのメールに従って、サポートチャットと予選ポータルサイトにログインする。
# Make sure that you’ve installed minikube and run `minikube start` to get your Kubernetes cluster running. | |
minikube version (should be at least 0.19.0) | |
minikube start | |
kubectl version (should be at least 1.6.0 for both client and server) | |
------------------- | |
# Create the CockroachDB cluster and other relevant resources | |
kubectl create -f https://bit.ly/crdb-k8s-yaml | |