Skip to content

Instantly share code, notes, and snippets.

View MareMare's full-sized avatar

MareMare MareMare

  • 18:19 (UTC +09:00)
View GitHub Profile
@MareMare
MareMare / SKILL.md
Created June 24, 2026 05:17 — forked from k16shikano/SKILL.md
japanese-tech-writing/SKILL
name japanese-tech-writing
description 日本語の技術文書・書籍原稿の文章規範。整形(一文一行、引用ブロック、脚注、コラム記法)、段落と論証の構成(パラグラフライティング)、論証の厳密さ(ツッコミどころの除去)、読み手の負荷の管理、視点と語り、演出の抑制、LLM っぽい空句の禁止、冗長の排除を定める。日本語で技術書の章、草稿、記事、解説文を書くとき、または推敲・リライトするときに使用する。

日本語技術文書の文章規範

日本語で技術的な原稿(書籍の章、記事、解説文)を書く・推敲するときは、以下の規範に従う。

整形

@MareMare
MareMare / Building a project that target .NET Framework 4.5 in Visual Studio 2022.md
Last active December 23, 2022 07:43
Building a project that target .NET Framework 4.5 in Visual Studio 2022
@MareMare
MareMare / scottplot-issue-2132.md
Last active September 22, 2022 08:28
DateTimeTickUnits: The X-axis of `DateTime` mixture 24-hour and 12-hour notation.

ScottPlot/ScottPlot#2132


DateTimeTickUnits: The X-axis of DateTime mixture 24-hour and 12-hour notation.

Zoom in on a graph displaying DateTime data on the X-axis with the mouse wheel or right-click.

In this case, the 24-hour and 12-hour displays show different times, depending on whether they zoom to the nearest second or include milliseconds. It appears that 24-hour notation is used for zooms that display up to seconds, and 12-hour notation is used for zooms that also display milliseconds.

@MareMare
MareMare / Form1.cs
Last active April 19, 2022 05:48
ScottPlot: How to remove list of text labels
using ScottPlot;
using ScottPlot.Plottable;
namespace ScottPlot_Issue1784;
public partial class Form1 : Form
{
private readonly List<IPlottable> _texts = new ();
public Form1()
@MareMare
MareMare / ScottPlot_DemoForm6.cs
Last active April 4, 2022 18:39
ScottPlot: I want to display the value of the data point closest to the cursor from data containing gaps.
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
namespace ScottPlotSandbox.NET48
{
public partial class DemoForm6 : Form
@MareMare
MareMare / GetAsyncWithCancellation2.cs
Last active June 7, 2019 19:12
GetAsyncWithCancellation2
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
@MareMare
MareMare / GetAsyncWithCancellation.cs
Last active November 24, 2016 01:09
#Snmp(v.9.0.3) GetAsync With Cancellation.
using System;
using System.Collections.Generic;
using System.Net;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using Lextm.SharpSnmpLib;
using Lextm.SharpSnmpLib.Messaging;
namespace SandboxForGetAsync