I hereby claim:
- I am slyphon on github.
- I am slyphon (https://keybase.io/slyphon) on keybase.
- I have a public key ASBx-5_lYUXnL3K9Kn8_o3pmX38r2lVsfBns9SY6kg5-6go
To claim this, I am signing this object:
// ==UserScript== | |
// @name FeedBurnerTrackingQueryStripper | |
// @namespace http://creazy.net/ | |
// @match http://*/* | |
// @match https://*/* | |
// ==/UserScript== | |
(function () { | |
if ( location.search.match(/utm_source=feedburner/) ) { |
#!/usr/bin/env python | |
# Copyright 2020 Jonathan Simms | |
# | |
# Redistribution and use in source and binary forms, with or without modification, are permitted | |
# provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, this list of conditions | |
# and the following disclaimer. | |
# |
I hereby claim:
To claim this, I am signing this object:
Install pyenv, virtualenv, and the pyenv-virtualenv plugin
I have the following in my shell to load up pyenv if i want it, this is optional and you can just always load it up if you follow the standard installation instructions:
s-pyenv() {
[[ -n "${PYENV_SHELL}" ]] && return 0
unset PYENV_VERSION || true
#!/bin/bash | |
[[ -x /usr/bin/beep ]] || exit 0 | |
cd / | |
BEEPARGS=( | |
-l 350 -f 392 -D 100 --new -l 350 -f 392 -D 100 --new -l 350 -f 392 -D 100 | |
--new -l 250 -f 311.1 -D 100 --new -l 25 -f 466.2 -D 100 --new -l 350 -f 392 -D | |
100 --new -l 250 -f 311.1 -D 100 --new -l 25 -f 466.2 -D 100 --new -l 700 -f |
// Copyright 2018 Jonathan Simms | |
// | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions are met: | |
// | |
// 1. Redistributions of source code must retain the above copyright notice, | |
// this list of conditions and the following disclaimer. | |
// | |
// 2. Redistributions in binary form must reproduce the above copyright notice, | |
// this list of conditions and the following disclaimer in the documentation |
#!/bin/bash | |
WORK_DIR=/tmp/bombich-rsync | |
mkdir -p $WORK_DIR | |
cd $WORK_DIR | |
curl -O http://rsync.samba.org/ftp/rsync/src/rsync-3.0.7.tar.gz | |
tar -xzvf rsync-3.0.7.tar.gz | |
rm rsync-3.0.7.tar.gz | |
curl -O http://rsync.samba.org/ftp/rsync/src/rsync-patches-3.0.7.tar.gz |
out of sync. Falling back to library file for linking. | |
ld: warning: text-based stub file /System/Library/Frameworks/Security.framework/Security.tbd and library file /System/Library/Frameworks/Security.framework/Security are out of sync. Falling back to library file for linking. | |
Undefined symbols for architecture x86_64: | |
"___rust_alloc_zeroed", referenced from: | |
alloc::alloc::alloc_zeroed::h3a1f22bc4c6ddd5f in libbacktrace-9790369d577f04eb.rlib(backtrace-9790369d577f04eb.backtrace.d4gljdrp-cgu.10.rcgu.o) | |
alloc::alloc::alloc_zeroed::h9befe99d753639af in libtermcolor-a32fe53cd2fd2dcb.rlib(termcolor-a32fe53cd2fd2dcb.termcolor.8h6oext7-cgu.15.rcgu.o) | |
alloc::alloc::alloc_zeroed::h15153dfe2ca517b7 in libregex-a2d2ae3d5151aa2a.rlib(regex-a2d2ae3d5151aa2a.regex.2w9usw49-cgu.3.rcgu.o) | |
alloc::alloc::alloc_zeroed::h9d09b01d11874866 in libccommon_rs.rlib(ccommon_rs.228dvcpmrvtp0bay.rcgu.o) | |
alloc::alloc::alloc_zer |
import breeze.linalg._ | |
import breeze.stats._ | |
import breeze.numerics._ | |
def fStatistic(test: DenseVector[Double], control: DenseMatrix[Double]): Double = { | |
val mtest = test.toDenseMatrix | |
val allData = DenseMatrix.vertcat(mtest, control) | |
val grandMean = mean(allData) | |
val testMean = mean(test) |
extern crate log; | |
use log::{Record,Metadata}; | |
use std::boxed::Box; | |
/* | |
pub struct Record<'a> { | |
metadata: Metadata<'a>, | |
args: fmt::Arguments<'a>, | |
module_path: Option<&'a str>, |