similar to: tree model large dataset -error

Displaying 20 results from an estimated 3000 matches similar to: "tree model large dataset -error"

2001 Sep 20
1
No driver found for Display
l installed wine from wine-cvs-unstripped-091501-1.i386.rpm on Redhat 7.1 and always get this message. l tried to install another package but they didn't work l think l have a Xfree86 problem l don't know what should l do? err:module:BUILTIN32_LoadLibraryExA loaded .so but dll display.dll still not found err:dc:CreateDCA no driver found for DISPLAY FIXME:pthread_rwlock_rdlock
2004 Aug 06
0
icecast 2.x & a control panel?
Hi all! I have a some of questions, I know that you can guide me through this: 1. Where I can get icecast 2.x? 2. What's the main difference between icecast 1.3.11 & 2.x? 3. I will stream live audio from a radio, is better if I user 2.x? 4. I would like to have a sort of control panel that could have a functionality like this (better if its open-source): *Record the Ips & subnets
2004 Aug 06
0
live inputs streamer?
Whats the best tool for linux to stream two live inputs from two sound cards to one icecast 1.3.11 server? Thanks, Rocael. --- Joe Cooper <joe@swelltech.com> wrote: > I don't know of any such tool...but maybe I'm out of > the loop. > > If writing your own, I'd humbly suggest using Webmin > as the framework. > > It handles a lot of the 'grunt work'
2001 Sep 13
1
encoding documentation
Hello, I'm an Electrical Engineering student. I'm doing a research job about audio compressing. I'm looking for documentation about Vorbis analysis, synthesis, coding and decoding. I took a look at Xiph page documentation section, but it's not complete yet. There's this site about encoding, but i only found information about Vorbis windowing:
2007 Mar 06
10
Does XEN support crash carts?
While VNC is good enough, it doesn’t work if the NIC is down. So is there a way to switch amongst guest VM’s once a crash cart’s monitor/keyboard/mouse is attached to the video/USB/etc. ports (on the back of the physical box running XEN)? For the network down (out-of-band) emergencies, is there a way to switch amongst domain and/or guest VM consoles once a crash cart ‘terminal’
2011 Feb 17
4
PGError: ERROR: relation "instructions" does not exist
HI, I got this error when i am testing my rails application. I dont have the table named ''instructions''. But it shows a error like "ERROR: relation "instructions" does not exist". Totally, I got same error for 64 tests as 64 errors. I am using rails 3.0, Ruby 1.9.2, Netbeans 6.8. PS: I didnt creat Instruction manual for rails application. *Error:
2004 Aug 06
2
RIAA's new take on MP3
Sorry, I know it's marginally unrelated to icecast, but it most certainly affects all American citizens interested in MP3/Ogg Vorbis: http://dailynews.yahoo.com/h/zd/20011018/tc/why_the_riaa_owes_us_all_an_apology_1.html What the hell do they think they're doing? -- Nate "sublime" Kohari --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage:
2006 Aug 16
2
Q on AJAX with respect to DRY
I have a shopping cart function, and I''d like to set it up to update the cart with AJAX. My AJAX call will return a view that displays the cart items. My question is with regards to keeping things DRY. When the user goes to "view cart", that page needs to display the cart, then the cart display needs to update with AJAX calls when items are added from that page. It would
2007 May 30
2
Depot - empty_cart with ajax
First of all id like to say hi to everyone from Argentina, im yet another Depot first-timer. Going through the example, i got to the point where my cart finally runs Ajax-based. And there is a line where Dave says, after all the job is done "You should see the cart in the sidebar update. And you shouldn''t see your browser show any indication of reloading the page. You''ve
2007 Jan 05
4
How To Spec Controllers with Finders
Given this code (which renders rjs), I''m faced with the fixture- driven way of spec-ing or mocking. How the heck to you mock this so the code at line (2) and (4) work right? I''m still struggling with mocks but it seems like this can be done. Forgive the naivety of this question. 1. def change_quantity 2. @line_item = LineItem.find_by_id(params[:id]) 3. unless
2006 Feb 28
19
Session magic question
Greetings! I could really use some help understanding what Rails puts into the session store related to the objects it creates. I''ve found documentation on how _I_ can put / get info into it, but can''t find the docs on what _Rails_ puts into it. I''ve got a simple app that collects some data from the user, stores it in a db record, allows the user to edit it, display
2006 Jul 28
15
Store/product stock design question
Hi all, I''m having trouble figuring out how to handle stock levels in a new store I''m building. When products are entered into the admin of the store, they have a stock number associated with them. What I''m not sure about, is how I go about maintaining this stock level. Take this scenario: 1. User A adds an item to their cart, and I check that it''s in stock -
2009 Nov 01
5
Headache with sessions being shared.
I have a really horrendous problem with sessions. before_filter :find_cart_from_session private def find_cart_from_session if session[:cart] # if there''s is a cart in the session begin @cart = Cart.find(session[:cart]) # return existing or new cart rescue ActiveRecord::RecordNotFound @cart = Cart.create @cart.save session[:cart] = @cart.id
2006 Jul 31
4
RJS to find an element
I''m trying to implement a remove from cart method based on the examples in the second edition Agile book. I have everything working except for the RJS that removes items from the cart. Ideally what I''d like to do is highlight an element that I am deleting only if there is more than one of that particular item in the cart. If the item deleted is the only of
2005 Nov 25
4
BlindDown recommendations?
Hi folks, I''m putting together a site that will have a shopping cart tab along the top which, when clicked, slides down to reveal the full contents of the cart (covering the page underneath it). When designing it and getting the styling right, I had the page display the cart fully open by default. This worked fine - the cart can close and open any number of times without problem[1].
2007 Oct 17
9
@session['user'] vs session[:user]
This might seem really simple to some but just wanted to ask: what is the difference between @session[''user''] and session[:user] ? and how would you use each? And another question, I have the following code: def get_customer if @session[''customer''] @c = Customer.find(@session[''customer'']) end end private def
2006 Apr 16
9
''depot'' app, where''s session?
Many of you probably know the ''depot'' app from the ''Agile Rails development'' book. I have constructed the ''products'' model, the Store-controller, and the ''Cart'' and ''Line Item'' classes. I have told Application-controller about :cart and :line_item: model :cart model :line_item Here''s part of
2007 Feb 07
1
The Depot "Add to Cart" sessions question (2.ed agile book)
Hello, Im in the process of working my way through the 2.ed of the agile book. As many of you already know, the book goes through the regular development cycle of the Depot application. I have hit a wall when they started talking about the sessions and the exact mechanics of how an item is added to the session. The code looks like this: depot/app/controllers/store_controller: def add_to_cart
2006 Aug 04
6
Errors ... errors and errors.
I bought the second edition of the ruby on rails, it seems to work fine now, did some adjustments to the code. But now I get a second error and I want to learn to understand to fix them myself. So here is the error. ArgumentError in StoreController#add_to_cart wrong number of arguments (1 for 0) #{RAILS_ROOT}/app/models/cart.rb:15:in `initialize'' #{RAILS_ROOT}/app/models/cart.rb:15:in
2005 Nov 29
6
draggable revert problem
Hello, I have tried implementing the shopping cart ajax example and have run into some problems. The only differences with the shopping cart is My list of products are generated from a partial view The images of the products come from an http link. However, Iam seeing a strange behavior when I drag and drop the elements to my cart. On the first drag and drop the image successfully reverts to