Skip to content

Instantly share code, notes, and snippets.

View Superbil's full-sized avatar
:shipit:
Working in Cloud

Superbil Superbil

:shipit:
Working in Cloud
View GitHub Profile
@Superbil
Superbil / index.js
Created August 22, 2014 05:46 — forked from edokeh/index.js
保佑沒 Bug
//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
@Superbil
Superbil / version.sh
Last active August 29, 2015 14:06 — forked from osteslag/version.sh
#!/bin/sh
# Script for managing build and version numbers using git and agvtool.
# Change log:
# v1.0 18-Jul-11 First public release.
# v1.1 29-Sep-12 Launch git, agvtool via xcrun.
version() {
@Superbil
Superbil / howto.md
Created October 15, 2014 03:57
Clean up Archlinux

List installed package list

pacman -Qqen > pkglist.txt

Clean up pkglist.txt

Remove package and all dependencies

@Superbil
Superbil / update.sh
Last active August 29, 2015 14:09
Update to last jerry
#!/usr/bin/env sh
git remote add jerry [email protected]:668Jerry/1129ios.git
git remote update
git checkout -b jerry-master jerry/master
@Superbil
Superbil / ascii_buddha_bless
Last active September 14, 2023 15:46 — forked from racklin/index.js
Buddha bless, never BUG
_oo0oo_
o8888888o
88" . "88
(| -_- |)
0\ = /0
___/`---'\___
.' \\| |# '.
/ \\||| : |||# \
/ _||||| -:- |||||- \

Manage your gmail account in emacs with mu4e

There're a lot of combinations to manage your email with emacs, but this works for me. I've a backup and I can manage my daily email.

Also see

The stack:

  • emacs
  • offlineimap
[ -z $1 ] && exit 1
pod search $1 | grep pod | sed 's/^ *//'
#!/usr/bin/env bash
# setup your master key
PGP_KEY=0xAAAAAAA
# GPG backup path
pgp_backup=/backup_path/folder
# Check $pgp_backup folder is exist
[ ! -d $pgp_backup ] && exit 1
@Superbil
Superbil / Run_Emacs_With_Debugger.applescript
Last active August 29, 2015 14:14
Run Emacs With Debugger from homebrew
try
do shell script "open -a `/usr/local/bin/brew --prefix emacs`/Emacs.app --args --debug-init"
on error errMsg
display dialog "homebrew or emacs not installed"
end try