search for: corrigan

Displaying 20 results from an estimated 36 matches for "corrigan".

Did you mean: carrigan
2006 Mar 16
6
File Auditing with rails - File I/O issue
...;< File.open(tempfile).read end Zlib::GzipReader.open(outfile) {|gz| ? print gz.read } # The ZIP file can''t be extracted with WINZIP. ?No idea why, but since # I''ll be using another RUBY script for extraction, im not sure that I care. --------------------------- Brian Corrigan ---------------------------
2006 Mar 28
1
Efficiently convert this SQL statement to ActiveRecord loop
...ified data newer than the one stored in the CONIGURATION object. * Observe all changes and log to an AUDIT table This is pretty easy in SQL, but hard in a non set based language.. Can anyone point me in the right direction? Can anyone point me in the right direction? Best, Brian Brian Corrigan Operations Manager MGAM Systems, Inc. 1 Broadway Place Schenectady, NY 12305 <http://maps.yahoo.com/py/maps.py?Pyt=Tmap&addr=1+Broadway+Place&csz=Sch enectady%2C+NY+12305&country=us> brian.corrigan@mm-games.com <mailto:brian.corrigan@mm-games.com> tel: fax: mobile:...
2006 Mar 17
7
OT: Subversion folder cleanup
How do you clean up your app folder to place onto the server? I want to get rid of all the .svn stuff. Seth Buntin -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060317/cc81d9f7/attachment.html
2006 Apr 04
0
Parsing a SQL file directly intoactiverecord::executemethod - Not a vamp I swear
It doesn''t like SET commands, or #Comments, etc. Looks like no way = around this without using forgoing active record. I don''t really want = to do that at this point. --------------------------- Brian Corrigan --------------------------- -----Original Message----- From: rails-bounces@lists.rubyonrails.org = [mailto:rails-bounces@lists.rubyonrails.org] On Behalf Of Brian Corrigan Sent: Tuesday, April 04, 2006 2:11 PM To: rails@lists.rubyonrails.org Subject: RE: [Rails] Parsing a SQL file directly = intoa...
2006 Jun 15
8
Markaby Installation Issues
Ok, So I followed the directions.. I did a ''gem install markaby'' (which sounds like its enough to get me going for rails), but I wasn''t sure, so I tried to install the plugin as well. Plugin installation fails looking for a file: Script/plugin install http://code.whytheluckystiff.net/svn/markaby/trunk Outputs this error: + ./trunk/svnindex.xsl
2006 Apr 04
1
Parsing a SQL file directly into activerecord::execute method
...ome of the input characters. Best, B PS: Before anyone starts beating on the, do it the Rails way drum, the file is big. Processes relatively large (up to several hundred million records) tables, and works much faster when doing it in SQL directly. I promise. --------------------------- Brian Corrigan ---------------------------
2006 Mar 28
2
ADODB and SQLServer
Hey Guys, I''m absolutely stumped by this error. I haven''t seen it during any of my development, or working in production until just this week. Randomly, rails app becomes totally inaccessible until I restart the webserver. I tossed in some custom error messages stuff, so I could get the client to send me mail when it broke, and this is the error I''m getting:
2006 Apr 04
0
Parsing a SQL file directly into activerecord::executemethod - Not a vamp I swear
...ere a way to force it to simply issue the command and quit worrying = about sytax? I''ve looked through the Rails source a bit.. Can''t seem to really find = where it is actually doing a syntax check. Maybe the error is actually = from MYSQL? B --------------------------- Brian Corrigan --------------------------- -----Original Message----- From: rails-bounces@lists.rubyonrails.org = [mailto:rails-bounces@lists.rubyonrails.org] On Behalf Of Brian Corrigan Sent: Tuesday, April 04, 2006 12:41 PM To: rails@lists.rubyonrails.org Subject: [Rails] Parsing a SQL file directly into = act...
2006 Feb 24
18
I need more bling!
Hello everyone, I just showed a friend a prototype of a site offering a service I''m trying to sell (sorry, not on the Internet yet - he saw it at my house). His comment: "Looks like it does everything, but also looks pretty ugly. You''re not going to wow anybody with that". Sitting back and thinking about it, he''s dead right - it needs some bling to make it
2006 Mar 17
1
Re: Rails SQL Server adapter
...f our logic is in the stored procedures. Yes, one can argue that this is not a proper tiered design, but there simply is some logic BETTER done on the SQL server. Plus, you get the benefits of being able to optimize complex queries and use temp tables. Best, B --------------------------- Brian Corrigan Operations Manager MGAM Systems, Inc. 1 Broadway Place Schenectady, NY 12305 brian.corrigan@mm-games.com tel: 518-881-1121 fax: 518-881-1128 mobile: 518-727-6652 --------------------------- -----Original Message----- From: rails-bounces@lists.rubyonrails.org [mailto:rails-bounces@lists...
2006 Mar 08
2
Displaying related tables in forms.. probably an easy question!
Hey All, I have two tables.. One belongs to another. Why can''t I reference table1.table2.attribute? Specifically, using scaffolding: property.rb - has_one :PropertyType property_type.rb - has_many :Properties property_controller - def list @property_pages, @properties = paginate :properties, :per_page => 10 end list.html: 1. <% for property in @properties %> 2.
2006 Mar 14
5
Controller Naming Question
Is it possible to have controllers named the following? /admin /admin/user If not, is there some way to get it to work with routes? I want to have some actions at the url /admin/<action> and some at /admin/user/<action> (obviously in admin/user controller). Thanks!!!
2006 Mar 20
1
I need some help with OptionsParser
Hey all, I must be doing something wrong here. Im calling the following file this way: ruby script.rb -s 1234 or ruby script.rb -s1111 #Code snip require ''optparse'' opts = OptionParser.new opts.on("-s", "--size VAL", Integer) do |val| puts "-s #{val}" puts val end But..no matter what I do, I don''t get any values out. I must be doing
2006 Mar 23
2
Slow database imports with active record
Hey Folks, Im looking for some suggestions here. Each day I need to process 200 GZ compressed files each day that contain comma delimited information in the following format: HostName, FileName, DirName, Modified_On Each file contains upwards of 200K rows and works out to be about 20MB when uncompressed. I need to compare this information to the information recieved the day before to look for
2007 Jul 31
2
Camping-list Digest, Vol 15, Issue 2
Eli, This is interesting. I enabled DEBUG logging in Apache and tailed the error.log. Lo and behold, you''re right, its a problem with one of my require statements. Namely: `gem_original_require'': no such file to load -- camping/fastcgi (LoadError) Strange, it works fine when I do it in IRB, or do it from a ruby script at the bash prompt. Apache runs as the same user that
2006 Mar 08
12
best way to combine results from two tables
I want to combine a selection of data from two tables and display it as list. Note that this isn''t a join. i''m looking for something like this: Table 1: Sheep Name, Age, Farmer, etc. (sheep specific columns) Table 2: Cows: Name, Age, Farmer, etc. (cow specific columns) For my display I nneed something like this: Farmer Jone''s Livestock: TYPE NAME AGE Cow
2019 Aug 04
1
iconv: embedded nulls when converting to UTF-16
...onv(s, to = "UTF-16BE"): embedded nul in string: '\0t\0e\0s\0t? iconv(s, to="UTF-16LE") #> Error in iconv(s, to = "UTF-16LE"): embedded nul in string: 't\0e\0s\0t\0? -------------------------- Michael Braun, Ph.D. Associate Professor of Marketing, and Corrigan Research Professor Cox School of Business Southern Methodist University Dallas, TX 75275
2019 Jun 29
5
Mac OS & Folder Timestamps
So this issue might not strictly a Samba problem, but it happens to be where I found the issue and maybe there's a solution in the server or someone who's familiar with the problem. Basically I'm using a Pi as a small nas. I have a folder /media/ and a script that mounts usb drives there automatically. So I shared /media/ with smb.conf. Windows & Linux had no issue accessing the
2013 Sep 16
3
b
...ternative hypothesis: true location shift is not equal to 0 de modo que se rechaza ls hipotesis de igualdad de MEDIANAS (NO de medias). Espero que mis comentarios le sirvan, saludos cordiales, Eric Concha M. pd1. dayand, creo que este es tu mismo caso, slds, eric. pd2. los estadisticos que me corrigan si me equivoco por favor, slds. On 09/15/2013 05:19 PM, Dr. José A. Betancourt B. wrote: > > > deseamos realizar es una prueba no paramétrica para demostrar que el IMC > encontrado difiere significtivamente entre aquellos que tienen a_HTA > (entecedentas HTA) y los que no...
2019 Jun 30
0
Mac OS & Folder Timestamps
On 29/06/2019 19:38, David Corrigan via samba wrote: > So this issue might not strictly a Samba problem, but it happens to be > where I found the issue and maybe there's a solution in the server or > someone who's familiar with the problem. Basically I'm using a Pi as a > small nas. I have a folder /media/ and...