search for: logsweep

Displaying 2 results from an estimated 2 matches for "logsweep".

2000 Jun 28
0
response to The r3mix review (fwd)
...etractors, we're fixing it ASAP :-P r3mix already said they're happy to test a new version of the encoder with the bug fixed. For comparison purposes, have a look/listen at: http://www.xiph.org/ogg/vorbis/test.ogg ...and the included a plot of the frequency response. This is a pure tone logsweep encoded with short blocks disabled (the correct thing to do with this sample). You can see in the sweep graph I attached that the response is nearly flat, like it should be, from 0-20000 Hz. There are two 6dB dropout imperfections in the high end; I need to look at this flaw (you never know... ma...
2010 Mar 28
1
keeping track of who did what
hello everybody. i need to log "who did what" on some models. i was reading recipe 59 of rails recipes and i created something like that: class LogSweeper < ActionController::Caching::Sweeper observe :model1, :model2, :model3, :model4, :model5, ... after_save(model) save_log(model, "save") end after_destroy(model) save_log(model, "destroy) end private save_log(model, event, user_id = controller.session[:a...