Skip to content

Instantly share code, notes, and snippets.

View seigel's full-sized avatar

James Seigel seigel

View GitHub Profile
module Dashing
class EventsController < ApplicationController
include ActionController::Live
respond_to :html
def index
response.headers['Content-Type'] = 'text/event-stream'
response.headers['X-Accel-Buffering'] = 'no'
@seigel
seigel / _.md
Created March 30, 2014 04:14
sin waves
<html>
<body>
<h1>Hi there.</h1>
</body>
</html>
@seigel
seigel / pg_index_cache_hit_rate.sql
Created December 4, 2015 03:53 — forked from mattsoldo/pg_index_cache_hit_rate.sql
Postgres Index Hit Rate and Cache Hit Rate
-- Index hit rate
WITH idx_hit_rate as (
SELECT
relname as table_name,
n_live_tup,
round(100.0 * idx_scan / (seq_scan + idx_scan),2) as idx_hit_rate
FROM pg_stat_user_tables
ORDER BY n_live_tup DESC
),
@seigel
seigel / card-present.md
Created October 30, 2016 05:37
Stripe card-present API

Sending swiped card data to Stripe

Stripe's API supports sending both typed and swiped card data. Typed data is recorded when your customer enters their card details on your site and the data is sent to Stripe either by Stripe.js or through the Stripe API:

https://stripe.com/docs/api#create_charge

Swiped data is sent to Stripe when you have your own card swipe that reads the magnetic card strip on the back of your customers' cards. The raw output of the card swipe can then be submitted to the Stripe API.

The data contained on the magnetic strip of a card contains similar details to those embossed on the card but with some additions and repetitions. Details on the magnetic strip data can be found here:

@seigel
seigel / clamav-mac.md
Last active January 18, 2017 23:54 — forked from Uchean/clamav-mac.md
Get ClamAV running on Mac OS X (using Homebrew)

Get ClamAV running on Mac OS X (using Homebrew)

The easiest way to get the ClamAV package is using Homebrew

$ brew install clamav

Before trying to start the clamd process, you'll need a copy of the ClamAV databases.

Create a freshclam.conf file and configure as so

Keybase proof

I hereby claim:

  • I am seigel on github.
  • I am seigel (https://keybase.io/seigel) on keybase.
  • I have a public key ASDzeig2Gp0-Xw0inxXe_d0XTijUHMG5L_wEEBDS6R2GJwo

To claim this, I am signing this object:

@seigel
seigel / react-redux-style-guide.md
Last active December 10, 2017 05:34 — forked from datchley/react-redux-style-guide.md
React + Redux Style Guide

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

@seigel
seigel / application_helper.rb
Created October 1, 2018 19:21 — forked from exocode/application_helper.rb
Render with ``render_to_string`` a complete page within a sidekiq worker including current_user
module ApplicationHelper
def current_user
@current_user ||= warden.authenticate(:scope => :user)
end
end