Skip to content

Instantly share code, notes, and snippets.

@nbsdx
nbsdx / install.sh
Created October 3, 2016 05:47 — forked from kilfu0701/install.sh
Install PyQt5 with Python2.7 on Mac
cd ~
mkdir dev_tools
cd dev_tools
## download SIP source code
wget http://sourceforge.net/projects/pyqt/files/sip/sip-4.16.7/sip-4.16.7.tar.gz
tar zxf sip-4.16.7.tar.gz
cd sip-4.16.7
python configure.py
make
@nbsdx
nbsdx / mod.rs
Created August 7, 2019 05:24
chacha20 stream wrapper
use crypto::chacha20::ChaCha20;
use crypto::symmetriccipher::SynchronousStreamCipher;
use std::io::prelude::*;
// Typedefs
type ReadResult = std::io::Result<usize>;
type WriteResult = std::io::Result<usize>;
type FlushResult = std::io::Result<()>;