User Roman Glass - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T09:23:19Zhttp://stackoverflow.com/feeds/user/11576http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions2excel vba: functions as arguments of functionsRoman Glass2009-07-13T08:48:53Z2009-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#12988191Answer by Roman Glass for Calling Excel Solver VBA from another worksheetRoman Glass2009-08-19T09:43:34Z2009-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-worksheet0Calling Excel Solver VBA from another worksheetRoman Glass2009-08-19T09:19:57Z2009-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$" & i)
</code></pre>
http://stackoverflow.com/questions/1120523/excel-vba-for-each-loop-takes-2-steps-at-once0excel vba for each loop takes 2 steps at onceRoman Glass2009-07-13T16:23:15Z2009-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#10540610Answer by Roman Glass for Create, sort, and print a list of 100 random ints in the fewest chars of codeRoman Glass2009-06-28T02:15:25Z2009-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<n;i++){int b=x[i],m=i,j=0;for(;j<n;j++)if(x[j]<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#10539781Answer by Roman Glass for Segmentation fault when malloc/free appear in loop in CRoman Glass2009-06-28T01:06:00Z2009-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#6003811Answer by Roman Glass for Python: Choosing between modules and classes.Roman Glass2009-03-01T19:47:52Z2009-03-01T19:47:52Z<p>Consider this example:</p>
<pre><code>configuration
|
+-> graphics
| |
| +-> 3D
| |
| +-> 2D
|
+-> 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#6000300Answer by Roman Glass for Do roles/views belong inside or outside of the Repository Pattern?Roman Glass2009-03-01T16:16:23Z2009-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#5999920Answer by Roman Glass for JavaScript shells - what is the differenceRoman Glass2009-03-01T15:50:51Z2009-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#5752660Answer by Roman Glass for Newbie: hanging browser on function callRoman Glass2009-02-22T17:14:41Z2009-02-22T17:14:41Z<p>document.write, but where? You have to specify this.</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello</title>
</head>
<body>
<pre><script type="text/javascript">
function myfunction() {
d = document.getElementById('hello');
d.style.display = "block";
d = document.getElementById('callme');
d.style.display = "none";
}
</script>
</pre>
<div id="hello" style="display:none">
Hello
</div>
<div id="callme">
<input type="button"
onclick="myfunction()"
value="Call function">
</input>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/401787/scaling-the-y-axis-with-matplotlib-in-python1Scaling the y-axis with matplotlib in pythonRoman Glass2008-12-30T23:02:08Z2009-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>^ ^
| |
| |
+----> |
Before +---->
After
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/250851/what-metadata-repository-tools-are-used-in-industry/260365#2603650Answer by Roman Glass for What metadata repository tools are used in industry?Roman Glass2008-11-03T23:46:38Z2008-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#2603310Answer by Roman Glass for Debugging techniquesRoman Glass2008-11-03T23:30:57Z2008-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#2430671Answer by Roman Glass for Datamining open source software alternativesRoman Glass2008-10-28T12:21:22Z2008-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-emacs2How to set the PYTHONPATH in emacsRoman Glass2008-10-28T12:17:35Z2008-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#879730Answer by Roman Glass for What would you consider to be, the ultimate curriculum for today’s software developer?Roman Glass2008-09-17T21:41:55Z2008-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#879062Answer by Roman Glass for When do transactions become more of a burden than a benefit?Roman Glass2008-09-17T21:34:08Z2008-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-ensureindexisvisible1How to make Swing scroll with "ensureIndexIsVisible"?Roman Glass2008-09-17T17:20:16Z2008-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 < 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#706273Answer by Roman Glass for Why is quicksort better than mergesort?Roman Glass2008-09-16T09:13:40Z2008-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#1118385Comment by Roman Glass on excel vba: functions as arguments of functionsRoman Glass2009-07-13T09:56:49Z2009-07-13T09:56:49ZYou are right, thank you very much!http://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions/1118385#1118385Comment by Roman Glass on excel vba: functions as arguments of functionsRoman Glass2009-07-13T09:46:07Z2009-07-13T09:46:07ZHi, 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 Functionhttp://stackoverflow.com/questions/1118344/excel-vba-functions-as-arguments-of-functions/1118358#1118358Comment by Roman Glass on excel vba: functions as arguments of functionsRoman Glass2009-07-13T09:09:25Z2009-07-13T09:09:25ZThis 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#401823Comment by Roman Glass on Scaling the y-axis with matplotlib in pythonRoman Glass2008-12-30T23:29:51Z2008-12-30T23:29:51ZSometimes 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#243067Comment by Roman Glass on Datamining open source software alternativesRoman Glass2008-10-28T14:47:17Z2008-10-28T14:47:17ZDidn't know that. Maybe I have to re-view Weka.http://stackoverflow.com/questions/85548/how-to-make-swing-scroll-with-ensureindexisvisible/85589#85589Comment by Roman Glass on How to make Swing scroll with "ensureIndexIsVisible"?Roman Glass2008-09-17T17:56:37Z2008-09-17T17:56:37Z:) Now I ask myself, why this error? Too many hours of hacking. Thanks!