Skip to content

Instantly share code, notes, and snippets.

@jxcl
jxcl / conkybar
Created May 27, 2014 01:56
Conky Configuration
background no
out_to_console yes
out_to_x no
update_interval 1
total_run_times 0
short_units yes
pad_percents 2
override_utf8_locale yes
use_spacer left
@jxcl
jxcl / main.rs
Created February 20, 2015 19:37
Partial Hash Finder
#![feature(rand,core,rustc_private,collections)]
extern crate crypto;
extern crate serialize;
use std::rand;
use std::mem::transmute;
use serialize::hex::ToHex;
use crypto::digest::Digest;
use crypto::sha2::Sha256;