- Windows 11 (コマンドプロンプト)
- RTX3060
- Python 3.11.9
python -m venv sara_env
sara_env\Scripts\activate
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu126
| #include <M5Unified.h> | |
| #include <WiFi.h> | |
| #include <time.h> | |
| #include <sys/time.h> | |
| // ------------------------------------------------- | |
| // 設定エリア | |
| // ------------------------------------------------- | |
| const char* ssid = "YOUR-SSID"; // Wi-FiのSSID | |
| const char* password = "YOUR-PASSWORD"; // Wi-Fiのパスワード |
| 函館 | 988 | |
|---|---|---|
| 函館駅前 | 729 | |
| 五稜郭 | 55036 | |
| 桔梗 | 25606 | |
| 大中山 | 8201 | |
| 七飯 | 13006 | |
| 新函館北斗 | 8295 | |
| 仁山 | 478 | |
| 大沼 | 665 | |
| 大沼公園 | 548 |
| <!doctype html> | |
| <meta charset="utf-8"> | |
| <title>X ±2日 bookmarklet</title> | |
| <style> | |
| body { font: 16px/1.6 system-ui, sans-serif; padding: 24px; } | |
| a.btn { display:inline-block; padding:10px 14px; border-radius:9999px; | |
| text-decoration:none; border:1px solid #ccc } | |
| code { background:#f6f8fa; padding:2px 6px; border-radius:6px } | |
| </style> | |
| <h1>「X ±2日」ブックマークレット</h1> |
| // | |
| // M5Stack Basic (M5Stack Core)で災危通報を表示 | |
| // 2025/08/02 @ksasao | |
| // | |
| // ソースコードは | |
| // https://www.switch-science.com/blogs/magazine/gps-qzss-dc-report-dcx-receiving の記事にある | |
| // https://github.com/SWITCHSCIENCE/samplecodes/tree/master/GPS_shield_for_ESPr/espr_dev_qzss_drc_drx_decode | |
| // を元に画面表示を追加したものです。 | |
| // 機材などの詳細は https://x.com/ksasao/status/1951457364667932775 を参照してください |
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>文字縁取りサンプル</title> | |
| <link href="https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Arial', sans-serif; |
| Congratulate | |
| GetAttention | |
| Idle1_1 | |
| Show | |
| Greeting | |
| Hide | |
| Goodbye | |
| RestPose | |
| Wave | |
| Hearing_1 |
| import cv2 | |
| import numpy as np | |
| import sys | |
| video_path = 'your_movie_file.mp4' | |
| cap = cv2.VideoCapture(video_path) | |
| if not cap.isOpened(): | |
| print("動画を開けませんでした") |
| // 8pin RISC-V マイコン CH32V003J4M6 で気圧変化を可視化します | |
| // 気圧センサの生データを直接参照し温度補正等をしていないことに注意してください | |
| // https://x.com/ksasao/status/1918255371950670254 | |
| // | |
| // ■ 開発環境 | |
| // Arduino IDE 2.3.6 | |
| // Boards Manager: CH32 MCU EVT Boards 1.0.4 | |
| // https://github.com/openwch/board_manager_files/raw/main/package_ch32v_index.json | |
| // Board: CH32V00x | |
| // ■ パーツ |
| // 8pin RISC-V マイコン CH32V003J4M6 で NeoPixel Lチカ | |
| // https://x.com/ksasao/status/1917595665515045326 | |
| // ■ パーツ | |
| // CH32V003J4M6 https://akizukidenshi.com/catalog/g/g118062/ | |
| // マイコン内蔵RGBLEDモジュール https://akizukidenshi.com/catalog/g/g108414/ | |
| // | |
| // コードはほぼ下記を参照しています | |
| // amanoya3: ArduinoでRISC-VマイコンCH32V003にNeoPixelのLEDをつないでみた | |
| // https://ameblo.jp/pta55/entry-12813320408.html |