<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RoishiBlog</title>
	<atom:link href="https://roishi.net/feed" rel="self" type="application/rss+xml" />
	<link>https://roishi.net</link>
	<description></description>
	<lastBuildDate>Mon, 01 Jun 2026 13:45:30 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>AWS CloudFormation で VPC と EC2 インスタンスを自動構築する</title>
		<link>https://roishi.net/archives/35</link>
					<comments>https://roishi.net/archives/35#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Mon, 01 Jun 2026 13:45:06 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">https://roishi.net/?p=35</guid>

					<description><![CDATA[はじめに AWS CloudFormation を使って VPC・EC2 インスタンスを自動構築する手順をまとめます。実際に試した際のトラブルシューティングも含めて紹介します。 構成図は以下です。シンプルなパブリックイン ... <a title="AWS CloudFormation で VPC と EC2 インスタンスを自動構築する" class="read-more" href="https://roishi.net/archives/35" aria-label="AWS CloudFormation で VPC と EC2 インスタンスを自動構築する についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<h4 class="wp-block-heading">はじめに</h4>



<p class="wp-block-paragraph">AWS CloudFormation を使って VPC・EC2 インスタンスを自動構築する手順をまとめます。<br>実際に試した際のトラブルシューティングも含めて紹介します。</p>



<p class="wp-block-paragraph">構成図は以下です。シンプルなパブリックインスタンスになります。</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="281" height="281" src="https://roishi.net/wp-content/uploads/2026/06/IMG_1919.png" alt="" class="wp-image-37" srcset="https://roishi.net/wp-content/uploads/2026/06/IMG_1919.png 281w, https://roishi.net/wp-content/uploads/2026/06/IMG_1919-150x150.png 150w" sizes="(max-width: 281px) 100vw, 281px" /></figure>



<h4 class="wp-block-heading">ハマったポイント</h4>



<h5 class="wp-block-heading">テンプレートアップロード時のエラー</h5>



<p class="wp-block-paragraph">CloudFormation にテンプレートファイルをアップロードしようとするとエラーが発生しました。<br>原因は `Ref` で存在しないパラメータを参照していたためです。<br>​<br>アップロード時にバリデーションチェックが走るようです。パラメータ名を修正したら無事成功しました。</p>



<h5 class="wp-block-heading">セキュリティグループ名を指定できない？</h5>



<p class="wp-block-paragraph">セキュリティグループを作成するとき、セキュリティグループ名を指定するには `SecurityGroupName` プロパティを使用します。<br>​<br>一部の情報では「このプロパティはデフォルトの VPC でのみ使用可能で、新たに作成する VPC では使用できない」とされていました。<br>​<br>しかし、<a href="https://docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/TemplateReference/aws-resource-ec2-securitygroup.html">公式ドキュメント</a>を確認したところ、`GroupName` プロパティで設定できそうだったので試してみました。</p>



<p class="wp-block-paragraph">以下のように <code>GroupName</code> プロパティを追加したところ、問題なく設定できました。<br>​</p>



<pre class="wp-block-code"><code>GroupName: 'roishi-cfn-test-ssh-sg'</code></pre>



<p class="wp-block-paragraph">参照していた情報が古かったようです。</p>



<h4 class="wp-block-heading">スタックの更新</h4>



<p class="wp-block-paragraph">「既存のテンプレートを置換」からテンプレートを差し替えることでスタックの更新も問題なく完了しました。<br>デプロイタイムラインでリソースの作成状況をリアルタイムに確認できるのが面白いポイントです。</p>



<h4 class="wp-block-heading">最終的なテンプレート</h4>



<pre class="wp-block-code"><code>AWSTemplateFormatVersion: "2010-09-09"
Description: EC2 Test

Parameters:
 KeyName:
 Type: AWS::EC2::KeyPair::KeyName
 Description: 'EC2 Key Pair Name'

 InstanceType:
 Type: String
 Default: t3.micro
 AllowedValues:
 - t3.micro
 - t3.small
 - t3.medium
 Description: 'EC2 Instance Type'

Resources:
 Vpc:
 Type: 'AWS::EC2::VPC'
 Properties:
 CidrBlock: '192.168.0.0/16'
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-test'

 Subnet:
 Type: 'AWS::EC2::Subnet'
 Properties:
 CidrBlock: '192.168.1.0/24'
 MapPublicIpOnLaunch: true
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-subnet'
 VpcId: !Ref Vpc

 InternetGateway:
 Type: 'AWS::EC2::InternetGateway'
 Properties:
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-igw'

 AttachGateway:
 Type: 'AWS::EC2::VPCGatewayAttachment'
 Properties:
 VpcId: !Ref Vpc
 InternetGatewayId: !Ref InternetGateway

 RouteTable:
 Type: 'AWS::EC2::RouteTable'
 Properties:
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-rt'
 VpcId: !Ref Vpc

 Route:
 Type: 'AWS::EC2::Route'
 DependsOn: InternetGateway
 Properties:
 RouteTableId: !Ref RouteTable
 DestinationCidrBlock: 0.0.0.0/0
 GatewayId: !Ref InternetGateway

 SubnetRouteTableAssociation:
 Type: AWS::EC2::SubnetRouteTableAssociation
 Properties:
 SubnetId: !Ref Subnet
 RouteTableId: !Ref RouteTable

 EC2Instance:
 Type: 'AWS::EC2::Instance'
 Properties:
 ImageId: "ami-0c036b62d1a414d7f"
 InstanceType: !Ref InstanceType
 SubnetId: !Ref Subnet
 BlockDeviceMappings:
 - DeviceName: '/dev/xvda'
 Ebs:
 VolumeType: 'gp2'
 VolumeSize: 8
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-test'
 SecurityGroupIds:
 - !Ref SecurityGroup
 KeyName: !Ref KeyName

 SecurityGroup:
 Type: "AWS::EC2::SecurityGroup"
 Properties:
 GroupDescription: "cfnSecurityGroup"
 VpcId: !Ref Vpc
 Tags:
 - Key: 'Name'
 Value: 'roishi-cfn-test-ssh-sg'
 GroupName: 'roishi-cfn-test-ssh-sg'
 SecurityGroupIngress:
 - IpProtocol: tcp
 FromPort: '22'
 ToPort: '22'
 CidrIp: xxx.xxx.xx.x/xx # 接続元IPアドレスを指定</code></pre>



<h4 class="wp-block-heading">まとめ</h4>



<p class="wp-block-paragraph">CloudFormation を使うことでインフラをコードで管理でき、再現性の高い環境構築が実現できました。<br>今後も有効活用できるよう色々勉強していきます。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/35/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>画像生成AIを使ってみる</title>
		<link>https://roishi.net/archives/29</link>
					<comments>https://roishi.net/archives/29#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Tue, 14 Apr 2026 08:14:08 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">https://roishi.net/?p=29</guid>

					<description><![CDATA[画像生成AIを使ってみたい まとまった時間ができたため、何か新しいことをしてみようことで画像生成AIを使ってみたいと思いました。自分のPCに差さっているグラボはRTX2060SUPERと古いものではありますが、どこまで動 ... <a title="画像生成AIを使ってみる" class="read-more" href="https://roishi.net/archives/29" aria-label="画像生成AIを使ってみる についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<h4 class="wp-block-heading">画像生成AIを使ってみたい</h4>



<p class="wp-block-paragraph">まとまった時間ができたため、何か新しいことをしてみようことで画像生成AIを使ってみたいと思いました。<br>自分のPCに差さっているグラボはRTX2060SUPERと古いものではありますが、どこまで動くのか確認してみたいというところもあります。<br>スクリプト等があるためそこまで複雑な手順ではないのですが、備忘録として記録していきます。</p>



<h4 class="wp-block-heading">reForgeを導入する</h4>



<p class="wp-block-paragraph"><a href="https://github.com/Panchovix/stable-diffusion-webui-reForge">https://github.com/Panchovix/stable-diffusion-webui-reForge</a><br>こちらのURLで共有されている、reForgeなるツールを使用していきます。<br>インストール先の場所で以下のコマンドを実行しました。<br>Python, Git が必要とのことですが、手元の環境ではすでに導入されていたため、その手順は割愛します。</p>



<pre class="wp-block-code"><code>git clone https://github.com/Panchovix/stable-diffusion-webui-reForge.git
cd stable-diffusion-webui-reForge
git checkout main</code></pre>



<h4 class="wp-block-heading">checkpointをダウンロードして配置する</h4>



<p class="wp-block-paragraph">動かすにはモデルが必要らしいです。以下のサイトからダウンロードしてくるのが一般的なようです。<br><a href="https://civitai.com/models">https://civitai.com/models</a><br>自分は<a href="https://civitai.com/models/827184">WAI-illustrious-SDXL</a>を選択しました。<br>次に、ダウンロードしたファイルを models &gt; Stable-diffusion のフォルダ内に移動します。SAFETENSORSという見たことない拡張子のファイルでした。<br>これでダウンロードしたモデルを使用した画像生成が可能になります。</p>



<h4 class="wp-block-heading">生成してみる</h4>



<p class="wp-block-paragraph">webui-user.bat を実行することで、セットアップが実行されてブラウザページが起動し、画像生成ができるようになりました。<br>次回起動時もこのファイルを実行することで起動できます。<br>先ほどダウンロードしたモデルを指定し、スクリプトを入れ、数十秒から一分待つことで画像が生成されました。<br>色々スクリプトを変えるといい感じの画像も出てきて面白いです。無料で遊べるので、しばらく遊んでみようと思います。</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/29/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Oracle Cloud でサーバを立てる:その2 稼働率調整編</title>
		<link>https://roishi.net/archives/27</link>
					<comments>https://roishi.net/archives/27#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Thu, 09 Apr 2026 10:58:44 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">https://roishi.net/?p=27</guid>

					<description><![CDATA[前回の続きになります。前回はメモリ編として、限られたインスタンスサイズ(メモリ)でも問題なく稼働するようにスワップ領域を設定しました。その後、nginx等のセットアップをしたりfirewallの設定をしたりするわけですが ... <a title="Oracle Cloud でサーバを立てる:その2 稼働率調整編" class="read-more" href="https://roishi.net/archives/27" aria-label="Oracle Cloud でサーバを立てる:その2 稼働率調整編 についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><a href="https://roishi.net/archives/22">前回</a>の続きになります。<br>前回はメモリ編として、限られたインスタンスサイズ(メモリ)でも問題なく稼働するようにスワップ領域を設定しました。<br>その後、nginx等のセットアップをしたりfirewallの設定をしたりするわけですが、すべて書いてしまうとセキュリティ的に問題がありそうなので、今回は別の内容の記事とします。</p>



<p class="wp-block-paragraph">現在使用しているOracle Cloud Always Freeでは、実行中であってもアイドル状態とみなされたインスタンスは停止されてしまうという情報を確認しました。<br>サイトが見られなくなってしまい困るので、アイドル状態とみなされないよう、一定の稼働率となるように調整する必要が出てきます。</p>



<p class="wp-block-paragraph"><a href="https://docs.oracle.com/ja-jp/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm">https://docs.oracle.com/ja-jp/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm</a><br>2026年4月現在、以下の条件のようです。</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>アイドル状態のコンピュート・インスタンスの再利用</strong></p>



<p class="wp-block-paragraph">アイドル状態のAlways Freeコンピュート・インスタンスは、Oracleによって再利用されることがあります。7日間の期間中に次のことが当てはまる場合、Oracleは仮想マシンおよびベア・メタル・コンピュート・インスタンスをアイドルとみなします:</p>



<ul class="wp-block-list">
<li>95%ileのCPU使用率が20%未満</li>



<li>ネットワーク使用率が20%未満</li>



<li>メモリー使用率が20%未満<em>(<a href="https://docs.oracle.com/ja-jp/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm#Details_of_the_Always_Free_Compute_instance__a1_flex">A1シェイプ</a>にのみ適用)</em></li>
</ul>
</blockquote>



<p class="wp-block-paragraph">こちらを回避するように、5%の時間において20%以上のCPU使用率とするため、crontabで設定します。</p>



<pre class="wp-block-code"><code>crontab -e</code></pre>



<p class="wp-block-paragraph">内容は以下とします。深夜の時間帯に3時間だけ25%の負荷をかける内容です。</p>



<pre class="wp-block-code"><code>0 18 * * * stress-ng --cpu 1 --cpu-load 25 --timeout 180m</code></pre>



<p class="wp-block-paragraph">現状インスタンスが停止されたことはないので、これでうまくいっていると思っています。</p>



<p class="wp-block-paragraph">参考:<a href="https://servercan.net/blog/2023/11/oracle-could-always-free%E3%81%AE%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%82%BF%E3%83%B3%E3%82%B9%E5%9B%9E%E5%8F%8E%E3%82%92%E9%98%B2%E3%81%90/">https://servercan.net/blog/2023/11/oracle-could-always-free%E3%81%AE%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%82%BF%E3%83%B3%E3%82%B9%E5%9B%9E%E5%8F%8E%E3%82%92%E9%98%B2%E3%81%90/</a></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/27/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Oracle Cloud でサーバを立てる:その1 メモリ編</title>
		<link>https://roishi.net/archives/22</link>
					<comments>https://roishi.net/archives/22#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Sun, 08 Mar 2026 02:48:58 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">https://roishi.net/?p=22</guid>

					<description><![CDATA[このサイトは Oracle Cloud を使用してホストしています。Oracle Cloud には無料で使用できるサーバがあり、それを使用している形になります(安いから)。導入するにしたがってやったことを備忘録として記事 ... <a title="Oracle Cloud でサーバを立てる:その1 メモリ編" class="read-more" href="https://roishi.net/archives/22" aria-label="Oracle Cloud でサーバを立てる:その1 メモリ編 についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">このサイトは Oracle Cloud を使用してホストしています。<br>Oracle Cloud には無料で使用できるサーバがあり、それを使用している形になります(安いから)。<br>導入するにしたがってやったことを備忘録として記事にしていこうと思います。</p>



<h2 class="wp-block-heading">メモリ少ない問題</h2>



<p class="wp-block-paragraph">まず、yum のアップデートを試みましたが、ここで問題が発生しました。<br>sudo yum update -y<br>上記コマンドを実行しても、しばらくして Killed になってしまいます。<br>調べると、メモリが小さいのが原因と思われるので、スワップファイルを増やすことにしました。</p>



<pre class="wp-block-code"><code># free -t -h
               total        used        free      shared  buff/cache   available
Mem:           503Mi       182Mi       165Mi       0.0Ki       177Mi       321Mi
Swap:          502Mi       156Mi       346Mi
Total:         1.0Gi       338Mi       512Mi
# dd if=/dev/zero of=/var/swap bs=1M count=1024
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 18.4546 s, 58.2 MB/s
# mkswap /var/swap
mkswap: /var/swap: insecure permissions 0644, fix with: chmod 0600 /var/swap
Setting up swapspace version 1, size = 1024 MiB (1073737728 bytes)
no label, UUID=ef53324e-d5ac-4864-a221-e4e9b2f8539b
# swapon /var/swap
swapon: /var/swap: insecure permissions 0644, 0600 suggested.
# chmod 600 /var/swap
# swapon /var/swap
swapon: /var/swap: swapon failed: Device or resource busy
# swapon -s
Filename                                Type            Size            Used            Priority
/.swapfile                              file            515068          159556          -2
/var/swap                               file            1048572         0               -3
# swapoff -a
# swapon -s
# swapon /var/swap
# swapon -s
Filename                                Type            Size            Used            Priority
/var/swap                               file            1048572         0               -2
# free -t -h
               total        used        free      shared  buff/cache   available
Mem:           503Mi       319Mi        11Mi       3.0Mi       197Mi       183Mi
Swap:          1.0Gi          0B       1.0Gi
Total:         1.5Gi       319Mi       1.0Gi</code></pre>



<p class="wp-block-paragraph">swapon でスワップ領域を設定し、swapoff でスワップ領域を外しています。<br>既に設定済みの場合はDevice or resource busyでエラーになるみたいです。<br>上記の動作で 500MiB 程度から 1.0GiB 程度に大きくしました。<br>しかしこれでも update は終了せず……</p>



<pre class="wp-block-code"><code># swapoff -a
# dd if=/dev/zero of=/.swapfile bs=4M count=1024
1024+0 records in
1024+0 records out
4294967296 bytes (4.3 GB, 4.0 GiB) copied, 83.422 s, 51.5 MB/s
# mkswap /.swapfile
Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
no label, UUID=53ed20a9-1a6c-4844-b306-437b10a3d5cb
# swapon /.swapfile
# swapon -s
Filename                                Type            Size            Used            Priority
/.swapfile                              file            4194300         0               -2
# free -t -h
               total        used        free      shared  buff/cache   available
Mem:           503Mi       324Mi        18Mi       3.0Mi       187Mi       179Mi
Swap:          4.0Gi          0B       4.0Gi
Total:         4.5Gi       324Mi       4.0Gi
</code></pre>



<p class="wp-block-paragraph">4GiB のスワップファイルを作成して設定することでどうにか update が終了しました。<br>ついでに<a href="https://www.reddit.com/r/oraclecloud/comments/1gxf6l1/how_to_handle_not_enough_memory_issues_with/?tl=ja">reddit</a>の情報をもとに、microdnf パッケージをインストールして、アップデートしてみました。<br>dnf キャッシュの自動更新も無効にしています。</p>



<pre class="wp-block-code"><code>dnf install microdnf
systemctl disable dnf-makecache.timer
microdnf update -y</code></pre>



<p class="wp-block-paragraph">今のところ問題なく動作しています。</p>



<p class="wp-block-paragraph">参考:<a href="https://webbibouroku.com/Blog/Article/linux-swaphttps://blog.freks.jp/create-swap-area/">https://webbibouroku.com/Blog/Article/linux-swap</a><br><a href="https://webbibouroku.com/Blog/Article/linux-swaphttps://blog.freks.jp/create-swap-area/">https://blog.freks.jp/create-swap-area/</a></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/22/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>AWS Certificated Solutions Architect &#8211; Professional (SAP-C02) 合格体験記</title>
		<link>https://roishi.net/archives/15</link>
					<comments>https://roishi.net/archives/15#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Wed, 11 Feb 2026 09:13:51 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">https://roishi.net/?p=15</guid>

					<description><![CDATA[1月に AWS Certificated Solutions Architect &#8211; Professional (SAP-C02) に合格しました。思ったよりいいスコアでした。 申し込んだのは12月で、1月3 ... <a title="AWS Certificated Solutions Architect &#8211; Professional (SAP-C02) 合格体験記" class="read-more" href="https://roishi.net/archives/15" aria-label="AWS Certificated Solutions Architect &#8211; Professional (SAP-C02) 合格体験記 についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">1月に AWS Certificated Solutions Architect &#8211; Professional (SAP-C02) に合格しました。<br>思ったよりいいスコアでした。</p>



<figure class="wp-block-image size-full"><img decoding="async" width="857" height="910" src="https://roishi.net/wp-content/uploads/2026/02/スクリーンショット-2026-01-31-211330.png" alt="" class="wp-image-16" srcset="https://roishi.net/wp-content/uploads/2026/02/スクリーンショット-2026-01-31-211330.png 857w, https://roishi.net/wp-content/uploads/2026/02/スクリーンショット-2026-01-31-211330-283x300.png 283w, https://roishi.net/wp-content/uploads/2026/02/スクリーンショット-2026-01-31-211330-768x815.png 768w" sizes="(max-width: 857px) 100vw, 857px" /></figure>



<p class="wp-block-paragraph">申し込んだのは12月で、1月31日に受験しました。<br>参考書は「AWS認定資格試験テキスト＆問題集　AWS認定ソリューションアーキテクト &#8211; プロフェッショナル」を買いました。金色のやつです。ブックオフでも初版ですが390円とかで買えたので今回はこちらを購入しました。<br>年末年始の休みを利用して読み進めました。</p>



<p class="wp-block-paragraph">Kindle Unlimited にたまたま加入していたので、無料でレンタルできる本の過去問集を解きましたが、今思い返すと別に解かなくていいと思います。<br>特に黒い背景の「AWS Certified Solutions Architect &#8211; Professional SAP-C02 出題予想問題集 第2版 470問: AWS認定 ソリューション アーキテクト &#8211; プロフェッショナル SAP-C02試験に対応　スマホで便利な一問一答形式　理解が深まる要点整理表つきの解法解説」は難しすぎました。</p>



<p class="wp-block-paragraph">最後の一週間でセールで安くなっていた<a href="https://www.udemy.com/share/10c28r3@u8JlB_DfFao6nNxPqIYFRY1vvVGRrbaiudPEtVsZx8ZOUO1xXvXFb6tk9gZXMfJB6g==/">Udemy</a>の問題集を購入し繰り返し解きました。<br>1周半ぐらいしかできなかったのですが、本番ではこの問題集と似たような問題(というかほぼ同じ？)が複数出てきたので安心しました。<br>過去問としてはこれを繰り返し解くだけで十分だと思いました。</p>



<p class="wp-block-paragraph">試験当日は渋谷さくら坂テストセンターで受験しました。自宅受験はトラブルになった時が怖いのでなるべく外で受験したい派です。<br>問題は長文が多いので、集中力が必要だと思いました。一応数十分を残して一通り回答できたため、見直しする時間も取れました。<br>ちなみにあまり手ごたえはありませんでした。あてにならないものですね……</p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/15/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ブログ始めました</title>
		<link>https://roishi.net/archives/6</link>
					<comments>https://roishi.net/archives/6#respond</comments>
		
		<dc:creator><![CDATA[roishi]]></dc:creator>
		<pubDate>Sun, 08 Feb 2026 05:49:36 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<guid isPermaLink="false">http://64.110.105.182/?p=6</guid>

					<description><![CDATA[タイトル通り、このサイトを立ち上げました。前もVPSでサイトをホストしていましたが、かかる料金を負担に感じたためやめてしまっていました。今回改めて調べて、かかるコストを低くした形で再開します。前回のサイトのデータが今手元 ... <a title="ブログ始めました" class="read-more" href="https://roishi.net/archives/6" aria-label="ブログ始めました についてさらに読む">続きを読む</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">タイトル通り、このサイトを立ち上げました。<br>前もVPSでサイトをホストしていましたが、かかる料金を負担に感じたためやめてしまっていました。<br>今回改めて調べて、かかるコストを低くした形で再開します。<br>前回のサイトのデータが今手元のパソコンの中にないか探していますが、前の記事をエクスポートしていないかもしれないです……<br>というわけで一からのスタートになります。<br>今回は長く続ける予定なので、よろしくお願いいたします。</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://roishi.net/archives/6/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
