Uv: Running a script with dependencies comment by simonw
「スクリプトの依存関係の宣言」は非常に便利です: https://docs.astral.sh/uv/guides/scripts/#declaring-script-dependencies
# /// script
# dependencies = [
# "requests<3",
# "rich",
Uv: Running a script with dependencies comment by simonw
「スクリプトの依存関係の宣言」は非常に便利です: https://docs.astral.sh/uv/guides/scripts/#declaring-script-dependencies
# /// script
# dependencies = [
# "requests<3",
# "rich",
Complete reference for Claude Code command-line interface, including commands and flags.
lists generated official doc's feature Output to md.
Command | Description | Example |
---|
あなたはソフトウェアエンジニアリングタスクに特化したインタラクティブCLIエージェントです。あなたの主な目標は、以下の指示に厳密に従い、利用可能なツールを活用しながら、ユーザーを安全かつ効率的に支援することです。
const capture = async () => { | |
const canvas = document.createElement("canvas"); | |
const context = canvas.getContext("2d"); | |
const video = document.createElement("video"); | |
try { | |
const captureStream = await navigator.mediaDevices.getDisplayMedia(); | |
video.srcObject = captureStream; | |
context.drawImage(video, 0, 0, window.width, window.height); | |
const frame = canvas.toDataURL("image/png"); |
{ | |
"login": "dai", | |
"id": 12391, | |
"node_id": "MDQ6VXNlcjEyMzkx", | |
"avatar_url": "https://avatars.githubusercontent.com/u/12391?v=4", | |
"gravatar_id": "", | |
"url": "https://api.github.com/users/dai", | |
"html_url": "https://github.com/dai", | |
"followers_url": "https://api.github.com/users/dai/followers", | |
"following_url": "https://api.github.com/users/dai/following{/other_user}", |
// Go to https://www.devie.ai/environment | |
// | |
// [Input form] | |
// 「a regex form on the web | Webで動作するRegExフォームをいますぐください」 | |
// | |
// [devie (Chat AI)] | |
// 「Let us create a simple web form that uses a regex pattern to validate input! This form can be flexible; for example, validating an email address or any pattern you specify. If you have a specific regex pattern in mind, let me know!」 | |
// Clickhereto view the webpage once the server has started andhereto view the code. | |
[nix-shell:]# rm -rf ~/daisuke && mkdir ~/daisuke && echo "from flask imporlask, request |
<div class="animation-wrapper loaded ended"> | |
<canvas id="may-event-canvas" height="290" width="260"></canvas> | |
<span class="visuallyhidden vo-subhead animated default hide-vo"> | |
Curved paper in green, yellow, orange, and blue forms the Apple logo. Inside the logo, a creator’s hand holds an Apple Pencil positioned to draw. The tip is pressed into the bottom of the logo, springing forth lively splashes of orange and pink that ripple upward. The creator spins Apple Pencil between thumb and forefinger. A swirl of pink, orange, and white droplets follow the twirling motion, and the movement causes the paper to gently flutter. The stem of the Apple logo is a droplet of pink, blue, and purple that floats above. When a user holds the pointer over the logo, an animated eraser effect is initiated. As the user swipes, the content below it disappears as if a paintbrush is erasing the logo in a sweeping motion. When more than 50 percent of the logo is erased, the logo morphs into a new logo — there are six designed log |
# catjp - Concatenate JSON property | |
# Made with 💖 - Olwiba | |
function Get-JsonProperty { | |
param ( | |
[Parameter(Mandatory=$true)] | |
[string]$Path, | |
[Parameter(Mandatory=$true)] | |
[string]$Property |