Skip to content

Instantly share code, notes, and snippets.

@ajsutton
ajsutton / fillerHtml.html
Created March 2, 2012 02:29
Alternating Table Row Colours Filling A Scroll Panel
<div class="scroll">
<table class="striped">
<tbody>
<tr><td>Row 1</td></tr>
<tr><td>Row 2</td></tr>
<tr><td>Row 3</td></tr>
<tr><td>Row 4<br>With an extra line</td></tr>
<tr><td>Row 5</td></tr>
<tr class="filler"><td></td></tr>
</tbody>
@ajsutton
ajsutton / basic.js
Created November 13, 2011 19:56
Long Poll JS Patterns
(function($) {
var longPollUrl = '/longpoll';
var lastReceivedSequence;
function poll() {
$.ajax(longPollUrl, {
data: { 'lastSequence': lastReceivedSequence },
dataType: 'json',
timeout: 15000,
@ajsutton
ajsutton / BackgroundLogger.java
Created September 26, 2011 20:13
Disruptor Example of Background Logging
import com.lmax.disruptor.RingBuffer;
import com.lmax.disruptor.dsl.Disruptor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class BackgroundLogger
{
private static final int ENTRIES = 64;