This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# A script for generating a printable HTML festival schedule from CSV input. | |
# | |
# Usage: ./this-file.py < schedule.txt > schedule.html | |
# see the readSchedule function for input format description | |
# | |
import sys | |
def toFloatMinutes(s): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/sha256.js"></script> | |
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha256.js"></script> | |
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"/> | |
<title>TUPAS test</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTIVE_RECORD_VERSION = | |
'master' # fails | |
# '4.2.2' # fails | |
# '4.1.11' # fails | |
# '4.0.13' # passes | |
if ACTIVE_RECORD_VERSION == 'master' | |
require 'bundler/inline' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <R.h> | |
#include <errno.h> | |
#include <Rinternals.h> | |
void write_csv_fast(SEXP list_of_columns, SEXP filename) { | |
SEXP *columns = NULL; | |
int error_number = 0; | |
const char COL_SEP = ','; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
"Finds and highlights non-ASCII characters in STDIN (python 2)" | |
import sys | |
def is_ascii(str): | |
try: | |
str.encode('ascii') | |
return True | |
except: return False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% GNU Octave | |
% The model | |
function y = model(x, y0, theta, sigma) | |
noise = randn(size(x))*sigma; | |
y = y0 * exp(-theta*x) + noise; | |
endfunction | |
% Least squares-type fit to the model | |
function [y0, theta, sigma] = fit_model(x, y) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% GNU Octave | |
% Computes a maximum a posteriori (MAP) estimate X for the hidden states | |
% for the given DNA sequence Q under the pre-defined hidden Markov model | |
% Depending on what the mode parameter is, this computes | |
% | |
% 'any-sequence' (default) | |
% | |
% X = (x_1, ..., x_n) \in argmax_{x_1, ..., x_n} P(Q|x_1,...,x_n) | |
% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(data.table) | |
library(microbenchmark) | |
performanceTest <- function (nrows=100000, ncols=400, quote=TRUE, col.type='character') { | |
message(paste0('generating test table, col type ', col.type)) | |
x <- c(1:nrows) | |
dt <- data.table(col1=x) | |
col_generators = list( |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# Copyright 2017 Otto Seiskari | |
# Licensed under the Apache License, Version 2.0. | |
# See http://www.apache.org/licenses/LICENSE-2.0 for the full text. | |
# | |
# This file is based on | |
# https://github.com/swagger-api/swagger-ui/blob/4f1772f6544699bc748299bd65f7ae2112777abc/dist/index.html | |
# (Copyright 2017 SmartBear Software, Licensed under Apache 2.0) | |
# |
OlderNewer