View Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'fog-openstack', github: 'fog/fog-openstack' | |
gem 'fog' | |
gem 'carrierwave' | |
gem 'paperclip' | |
gem 'pry-byebug' |
View duckduckgoogle.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name DuckDuckGoogle | |
// @description Add Google search button to DuckDuckGo search form | |
// @namespace github.com/gekola | |
// @version 0.1.2 | |
// @author Nick H | |
// @license WTFPL | |
// @released 2016-03-12 | |
// @updated 2017-04-16 | |
// @match *://duckduckgo.com/* |
View CopyTable.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [AdventureWorks2012]; | |
GO | |
ALTER PROCEDURE [dbo].[CopyTable] | |
@src_name nvarchar(4000) | |
, @dst_name nvarchar(4000) | |
AS | |
BEGIN | |
DECLARE @sql nvarchar(4000) | |
, @src_schema nvarchar(4000) = OBJECT_SCHEMA_NAME(OBJECT_ID(@src_name)) |