2024-09-01から1ヶ月間の記事一覧
Discordボットトークンを入手する手順 Discordデベロッパーポータルにアクセス: ブラウザで https://discord.com/developers/applications にアクセスします。 新しいアプリケーションを作成: 右上の「New Application」ボタンをクリックします。 アプリケー…
Discord Developer Portalにアクセス: https://discord.com/developers/applications にブラウザでアクセスし、ログインします。 アプリケーション(Bot)を選択: 既存のBotを使用する場合は、そのBotを選択します。新しいBotを作成する場合は、「New Applic…
1分に1回、タスクスケジューラ等で呼ぶこと前提。 import asyncio from datetime import datetime, timedelta import pytz import requests from bs4 import BeautifulSoup import discord import aiohttp # Discordボットのトークン DISCORD_TOKEN = 'Disco…
void SetDateFromYYYYMMDD(CDateTimeCtrl& dateTimeCtrl, int yyyymmdd) { COleDateTime date; int year = yyyymmdd / 10000; int month = (yyyymmdd % 10000) / 100; int day = yyyymmdd % 100; date.SetDate(year, month, day); dateTimeCtrl.SetTime(date…
<html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>日付に応じたリダイレクト</title> </head> <body> <script> // 現在の日付を取得 const currentDate = new Date(); // 日にちを取得(1-31) const dayOfMonth = currentDate.getDate(); // 偶数日か奇数日かを…</body></html>
powershellで以下を実行 $file = "C:\path\to\your\file.txt" $fileStream = [System.IO.File]::Open($file, 'Open', 'Read', 'None')
#include <cstring> #include <cctype> // ... if (strlen(p) > 4) { const char* ext = p + strlen(p) - 4; if (_stricmp(ext, ".csv") == 0) { // 拡張子が .csv または .CSV } }_stricmp()は大文字小文字区別しない比較関数。</cctype></cstring>