Skip to content

Instantly share code, notes, and snippets.

View zmaril's full-sized avatar
🌹
Crawling the web

Zack Maril zmaril

🌹
Crawling the web
View GitHub Profile
@zmaril
zmaril / index.html
Created June 16, 2012 14:08 — forked from ilyabo/index.html
D3 tooltip using Bootstrap
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src=https://raw.github.com/gist/2941416/24172d26b3c802f5be54b3411863822cad6b8538/tooltip.custom.js"></script>
<script type="text/javascript" src="https://raw.github.com/gist/2941416/39fbe358eb3256e62401e2403735907fbe3f7a75/popover.js"></script>
</head>
<body>
<div id="chart"></div>
@zmaril
zmaril / softwarehelpskill.md
Last active August 3, 2021 04:52
I want to write software that helps kill people.

I want to write software that helps kill people.

Please, before you call the police and get my github account put on lockdown, allow me a moment to explain. What I really want to do is work on projects that advance the human condition and improve people's lives. I've been in a mad dash to learn how to program for the past four or five years exactly because I realized how much good I could do for the world with a computer.

@zmaril
zmaril / keybase.md
Created October 15, 2017 01:52
keybase.md

Keybase proof

I hereby claim:

  • I am zmaril on github.
  • I am zmaril (https://keybase.io/zmaril) on keybase.
  • I have a public key ASBSk8HWQgCYHukY5NAte5V6YE7IXitE1OkatCXhsz0-hAo

To claim this, I am signing this object:

@zmaril
zmaril / BubbleChart.js
Created June 24, 2012 22:39
Animated Bubble Chart
var BubbleChart, root,
__bind = function(fn, me){
return function()
{ return fn.apply(me, arguments);
};
};
BubbleChart = (function() {
BubbleChart.name = 'BubbleChart';
[{:lines ["/* $OpenBSD: scp.c,v 1.187 2016/09/12 01:22:38 deraadt Exp $ */" 
          "/*" 
          "* scp - secure remote copy.  This is basically patched BSD rcp which" 
          "* uses ssh to do the data transfer (instead of using rcmd)." 
          "*" 
          "* NOTE: This version should NOT be suid root.  (This uses ssh to" 
          "* do the transfer and ssh has the necessary privileges.)" 
          "*" 
          "* 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>" 
          "*" 
@zmaril
zmaril / _colors.scss
Created February 24, 2012 18:48
Easy customization of octopress blogs
// If you need a handy color picker try http://hslpicker.com
// Or look at octopress/sass/base/solarized.scss for inspiration. The colors in there are excellent.
// The following are ordered in terms of vague importance.
//Pick your favorite color. If you picked a thoughtful blue, try again.
$main-color: #6c71c4;
//This controls the background.
$page-bg: lighten($main-color,20);
@zmaril
zmaril / index.html
Created November 13, 2013 17:04
TPP highlighted
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> - jsFiddle demo</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-git2.js"></script>
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
@zmaril
zmaril / map_with_indexed.jl
Created October 9, 2013 16:55
map_with_indexed for julia
function map_with_indexed(f,cs...)
args = Any[f,]
push!(args,1:endof(first(cs)))
for c in cs
push!(args,c)
end
apply(map,args)
end
@zmaril
zmaril / index.html
Created October 1, 2013 05:32
Quicksort in 3d (?)
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
@zmaril
zmaril / index.html
Last active December 24, 2015 08:59
Quicksort in 3d
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>