Skip to content

Instantly share code, notes, and snippets.

Uncaught TypeError: Cannot read property 'props' of undefined
at AutocompleteList.onClick (http://styleguide.cfapps.io/index.js:70389:13)
at Object.ReactErrorUtils.invokeGuardedCallback (http://styleguide.cfapps.io/index.js:41216:17)
at executeDispatch (http://styleguide.cfapps.io/index.js:41000:22)
at Object.executeDispatchesInOrder (http://styleguide.cfapps.io/index.js:41023:6)
at executeDispatchesAndRelease (http://styleguide.cfapps.io/index.js:40415:23)
at executeDispatchesAndReleaseTopLevel (http://styleguide.cfapps.io/index.js:40426:11)
at Array.forEach (native)
at forEachAccumulated (http://styleguide.cfapps.io/index.js:41430:10)
at Object.processEventQueue (http://styleguide.cfapps.io/index.js:40629:8)

Keybase proof

I hereby claim:

To claim this, I am signing this object:

checkmerge() {
git merge --no-ff --no-commit $1
if [ "$?" = 0 ]
then echo "Clean Merge!"
else echo "Merge Errors!"
fi
git merge --abort
}
require "edr/registry"
Edr::Registry.define do
map "EtlSchedule", "Data::EtlScheduleData"
map "EtlConfiguration", "Data::EtlConfigurationData"
end
Completed 500 Internal Server Error in 45ms
** [Airbrake] [Airbrake::Sender#send_to_airbrake] Cannot send notification. Error: OpenSSL::SSL::SSLError - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
Backtrace:
/usr/lib64/rubyee/1.8/net/http.rb:586:in `connect'
/usr/lib64/rubyee/1.8/net/http.rb:586:in `connect'
/usr/lib64/rubyee/1.8/net/http.rb:553:in `do_start'
/usr/lib64/rubyee/1.8/net/http.rb:542:in `start'
/usr/lib64/rubyee/1.8/net/http.rb:1035:in `request_without_newrelic_trace'
/data/nulogy/shared/bundled_gems/ruby/1.8/gems/newrelic_rpm-3.2.0.1/lib/new_relic/agent/instrumentation/net.rb:22:in `request'
/data/nulogy/shared/bundled_gems/ruby/1.8/gems/newrelic_rpm-3.2.0.1/lib/new_relic/agent/method_tracer.rb:242:in `trace_execution_scoped'
From 121eb6b415f65713b9dedf7004fd6dabeca4e5b9 Mon Sep 17 00:00:00 2001
From: Clemens Park <clemens.park@gmail.com>
Date: Wed, 23 Nov 2011 12:40:04 -0500
Subject: [PATCH] adds the fix to allow the writing of empty rows
---
.gitignore | 2 +
lib/spreadsheet/excel/writer/worksheet.rb | 12 ++++--
test/excel/writer/worksheet.rb | 55 ++++++++++++++++++++++------
3 files changed, 53 insertions(+), 16 deletions(-)
@clemensp
clemensp / gist:1120614
Created August 2, 2011 16:43
Locally re-run all the test files that failed during the last hydra run
# locally run files that failed during hydra
Rake::TestTask.new("run_failed_files_locally") do |t|
hydra_heuristics_file = "/tmp/hydra_heuristics.yml"
report = YAML.load_file(hydra_heuristics_file) if File.exists? hydra_heuristics_file
failed_files = []
if report
failed_files = report.select{|file,stats| stats["all_tests_passed_last_run"] == false}.map(&:first)
failed_files = failed_files.select{|file| File.exists?(file)}
end
t.test_files = failed_files
@clemensp
clemensp / gist:724939
Created December 2, 2010 07:34
sqlite_adapter.rb patch for precision/scale updates (rails 3.0)
File:
ruby-1.9.2-p0/lib/ruby/gems/1.9/gems/activerecord-3.0.0/lib/active_record/connection_adapters/sqlite_adapter.rb
Method: copy_table (line 315 in my copy)
Update the following:
@definition.column(column_name, column.type,
:limit => column.limit, :default => column.default,
:null => column.null)