I hereby claim:
- I am jasonsperske on github.
- I am sperske (https://keybase.io/sperske) on keybase.
- I have a public key whose fingerprint is E40C A8A8 8284 94A9 823C 951D 7865 73E7 33D8 50FA
To claim this, I am signing this object:
background: linear-gradient(223deg, #00ffbd, #7d00ff, #ef583a); | |
background-size: 600% 600%; | |
-webkit-animation: Channel 42s ease infinite; | |
-moz-animation: Channel 42s ease infinite; | |
-o-animation: Channel 42s ease infinite; | |
animation: Channel 42s ease infinite; | |
@-webkit-keyframes Channel { | |
0%{background-position:81% 0%} | |
50%{background-position:20% 100%} | |
100%{background-position:81% 0%} |
From http://sndtst.com/Doom | |
You will find these meta tags: | |
<meta property='sndtst:title' content='Doom'/> | |
<meta property='sndtst:platform' content='PC'/> | |
<meta property='sndtst:composed_by' content='Bobby Prince' role='Composer/Arranger'/> |
<!-- example from http://getfuelux.com/javascript.html#wizard --> | |
<link href="//www.fuelcdn.com/fuelux/3.6.3/css/fuelux.min.css" rel="stylesheet"> | |
<script src="//www.fuelcdn.com/fuelux/3.6.3/js/fuelux.min.js"></script> | |
<div class="wizard" data-initialize="wizard" id="myWizard"> | |
<ul class="steps"> | |
<li data-step="1" data-name="campaign" class="active"><span class="badge">1</span>Campaign<span class="chevron"></span></li> | |
<li data-step="2"><span class="badge">2</span>Recipients<span class="chevron"></span></li> | |
<li data-step="3" data-name="template"><span class="badge">3</span>Template<span class="chevron"></span></li> | |
</ul> | |
<div class="actions"> |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> | |
<script src="http://momentjs.com/downloads/moment.min.js"></script> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"> | |
<script> | |
$(function() { | |
$('#books').on('click', 'button', function(e) { | |
e.preventDefault(); |
public class CompressionFilter implements Filter { | |
public void destroy() {} | |
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { | |
HttpServletRequest httpRequest = (HttpServletRequest) request; | |
HttpServletResponse httpResponse = (HttpServletResponse) response; | |
String acceptEncoding = httpRequest.getHeader(HttpHeaders.ACCEPT_ENCODING); | |
if (acceptEncoding != null) { | |
if (acceptEncoding.indexOf("gzip") >= 0) { | |
GZIPHttpServletResponseWrapper gzipResponse = new GZIPHttpServletResponseWrapper(httpResponse); |
var page = require('webpage').create(); | |
page.open('http://github.com/', function() { | |
page.render('github.png'); | |
phantom.exit(); | |
}); |
I hereby claim:
To claim this, I am signing this object:
(define (SO x y) | |
(let* ((x! (car x)) (y! (car y))) | |
(while (< x! (car (cdr x))) | |
(set! y! (car y)) | |
(while (< y! (car (cdr y))) | |
(print (string-append (number->string x!) "-" (number->string y!))) | |
(set! y! (+ y! 1)) | |
) | |
(set! x! (+ x! 1)) | |
) |
#!/usr/bin/env python3 | |
import struct | |
import re | |
import io | |
from collections import namedtuple | |
GrpFileDefinition = namedtuple('GrpFileDefinition', 'name size') | |
Line = namedtuple('Line', 'a b is_one_sided') |
func car<T>(l: Array<T>?) -> T? { | |
if l == nil || l!.count <= 0 { | |
return nil | |
} else { | |
return l![0] | |
} | |
} | |
func cdr<T>(l: Array<T>?) -> Array<T>? { | |
if l == nil || l!.count <= 1 { |