Skip to content

Instantly share code, notes, and snippets.

@skyzyx
skyzyx / homebrew-gnubin.md
Last active March 31, 2025 19:27
Using GNU command line tools in macOS instead of FreeBSD tools

macOS is a Unix, and not built on Linux.

I think most of us realize that macOS isn't a Linux OS, but what that also means is that instead of shipping with the GNU flavor of command line tools, it ships with the FreeBSD flavor. As such, writing shell scripts which can work across both platforms can sometimes be challenging.

Homebrew

Homebrew can be used to install the GNU versions of tools onto your Mac, but they are all prefixed with "g" by default.

All commands have been installed with the prefix "g". If you need to use these commands with their normal names, you can add a "gnubin" directory to your PATH from your bashrc.

@tanyuan
tanyuan / smart-caps-lock.md
Last active March 26, 2025 00:15
Smart Caps Lock: Remap Caps Lock to Control AND Escape

Smart Caps Lock: Remap to Control AND Escape (Linux, Mac, Windows)

Caps Lock 變成智慧的 Control 以及 Escape

  • 單獨輕按一下就是 Escape
  • 若按下時同時按著其他鍵,就會是 Control

這應該是 Vim 和 Emacs 的最佳解了!(Emacs? Bash 的快捷鍵就是 Emacs 系列的)

  • Send Escape if you tap Caps Lock alone.
@xero
xero / irc.md
Last active January 31, 2025 15:06
irc cheat sheet
@takuya-murao
takuya-murao / disable-onmousedown-in-google-search-results-page.user.js
Last active October 14, 2022 01:07
Disable onmousedown in Google search results page
// ==UserScript==
// @name Disable onmousedown in Google search results page
// @namespace https://gist.github.com/3081371
// @include http://www.google.*/search?*
// @include https://www.google.*/search?*
// ==/UserScript==
(function () {
var disableOnmousedown = function (node) {
var a, i;