Skip to content

Instantly share code, notes, and snippets.

@sagiwei
sagiwei / README.md
Last active January 30, 2024 08:41 — forked from kosh04/.gitignore
Chrome Cookies Decrypter

Chrome Cookies Decrypter

Chrome の Cookies を Netscape 形式で出力するスクリプト

今のところ macOS 専用

Usage

$ python3 ./chrome_cookies_decrypt.py > cookie.txt
@sagiwei
sagiwei / centos7_timechine.sh
Last active October 19, 2021 11:53 — forked from hrabiamiod/centos7_timechine.sh
Install Time Machine service on CentOS 7
# Install Time Machine service on CentOS 7
# https://koji.fedoraproject.org/koji/buildinfo?buildID=1403661
# http://confoundedtech.blogspot.com/2011/07/draft-draft-ubuntu-as-apple-time.html
yum install -y rpm-build gcc make wget
yum install -y perl-IO-Socket-INET6 perl-generators
# install netatalk
yum install -y avahi-devel cracklib-devel dbus-devel dbus-glib-devel libacl-devel libattr-devel libdb-devel libevent-devel libgcrypt-devel krb5-devel mysql-devel openldap-devel openssl-devel pam-devel quota-devel systemtap-sdt-devel tcp_wrappers-devel libtdb-devel tracker-devel
@sagiwei
sagiwei / HEX2RGB
Created July 3, 2014 15:40
HEX转RGB
#define HEXCOLOR(c) [UIColor colorWithRed:((c>>24)&0xFF)/255.0 green:((c>>16)&0xFF)/255.0 blue:((c>>8)&0xFF)/255.0 alpha:((c)&0xFF)/255.0]