Skip to content

Instantly share code, notes, and snippets.

View skiningham's full-sized avatar

Stephen Kiningham skiningham

View GitHub Profile

Keybase proof

I hereby claim:

  • I am skiningham on github.
  • I am skiningham (https://keybase.io/skiningham) on keybase.
  • I have a public key whose fingerprint is D915 8727 CC4F B482 4601 149C 69C5 5CBB 7001 C7E3

To claim this, I am signing this object:

@skiningham
skiningham / example.rb
Created March 16, 2017 05:17
Reproduction script for unable to select certain numeric values
begin
require "bundler/inline"
rescue LoadError => e
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler"
raise e
end
gemfile(true) do
source "https://rubygems.org"
# Activate the gem you are reporting the issue against.
@skiningham
skiningham / example.rb
Last active March 6, 2017 22:07
Reproduction script for schema load error. Empty database called "issue_reproduction_development" is required. Full repo: https://github.com/skiningham/issue_reproduction
begin
require "bundler/inline"
rescue LoadError => e
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler"
raise e
end
gemfile(true) do
source "https://rubygems.org"
# Activate the gem you are reporting the issue against.
@skiningham
skiningham / DataSettingsManager.cs
Last active September 26, 2016 21:24
Rough example of nopCommerce DataSettingsManager using web.config
using System;
using System.Web;
using System.Web.Configuration;
namespace Nop.Core.Data
{
/// <summary>
/// Manager of data settings (connection string)
/// </summary>
public partial class DataSettingsManager