A Pen by Bruce Failor on CodePen.
A Pen by Bruce Failor on CodePen.
A Pen by Bruce Failor on CodePen.
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
[3/28/14 12:35:33 PM] zaeem asif: https://www.racemenu.com/director/39741/registration/teams | |
https://www.racemenu.com/director/39751/registration/teams | |
address | |
[3/28/14 12:40:31 PM] alain - racemenu: https://www.racemenu.com/director/39741/registration/edit_team/25871 | |
[3/28/14 12:41:08 PM] alain - racemenu: https://www.racemenu.com/director/39771/registration/teams | |
[3/28/14 12:43:07 PM] alain - racemenu: https://www.racemenu.com/director/39741/registration/edit/777061 | |
[3/28/14 12:47:56 PM] alain - racemenu: 2013 HACK SOLUTION: | |
1) replicated SP team names |
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
namespace :event do | |
desc "Add bib #s to event registrations" | |
task :add_bib => :environment do | |
event = Event.find(ENV['EVENT']) | |
resource_file_name = File.join(Rails.root, "lib", "tasks", "event_files", "#{ENV['EVENT']}.csv") | |
if event.nil? | |
puts "Unable to find event with id: #{ENV['EVENT']}" | |
return |
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
# rails console in the development environment | |
1.9.3p484 :009 > (10...40).each {|amt| puts "amount #{amt.to_f.round(2)} and charge #{(FeeCalculator.service_fee((amt.to_f-1.0)/1.05)+ (amt.to_f-1.0)/1.05).round(2)}"} | |
amount 10.0 and charge 9.99 | |
amount 11.0 and charge 10.99 | |
amount 12.0 and charge 12.0 | |
amount 13.0 and charge 13.0 | |
amount 14.0 and charge 13.99 | |
amount 15.0 and charge 14.99 | |
amount 16.0 and charge 16.0 | |
amount 17.0 and charge 17.0 |
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
ev = Event.find(22651) | |
regs = ev.event_registrations | |
ticks = ev.tickets | |
# hash with reg_id as key and array of subevent_id values | |
hsh = {} | |
ticks.each do |tick| | |
reg_id = tick.event_registration.id | |
hsh[reg_id] = {} if hsh[reg_id] == nil | |
if hsh[reg_id][:ri] == nil then hsh[reg_id][:ri] = [tick.race.id] else hsh[reg_id][:ri] << tick.race.id end | |
if hsh[reg_id][] == nil then hsh[reg_id] = [tick.race.id] else hsh[reg_id] << tick.race.id end |
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
class RegisterController < ApplicationController | |
# many lines deleted | |
def payment | |
# If there are no registrations done, go back to the athlete info page and start over | |
if session[:reg_ids].nil? or session[:reg_ids].blank? | |
redirect_to :action => 'athlete_info' | |
end | |
@reg = EventRegistration.find(session[:reg_ids].first) # assign the first EventRegistration object to @reg so it will be available in the view | |
@race = Race.find(session[:race] ) # assign the value of @race to the Race object with id equal to the value of the session key :race so it will be available to the view |
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
# Want to know what status values are present in what numbers | |
sc = {} | |
team22101 = "team_id = 22101" | |
TeamEntry.find(:all, conditions: team22101).each do |te| | |
s = EventRegistration.find(te.event_registration_id).status | |
if sc[s] == nil then sc[s] = 1 else sc[s] += 1 end | |
end | |
# sc => {"Trash"=>31, "Complete"=>640, "rm_pending"=>25, nil=>4, "Expired"=>6} | |
# Want to know what status values are present in what numbers |
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
2014-03-07T12:40:42.252957+00:00 app[web.3]: Started GET "/register/disclaimers" for 76.24.37.24 at 2014-03-07 07:40:42 -0500 | |
2014-03-07T12:40:41.995705+00:00 app[web.1]: Started POST "/register/athlete_info" for 76.24.37.24 at 2014-03-07 07:40:41 -0500 | |
2014-03-07T12:40:48.642850+00:00 app[web.1]: Started POST "/register/disclaimers" for 76.24.37.24 at 2014-03-07 07:40:48 -0500 | |
2014-03-07T12:40:48.865051+00:00 app[web.2]: Started GET "/register/payment" for 76.24.37.24 at 2014-03-07 07:40:48 -0500 | |
2014-03-07T12:40:48.723216+00:00 heroku[router]: at=info method=POST path=/register/disclaimers host=www.racemenu.com request_id=b22264d9-af04-4c40-8f3a-c3b6c4026360 fwd="76.24.37.24" dyno=web.1 connect=2ms service=161ms status=302 bytes=462 | |
2014-03-07T12:40:59.533612+00:00 app[web.3]: Started GET "/event/start_list/37821?page=1&sort=bib_number+ASC" for 66.249.66.82 at 2014-03-07 07:40:59 -0500 | |
2014-03-07T12:40:59.871742+00:00 heroku[router]: at=info method=GET path=/event/start_list/37821?page=1&sort=bib_number+ASC |
NewerOlder