Skip to content

Instantly share code, notes, and snippets.

View zuzhi's full-sized avatar

zuzhi hu zuzhi

View GitHub Profile
@zuzhi
zuzhi / Emacs_starter.pl
Created February 17, 2023 10:04 — forked from railwaycat/Emacs_starter.pl
Start Emacs.app from CLI
#!/usr/bin/perl
# Emacs starter for Emacs mac port
# Thanks to Aquamacs Project and David Reitter
my $args = "";
my $tmpfiles = "";
for my $f (@ARGV) {
@zuzhi
zuzhi / doom.txt
Created June 25, 2021 02:50 — forked from hjertnes/doom.txt
Doom Emacs Cheatsheet
SPC
SPC: find file
, switch buffer
. browse files
: MX
; EX
< switch buffer
` eval
u universal arg
x pop up scratch
@zuzhi
zuzhi / API.md
Last active September 18, 2017 00:38 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@zuzhi
zuzhi / FileTreeMaker.py
Last active September 17, 2017 05:29 — forked from legendmohe/FileTreeMaker.py
FileTreeMaker
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""FileTreeMaker.py: ..."""
__author__ = "legendmohe"
import os
import argparse
import time