Skip to content

Instantly share code, notes, and snippets.

import logging
from delancie.backend import DelancieBackend
from dd.utils.cli import parse_date
from dd.utils.context.aggr_metric import AggrMetricService
from delancie.tasks.marlo_backfill import MarloBackfill, MarloBackfillJob, DEFAULT_TIMEOUT
log = logging.getLogger("dd.delancie.tasks.marlo_backfill")
@wackywendell
wackywendell / patch-to-04-12
Created April 18, 2016 17:22
swift-development-bin-patch
diff --git a/PKGBUILD b/PKGBUILD
index 90322d4..7f6c533 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,15 @@
# Maintainer: Ashley Towns <mail(at)ashleytowns(dot)id(dot)au>
-_version=DEVELOPMENT-SNAPSHOT-2016-03-16-a
+_version=DEVELOPMENT-SNAPSHOT-2016-04-12-a
@wackywendell
wackywendell / PKGBUILD
Last active August 29, 2015 14:18
PKGBUILD for Reduce
#Maintainer: Wendell <wackywendell@gmail.com>
pkgname=reduce
pkgver=3.23.130521
pkgrel=1
pkgdesc="Reduce Software for Adding Hydrogens"
url="http://kinemage.biochem.duke.edu/software/reduce.php"
license=('unknown')
arch=('i686' 'x86_64')
depends=()
makedepends=('make')
<blank>
@wackywendell
wackywendell / pmath
Last active January 24, 2023 08:00
Python math in the terminal
#!/usr/bin/python
"""
pmath [options] [statements...]
A simple script for performing math in the terminal, using Python functions and
syntax. I created this when I discovered how hard it was to get a cube root
using Bash or bc.
Note that 'from __future__ import division' is called, so '/' is float division,
and '//' is integer division.
@wackywendell
wackywendell / ADMath Arrays
Last active August 29, 2015 14:08
admath and arrays
{
"metadata": {
"name": "",
"signature": "sha256:d6c1300ee2b30f10905ed4d219e15548afa126b2112d2ed0d6e8f4c157724905"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@wackywendell
wackywendell / counter.rs
Created August 18, 2014 17:57
A counter for Rust
/// A simple counter.
#[warn(non_camel_case_types)]
#[warn(unnecessary_qualification)]
#[warn(non_uppercase_statics)]
#[warn(missing_doc)]
extern crate collections;
use collections::TreeMap;
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wackywendell
wackywendell / macro_test.rs
Last active August 29, 2015 14:03
Fails to compile with "rustc --opt-level 3 macro_test.rs" but compiles fine with just "rustc macro_test.rs"
#![feature(macro_rules)]
macro_rules! early_return(
($inp:expr, $($sp:ident),+) => (
match $inp {
$(
$sp(x) => { return x; }
)+
_ => {}
}