Skip to content

Instantly share code, notes, and snippets.

@hayashih
hayashih / chap-hayashi.re
Last active May 5, 2022 03:05
「技術書典に社内部活動で参加する」修正原稿
= 技術書典に社内部活動で参加する
== はじめに
筆者(@hayashih) は「アナトリーラボ」というサークルで技術書典4〜6に参加していました。
アナトリーラボは同じ会社で働く社員によるサークルであり、社内部活動でもありました。
当初は有志メンバーで技術書典4に参加し、その後に会社の手続きを経て社内部活動となりました。
この記事はその当時(2018〜2019年)の体験をまとめたものです。
@hayashih
hayashih / CreateCloudFrontDistributionS3Bucket.cs
Created November 30, 2010 10:32
Create CloudFront Distribution from S3 Bucket. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.CloudFront;
using Amazon.CloudFront.Model;
using System.Collections.Specialized;
using System.Configuration;
// Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
@hayashih
hayashih / CloudFrontObjectInvalidation.cs
Created November 30, 2010 10:18
Control CloudFront Object Invalidation. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.CloudFront;
using Amazon.CloudFront.Model;
using System.Collections.Specialized;
using System.Configuration;
// Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
@hayashih
hayashih / CloudFrontOriginAccessIdentity.cs
Created November 30, 2010 10:07
Control CloudFront Origin Access Identity. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.CloudFront;
using Amazon.CloudFront.Model;
using System.Collections.Specialized;
using System.Configuration;
// Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
@hayashih
hayashih / RedirectNoTrailingSlashUrl.cs
Created November 29, 2010 11:29
ASP.NET MVC Grobal.asax.cs sample for redirect no trailing slash url.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using System.Web.Security;
namespace MyMvcWebSite
{
@hayashih
hayashih / SetAndGetS3AccessControlList.cs
Created November 24, 2010 09:12
Set and Get S3 AccessControlList. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.S3;
using Amazon.S3.Model;
using System.Collections.Specialized;
using System.Configuration;
namespace AWS_S3_Test
@hayashih
hayashih / CreateCFDistributionWithCustomOriginAndTrustedSigner.cs
Created November 18, 2010 09:52
Create Amazon CloudFront Distribution use Custom Origin and Trusted Singer. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.CloudFront;
using Amazon.CloudFront.Model;
using System.Collections.Specialized;
using System.Configuration;
// Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
@hayashih
hayashih / CreateCFDistributionWithCustomOrigin.cs
Created November 18, 2010 01:37
Create Amazon CloudFront Distribution use Custom Origin. Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Amazon.CloudFront;
using Amazon.CloudFront.Model;
using System.Collections.Specialized;
using System.Configuration;
// Require AWS SDK for .NET http://aws.amazon.com/sdkfornet/