User Roman Glass - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:23:19Z http://stackoverflow.com/feeds/user/11576 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions 2 excel vba: functions as arguments of functions Roman Glass 2009-07-13T08:48:53Z 2009-09-26T19:30:05Z <p>There is no special type for functions, therefore it is hard for me to see, how to add functions as arguments to functions in excel vba.</p> <p>What I try to accomplish is something like this:</p> <pre><code>function f(g as function, x as string) as string f = g(x) end function </code></pre> <p>Concerning the motivation: I have a masse of little functions all repeating itself but one call to a specific function.</p> <p>Thanks for taking the time to answer this question!</p> http://stackoverflow.com/questions/1298720/calling-excel-solver-vba-from-another-worksheet/1298819#1298819 1 Answer by Roman Glass for Calling Excel Solver VBA from another worksheet Roman Glass 2009-08-19T09:43:34Z 2009-08-19T09:43:34Z <p>I just had to reopen the workbook.</p> <pre><code>Workbooks.Open "foo.xls" wb.Activate ws.Activate </code></pre> http://stackoverflow.com/questions/1298720/calling-excel-solver-vba-from-another-worksheet 0 Calling Excel Solver VBA from another worksheet Roman Glass 2009-08-19T09:19:57Z 2009-08-19T09:43:34Z <p>After creating a new workbook, I am trying to solve a newly created worksheet of this workbook in VBA. Despite of activating the new worksheet, Solver attempts to solve the worksheet, where the macro lies.</p> <p>Any suggestions, on how to make sure Solver solves the right worksheet?</p> <p>I use this code to activate the worksheet.</p> <pre><code>ws.Activate </code></pre> <p>And this is an example, how I reference the cells in the parametrization of Solver.</p> <pre><code>SolverOk SetCell:=Range("$E$" &amp; i) </code></pre> http://stackoverflow.com/questions/1120523/excel-vba-for-each-loop-takes-2-steps-at-once 0 excel vba for each loop takes 2 steps at once Roman Glass 2009-07-13T16:23:15Z 2009-07-13T16:47:34Z <p>I want to process every element of a for-loop. Taking this code, why is just every second element processed?</p> <pre><code>For Each row In ws.Rows If IsEmpty(row.Cells(row.row, 1)) Then Exit For Else MsgBox row.Cells(row.row, 1).value End If Next </code></pre> <p>Thanks in advance for your answers!</p> http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code/1054061#1054061 0 Answer by Roman Glass for Create, sort, and print a list of 100 random ints in the fewest chars of code Roman Glass 2009-06-28T02:15:25Z 2009-06-28T02:15:25Z <p>plain old c-code in 167 chars:</p> <pre><code>main(){int i=100,x[i],n=i;while(i)x[--i]=rand();for(i=0;i&lt;n;i++){int b=x[i],m=i,j=0;for(;j&lt;n;j++)if(x[j]&lt;x[m])m=j;x[i]=x[m];x[m]=b;}i=n;while(i)printf("%d ",x[--i]);} </code></pre> http://stackoverflow.com/questions/1053919/segmentation-fault-when-malloc-free-appear-in-loop-in-c/1053978#1053978 1 Answer by Roman Glass for Segmentation fault when malloc/free appear in loop in C Roman Glass 2009-06-28T01:06:00Z 2009-06-28T01:06:00Z <h2>Set the flags</h2> <p>Before posting, consider setting the following flags: cc -Werror -Wall smth.c</p> <pre><code>smth.c: In function 'main': smth.c:13: error: 'NULL' undeclared (first use in this function) smth.c:13: error: (Each undeclared identifier is reported only once smth.c:13: error: for each function it appears in.) cc1: warnings being treated as errors smth.c:29: warning: implicit declaration of function 'malloc' smth.c:29: warning: incompatible implicit declaration of built-in function 'malloc' smth.c:37: error: 'cplptr2' undeclared (first use in this function) smth.c:37: warning: incompatible implicit declaration of built-in function 'malloc' smth.c:53: error: 'struct cpl_def' has no member named 'a' smth.c:54: error: 'struct cpl_def' has no member named 'b' smth.c:57: warning: implicit declaration of function 'free' smth.c:63: error: 'struct cpl_def' has no member named 'a' smth.c:64: error: 'struct cpl_def' has no member named 'b' smth.c:69: error: 'struct cpl_def' has no member named 'a' smth.c:70: error: 'struct cpl_def' has no member named 'b' smth.c:76:12: error: "/*" within comment smth.c:77: warning: control reaches end of non-void function </code></pre> <p>Next thing what you need is a <a href="http://stackoverflow.com/questions/575914/is-there-an-auto-resizing-array-dynamic-array-implementation-for-c-that-comes-wit">dynamic array</a> Please structure your code! The functions to build such an array could be abstracted.</p> <p>Do you read from right to left? No offense, but comments go before the code.</p> <pre><code>/* comment */ code </code></pre> <p>Don't be a star-programmer! If something needs more than one star, make a function.</p> http://stackoverflow.com/questions/600190/python-choosing-between-modules-and-classes/600381#600381 1 Answer by Roman Glass for Python: Choosing between modules and classes. Roman Glass 2009-03-01T19:47:52Z 2009-03-01T19:47:52Z <p>Consider this example:</p> <pre><code>configuration | +-&gt; graphics | | | +-&gt; 3D | | | +-&gt; 2D | +-&gt; sound </code></pre> <p>The real question is: What is the difference between classes and modules in this hierarchy, as it could be represented by both means?</p> <p>Classes represent types. If you implement your solution with classes instead of modules, you are able to check a graphics object for it's proper type, but write generic graphics functions.</p> <p>With classes you can generate parametrized values. This means it is possible to initialize differently the <em>sounds</em> class with a constructor, but it is hard to initialize a module with different parameters.</p> <p>The point is, that you really something different from the modeling standpoint.</p> http://stackoverflow.com/questions/599499/do-roles-views-belong-inside-or-outside-of-the-repository-pattern/600030#600030 0 Answer by Roman Glass for Do roles/views belong inside or outside of the Repository Pattern? Roman Glass 2009-03-01T16:16:23Z 2009-03-01T16:16:23Z <p>After designing some products with an extra data access layer, I would say: Design it with the functional dependencies in mind!</p> <p>Suppose you have the following very common structure for the data dictionary: productName, productDetail, productPrice, customerName, customerDetail.</p> <p>One can easily identify the relations: Customer and Product.</p> <p>class Customer: customerName, customerDetail</p> <p>class Product: productName, productDetail</p> <p>But there is a third relation to draw, it is</p> <p>class CustomerProduct: customerName, productName, productPrize</p> <p>Because you can reason that only customerName X productName |-> productPrize. For the use case Customer C wants to know the price of product P:</p> <p>Customer('C').prize('P')</p> <p>The method prize must be delegated to know the exact prize and you have a clean separation of concerns. To be clear about the point: the BO will show <em>no</em> prize to the customer. Just the method has access to the delicate data. And this access you can restrict.</p> http://stackoverflow.com/questions/597876/javascript-shells-what-is-the-difference/599992#599992 0 Answer by Roman Glass for JavaScript shells - what is the difference Roman Glass 2009-03-01T15:50:51Z 2009-03-01T15:50:51Z <p>The <a href="https://developer.mozilla.org/en/Rhino%5FShell" rel="nofollow">Rhino Shell</a> is not on the list, but pretty cool, if you want to write your business logic and explore data.</p> http://stackoverflow.com/questions/575222/newbie-hanging-browser-on-function-call/575266#575266 0 Answer by Roman Glass for Newbie: hanging browser on function call Roman Glass 2009-02-22T17:14:41Z 2009-02-22T17:14:41Z <p>document.write, but where? You have to specify this.</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;Hello&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;pre&gt;&lt;script type="text/javascript"&gt; function myfunction() { d = document.getElementById('hello'); d.style.display = "block"; d = document.getElementById('callme'); d.style.display = "none"; } &lt;/script&gt; &lt;/pre&gt; &lt;div id="hello" style="display:none"&gt; Hello &lt;/div&gt; &lt;div id="callme"&gt; &lt;input type="button" onclick="myfunction()" value="Call function"&gt; &lt;/input&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/401787/scaling-the-y-axis-with-matplotlib-in-python 1 Scaling the y-axis with matplotlib in python Roman Glass 2008-12-30T23:02:08Z 2009-01-01T14:00:22Z <p>Does anybody know how to scale the y-axis with <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a>? I don't want to change the y-limit, I just want to extend the physical space.</p> <pre><code>^ ^ | | | | +----&gt; | Before +----&gt; After </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/250851/what-metadata-repository-tools-are-used-in-industry/260365#260365 0 Answer by Roman Glass for What metadata repository tools are used in industry? Roman Glass 2008-11-03T23:46:38Z 2008-11-03T23:46:38Z <p>Just use <a href="http://wwwhome.cs.utwente.nl/~tcm/index.html" rel="nofollow">tcm</a>. It is pretty ugly but really useful, if you are searching for something intelligent. </p> http://stackoverflow.com/questions/91527/debugging-techniques/260331#260331 0 Answer by Roman Glass for Debugging techniques Roman Glass 2008-11-03T23:30:57Z 2008-11-03T23:30:57Z <p>If you are debugging, you know something horribly confused you. Don't do it! Step back, write down invariants and understand what you are doing. </p> <p><a href="http://en.wikipedia.org/wiki/Assertion_(computing)" rel="nofollow">assert</a> is a nice way to accomplish this.</p> http://stackoverflow.com/questions/243033/datamining-open-source-software-alternatives/243067#243067 1 Answer by Roman Glass for Datamining open source software alternatives Roman Glass 2008-10-28T12:21:22Z 2008-10-28T14:45:46Z <p><a href="http://www.pentaho.com/products/data_mining/" rel="nofollow">Pentaho</a> is a nice suit for Business Intelligence. So maybe you would like to take a look at it. I have some experience in it, mainly for data warehousing and was quite happy.</p> http://stackoverflow.com/questions/243060/how-to-set-the-pythonpath-in-emacs 2 How to set the PYTHONPATH in emacs Roman Glass 2008-10-28T12:17:35Z 2008-10-28T14:00:23Z <p>Emacs does not recognize my correct python path. I think it is a general problem with emacs not recognizing my environment variables. I have GNU Emacs 22.1.1 (i386-apple-darwin8.9.1, Carbon Version 1.6.0) of 2007-06-17 installed.</p> <p>I have set the PYTHONPATH in my ~/.bashrc. Maybe I should set it somewhere else?</p> http://stackoverflow.com/questions/87944/what-would-you-consider-to-be-the-ultimate-curriculum-for-todays-software-devel/87973#87973 0 Answer by Roman Glass for What would you consider to be, the ultimate curriculum for today’s software developer? Roman Glass 2008-09-17T21:41:55Z 2008-09-17T21:41:55Z <p>That's easy: <a href="http://en.wikipedia.org/wiki/G%C3%B6del,_Escher,_Bach" rel="nofollow">GEB</a> to get some feeling. Than <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a> for the craft. And than just stick to the bibliography.</p> http://stackoverflow.com/questions/87796/when-do-transactions-become-more-of-a-burden-than-a-benefit/87906#87906 2 Answer by Roman Glass for When do transactions become more of a burden than a benefit? Roman Glass 2008-09-17T21:34:08Z 2008-09-17T21:34:08Z <p>The use of shared resources is wrong in the long run. Because by reusing an existing environment you are creating more and more possibilities. Just review the busy beavers :) The way Erlang goes is the right way to produce fault-tolerant and easily verifiable systems. </p> <p>But transactional memory is essential for many applications in widespread use. If you consult a bank with its millions of customers for example you can't just copy the data for the sake of efficiency.</p> <p>I think monads are a cool concept to handle the difficult concept of changing state.</p> http://stackoverflow.com/questions/85548/how-to-make-swing-scroll-with-ensureindexisvisible 1 How to make Swing scroll with "ensureIndexIsVisible"? Roman Glass 2008-09-17T17:20:16Z 2008-09-17T17:59:34Z <p>When I run this code the selected item is not visible. I've already tried to run it in a separate thread with no luck.</p> <pre><code>import javax.swing.JFrame; import java.awt.Container; import javax.swing.JList; import javax.swing.ListSelectionModel; import javax.swing.JScrollPane; import java.awt.Dimension; public class ScrollList extends JFrame { int defaultValue; ScrollList() { Container cp = getContentPane(); JList list = createList(); defaultValue = 20; cp.add(createScrollPane(list)); pack(); setVisible(true); list.ensureIndexIsVisible(defaultValue); } JList createList() { Integer[] model = new Integer[73]; JList list = new JList(model); for (int i = 1; i &lt; model.length; i++) model[i] = i; list.setSelectedIndex(defaultValue); return list; } JScrollPane createScrollPane(JList list) { JScrollPane s = new JScrollPane(createList()); s.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); s.setPreferredSize(new Dimension(100, 200)); return s; } public static void main(String[] args) { new ScrollList(); } } </code></pre> <p>Thanks for helping in advance!</p> http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70627#70627 3 Answer by Roman Glass for Why is quicksort better than mergesort? Roman Glass 2008-09-16T09:13:40Z 2008-09-16T09:13:40Z <p><a href="http://en.wikipedia.org/wiki/Mu_(negative)" rel="nofollow">Mu!</a> Quicksort is not better, it is well suited for a different kind of application, than mergesort.</p> <blockquote> <p>Mergesort is worth considering if speed is of the essence, bad worst-case performance cannot be tolerated, and extra space is available.[1]</p> </blockquote> <p>You stated that they «They're both O(nlogn) […]». This is wrong. «Quicksort uses about n^2/2 comparisons in the worst case.»[1].</p> <p>However the most important property according to my experience is the easy implementation of sequential access you can use while sorting when using programming languages with the imperative paradigm. </p> <p>[1] Sedgewick, Algorithms</p> http://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions/1118385#1118385 Comment by Roman Glass on excel vba: functions as arguments of functions Roman Glass 2009-07-13T09:56:49Z 2009-07-13T09:56:49Z You are right, thank you very much! http://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions/1118385#1118385 Comment by Roman Glass on excel vba: functions as arguments of functions Roman Glass 2009-07-13T09:46:07Z 2009-07-13T09:46:07Z Hi, I think this is the right answer. This is the way to do it in oo-languages, I just didn't know, that interfaces exist in VBA -- my fault. I remember seeing this technic the 1st time in <i>a little java</i>. But I have to test the proposed solution. At the moment I got an error message about not implementing the interface. Public Function apply(ByVal tmp As Variant) As Boolean End Function --- Implements IBooleanFunction Public Function apply(ByVal tmp As Variant) As Boolean apply = Application.IsText(tmp) End Function http://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions/1118358#1118358 Comment by Roman Glass on excel vba: functions as arguments of functions Roman Glass 2009-07-13T09:09:25Z 2009-07-13T09:09:25Z This seems to be specific for <i>Access</i>. There is just a function Evaluate, but this is for reevaluation of cells. http://stackoverflow.com/questions/401787/scaling-the-y-axis-with-matplotlib-in-python/401823#401823 Comment by Roman Glass on Scaling the y-axis with matplotlib in python Roman Glass 2008-12-30T23:29:51Z 2008-12-30T23:29:51Z Sometimes it is better to try something :) 'figure' did the right job. Thank you very much! http://stackoverflow.com/questions/243033/datamining-open-source-software-alternatives/243067#243067 Comment by Roman Glass on Datamining open source software alternatives Roman Glass 2008-10-28T14:47:17Z 2008-10-28T14:47:17Z Didn't know that. Maybe I have to re-view Weka. http://stackoverflow.com/questions/85548/how-to-make-swing-scroll-with-ensureindexisvisible/85589#85589 Comment by Roman Glass on How to make Swing scroll with "ensureIndexIsVisible"? Roman Glass 2008-09-17T17:56:37Z 2008-09-17T17:56:37Z :) Now I ask myself, why this error? Too many hours of hacking. Thanks!