search for: ultimat

Displaying 7 results from an estimated 7 matches for "ultimat".

Did you mean: ultimate
2009 Jun 19
1
Shell Script: Simple array usage = bad substitution?
..."C") for ((i=0;i<${#myArray[@]};i++)) do for ((k=0;k<${#${myArray[$i]}[@]};k++)) # < Things go bad here! do echo "${${myArray[$i]}[$k]}" # I understand this line is won't work but it doesn't matter right now done done So ultimatly we shall loop round each value in the myArray array and print out the values in each array which has the same name as the value in the myArray, array. Where I have marked with a comment, the script stops with the error- : bad substitution I have looked on-line but I don't quite understand...
2008 Oct 28
7
How to override one method of AssetTagHelper
I created a file ./lib/action_view/helpers/asset_tag_helper.rb and put in it only the method I want to override. like this module ActionView module Helpers #:nodoc: module AssetTagHelper def image_path(source) compute_public_path(source, ''images'') end end end end But as soon I try this all the others methods from the overriden module are not
2013 Jun 23
1
2SLS / TSLS / SEM non-linear
Dear all, I try to conduct a SEM / two stage least squares regression with the following equations: First: X ~ IV1 + IV2 * Y Second: Y ~ a + b X therein, IV1 and IV2 are the two instruments I would like to use. the structure I would like to maintain as the model is derived from economic theory. My problem here is that I have trouble solving the equations to get the reduced form so I can run
2000 Aug 15
2
file size
What' the aproximate(or lowest possible for a 3 minute song) file size of a .ogg file? -Dan Crowmatek Software & Design --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/
2004 Sep 11
2
PDC from 2 to 3, SID headaches
Hello, I'm doing a migration of a PDC from Samba 2.2.8a on Mandrake Linux 9.0 to Samba 3.0.6 on Debian Woody (stable), both on the same machine, different partitions, they do not run simultaneously. And I really need help. :-/ I could not find a detailed guide, so after having a look at the migration chapter of the official howto, I adapted my smb.conf keeping the same host and domain
2014 Feb 05
2
Feature Request: don't sync if it would result in more than NUM deletions.
As a safety feature, I would like to see a feature that would prevent rsync from syncing when the sync, if it were to go ahead, would result in more than a certain number of files being deleted from the destination. A similar feature, --max-delete, does exist, but does not prevent rsync from doing a partial run when --max-delete entries would be exceeded - it simply deletes up to that amount of
2006 Mar 21
8
Loading the contents of a CSV file to a database
Hello Everybody, I picked up on the buzz about RoR and wanted to see what the fuss is about. So far i am very impressed but have hit a bit of a wall with a little play app i am writting. I want to iterate through a CSV file of my bank transactions and see just how much money i spend on beer and pies every month. I have successfully setup a database with a single table called transactions