Skip to content

Instantly share code, notes, and snippets.

@mechamogera
mechamogera / Readme.md
Last active October 24, 2023 06:36
NetworkFirewallとClientVPNを伴うVPCのCloudFormationテンプレート

ここではNetworkFirewallとClientVPNを伴うVPCのCloudFormationテンプレートを管理します。 NetworkFirewallではVPC内部から外部への通信は80番と443番のみ許可し、許可ドメインのみ通信可能にしています。 ClientVPNに接続すると上記Firewall内からの通信となるので通信制限した環境でアクセスできるかの確認ができます。

テンプレートの利用手順

相互認証用の証明書のキーと証明書の作成

以下のURLを参照してサーバー証明書とキーをACMにアップロードしておきそのARNを記録しておきます。 クライアント証明書とキーのファイルはPCの適当な場所に保管しておきます。

@mechamogera
mechamogera / index.html
Last active February 29, 2016 04:42
Pepperのイベントをjavascriptで受け取る(localサーバーからだとできなくてS3に配置するとできた)
<html>
<head>
<meta charset="UTF-8" />
<title>Pepper event catch test</title>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="libs/qimessaging/1.0/jquery.min.js"></script>
<script src="libs/qimessaging/1.0/qimessaging.js"></script>
<script>
var session = new QiSession("10.247.85.167");
@mechamogera
mechamogera / Readme.md
Created February 26, 2016 02:05
Webカメラの映像をgoogle cloud visionに送信サンプル
@mechamogera
mechamogera / index.html
Created February 25, 2016 08:07
CCVでWebカメラ画像認識サンプル
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Webカメラの映像をface++に送信</title>
</head>
<body>
<h2>Video</h2>
<video id="camera" autoplay></video>
<h2>Canvas</h2>
<canvas id="canvas"></canvas>
@mechamogera
mechamogera / basic_awareness.py
Created February 5, 2016 06:34
PepperのBasicAwarenessをオン、オフするスクリプトサンプル
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
import sys
from naoqi import ALProxy
def on(args, bap):
bap.startAwareness()
bap.setEngagementMode("Unengaged")
@mechamogera
mechamogera / OrbitControls.js
Last active January 18, 2023 08:32
THETAのDualfisheye動画をthree.jsで視聴するためのサンプル
/**
* @author qiao / https://github.com/qiao
* @author mrdoob / http://mrdoob.com
* @author alteredq / http://alteredqualia.com/
* @author WestLangley / http://github.com/WestLangley
* @author erich666 / http://erichaines.com
*/
/*global THREE, console */
// This set of controls performs orbiting, dollying (zooming), and panning. It maintains
@mechamogera
mechamogera / index.html
Last active December 2, 2015 06:33
three.jsテスト
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>get started with three.js</title>
</head>
<body>
<script src="http://threejs.org/build/three.min.js"></script>
<script src="http://threejs.org/examples/js/controls/OrbitControls.js"></script>
@mechamogera
mechamogera / Gemfile
Last active August 29, 2015 14:13
AssumeRoleテスト用のS3アップロードスクリプト
# A sample Gemfile
source "https://rubygems.org"
gem 'aws-sdk', '< 2.0'
@mechamogera
mechamogera / receving-mail-server.json
Last active December 18, 2018 17:11
メール受信環境を構築するCloudFormationテンプレート
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "Mail server for receiving",
"Parameters" : {
"MailServerDomain" : {
"Type" : "String",
"Default" : "mail.example.com",
"Description" : "mail server domain"
},