This serves as a quick reference and showcase of GitHub Flavored Markdown. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
| root = true | |
| # C# files | |
| [*.cs] | |
| #### Core EditorConfig Options #### | |
| # Indentation and spacing | |
| indent_size = 4 | |
| indent_style = space |
| # This is the root .editorconfig file, meaning all settings here take precedence. | |
| root = true | |
| # Global settings for all file types | |
| [*] | |
| # Use UTF-8 encoding for better character support | |
| charset = utf-8 | |
| # Enforce LF (Line Feed) as the default line ending for cross-platform compatibility | |
| end_of_line = lf |
In this brief guide, I will share what I've learned about archiving live webpages and recovering deleted webpages using various archive services.
I highly recommend installing the Web Archives extension in your web browser (Chrome, Firefox). It provides quick access to archive services and search engine caches.
- Wayback Machine: Best and largest webpage archive. You probably already use it. Wayback Machine is the only archival service that also performs automated crawling, so its coverage is much better than other archives. See usage tips on Wikipedia.
- Archive.today (also known as Archive.is): A mid-sized service that takes
| // ==UserScript== | |
| // @name Yahooオークション右クリ禁止削除 | |
| // @namespace https://gist.github.com/slimymars/66e2318a559b79272ad7f51ec45c3c8b | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description Yahooオクのimg右クリ禁止を削除します。削除範囲は過剰になってますが動けばいいのだ。 | |
| // @match https://page.auctions.yahoo.co.jp/jp/auction/* | |
| // @match https://auctions.yahoo.co.jp/jp/auction/* | |
| // @require https://code.jquery.com/jquery-3.6.0.slim.min.js |
PayPay のリバースエンジニアリングに関するメモたち
長らくX11とi3wmを使っていたが、重い腰を上げてWaylandに入門してみた。
Hyprland、Sway等、wl-toolsベースのWaylandコンポジタを使用している場合、スクリーンショット/スクリーンキャストを撮るには、grim や wf-recorder 等のツールを使う。 小さなユーティリティを柔軟に組み合わせて目的を達成するやり方が面白かったのでここにメモする。
This will serve as a step-by-step guide for creating a URL shortener with Cloudflare Workers. The project is a fork of Atomic URL by Jerry Ng, although I've heavily modified it to suit my needs.
In addition to leveraging Cloudflare Workers, this project will also leverage the following...
- Wrangler (the CLI for working with Workers)
- Workers KV (database storage for Workers)