| name | tech-article-ja |
|---|---|
| description | 日本語の技術記事をZenn等のカジュアルな技術ブログ向けに執筆支援するスキル。 設計(スコープ・構成の決定)→ 執筆(セクション単位の本文生成)→ 校正(AI smellの除去と文体チェック)の3段階を会話の中で順番に進める。 「記事を書きたい」「技術ブログのネタがある」「この記事の構成を考えて」「このセクションを書いて」「AI smellを消して」「校正して」のような依頼が来たときに使う。 設計だけ・執筆だけ・校正だけの部分的な依頼にも対応する。 |
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
| // lib/main.dart | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_inappwebview/flutter_inappwebview.dart'; | |
| import 'webview_config_stub.dart' | |
| if (dart.library.io) 'webview_config_native.dart' | |
| if (dart.library.html) 'webview_config_web.dart' | |
| if (dart.library.js_interop) 'webview_config_web.dart'; |
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
| #!/bin/sh | |
| # Application specific configuration | |
| SOLUTION_NAME="LibrarySystem" | |
| FEATURES=("Users" "Books" "Lending" "Reserving") | |
| API_PROJECT_NAME="${SOLUTION_NAME}.Presentaion.API" | |
| DOMAIN_PROJECT_NAME="${SOLUTION_NAME}.Domain" | |
| APPLICATION_PROJECT_NAME="${SOLUTION_NAME}.Application" | |
| DATABASE_PROJECT_NAME="${SOLUTION_NAME}.Infrastructure.Database" |
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
| SQLite version 3.50.4 2025-07-30 19:33:53 | |
| Enter ".help" for usage hints. | |
| sqlite> .schema | |
| CREATE TABLE IF NOT EXISTS "__EFMigrationsLock" ( | |
| "Id" INTEGER NOT NULL CONSTRAINT "PK___EFMigrationsLock" PRIMARY KEY, | |
| "Timestamp" TEXT NOT NULL | |
| ); | |
| CREATE TABLE IF NOT EXISTS "__EFMigrationsHistory" ( | |
| "MigrationId" TEXT NOT NULL CONSTRAINT "PK___EFMigrationsHistory" PRIMARY KEY, | |
| "ProductVersion" TEXT NOT NULL |
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
| [package] | |
| name = "utoipa_scalar_example" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [dependencies] | |
| axum = "0.7" | |
| tokio = { version = "1", features = ["full"] } | |
| utoipa = { version = "4", features = ["axum_extras"] } | |
| utoipa-swagger-ui = "5" |
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 { useState } from "react"; | |
| import { Controller, useForm } from "react-hook-form"; | |
| import { | |
| Alert, | |
| Button, | |
| Checkbox, | |
| CircularProgress, | |
| FormControlLabel, | |
| MenuItem, | |
| Snackbar, |
coursier はScalaやJavaのパッケージやツール(例:sbt、scala、scala-cli、jvm など)を素早くインストール・管理できるツール。
# On Linux x86-64 (aka AMD64)
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
| #!/usr/bin/env bash | |
| set -e | |
| INSTALL_DIR="$HOME/.dotnet" | |
| VERSION_PREFIX="" | |
| RUNTIMES=() | |
| DRY_RUN=false | |
| AUTO_YES=false | |
| LIST_MODE=false |
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
| [package] | |
| name = "rustyfeed" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [dependencies] | |
| clap = { version = "4.5.32", features = ["derive"] } | |
| reqwest = "0.12.15" | |
| serde = { version = "1.0.219", features = ["derive"] } | |
| syndication = "0.5.0" |
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
| # About: | |
| # Dockerfile for SML# a Standard ML family programming language | |
| # See: | |
| # https://github.com/smlsharp/smlsharp | |
| # Usage: | |
| # docker build -t smlsharp . | |
| # docker run --rm -it smlsharp:latest rlwrap smlsharp | |
| # | |
| FROM --platform=linux/x86-64 debian:buster |
NewerOlder