Skip to content

Instantly share code, notes, and snippets.

$ echo 'typedef union { char __mbstate8[128]; } __mbstate_t;' | bin/cdump.pl6
TOP
| ws
| | ws-char
| | * FAIL
| * MATCH ""
| ws
| | ws-char
| | * FAIL
| * MATCH ""
@andydude
andydude / wc.rs
Last active August 29, 2015 14:12
Help
if matches.opt_present("h") {
let brief = "word, line, and byte or character count";
(writeln!(&mut std::io::stderr(),
"{} {}\n\n{}", getopts::short_usage(program, opts),
"[FILE ...]", getopts::usage(brief, opts))).unwrap();
std::os::set_exit_status(1);
return;
}
@andydude
andydude / wc.rs
Created December 28, 2014 07:37
Help
let matches = getopts::getopts(args, opts.as_slice()).unwrap();
if matches.opt_present("h") {
let brief = "word, line, and byte or character count";
format_args!(|args| { std::io::stderr().write_fmt(args).unwrap() },
"{} {}\n\n{}", getopts::short_usage(program, opts),
"[FILE ...]", getopts::usage(brief, opts));
std::os::set_exit_status(1);
return;
}
sql_execute!{
select(star, from(user), where(age > 5), order_by(tel));
}
trait Mappable
{
type A;
type B;
type M<A> where M<A> = Self;
type M<B>;
fn map<A, B>(self, f: A -> B) -> M<B>;
}
@andydude
andydude / wc.rs
Last active August 29, 2015 14:11
wc.rs
extern crate getopts;
use std::io::File;
use std::path::Path;
use getopts::optflag;
pub struct Total {
lines: uint,
words: uint,
chars: uint,
bytes: uint
@andydude
andydude / dgst.rs
Last active August 29, 2015 14:10
dgst.rs
extern crate webclient;
use std::io::Reader;
use std::io::stdin;
use webclient::digest::types::HashAlgorithm;
pub fn hash_algorithm_from_lower(name: &str) -> Option<Box<HashAlgorithm+'static>> {
match name {
"-md5" => Some(box webclient::digest::md5::md5_new() as Box<HashAlgorithm>),
"-sha1" => Some(box webclient::digest::sha1::sha1_new() as Box<HashAlgorithm>),
@andydude
andydude / i8kmon.sh
Created November 25, 2014 00:17
Reimplemtnation of i8kmon in Bash because Tcl sucks.
#!/bin/bash
#set config(0) {{- 0} -1 56 -1 56}
#set config(1) {{- 1} 47 75 47 75}
#set config(2) {{- 2} 65 128 65 128}
## config
I8KCTL_FAN="i8kctl fan"
I8KCTL_TEMP="i8kctl temp"
;; Default font
(set-default-font "unifont-16")
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (
:family "unifont"
:background "White"
@andydude
andydude / wc.rs
Last active December 18, 2015 02:38
POSIX wc (word count)
extern mod extra;
use extra::getopts::*;
pub struct Total {
lines: uint,
words: uint,
chars: uint,
bytes: uint
}