brew install colima docker
colima start
colima stop
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| I needed a button in the Firefox UI to toggle the default page zoom level | |
| setting offered by the NoSquint extension (shown as "extensions.nosquint.fullZoomLevel" | |
| in about:config). Since this isn't likely to be provided directly and I | |
| wasn't interested in writing my own extension for something so simple, I | |
| looked for an extension that would expose about:config settings to buttons. | |
| Instead, I found the Custom Buttons extension: | 
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # Script to safely provide access to tech-support over-the-network. | |
| # Uses 'ssh' for connection | |
| # 'screen' for terminal screen-sharing | |
| # The COMMAND a few lines below limits tech-support's access, | |
| # so they can't have absolute control over your system without supervision | |
| # For developers: change SSH public key and name ('pritam') before sending this out to customers | |
| # Dev. usage: ssh -t user@hostname. -t (force create pty) is compulsory. |