2023-01-01から1年間の記事一覧

html imports ~共通部分を外部から非同期で読み込み~

<script>(async () => document.querySelector('#foo').append(document.createRange().createContextualFragment(await (await fetch('bar.html')).text())))();</script>

pagereveal event

Chrome Platform Status https://chromestatus.com/feature/5205586941837312 https://chromestatus.com/features#firstrender https://chromestatus.com/features#pagereveal

<link> <script> <style> blocking="render"

blocking render https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link#blocking https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#blockinghttps://developer.mozilla.org/en-US/docs/Web/HTML/Element/style#blocking caniu…

Python pywin32(win32com) Excel Pivot Table 操作備忘録

[はじめに] Python pywin32(win32com) Excel 操作備忘録の続編的な操作備忘録のピボットテーブル編です。 ノンプログラマーの素人が記述をしたコードです。狭い利用範囲と少ない利用頻度での確認ですので、記載内容に間違いや勘違いがあるかもしれません。…

手書き風グラフを描いてくれるJavaScriptライブラリroughViz.js

手書き風グラフを描いてくれるJavaScriptライブラリroughViz.js@1.0.6の備忘録です。 Note1 線グラフでX軸の項目は、xに文字列なり数値なりを配列で指定することで設定可能なようです。後述のSampleでは線グラフのX軸の項目に数値を表示させています。 Note2…

CLIでelectron-builder

Windows64bitインストーラ作成 Windows64bit実行ファイル作成 Windows64bit実行ファイル作成(アイコン画像設定) Windows64bit実行ファイル作成(アイコン画像設定とファイル名指定) Windows64bit実行ファイル作成(アイコン画像設定とテンプレートリテラ…