Skip to content

Instantly share code, notes, and snippets.

@U007D
U007D / .bashrc
Last active October 8, 2019 13:47
.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@U007D
U007D / default_clippy_lints.rs
Created October 6, 2018 15:41
Strict + Safety-Critical `clippy` default lint specification - current as per `clippy` v0.0.212 (2018-10-03)
#![forbid(overflowing_literals,)]
#![deny(unsafe_code)] // Do not remove! Change to `allow` to explicitly opt-in to using `unsafe` (facilitates auditing)
// vvv Safety-critical application lints (pedantic: use for safety-critical applications only) vvv
#![deny(clippy::cast_possible_truncation, clippy::cast_possible_wrap, clippy::cast_precision_loss,
clippy::cast_sign_loss, clippy::float_cmp_const, clippy::indexing_slicing, clippy::integer_arithmetic,
clippy::maybe_infinite_iter, clippy::option_unwrap_used, clippy::result_unwrap_used,)]
// ^^^ End of safety-critical lint section ^^^
#![warn(clippy::clone_on_ref_ptr, clippy::decimal_literal_representation, clippy::default_trait_access,
clippy::doc_markdown, clippy::else_if_without_else, clippy::empty_enum, clippy::enum_glob_use,
clippy::expl_impl_clone_on_copy, clippy::fallible_impl_from, clippy::filter_map, clippy::if_not_else,
enum State {
On,
Off,
}
trait Foo {
const STATE: State;
}
struct A;
@U007D
U007D / roll_validator.rs
Last active July 15, 2018 00:58
evolution from iterative to functional validator for bgk
//does not work as intended :(
#[inline]
pub(super) fn validate_frame(roll: u8) -> Result<u8> {
let mut frame_validator = || -> Error {
for frame in Game::FIRST_FRAME..=Game::LAST_FRAME {
let first_roll = roll;
yield Ok(first_roll);
// this frame has a second roll if it's the last frame OR if first roll was not a strike
@U007D
U007D / 1.26.0_stabilizations.rs
Created March 30, 2018 12:36
Rust 1.26.0 stablizations
brad@SocratesV:~/Development/rust/rust$ rg 1.26.0
src/bootstrap/channel.rs
27:pub const CFG_RELEASE_NUM: &str = "1.26.0";
src/libstd/lib.rs
437:#[stable(feature = "i128", since = "1.26.0")]
467:#[stable(feature = "i128", since = "1.26.0")]
src/libstd/path.rs
909:#[stable(feature = "fused", since = "1.26.0")]
fn main() {
let opt = Opt::from_args();
if let Err(err) = run(&opt) {
eprintln!("error: {}", err);
std::process::exit(1);
}
}
// ->
@U007D
U007D / playground.rs
Created February 14, 2018 14:56 — forked from anonymous/playground.rs
Rust code shared from the playground
use std::fmt;
#[derive(Debug, Clone, Copy)]
pub enum CardinalPoint {
North = 0x2191, // ↑
NorthEast = 0x2197, // ↗
East = 0x2192, // →
SouthEast = 0x2198, // ↘
South = 0x2193, // ↓
SouthWest = 0x2199, // ↙
@U007D
U007D / playground.rs
Created February 14, 2018 14:56 — forked from anonymous/playground.rs
Rust code shared from the playground
use std::fmt;
#[derive(Debug, Clone, Copy)]
pub enum CardinalPoint {
North = 0x2191, // ↑
NorthEast = 0x2197, // ↗
East = 0x2192, // →
SouthEast = 0x2198, // ↘
South = 0x2193, // ↓
SouthWest = 0x2199, // ↙
// Crazy macro by bluss
// Split a stream of tt's into before and after `==`
macro_rules! split_eq {
($sep: tt ($m: ident $($args:tt)*) [$($stack:tt)*] $x: tt) => {
$m ! ($($args)* $($stack)* $x $sep)
};
($sep: tt ($m: ident $($args:tt)*) [$($stack:tt)*] $x: tt == $($rest: tt)*) => {
$m ! ($($args)* $($stack)* $x $sep $($rest)*)
};
@U007D
U007D / ada.rs
Last active January 12, 2018 17:36
Errors
/// crate gpio_mmap
/// mod gpio_mmap
pub trait GpioMmap {
type Error: Fail;
type Register;
fn new(...) -> Result<Self, Self::Error> where Self: Sized;
fn registers(&self) -> &[Self::Register];
}