This file contains hidden or 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
| function dg_helper_gallery_api_collections() { | |
| ... | |
| // Old code | |
| // | |
| // The problem is the use of LANGUAGE_NONE | |
| // | |
| $albums[] = array( | |
| 'slug' => $slug, |
This file contains hidden or 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
| # SSL self signed localhost for rails start to finish, no red warnings. | |
| # 1) Create your private key (any password will do, we remove it below) | |
| $ openssl genrsa -des3 -out server.orig.key 2048 | |
| # 2) Remove the password | |
| $ openssl rsa -in server.orig.key -out server.key |
This file contains hidden or 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
| jQuery(function($) { | |
| $('.home-page-banner-register').on('click', function(e) { | |
| dataLayer.push({ | |
| 'category': 'FI_Register', | |
| 'action': 'Begin Registration', | |
| 'label': 'Hero Button Click' | |
| }); | |
| }); | |
| $('.home-page-footer-icon-register').on('click', function(e) { |
This file contains hidden or 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
| // | |
| // mixin for bullet proof font declaration syntax | |
| // pulled from: http://pivotallabs.com/bulletproof-font-face-syntax-with-sass/ | |
| // | |
| // font-path is a rails helper which can be replaced with your font directory path | |
| // when not using rails | |
| // | |
| @mixin declare-font-face($font-family, $font-filename, $font-weight: normal, $font-style: normal, $font-stretch: normal) { | |
| @font-face { | |
| font-family: '#{$font-family}'; |
This file contains hidden or 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
| ActiveRecord::Base.connection.tables.each do |table| | |
| ActiveRecord::Base.connection.reset_pk_sequence!(table) | |
| end |
This file contains hidden or 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
| require "net/http" | |
| require "openssl" | |
| cert_store = OpenSSL::X509::Store.new | |
| cert_store.add_file 'certs/AddTrustExternalCARoot.crt' | |
| cert_store.add_file 'certs/COMODORSAAddTrustCA.crt' | |
| http = Net::HTTP.new('ume.michaeljfox.org', 8097) | |
| #http = Net::HTTP.new('173.193.29.12', 11121) |
This file contains hidden or 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
| namespace :db do | |
| require "sequel" | |
| Sequel.extension :migration | |
| DB = Sequel.connect(ENV['DATABASE_URL']) | |
| desc "Prints current schema version" | |
| task :version do | |
| version = if DB.tables.include?(:schema_info) | |
| DB[:schema_info].first[:version] | |
| end || 0 |
This file contains hidden or 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
| curl -o `date +"%Y%m%d%H%M%S"_BACKUPFILENAME.dump `heroku pgbackups:url --app APPNAME` | |
| pg_restore --verbose --clean --no-acl --no-owner -h localhost -U PGUSERNAME -d LOCALDBNAME BACKUPFILENAME.dump |
This file contains hidden or 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
| module Builder | |
| def collection_otherable_check_boxes(method, collection, value_method, text_method, options = {}, html_options = {}, &block) | |
| SimpleForm::Tags::CollectionCheckBoxes.new(@object_name, method, @template, collection, value_method, text_method, objectify_options(options), @default_options.merge(html_options)).render(&block) | |
| end | |
| def collection_nested_versionable(method, collection, value_method, text_method, options = {}, html_options = {}, &block) | |
| SimpleForm::Tags::CollectionCheckBoxes.new(@object_name, method, @template, collection, value_method, text_method, objectify_options(options), @default_options.merge(html_options)).render(&block) | |
| end | |
| end |
OlderNewer