Displaying 20 results from an estimated 800 matches similar to: "Kaybord problem with "@" and "[" and "]" in console.."
2006 Jul 10
18
Deleting join association of has_many :through
I''m trying to use has_many :through, since my join model deserves being
more than just an intersection table.
But when I try to break the association, the break only seems
"temporary":
Let''s say my two tables are Users and Colors, and the join model is
Favorites.
user = Users.find(1)
user.colors.length
>> 2
c = user.colors.first
>> #<Color:....>
2006 Jul 21
15
RoRED a free Ruby on Rails editor for Windows
Hi.
On http://www.plasmacode.com you can download RoRED, a free IDE for Ruby
on Rails apps, only for Windows.
It has some interesting features like tab-grouping of related MVC files,
code navigation into methods (ctrl+click), and more.
Best regards,
Marcus.
http://www.plasmacode.com
--
Posted via http://www.ruby-forum.com/.
2006 Jun 09
12
Securing database from your provider?
Hi.
If i had a RoR application dealing with very reserved personal
informations about my customers, if my hosting provider would like to, i
guess it would be easy for him to steal the data by simply peeking the
username and password inside the database.yml file.
Is there a way to hide the database password from indiscrete eyes ?
Thanks,
Marcus Ob.
--
Posted via http://www.ruby-forum.com/.
2011 Mar 25
2
library(foreign) read.spss warning
I got the following:
> library(foreign)
> swal = read.spss("swallowing.sav", to.data.frame =TRUE)
Warning message:
In read.spss("swallowing.sav", to.data.frame = TRUE) :
swallowing.sav: Unrecognized record type 7, subtype 21 encountered in system file
>
The bulk of the data seems to read in a usable form, but I'm curious about what might be getting lost
2006 Aug 31
2
Consulta sobre bases en R
Estimados,
Quisiera saber cuanto es el tamaño máximo de datos contenidos en mi base de
datos, que el software R puede llegar a procesar y soporta.
De antemano agradezco y envió un cordial saludo.
Marcela Corrales
CPData Optimum
[[alternative HTML version deleted]]
2006 Feb 18
2
Sharing a Hashtable between all sessions?
Is it possible with RoR?
In my case this shared Hashtable is a language translation table for
several hundred terms, and does not need to be updated.
I would like it to be shared in order to avoid loading it once for each
session.
Thanks,
Marcus O.
--
Posted via http://www.ruby-forum.com/.
2010 May 28
2
Suggestion for improving value_to_boolean column conversion
Hi fantastic rails core developers.
Speaking of version 2.3.5:
I find it rather error_prone that values such that "some text" is
silently converted to false when stored in a boolean DB field.
Among other things it means that assign "some text" to boolean fields
on a model will not generate any validation messages (it will silently
be converted to false).
I think it is like
2011 Nov 21
1
vigor 2920 problems
One of our clients has a Draytek Vigor 2920- their natted Snom phones
behind it are registered to an Asterisk 1.4 server on an external public IP.
I've set QOS, bandwidth management and turned off the SIP ALG via telnet
but I'm still having some problems with some of the phones losing
registration if Asterisk is restarted.
I can see the phones sending SIP REGISTER messages, but they
2006 Nov 13
1
handling protocol violations
Hello,
I have found a webserver that spits the cookie version as a float
(1.2) instead of an integer as the protocol mandates.
(www.alimentacion.carrefour.es)
So far I have been changing line 33 in cookie.rb from
when "version" then cookie.version = Integer(value)
to
when "version" then cookie.version = Integer(value.round)
Of course every time WWW:Mechanize gets updated, I
2012 May 04
1
auditing R's memory usage
Hi Folks,
I'm running 32-bit R 2.14 in RStudio on my Win 7 x64 system with 8GB
RAM. I'm getting memory problems as R wants to swallow more than the
4GB limit.
I think I'm stuck at 4GB as I have to use 32-bit R for a number of
packages (ODBC, etc). However, I doubt I really need to be using that
much memory - I'm probably being very sloppy in my memory management,
leaving lots
2005 Apr 10
1
[LLVMdev] sys::Program::ExecuteAndWait() caller problems
On Sun, 10 Apr 2005, Markus F.X.J. Oberhumer wrote:
> sys::Program::ExecuteAndWait() requires that the first element in "args"
> should be the name of the program, but (at least) llvm-ld.cpp and gccld.cpp
> fail to do so, thereby effectively swallowing the first parameter.
> This is the reason that -native-cbe has not working for some time - actually
> I wonder why no
2006 Apr 26
4
O/T: Good OSX Primer
A bit off topic, but I know there are a lot of smart Mac evangelists on
the list so I thought I''d pose the question here.
I made the switch to OS X after Apple moved to the x86 platform. Now
that VMWare can be ported to OS X, it''s a practical platform for me.
I''m an ex *nix admin, so I ''get the drift''; however, I''m looking for a
good guide
2014 Sep 06
2
samba4 GPO passw
Hi list, well, i create a new gpo (rsat tools) and try to find password
policies to define all stuff like time, complexity, etc but dont here
where normaly are!..cant find from any gpo create password policies!...i
personalize a search into gpo but nothing appears...normaly in windows
ad this policies are in security settings....
any suggestion?
2014 Sep 04
2
samba4 + squid 2.7 auth
Hi list, i have a samba4 AD server working, and squid 2.7 auth
internal...so i need change the auth of squid to my samba4 server....i
search in google but information is incomplete and diferent...any
official site, wiki or user experince to get information about?
regards and thanks
--
Administrador de Redes
Nodo Provincial ESILT
OS: Debian 7.5 wheezy
2008 Oct 14
7
Panasonic x Asterisk if I can emulate Panasonic fast!
Im a 3-days-asterisk-newbie. In 3 weeks, I must have a PBX installed in
a new office of ours: Panasonic or Asterisk. Asterisk would be, if I can
emulate some Panasonic functions on Asterisk fast, to convince the
executives.
What I have done until now: Bought 1 Linksys pap2 (2 FXS), 1 Linksys
SPA3102 (1 FXS + 1 FXO) for making asterisk tests. Configured
Asterisk/Fedora 9 so I can make SIP->PSTN
2006 Jun 20
2
Validation error_messages_for problem
I am having trouble getting error_messages_for to work.
My controller(relevant parts) looks like
def configure
@account = session[:account]
@user = User.new
end
def add_new_user_to_account
@user = User.new(params[:user])
if @user.valid?
session[:account].users << @user
end
redirect_to :action=> ''configure''
end
end
and my
2006 Feb 02
3
breakpointer failing
Hey there,
I got a new workstation going on here an Intel iMac, and I''ve compiled
and installed everything with intel binaries. Everything works fine, I
even got that cool clever lighttpd script running
(http://www.bigbold.com/snippets/posts/show/303).
But the one thing that doesn''t work is breakpoints and the breakpointer script.
When I run script/breakpointer, I get the
2009 Dec 23
1
flush() definitely required before close()
Greets,
WRT this discussion:
http://lists.xapian.org/pipermail/xapian-discuss/2009-November/007300.html
Richard recommends calling flush() before closing a index database
segment, etc. Well, I can confirm that calling flush() is *required*
before calling close() since close() on it's own does not commit/flush any
pending writes/whatever unless the Perl script terminates, etc.
So, for a
2006 Feb 17
2
HELP: Strange problem with breakpointer - stopped working
Hello,
I am in the middle of my first ROR project and suddently the
breakpointer script (./script/breakpointer) does allways return the
error listed below.
All time before it was working without problems - but the funny think, I
did not change anything on the system (despite downloading the Suse
Security Patches).
I am running:
Suse 9.3
Rails 1.00
Ruby 1.8.3
Please help, if you have any
2005 Aug 25
4
how to use ruby debugger instead of irb from script/breakpointer
Hello -
I would like to use the ruby debugger instead of irb
for a breakpoint enabled by script/breakpointer
in order to step through some code.
How do I do that?
Aaron