Created time: May 19, 2025 3:50 PM
Done/WIP: No
Formula: 0 days 0 hours have passed
Last edited time: May 19, 2025 3:50 PM
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 zsh | |
set -e | |
# Project skeleton generator for Copilot Agent integration (zsh compatible) | |
# Creates directories and scaffold files with basic placeholders | |
# Create directories | |
for dir in docs docs/adr docs/api docs/diagrams .github src tests; do | |
mkdir -p "$dir" | |
done |
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
// copyright 2024 BotanicFields, Inc. | |
// BF-018 Rev.3 | |
// JJY Simulator for M5StickC / M5StickC Plus / M5StickC Plus2 | |
// | |
#include <M5Unified.h> | |
#include <Ticker.h> | |
#include <WiFi.h> | |
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager | |
#include "BF_Pcf8563.h" | |
#include "BF_RtcxNtp.h" |
import { AzureFunction, Context, HttpRequest } from "@azure/functions";
import { CosmosClient } from "@azure/cosmos";
// 遅延を発生させる関数
const delay = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
// Cosmos DB のクライアント設定
const cosmosClient = new CosmosClient({
endpoint: "YOUR_COSMOS_DB_ENDPOINT",
AzCopy の Table Storage に対応したバージョンAzCopy 7.3 (https://aka.ms/downloadazcopynet) を利用することができます。
- Table data の ダウンロード(エクスポート)
PS> AzCopy /Source:https://myaccount.table.core.windows.net/myTable/ /Dest:C:\myfolder\ /SourceKey:key
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
git clone git@github.com:cncf/landscape.git |
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
[Unit] | |
Description = ddns update daemon | |
After=network.target auditd.service | |
[Service] | |
ExecStart = /usr/local/bin/noip2 -c /usr/local/etc/no-ip2.conf | |
#ExecReload = /usr/bin/pkill -HUP noip2 | |
ExecStop = /usr/bin/pkill noip2 | |
Restart = always | |
KillMode = process |
Below are a set of best practices that I recommend for most customers. This information is based on my experience helping hundreds of Azure Redis customers investigate various issues.
- Use Standard or Premium Tier for Production systems. The Basic Tier is a single node system with no data replication and no SLA. Also, use at least a C1 cache. C0 caches are really meant for simple dev/test scenarios since they have a shared CPU core, very little memory, are prone to "noisy neighbor", etc.
- Remember that Redis is an In-Memory data store. Read this article so that you are aware of scenarios where data loss can occur.
- Configure your client library to use a "connect timeout" of at least 10 to 15 seconds, giving the system time to connect even under higher CPU conditions. If your client or server tend to be under high load
NewerOlder