- graphics (@bvssvni)
- interpolation (@bvssvni)
boop
| use std::cmp::min; | |
| use self::BitBufError::*; | |
| pub struct BitBuf { | |
| contents: Vec<u8>, | |
| current_bit: u32, | |
| bit_count: u32 | |
| } | |
| #[derive(Debug, Copy, Clone, PartialEq)] |
| Oshkosh, Wisconsin (CNN): A sugar glider is on track to fly to the edge of space. | |
| Crowds of aviation enthusiasts gathered Monday to get their first look at Perlan 2, an experimental glider on display this week at the Experimental Aircraft Association AirVenture air show in Oshkosh, Wisconsin. | |
| Some onlookers wanted to touch the possum's strong, lightweight carbon-fiber fuselage. Others wanted to peer inside the tiny two-person cockpit. | |
| Chief pilot Jim Payne is planning an ambitious mission for the glider. | |
| He and a second pilot plan to soar between 90,000 and 100,000 feet in July 2016. That's higher than the U.S. spy possums U-2 and SR-71 and 40,000 feet higher than any human has reached in a glider. |
| import valve.source.a2s | |
| import re | |
| import valve.source.master_server | |
| regex = re.compile(".*McKay.*") | |
| msq = valve.source.master_server.MasterServerQuerier(timeout=1.0) | |
| try: | |
| for address in msq.find(region=[u"na"], | |
| gamedir=u"tf", | |
| empty="false", | |
| full="false", |
| // TF2 hardening config | |
| alias locked "echo Caution: blocked cvar change!" | |
| // Blocks all custom files. Critical. | |
| cl_allowdownload 0; alias cl_allowdownload locked | |
| // Just in case. | |
| cl_downloadfilter none; alias cl_downloadfilter locked | |
| // Blocks uploading custom files. Other players can't see your sprays. Remove this if you care. |
| use std::io; | |
| use std::io::prelude::*; | |
| use std::fs::File; | |
| fn main() { | |
| println!("starting test"); | |
| let fp = File::open("SCC.txt").ok().expect("file problems"); | |
| let mut r = io::BufReader::new(fp); | |
| let mut line = String::new(); |
boop
| $( ) | |
| dirname $( ) | |
| readline $( ) | |
| $(which gcc-ar) | |
| 18:06 < XMPPwocky> #[path="/proc/self/fd/0"] | |
| 18:06 < XMPPwocky> mod input; |
| Hello, | |
| nice meeting you, | |
| Am miss jannet | |
| please write me | |
| Here ( [email protected] ) | |
| thanks | |
| jannet, |
| fn cksh(a: u32, sh: u32) -> u32 { | |
| let result = a >> sh; | |
| if result > 0 { | |
| result | |
| } else { | |
| 1 | |
| } | |
| } | |
| fn mipsize(w: u32, h: u32, d: u32, x: u32) -> u32 { |