-
Recent Posts
Recent Comments
Archives
Categories
Meta
Category Archives: Notes
Git notes
Git is such an important tool that it deserves its own notes page. How to specify a private SSH key You’ll need this if you have more than one GitHub (or similar service) accounts. It looks like you can’t use … Continue reading
Posted in Notes, SoftwareEngineering
Comments Off on Git notes
Web development notes
Tools/services JavaScript/HTML HttpOnly cookies HttpOnly cookies cannot be read using JavaScript. Source: https://stackoverflow.com/q/8064318/526189 Enable ClipboardItem in Firefox From version 87: this feature is behind the dom.events.asyncClipboard.clipboardItem preference (needs to be set to true). To change preferences in Firefox, visit about:config. … Continue reading
Posted in Notes, SoftwareEngineering
Comments Off on Web development notes
Vim notes
Start here inoremap and white spaces Just found out that white spaces matter in inoremap mappings, the following are not equivalent (notice the space after <Esc>): The extra white space after <Esc> was causing the command to fail when positioned … Continue reading