search for: mukund

Displaying 20 results from an estimated 32 matches for "mukund".

Did you mean: mukul
2010 Aug 02
7
Persistent SSH sessions
...t how to keep a session alive, or the impossibility of doing that. For example, autossh restarts ssh. I want existing sessions to continue as if nothing happened, as long as net access is not down for longer than some timeout. FWIW, I'm using OpenSSH_5.4p1, OpenSSL 1.0.0a-fips 1 Jun 2010. Mukund
2005 Jul 20
1
problem compiling with linux
...ry `/root/Desktop/foruclinux/speex-1.1.10' make[1]: *** No rule to make target `am--refresh'. Stop. make[1]: Leaving directory `/root/Desktop/foruclinux/speex-1.1.10' make: *** [../config.status] Error 2 I am sorry if I am asking you some very simple thing.... but I need this. Mukund
2009 Oct 15
7
PLZ HELP - ROR on Redhat Linux :: Problem with backgroundrb
Hi, I have successfully crossed all the hurdles to install Ruby on rails on a redhat 5 Linux based system. But the last and the biggest hurdle i am facing at this moment is installing backgrounrb :( I followed all the steps from the http://backgroundrb.rubyforge.org/ 1. sudo gem install chronic packet 2. script/plugin install svn://rubyforge.org/var/svn/backgroundrb [IMP:::: I had to drop
2009 Sep 29
10
rails 2.3.3 upgrade shows error
You have a nil object when you didn''t expect it! You might have expected an instance of Array. The error occurred while evaluating nil.<< any ideas ? Application works fine with rails 2.1.0 Sandip -- Ruby on Rails Developer http://funonrails.wordpress.com www.joshsoftware.com http://brandpotion.com (Latest project released) --~--~---------~--~----~------------~-------~--~----~
2015 Apr 02
1
Opus multi-stream/surround: Audio corruption on decoded content
...&err ); </decoder> </code> I'd appreciate it, if someone can shed some light on why the observed phenomenon is occurring. Could it just be that, I am playing a content that only has speech and actually forcing opus mode to CELT? Thanks in advance. Warm regards, Mukund. ----------------------------------------------------------------------------------- This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended r...
2009 Jun 02
3
valdate_presnce_of email, :if => :validate_id + Factory girl
Hi In the model I have User attr_accessor :validate_email_id validates_presence_of :email ,:if => :validate_email_id Could anybody please tell me how can I define a Factory for the above? Thanks in advance Sijo -- Posted via http://www.ruby-forum.com/.
2015 Apr 02
0
Opus multi-stream/surround: Audio corruption on decoded content
For some reason the attachment did not go through. Re-attaching. From: Mukund Raman Sent: Wednesday, April 01, 2015 6:12 PM To: 'opus at xiph.org' Subject: Opus multi-stream/surround: Audio corruption on decoded content Hello Everyone, I am using the opus 1.1 multistream APIs to encode a 5.1 surround stream on the server, stream it to client, decode it and capture...
2008 Jul 04
3
Linkt_to problems
I can''t explain where those differences come from. In one Project I can use the link_to without any problems. Like this: <%= link_to "LINKNAME", :action => "destroy", :id => ID %> But in another project... That happens <%= link_to "delete", :action => "destroy", :id => ticket.id %> <%= link_to "edit", :action
2005 Jul 19
2
problem compiling with linux
In place of rpm I used pre compiled binary for installing the Cross Compiler and now I am not getting this error. But I am gettimg error after <make> command. The error is: speexenc.c:49:21: ogg/ogg.h: No such file or directory speexenc.c:68: error: parse error before '*' token speexenc.c: In function `oe_write_page': speexenc.c:71: error: `page' undeclared (first use in
2009 May 28
7
shorten a link
Suppose a user submits a url: http://www.nyt.com/education/2345545. How can this be shortened to a cleaner url, like nyt.com? -- Posted via http://www.ruby-forum.com/.
2003 Sep 04
3
IVR only system with scalibility with asterisk???
...sk. I have been tasked with helping to set up a system that will only handle IVR (eg no PBX functions) incomming calls for 45 or so people that will call in 3 or 4 time each day during (approx) normal business hours. We have started to look at the Ivrs perl module from http://search.cpan.org/author/MUKUND/. We are having limited success. I found the asterisk software and have trugded through the last several months looking for IVR specific comments with minimal success. Issues: 1. We need to have a working system by "yesterday" (since we were told yesterday ;) my problem not yours). Real...
2009 Aug 08
4
how to get id of other table
Hi All, I have a doubt regarding join tables I''m having 2 models 1)Fac 2)Cont and both models have " has and belong to many" relationships so there are 3 tables 1)facs 2)conts 3)conts_facs then i''m fetching the data in controller as @conts=Cont.find(:all]) @cfacs=Fac.all(:joins=>:conts, :select=>"facs.name") but i dont know how to get the
2008 Sep 09
6
Prioritizing Mailer Queue / Action Mailer
Hi, I have different kinds of mails going out. For eg: 1. signup 2. notification mails etc I am using mailer queue to avoid mongrels waiting on email to be sent. However, it makes sense to have signup mails go instantaneously whereas other mails can go to mailer queue. Has anyone done such thing? Any suggestions please? Regards, SG -- Posted via http://www.ruby-forum.com/.
2009 Aug 18
7
** Removing all instances of mysql on mac osx **
I am trying to switch from sqllite3 to mysql on Ruby on Rails. Whenever I try to install the mysql gem, i get an error: *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options. I cd''d into my usr/local/bin directory and saw i have several
2005 Jul 19
0
problem compiling with linux
That's expected if you don't have libogg installed. libogg is not necessary if you don't need the command-line encoder and decoder. In that case, you can just compile libspeex. Jean-Marc Le mardi 19 juillet 2005 ? 15:04 +0200, Mukund Kumar a ?crit : > In place of rpm I used pre compiled binary for installing > the Cross Compiler and now I am not getting this error. But I am > gettimg error after <make> command. The error is: > > > speexenc.c:49:21: ogg/ogg.h: No such file or directory > sp...
2007 Dec 28
1
validation of acts_as_list in the model of the base class?
Lets say I have 3 models, user, user_group and user_group_nodes. A normal user has one user_group_id as a foreign key and a special user has multiple user_groups which are defined in the user_group_nodes. The user_group_nodes is a "acts_as_list" for user and contains a list of group_ids. When I build a form to get user input and I want to save it, is there a way to validate the
2009 May 11
2
Status: 500 Internal Server Error when running mongrel
Hello everyone! I try run simple RoR application, I go to RoR default "hello page",but I got error, when trying to open new views. Status: 500 Internal Server Error could not open database: unable to open database file C:/Ruby/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.2.3-x86-mswin32/lib/sqlite3/errors.rb:62:in `check''
2009 Jun 14
6
Unable to make observe_field work
I can''t make it work. <%= text_field_tag :friend %> <%= observe_field :friend, :url => friendships_url, :on => :click %> <%= javascript_include_tag :defaults %> Raises the error:Can''t find variable Form. The generated html is: <input id="friend" name="friend" type="text" /> <script
2008 Apr 06
10
about the form_for ..
question one: is there any select box tag for form_for? now,perhaps i just can use the select or select_tag? question tow: i have a A model,it has one B such as: class A< ActiveRecord::Base belongs_to :B when i use the form_for tag,how can i output the variable name?like this: <%form_for :a,@a,:url=>{:controller=>"a",:action=>"save"} do |f|%>
2008 Sep 09
2
form_for submit to a custom action
hi forum, I am new to rails, and i am just getting my hang of things. Problem, how do you pass content captured in a form to a custom method? I have the following form: <% form_for :message, @message, :url => { :action => ''reply''} do |f| %> <table cellpadding="4" cellspacing="5"> <tr> <td>Content:<%=