2022-10-03 Big O Notation / makdown link bookmarklet
Big O Notation
よく O(1), O(n) とかでみる記号のアレ。
makdown link bookmarklet
Chromeの拡張が使えないときに便利なブックマークレット。
Webページからマークダウンリンクを作るブックマークレットコードは下記。
javascript:!function(){var e=document.createElement("textarea"),t=document.title.replace(/\[/g,"\\[").replace(/]/g,"\\]").replace(/\|/g,"\\|"),c=document.URL.replace(/\(/g,"%2528").replace(/\)/g,"%2529");e.textContent="["+t+"]("+c+")",document.querySelector("body").append(e),e.select(),document.execCommand("copy"),e.remove()}();