User seuvitor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:41:04Zhttp://stackoverflow.com/feeds/user/23477http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/645916/is-there-a-way-to-use-css-to-highlight-keywords1Is there a way to use CSS to highlight keywords?seuvitor2009-03-14T13:35:46Z2009-03-15T00:55:00Z
<p>Well, that's the context: I am editing a latex source file in google docs, and I wonder if I could use CSS to color arbitrary keywords and text enclosed in dollar signs.</p>
<p>For example, given this HTML file:</p>
<pre><code><html><body>
\section{Heading 1}
<br>
This is a simple file with a formula $x_1 = x_0 + 1$.
<br>
Here it ends \cite{somebody}.
</body></html>
</code></pre>
<p>I wanted CSS to let me see this:</p>
<pre>
\section{Heading 1}
This is a simple file with a formula $x_1 = x_0 + 1$.
Here it ends \cite{somebody}.
</pre>
<p>I assume it can't be done, since there is no markup isolating these constructs I want to format.</p>
<p>Cheers.</p>
<p>EDIT: Seems like the sample output is not colored as I intended, although it is in the edit view.</p>
http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632937#6329370Answer by seuvitor for Why is it hard for a program to generate random numbers?seuvitor2009-03-11T00:57:38Z2009-03-11T00:57:38Z<p>It's easy to come up with an algorithm that generates unexpected numbers, that appear random in some sense. But to design an algorithm that generates true random numbers, well, that's hard.</p>
<p>Imagine designing an algorithm to simulate a dice roll. You can easily formulate some procedure to generate different numbers on each iteration. But can you <em>guarantee</em> that, in the long run (I mean, up to the infinity), the amount of times that 6 came out will be the same as any other number? When designing a good random number generator, that's the kind of commitment that you have to assume. You have to provide strong guarantees (i.e. mathematical proofs) about the randomness, if the application (e.g. lottery) requires it.</p>
http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c3Trouble with Factory and dynamic allocation in C++seuvitor2008-12-29T20:55:58Z2008-12-30T06:30:57Z
<p>I have a factory that builds the objects with longest lifetime in my application. These have types, lets say, <code>ClientA</code> and <code>ClientB</code>, which depend on <code>Provider</code> (an abstract class with many possible implementations), so both clients have a reference to Provider as member.</p>
<p>According to the command-line arguments, the factory chooses one implementation of <code>Provider</code>, constructs it (with "<code>new</code>"), and passes it to the constructors of both clients.</p>
<p>The factory returns an object that represents my entire app. My main function is basically this:</p>
<pre><code>int main(int argc, char** argv)
{
AppFactory factory(argc, argv);
App app = factory.buildApp();
return app.run();
}
</code></pre>
<p>And the <code>buildApp</code> method is basically this:</p>
<pre><code>App AppFactory::buildApp()
{
Provider* provider = NULL;
if (some condition)
{
provider = new ProviderX();
}
else
{
provider = new ProviderY();
}
ClientA clientA(*provider);
ClientB clientB(*provider);
App app(clientA, clientB);
return app;
}
</code></pre>
<p>So, when execution ends, destructors of all objects are called, except for the provider object (because it was constructed with "<code>new</code>").</p>
<p>How can I improve this design to make sure that the destructor of the provider is called?</p>
<p>EDIT: To clarify, my intention is that both clients, the provider and the App object to share the same lifetime. After all answers, I now think both clients and the provider should be allocated on the heap its references passed to the App object, which will be responsible for deleting them when it dies. What do you say?</p>
http://stackoverflow.com/questions/182197/how-do-i-watch-a-file-for-changes-using-python/182441#1824411Answer by seuvitor for How do I watch a file for changes using Python?seuvitor2008-10-08T12:18:25Z2008-10-08T12:18:25Z<p>Well, since you are using Python, you can just open a file and keep reading lines from it.</p>
<pre><code>f = open('file.log')
</code></pre>
<p>If the line read is <strong>not empty</strong>, you process it.</p>
<pre><code>line = f.readline()
if line:
// Do what you want with the line
</code></pre>
<p>You may be missing that it is ok to keep calling <code>readline</code> at the EOF. It will just keep returning an empty string in this case. And when something is appended to the log file, the reading will continue from where it stopped, as you need.</p>
<p>If you are looking for a solution that uses events, or a particular library, please specify this in your question. Otherwise, I think this solution is just fine.</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182238#182238102Answer by seuvitor for What are some funny loading statements to keep users amused?seuvitor2008-10-08T11:27:32Z2008-10-08T11:27:32Z<p>"Warming up Large Hadron Collider..."</p>
http://stackoverflow.com/questions/162042/are-there-any-viable-alternatives-to-the-gof-singleton-pattern/162311#1623115Answer by seuvitor for Are there any viable alternatives to the GOF Singleton Pattern?seuvitor2008-10-02T13:38:16Z2008-10-02T13:38:16Z<p>The finest solution I have came across is using the factory pattern to construct instances of your classes. Using the pattern, you can <em>assure</em> that there is only one instance of a class that is shared among the objects that use it.</p>
<p>I though it would be complicated to manage, but after reading this blog post <a href="http://misko.hevery.com/2008/08/21/where-have-all-the-singletons-gone/" rel="nofollow">"Where Have All the Singletons Gone?"</a>, it seems so natural. And as an aside, it helps a lot with isolating your unit tests.</p>
<p>In summary, what you need to do? Whenever an object depends on another, it will receive an instance of it only through its constructor (no new keyword in your class).</p>
<pre><code>class NeedyClass {
private ExSingletonClass exSingleton;
public NeedyClass(ExSingletonClass exSingleton){
this.exSingleton = exSingleton;
}
// Here goes some code that uses the exSingleton object
}
</code></pre>
<p>And then, the factory.</p>
<pre><code>class FactoryOfNeedy {
private ExSingletonClass exSingleton;
public FactoryOfNeedy() {
this.exSingleton = new ExSingletonClass();
}
public NeedyClass buildNeedy() {
return new NeedyClass(this.exSingleton);
}
}
</code></pre>
<p>As you will instantiate your factory only once, there will be a single instantiation of exSingleton. Every time you call buildNeedy, the new instance of NeedyClass will be bundled with exSingleton.</p>
<p>I hope this helps. Please point out any mistakes.</p>
http://stackoverflow.com/questions/157039/most-pythonic-way-of-counting-matching-elements-in-something-iterable/157620#1576200Answer by seuvitor for Most pythonic way of counting matching elements in something iterableseuvitor2008-10-01T13:32:41Z2008-10-01T19:40:47Z<p>The idea here is to use reduction to avoid repeated iterations. Also, this does not create any extra data structures, if memory is an issue for you. You start with a dictionary with your counters (<code>{'div2': 0, 'div3': 0}</code>) and increment them along the iteration.</p>
<pre><code>def increment_stats(stats, n):
if n % 2 == 0: stats['div2'] += 1
if n % 3 == 0: stats['div3'] += 1
return stats
r = xrange(1, 10)
stats = reduce(increment_stats, r, {'div2': 0, 'div3': 0})
print stats
</code></pre>
<p>If you want to count anything more complicated than divisors, it would be appropriate to use a more object-oriented approach (with the same advantages), encapsulating the logic for stats extraction.</p>
<pre><code>class Stats:
def __init__(self, div2=0, div3=0):
self.div2 = div2
self.div3 = div3
def increment(self, n):
if n % 2 == 0: self.div2 += 1
if n % 3 == 0: self.div3 += 1
return self
def __repr__(self):
return 'Stats(%d, %d)' % (self.div2, self.div3)
r = xrange(1, 10)
stats = reduce(lambda stats, n: stats.increment(n), r, Stats())
print stats
</code></pre>
<p>Please point out any mistakes.</p>
<p>@<a href="#158250" rel="nofollow">Henrik</a>: I think the first approach is less maintainable since you have to control initialization of the dictionary in one place and update in another, as well as having to use strings to refer to each stat (instead of having attributes). And I do not think OO is overkill in this case, for you said the predicates and objects will be complex in your application. In fact if the predicates were really simple, I wouldn't even bother to use a dictionary, a single fixed size list would be just fine. Cheers :)</p>
http://stackoverflow.com/questions/645916/is-there-a-way-to-use-css-to-highlight-keywords/647036#647036Comment by seuvitor on Is there a way to use CSS to highlight keywords?seuvitor2009-03-15T03:19:32Z2009-03-15T03:19:32ZHello, thanks for answering. In fact I don't need a syntax highlighting solution, it would be just a convenience for me since I am using google docs to edit latex files collaboratively. As far as I know, there is no support for custom java script in google docs. Regards.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237826#237826Comment by seuvitor on What is your best programmer joke?seuvitor2008-12-30T18:05:08Z2008-12-30T18:05:08Zthis is really good.. so naive :)http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/399612#399612Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T12:34:34Z2008-12-30T12:34:34ZFrom the beginning, I though about using smart pointers to have Java-like memory management. Unfortunately, I can't use boost in this project. But thanks for pointing it out, I think this is the most elegant solution.http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398829#398829Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T12:28:02Z2008-12-30T12:28:02ZFor now, the App object has two responsibilities: holding all components AND running the main client (the App::run() method delegates to the main client). I will remove this delegation so that App has a single responsibility, as in your code snippet. Thanks Rasmus!http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/399639#399639Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T12:18:06Z2008-12-30T12:18:06ZGood point, I think this last approach where everything goes to the heap, including the App, will be good enough for me. Thanks Chris!http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398902#398902Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T01:50:11Z2008-12-30T01:50:11ZTo clarify, my intention is that both clients, the provider and the App object have the same lifetime. After all answers, I now think they all should be allocated on the heap and deleted by the App object when its destructor is called. What do you say?http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398829#398829Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T01:44:10Z2008-12-30T01:44:10ZThe App object in my example has precisely this function of holding all the components. As you say, I should really make it responsible for deleting the provider. Thanks!http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398902#398902Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T01:41:56Z2008-12-30T01:41:56ZGood suggestion, but for me it makes more sense to make App own the provider, as suggested by Rasmus, thanks!http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398657#398657Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T01:41:05Z2008-12-30T01:41:05ZWell, previously, all my objects used to live on the stack, but then I realized that my provider should have different implementations, and polymorphism and dynamic allocation entered the game..http://stackoverflow.com/questions/398641/trouble-with-factory-and-dynamic-allocation-in-c/398649#398649Comment by seuvitor on Trouble with Factory and dynamic allocation in C++seuvitor2008-12-30T01:38:58Z2008-12-30T01:38:58ZI also think that the dependency shouldn't be on the factory, but the App object could own of the provider, as it already owns the other components.