Skip to content

Instantly share code, notes, and snippets.

@mrhyde
mrhyde / startup-time-of-zsh.md
Created February 28, 2019 00:35 — forked from laggardkernel/startup-time-of-zsh.md
Comparison of ZSH frameworks and plugin managers

Comparison of ZSH frameworks and plugin managers

Update 1: Add a FAQ section.

Original:

I've been trying different plugin mangers for months to find the fastest one. The content below is what I got. For the record, the conclusion is very subjective. But it's the truth for me. I would appreciate hearing your thoughts on this. Here it begins.

Display what I got after this long journey. (BTW, I has an SSD on my machine, the data should be much different on HDDs.)

@mrhyde
mrhyde / msys2-setup.md
Created February 27, 2019 20:53 — forked from roblogic/msys2-setup.md
MSYS2 first time setup

MSYS2 is a minimalist linux/unix shell environment for Windows.

Quote: "A modern replacement for MSYS bringing recent versions of the GNU toolchains, Git and other common Unix command line tools to the Windows platform"

1. Install

Do all the steps listed here: http://msys2.github.io/
(troubleshooting guide here: https://github.com/msys2/msys2/wiki/MSYS2-installation )

2. Set up proxies

@mrhyde
mrhyde / coreos-docker-compose-install.sh
Last active January 2, 2017 23:47 — forked from tropicloud-2k/docker-compose-install.sh
Docker Compose on CoreOS >= 717.0.0
#!/bin/bash
mkdir -p /opt/bin
curl -L `curl -s https://api.github.com/repos/docker/compose/releases/latest \
| jq -r '.assets[].browser_download_url \
| select(contains("Linux") and contains("x86_64"))'` \
> /opt/bin/docker-compose
chmod +x /opt/bin/docker-compose