User sdfx - Stack Overflowmost recent 30 from stackoverflow.com2010-03-12T13:31:59Zhttp://stackoverflow.com/feeds/user/3445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1351729/using-layouts-for-menus-in-rails/1351793#13517932Answer by sdfx for using layouts for menus in railssdfxhttp://stackoverflow.com/users/34452009-08-29T16:09:36Z2009-08-29T16:09:36Z<p>Yes, the straight forward way to do it is to include your navigation in your application layout. If you need different layouts, I think it's best to include your navigation via a partial. If you are not using the other layouts, get rid of them. Otherwise you have to copy each and every change to the layout multiple times.</p>
<p>In case you only want a subset of your page to display the navigation, you can specify the desired layout in your controller using:</p>
<pre><code>layout "yourLayout"
</code></pre>
<p>This railscasts episode gives a nice overview about layouts and how to use them: <a href="http://railscasts.com/episodes/7-all-about-layouts" rel="nofollow">http://railscasts.com/episodes/7-all-about-layouts</a></p>
http://stackoverflow.com/questions/1345549/excel-formula-to-get-ranking-position/1345579#13455790Answer by sdfx for Excel formula to get ranking positionsdfxhttp://stackoverflow.com/users/34452009-08-28T07:46:30Z2009-08-28T08:02:58Z<p>If your C-column is sorted, you can check whether the current row is equal to your last row. If not, use the current row number as the ranking-position, otherwise use the value from above (value for b3):</p>
<p>=IF(C3=C2, B2, ROW()-1)</p>
<p>You can use the LARGE function to get the n-th highest value in case your C-column is not sorted:</p>
<p>=LARGE(C2:C7,3)</p>
http://stackoverflow.com/questions/975091/gmail-contacts-api-limitations-workaround/976603#9766030Answer by sdfx for Gmail contacts API limitations workaroundsdfxhttp://stackoverflow.com/users/34452009-06-10T16:08:33Z2009-06-10T16:08:33Z<p>I am not very familiar with the Contacts API, but it appears that newer versions of the API show more data. Which version are you currently using? You can find the migration guide here: <a href="http://code.google.com/intl/de-DE/apis/contacts/docs/3.0/migration_guide.html" rel="nofollow">http://code.google.com/intl/de-DE/apis/contacts/docs/3.0/migration_guide.html</a></p>
<p>A different approach could be to copy your data to a different field, using a batch process. Maybe you can access the data that way. <a href="http://code.google.com/intl/de-DE/apis/gdata/batch.html" rel="nofollow">http://code.google.com/intl/de-DE/apis/gdata/batch.html</a></p>
http://stackoverflow.com/questions/926761/best-practices-for-using-partials-in-rails4Best Practices for using partials in Railssdfxhttp://stackoverflow.com/users/34452009-05-29T15:57:33Z2009-05-29T16:35:08Z
<p>In keeping with the DRY-principle I try to use partials as soon as I am repeating a particular pattern more than once or twice. As a result, some of my views consist of ten or more different partials. I am worried that this might have a negative effect on the overall performance. Some programming books compare the use of partials with the use of methods. So should I use the same rationale to determine when to use them?</p>
<p><strong>What is the best practice regarding size and quantity of partials in a Rails project?</strong></p>
http://stackoverflow.com/questions/40741/excel-vba-alternative-ide1Excel VBA: Alternative IDEsdfxhttp://stackoverflow.com/users/34452008-09-02T21:36:45Z2009-04-02T14:10:08Z
<p>I am using excel 2003 and the build in IDE for programming VBA, but a lot of things bug me. Obviously, the build in nature of the VBA IDE is a big pro. Is there a (free?) alternative out there?</p>
http://stackoverflow.com/questions/76047/ocr-web-service5OCR Web Servicesdfxhttp://stackoverflow.com/users/34452008-09-16T19:32:37Z2009-03-17T19:09:20Z
<p>I am searching for an OCR web service (eventually open source, preferably free) that simply receives an image and returns the text of the image in writing.</p>
<p>I've looked at <a href="http://code.google.com/p/tesseract-ocr/" rel="nofollow">tesseract</a>, <a href="http://code.google.com/p/ocropus/" rel="nofollow">OCRopus</a> and <a href="http://jocr.sourceforge.net/" rel="nofollow">GOCR</a> but the only open server I could find is <a href="http://weocr.ocrgrid.org/" rel="nofollow">WeOCR</a>. Unfortunately the detection rates (at least during my tests) are sub-par and the speed is not much better.</p>
<p>Does anyone have any experience with OCR web services? I guess the license of tesseract allows the operation of such a service, are there any out there?</p>
http://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table1Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-08T17:05:14Z2009-03-10T03:55:26Z
<p>I am trying to create a model for a ruby on rails project that builds relationships between different words. Think of it as a dictionary where the "Links" between two words shows that they can be used synonymously. My DB looks something like this:</p>
<pre><code>Words
----
id
Links
-----
id
word1_id
word2_id
</code></pre>
<p>How do I create a relationship between two words, using the link-table. I've tried to create the model but was not sure how to get the link-table into play:</p>
<pre><code>class Word < ActiveRecord::Base
has_many :synonyms, :class_name => 'Word', :foreign_key => 'word1_id'
end
</code></pre>
http://stackoverflow.com/questions/555744/algorithm-to-find-two-repeated-numbers-in-an-array-without-sorting/556744#5567444Answer by sdfx for Algorithm to find two repeated numbers in an array, without sortingsdfxhttp://stackoverflow.com/users/34452009-02-17T13:19:33Z2009-02-17T13:19:33Z<p>You know that your Array contains every number from 0 to n-3 and the two repeating ones (p & q). For simplicity, lets ignore the 0-case for now.</p>
<p>You can calculate the sum and the product over the array, resulting in:</p>
<pre><code>1 + 2 + ... + n-3 + p + q = p + q + (n-3)(n-2)/2
</code></pre>
<p>So if you substract (n-3)(n-2)/2 from the sum of the whole array, you get</p>
<pre><code>sum(Array) - (n-3)(n-2)/2 = x = p + q
</code></pre>
<p>Now do the same for the product:</p>
<pre><code>1 * 2 * ... * n - 3 * p * q = (n - 3)! * p * q
prod(Array) / (n - 3)! = y = p * q
</code></pre>
<p>Your now got these terms:</p>
<pre><code>x = p + q
y = p * q
=> y(p + q) = x(p * q)
</code></pre>
<p>If you transform this term, you should be able to calculate p and q</p>
http://stackoverflow.com/questions/523868/should-you-learn-a-new-programming-language-if-there-are-no-jobs-in-your-area-tha/523959#5239591Answer by sdfx for Should you learn a new programming language if there are no jobs in your area that want it?sdfxhttp://stackoverflow.com/users/34452009-02-07T15:32:05Z2009-02-07T15:32:05Z<p>Career advice, given over the internet, for someone you don't know is almost destined to be not helpful. There are so many factors about your personality & your micro situation, that make general statements really hard. Nevertheless, here are some points you might consider when making your decision.</p>
<p>If you are learning a new language "just for fun", go for it! No matter how crazy it might appear. But it seems like you are looking for a good language that helps your career. In this case, you have to align yourself with the market. Be careful to bet on <em>the next big thing</em> (e.g. open source, fancy new languages) as investments in upcomming areas are quite risky and don't always pay off.</p>
<p>The save bet might not be too bad. As some other poster pointed out: .Net can be fun, if you tackle it the right way.</p>
http://stackoverflow.com/questions/523871/best-way-to-concatenate-list-of-string-objects/523908#5239080Answer by sdfx for Best way to concatenate List of String objects?sdfxhttp://stackoverflow.com/users/34452009-02-07T15:09:13Z2009-02-07T15:18:14Z<p>Have you seen this Coding Horror blog entry?</p>
<p><a href="http://www.codinghorror.com/blog/archives/001218.html" rel="nofollow">The Sad Tragedy of Micro-Optimization Theater</a></p>
<p>I am not shure whether or not it is "neater", but from a performance-standpoint it probably won't matter much.</p>
http://stackoverflow.com/questions/523643/difference-between-and-in-javascript/523650#5236505Answer by sdfx for Difference between == and === in JavaScriptsdfxhttp://stackoverflow.com/users/34452009-02-07T11:57:35Z2009-02-07T11:57:35Z<p>Take a look here: <a href="http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html" rel="nofollow">http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html</a></p>
<p>The 3 equal signs mean "equality without type coersion". Using the triple equals, the values must be equal in type as well.</p>
<pre><code>0==false // true
0===false // false, because they are of a different type
1=="1" // true, auto type coersion
1==="1" // false, because they are of a different type
</code></pre>
http://stackoverflow.com/questions/11028/what-are-the-advantages-of-explicit-join-transitive-closure-in-sql/519910#5199100Answer by sdfx for What are the advantages of explicit Join Transitive Closure in SQL?sdfxhttp://stackoverflow.com/users/34452009-02-06T11:10:02Z2009-02-06T11:10:02Z<p>This question is similar to this one here with a very in-depth explanation:</p>
<p><a href="http://stackoverflow.com/questions/397089/sql-question-from-joel-spolsky-article">http://stackoverflow.com/questions/397089/sql-question-from-joel-spolsky-article</a></p>
<p>The short answer is, that the explicit declaration of the transitiv property may speed the query up. This is because query optimization is not a trivial task and some SQL servers might have problems with it.</p>
http://stackoverflow.com/questions/511488/show-cell-range-on-userform-then-update/511580#5115800Answer by sdfx for Show Cell Range on UserForm; then updatesdfxhttp://stackoverflow.com/users/34452009-02-04T14:28:16Z2009-02-04T14:28:16Z<p>I am not quite shure what you are looking for, but you could insert a second sheet and use it as a "form". An other way could be a dialog box with an input field.</p>
<p>Either way, you present the cells you want the user to change one by one, using a vba-function. You implement a "previous field" and a "next field" button, so the user can step through the range of cells. If the user hits "next field", you save his input and take the next cell from a previous defined range of cells.</p>
<p>You could have a "config field" in which you define the range of cells you want to change.</p>
http://stackoverflow.com/questions/507253/excel-formula-to-refrence-cell-to-the-left/507308#5073080Answer by sdfx for Excel formula to refrence 'CELL TO THE LEFT'sdfxhttp://stackoverflow.com/users/34452009-02-03T14:37:18Z2009-02-03T14:37:18Z<p>You could use a VBA script that changes the conditional formatting of a selection (you might have to adjust the condition & formatting accordingly):</p>
<pre><code>For Each i In Selection
i.FormatConditions.Delete
i.FormatConditions.Add Type:=xlCellValue, Operator:=xlLess, Formula1:="=" & i.Offset(0, -1).Address
With i.FormatConditions(1).Font
.Bold = True
End With
Next i
</code></pre>
http://stackoverflow.com/questions/259849/what-kinds-of-things-can-be-done-to-improve-the-tagging-functionality-on-a-websit/413068#4130681Answer by sdfx for What kinds of things can be done to improve the tagging functionality on a website?sdfxhttp://stackoverflow.com/users/34452009-01-05T13:20:44Z2009-01-05T13:20:44Z<p>You should have a <strong>policy for the format</strong> of the tags (e.g. tags should be singular). Depending on how diverse the tags are, it might be useful not only to auto-complete while you are typing in a tag, but also to <strong>suggest similar tags</strong>, so that it is easy for people to use the tag system. Additionally, a <strong>cleanup process</strong> could correct common spelling mistakes and substitue deprecated tags according to a translation table.</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175793#17579328Answer by sdfx for What's the most egregious pop culture perversion of programming?sdfxhttp://stackoverflow.com/users/34452008-10-06T19:25:22Z2008-10-06T19:25:22Z<p>The database containing convenient 3D models of every room in every house in the whole city</p>
http://stackoverflow.com/questions/83279/best-way-to-implement-a-3-column-website-using-div-tags/100939#1009390Answer by sdfx for Best way to implement a 3-column website using <DIV> tags?sdfxhttp://stackoverflow.com/users/34452008-09-19T10:19:28Z2008-09-19T10:19:28Z<p>I like <a href="http://960.gs/" rel="nofollow">960 Grid System</a>. It's a lightweight, easy to use css which devides the screen into 12 (or 16) columns. You can use it for a 3 column design and align the rest of your content accordingly.</p>
http://stackoverflow.com/questions/9745/open-source-windows-mobile-ocr-library/74698#746980Answer by sdfx for Open Source Windows Mobile OCR Librarysdfxhttp://stackoverflow.com/users/34452008-09-16T17:16:14Z2008-09-16T17:16:14Z<p>A workaround might be the use of a OCR-Server like WeOCR (<a href="http://weocr.ocrgrid.org/" rel="nofollow">http://weocr.ocrgrid.org/</a>)</p>
<p><a href="http://www.topocr.com/" rel="nofollow">TopOCR</a> might be worth a look, but I don't know how useful it is. It seems to be a stand alone program without an open source license.</p>
http://stackoverflow.com/questions/53719/hiding-data-points-in-excel-line-charts/53729#537294Answer by sdfx for Hiding data points in Excel line chartssdfxhttp://stackoverflow.com/users/34452008-09-10T10:03:29Z2008-09-10T10:03:29Z<p>As a general tip: If you know how to do something in excel, but don't know how to do it in VBA you could just record a macro and look at the recorded VBA-code (works at least most of the time)</p>
http://stackoverflow.com/questions/34493/excel-list-ranges-targeted-by-indirect-formulas/35042#350420Answer by sdfx for Excel: list ranges targeted by INDIRECT formulassdfxhttp://stackoverflow.com/users/34452008-08-29T19:01:03Z2008-08-29T19:01:03Z<blockquote>
<p>Unfortunately, the arguments of
INDIRECT are usually more complex than
that. Here's an actual formula from
one of the sheets, not the most
complex formula we have:</p>
<p><code>=IF(INDIRECT("'"&$B$5&"'!"&$O5&"1")="","",INDIRECT("'"&$B$5&"'!"&$O5&"1"))</code></p>
</blockquote>
<p>hm, you could write a simple parser by ignoring most of the characters and just looking for the relevant parts (in this example: "A..Z", "0..9" and "!:" etc.) but you will run into troubles if the arguments in "indirect" are functions.</p>
<p>maybe the safer approach would be to print every occurence of "indirect" in a third sheet. you could then add the desired output and write a small search and replace program to write your changes back.</p>
<blockquote>
<p>If you "get" every cell in a huge
spreadsheet you might end up needing
monstrous amounts of memory. I am
still willing to try and take that
risk.</p>
</blockquote>
<p>PabloG's method of selecting the used range is the way to go (added it into my original code). The speed is pretty good, especially if you check whether the current cell contains a formula. Obviously, this all depends on the size of your workbook.</p>
http://stackoverflow.com/questions/34493/excel-list-ranges-targeted-by-indirect-formulas/34719#347193Answer by sdfx for Excel: list ranges targeted by INDIRECT formulassdfxhttp://stackoverflow.com/users/34452008-08-29T16:53:09Z2008-08-29T18:33:15Z<p>You could iterate over the entire Workbook using vba (i've included the code from @PabloG and @euro-micelli ):</p>
<pre><code>Sub iterateOverWorkbook()
For Each i In ThisWorkbook.Worksheets
Set rRng = i.UsedRange
For Each j In rRng
If (Not IsEmpty(j)) Then
If (j.HasFormula) Then
If InStr(oCell.Formula, "INDIRECT") Then
j.Value = Replace(j.Formula, "INDIRECT(D4)", "INDIRECT(C4)")
End If
End If
End If
Next j
Next i
End Sub
</code></pre>
<p>This example substitues every occurrence of "indirect(D4)" with "indirect(C4)". You can easily swap the replace-function with something more sophisticated, if you have more complicated indirect-functions. Performance is not that bad, even for bigger Workbooks.</p>
http://stackoverflow.com/questions/653791/adding-a-row-across-multiple-sheets-tabs/653880#653880Comment by sdfx on Adding a row across multiple sheets/tabssdfxhttp://stackoverflow.com/users/34452009-03-17T13:11:33Z2009-03-17T13:11:33ZYou can set a range, iterate over it (For Each j In rng ... Next j) and then check the value of each element with InStr(j.value, "searchtext"). "searchtext" could be stored in a cell. Use j.Address() to get the address of a cell.http://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table/623956#623956Comment by sdfx on Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-09T18:20:53Z2009-03-09T18:20:53Zok, maybe not "elegant", but it's easy to implement with existing data. But I agree that the solution of Sarah is the way to go.http://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table/624843#624843Comment by sdfx on Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-09T18:13:54Z2009-03-09T18:13:54Z@Tilendor saw that too. If you add the creation of the compliment, this solution should be exactly like the corrected version of Sarahhttp://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table/624261#624261Comment by sdfx on Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-08T23:02:47Z2009-03-08T23:02:47ZThe automatic creation of the complementary link is really useful for keeping the connections valid. While I agree that it's not good style to use numbers as suffixes, replacing them with "word_id" & "synonymous_word_id" is just semantics, no? Thank you for your thorough answer.http://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table/624241#624241Comment by sdfx on Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-08T22:34:31Z2009-03-08T22:34:31ZWhile this might be the conceptual cleanest way of doing it, you run into problems when you are linking existing words. E.g. if wordA & B are synonymous and wordC & wordD also, and now you want to connect wordA & wordD. You have two different "concepts" which you need to combine.http://stackoverflow.com/questions/623909/rails-model-with-foreign-key-and-link-table/623956#623956Comment by sdfx on Rails model with foreign_key and link tablesdfxhttp://stackoverflow.com/users/34452009-03-08T18:00:44Z2009-03-08T18:00:44ZThanks, this is really an elegant solution to the synonym-problem.http://stackoverflow.com/questions/569287/can-ruby-split-strings/569336#569336Comment by sdfx on Can Ruby Split Strings?sdfxhttp://stackoverflow.com/users/34452009-02-20T12:01:26Z2009-02-20T12:01:26Zthe saddest thing is that ...http://stackoverflow.com/questions/555744/algorithm-to-find-two-repeated-numbers-in-an-array-without-sorting/555768#555768Comment by sdfx on Algorithm to find two repeated numbers in an array, without sortingsdfxhttp://stackoverflow.com/users/34452009-02-17T17:09:00Z2009-02-17T17:09:00ZIf you combine the sum with the product, the result will be unique: <a href="http://stackoverflow.com/questions/555744/algorithm-to-find-two-repeated-numbers-in-an-array-without-sorting/556744#556744" rel="nofollow" title="algorithm to find two repeated numbers in an array without sorting">stackoverflow.com/questions/555744/…</a>http://stackoverflow.com/questions/30328/ocr-with-the-tesseract-interface/523642#523642Comment by sdfx on OCR with the Tesseract interfacesdfxhttp://stackoverflow.com/users/34452009-02-07T12:23:32Z2009-02-07T12:23:32ZIf you have a problem, please ask a new question (button in the upper right corner).http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/92060#92060Comment by sdfx on What's your favorite "programmer" cartoon?sdfxhttp://stackoverflow.com/users/34452009-02-06T19:38:41Z2009-02-06T19:38:41ZBugs have 6 legs - but maybe it's a bug...http://stackoverflow.com/questions/55574/learning-ruby-on-rails/109784#109784Comment by sdfx on Learning Ruby on Railssdfxhttp://stackoverflow.com/users/34452009-02-05T21:36:52Z2009-02-05T21:36:52ZIt looks like the last InstantRails update was on 2007-12-28. <a href="http://rubyforge.org/projects/instantrails/" rel="nofollow">rubyforge.org/projects/instantrails</a>http://stackoverflow.com/questions/262657/the-coolest-server-names/262735#262735Comment by sdfx on The Coolest Server Namessdfxhttp://stackoverflow.com/users/34452009-02-03T13:33:38Z2009-02-03T13:33:38ZBut if you order them alphabetically, everything has a number-to-naming relationship.http://stackoverflow.com/questions/76047/ocr-web-service/505030#505030Comment by sdfx on OCR Web Servicesdfxhttp://stackoverflow.com/users/34452009-02-03T10:21:21Z2009-02-03T10:21:21ZAnd by "completely free" you mean "one free upload per week". A Plus membership costs $40 a month and you still got a limit of 10 documents per week.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175213#175213Comment by sdfx on What's the most egregious pop culture perversion of programming?sdfxhttp://stackoverflow.com/users/34452008-10-06T19:18:55Z2008-10-06T19:18:55ZI thought the "Visual" in Visual Studio were those cubes!http://stackoverflow.com/questions/112983/using-divs-to-display-table-like-dataComment by sdfx on Using Divs to display table-like datasdfxhttp://stackoverflow.com/users/34452008-09-22T13:08:39Z2008-09-22T13:08:39Z@chris true, but maybe he takes care of the width internally, maybe not. I'm not saying that suggesting tables is the wrong thing to do, but at least explain why it is bad (like you did). the top answer (by Andy) at this point is not very helpful and a div-variant should be up there somewere too.