Skip to content

Instantly share code, notes, and snippets.

@icyleaf
icyleaf / tmux-cheatsheet.markdown
Created May 26, 2016 04:12 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname

icyleaf's atom settings, automatic update by sync-settings

@icyleaf
icyleaf / load_tar_to_docker.sh
Last active August 1, 2016 07:26
Save all docker images to disk & Load archive file to docker.
for file in $(ls *.tar); do
echo "load $file"
docker load -i $file
done
@icyleaf
icyleaf / README.md
Last active April 25, 2017 02:33
initd-template-for-rails

Initd template for rails with sidekiq

image = MiniMagick::Image.open('source.jpg')
image.colorspace 'gray'
pixels = image.get_pixels
0.upto(image.height - 1) do |y|
image.combine_options do |c|
0.upto(image.width - 1) do |x|
color = pixels[y][x][0]
@icyleaf
icyleaf / README.md
Created January 9, 2018 07:19
Base16 Eighties Dark for Xcode (Font size changed to 14)

Base16 Eighties Dark for Xcode (Font size changed to 14)

#include <netdb.h>
#include <ifaddrs.h>
#include <arpa/inet.h>
+ (NSArray *)loopUpIPAddress:(NSURL *)url {
NSMutableArray *ipAddrs = [[NSMutableArray alloc] init];
char **pptr;
struct hostent *_host = gethostbyname([[url host] UTF8String]);
pptr = _host->h_addr_list;
@icyleaf
icyleaf / Wanyoo-yKeyboard-78-key.kbd.json
Last active May 2, 2020 22:42
Wanyoo yKeyboard 78 key
[
{
"backcolor": "#222222",
"name": "Wanyoo yKeyboard 78 key",
"author": "icyleaf",
"pcb": false
},
[
{
"c": "#282828",
@icyleaf
icyleaf / list_certificate.sh
Last active February 8, 2021 13:02
获取 apk 文件证书签名的三种方式
# 获取 apk 的证书
keytool -list -printcert -jarfile app.apk
# 获取 apk 解包后 CERT.{RSA|DSA} 的证书
keytool -printcert -file app/META-INF/CERT.{RSA|DSA}
# 获取 keystore 的证书
keytool -list -keystore app.keystore -storepass {password}