Skip to content

Instantly share code, notes, and snippets.

View souri-t's full-sized avatar

HIYOSHI YOSUKE(Andy) souri-t

View GitHub Profile
@souri-t
souri-t / table.md
Last active October 10, 2025 02:19
mode
agent

指示

  1. templete/estimate01.md にある見積書テンプレート(Markdown形式)をコピーして開いてください。
  2. 新たな要件が記載されたPDFファイルを解読し、内容を正確に把握してください。
  3. PDFから抽出した要件を、見積書テンプレートの指定された章に追記・編集してください。
  4. 章ごとに要件が適切に整理されていることを確認してください。

ITイベント・講習

カンファレンスイベント

@echo off
setlocal enabledelayedexpansion
REM --- 設定項目 ---
REM コピー元 (Sourceフォルダ) のパス
set "SOURCE_FOLDER=C:\Path\To\Your\SourceFolder"
REM コピー先 (Destinationフォルダ) のパス、クリーンアップ対象
set "DESTINATION_FOLDER=C:\Path\To\Your\DestinationFolder"
REM Destinationフォルダで保持し、Sourceフォルダからのコピー時に除外するファイル (スペース区切りで複数指定)
@page "/ganttchart"
@inject IJSRuntime JSRuntime
<h3>Gantt Chart</h3>
<div id="gantt"></div>
<button @onclick="GetGanttChartData">Get Gantt Chart Data</button>
@code {
評価用プロンプトの例
タスク:与えられた業務オペレーションを要約して回答してください。
###(プロンプト)###
LLM : ###(回答)###
評価基準:
* 正確性:要約は業務の重要な情報を正確に反映しているか?
* 流暢さ:要約は自然な日本語で書かれているか?
* 関連性:要約は業務の主な作業内容と関連性があるか?
網羅性:要約は業務の主要なポイントを網羅しているか?
期待される出力:業務内容の主要なポイントを簡潔かつ正確にまとめた文章。
@souri-t
souri-t / marp-sample.md
Created July 13, 2024 10:27
marp-sample.md

marp: true theme: default header: "ヘッダータイトル1 ヘッダータイトル2" footer: "by Auther"

size: 16:9 paginate: true

style: |

import { Select, SelectChangeEvent, TableCell } from "@mui/material";
/**
* 選択可能なテーブルセルのプロパティ
* @param param0
* @returns
*/
type Props = {
onchange?: (e: SelectChangeEvent<unknown>, child: React.ReactNode) => void;
children?: React.ReactNode;
import { TableCell } from "@mui/material";
/**
* 編集可能なテーブルセルのプロパティ
*/
type Props = {
onInput?: (e: React.FormEvent<HTMLTableCellElement>) => void;
children?: React.ReactNode;
sx?: React.CSSProperties;
size?: "small" | "medium";

要素数が増減する場合は、以下のようにして処理を行うことができます。

[HttpPut("{id}")]
public async Task<IActionResult> Put(int id, [FromBody] Parent parent)
{
    if (id != parent.Id)
    {
        return BadRequest();
    }