I hereby claim:
- I am vly on github.
- I am vly (https://keybase.io/vly) on keybase.
- I have a public key ASCXqWyKzzJ1Rj2bEToaKU9HxH_64Xvxfa7GqNuIezYr6Qo
To claim this, I am signing this object:
""" | |
Implementation of Henderson filter in Julia. | |
Followed https://github.com/bpalmer4 python implementation | |
""" | |
using DataFrames | |
function hmaSymmetricWeights(n::Int) | |
m = (n-1)÷2 | |
m1 = (m+1)^2 |
I hereby claim:
To claim this, I am signing this object:
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python | |
env/ |
<!-- UoM OU tracking --> | |
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
})(window,document,'script','dataLayer','GTM-7JB9');</script> |
var test = function() { | |
var a = $('.answer-official-heading').parent(), | |
_id = a[0].getAttribute('id').split('-')[1], | |
_url = window.location.pathname; | |
_url += '/answers/' + _id + '/edit'; | |
a.children()[1].insertAdjacentHTML('beforeend', '<span class="answer-published"><a href="' + _url + '">Edit</a></span>'); | |
};test() |
import time | |
import uuid | |
import jwt | |
import requests | |
import re | |
# config | |
SHARED = 'YOUR SHARED KEY' | |
SUB = 'YOURSUBDOMAIN' |
package main | |
import ("code.google.com/p/go-tour/tree" | |
"fmt" | |
) | |
func Walk(t *tree.Tree, ch chan int) { | |
Walker(t, ch) | |
close(ch) |
package main | |
import ( | |
"io" | |
"os" | |
"strings" | |
) | |
type rot13Reader struct { | |
r io.Reader |
package main | |
import ( | |
"code.google.com/p/go-tour/pic" | |
"image" | |
"image/color" | |
) | |
type Image struct{ | |
W, H int |