- 開発生産性カンファレンス
2025年7月3日(土) ※毎年7月頃開催
公式サイト
connpassページ
おすすめ度:高
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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フォルダからのコピー時に除外するファイル (スペース区切りで複数指定) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @page "/ganttchart" | |
| @inject IJSRuntime JSRuntime | |
| <h3>Gantt Chart</h3> | |
| <div id="gantt"></div> | |
| <button @onclick="GetGanttChartData">Get Gantt Chart Data</button> | |
| @code { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 評価用プロンプトの例 | |
| タスク:与えられた業務オペレーションを要約して回答してください。 | |
| ###(プロンプト)### | |
| LLM : ###(回答)### | |
| 評価基準: | |
| * 正確性:要約は業務の重要な情報を正確に反映しているか? | |
| * 流暢さ:要約は自然な日本語で書かれているか? | |
| * 関連性:要約は業務の主な作業内容と関連性があるか? 網羅性:要約は業務の主要なポイントを網羅しているか? | |
| 期待される出力:業務内容の主要なポイントを簡潔かつ正確にまとめた文章。 |
marp: true theme: default header: "ヘッダータイトル1 ヘッダータイトル2" footer: "by Auther"
size: 16:9 paginate: true
style: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Select, SelectChangeEvent, TableCell } from "@mui/material"; | |
| /** | |
| * 選択可能なテーブルセルのプロパティ | |
| * @param param0 | |
| * @returns | |
| */ | |
| type Props = { | |
| onchange?: (e: SelectChangeEvent<unknown>, child: React.ReactNode) => void; | |
| children?: React.ReactNode; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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();
}NewerOlder