User Andrei Savu - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:33:34Zhttp://stackoverflow.com/feeds/user/3885http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461052/smalltalk-learning-project-any-recommendation3Smalltalk Learning Project: Any recommendation ?Andrei Savu2009-01-20T12:10:25Z2009-10-30T15:01:09Z
<p>Currently I am learning Smalltalk. I do this because I want to learn as much as I can in one week about a new programming language in order to improve my skills. Next week I will try something else.</p>
<p>So far I am able to read Smalltalk code but I have a very limited experience in writing. Can you recommend me any small size project that will help me understand better this language in a short time period?</p>
http://stackoverflow.com/questions/453840/how-do-you-manage-to-write-high-quality-code-very-quickly31How do you manage to write high quality code very quickly?Andrei Savu2009-01-17T19:16:11Z2009-10-26T17:19:53Z
<p>Can you give some advice on how to maintain the code quality at a high level when you have to finish as soon as possible.</p>
<ul>
<li>Do you know some special techniques?</li>
<li>Is the programming language a critical element for code quality under a tight schedule?</li>
</ul>
http://stackoverflow.com/questions/43649/how-to-get-involved-in-an-open-source-project/43685#436857Answer by Andrei Savu for How to get involved in an open source projectAndrei Savu2008-09-04T12:50:22Z2009-10-10T21:12:32Z<p>There are many ways depending on your skills. Most of the time you will start by doing testing and bug reporting. After some time you will start to submit patches. Even later, if the community likes what you do, you can receive source code commit rights. </p>
<p>This question have been asked many times and if you search you will find many interesting pages. This is what I have found:</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=452836" rel="nofollow">http://ubuntuforums.org/showthread.php?t=452836</a></p>
<p><a href="http://www.youtube.com/watch?v=w15pymy84r4" rel="nofollow">http://www.youtube.com/watch?v=w15pymy84r4</a> </p>
<p>Anyway remember that working on open source software should be fun.</p>
http://stackoverflow.com/questions/166540/which-is-the-most-useful-uml-diagram-2Which is the most useful UML diagram? [closed]Andrei Savu2008-10-03T12:18:28Z2009-10-02T19:39:24Z
<p>I believe the most useful is the sequence diagram. What do you think?</p>
http://stackoverflow.com/questions/43639/what-framework-you-recomend-for-fast-secure-web-application-development2What framework you recomend for fast secure web application development?Andrei Savu2008-09-04T12:37:07Z2009-09-26T16:44:56Z
<p>I need to choose a framework for a new project I will start from scratch. The application performance requirements are very low. It needs to allow fast development and enforce good development practices. The final application should be easy to deploy and handle well database migrations.</p>
<p>The application will handle most of the time simple CRUD operations for a specific domain. It needs to be very secure. In the long term I will need to certify it's security. I have experience programming in PHP and now I am working as a Java developer. </p>
<p>The language for the framework is not important as long as it meets the requirements stated above. Thanks in advance for your answers.</p>
http://stackoverflow.com/questions/43713/what-do-you-think-about-eiffel-programming-language9What do you think about eiffel programming language?Andrei Savu2008-09-04T13:03:54Z2009-09-19T05:53:44Z
<p>I think it's a very carefully designed language. I like the programming concepts it promotes. After the <a href="http://dev.spartancoder.com/?q=node/65" rel="nofollow">first touch</a> I was very impressed. </p>
<p>I was wondering if there are any job ads for this language. The license price is a bit prohibitive so I think there are very few small companies that will choose it.</p>
<p>Have you worked on large projects involving Eiffel? What kind of path should I follow if I plan to apply in the future for job involving Eiffel?</p>
<p><strong>Update</strong>: Short version of the question is: Can you make a living by knowing Eiffel or it's just the type a language that makes you a better programmer?</p>
http://stackoverflow.com/questions/62241/how-to-convert-a-reader-to-inputstream-and-a-writer-to-outputstream6How to convert a Reader to InputStream and a Writer to OutputStream ?Andrei Savu2008-09-15T11:51:48Z2009-09-01T04:03:53Z
<p>Is there an easy way to avoid dealing with text encoding problems?</p>
http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain0PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T14:33:52Z2009-08-26T14:52:41Z
<p>Look at the following code snippet:</p>
<pre><code><?php
class A {
function fn() {
print 'Context: Class:' . get_class($this)
. ' Parent:' . get_parent_class($this) . "\n";
if(get_parent_class($this)) {
parent::fn();
}
}
}
class B extends A { }
class C extends B { }
$a = new A();
$c = new C();
$a->fn();
print "\n";
$c->fn();
?>
</code></pre>
<p>By running it you will get the following output:</p>
<pre><code>Context: Class:A Parent:
Context: Class:C Parent:B
Fatal error: Cannot access parent:: when current class scope has no parent in /home/andrei/test/test.php on line 10
</code></pre>
<p>I believe it should be something like this:</p>
<pre><code>Context: Class:A Parent:
Context: Class:C Parent:B
Context: Class:B Parent:A
Context: Class:A Parent:
</code></pre>
<p>What do you think? If <code>get_parent_class($this)</code> returns a not false value should we safely assume parent:: is defined? In what class context is <code>fn()</code> called?</p>
http://stackoverflow.com/questions/1277819/feed-aggregator-using-hbase-how-to-design-the-schema0Feed aggregator using hbase. How to design the schema?Andrei Savu2009-08-14T13:21:59Z2009-08-17T08:25:56Z
<p>I am working on a project involving monitoring a large number of rss/atom feeds. I want to use hbase for data storage and I have some problems designing the schema. For the first iteration I want to be able to generate an aggregated feed (last 100 posts from all feeds in reverse chronological order).</p>
<p>Currently I am using two tables: </p>
<pre><code>Feeds: column families Content and Meta : raw feed stored in Content:raw
Urls: column families Content and Meta : raw post version store in Content:raw and the rest of the data found in RSS stored in Meta
</code></pre>
<p>I need some sort of index table for the aggregated feed. How should I build that? Is hbase a good choice for this kind of application?</p>
<p>Question update: Is it possible( in hbase) to design a schema that could efficiently answer to queries like the one listed bellow?</p>
<pre><code>SELECT data FROM Urls ORDER BY date DESC LIMIT 100
</code></pre>
http://stackoverflow.com/questions/1277819/feed-aggregator-using-hbase-how-to-design-the-schema/1286764#12867640Answer by Andrei Savu for Feed aggregator using hbase. How to design the schema?Andrei Savu2009-08-17T08:25:56Z2009-08-17T08:25:56Z<p>Peter Rietzler answer on hbase-user mail list:</p>
<blockquote>
<p>Hi</p>
<p>In our project we are handling event
lists where we have similar
requirements. We do ordering by
choosing our row keys wisely. We use
the following key for our events (they
should be ordered by time in ascending
order):</p>
<p>eventListName/yyyyMMddHHmmssSSS-000[-111]</p>
<p>where eventListName is the name of the
event list and 000 is a three digit
instance id to disambiguate between
different running instances of
application, and -111 is optional to
disambiguate events that occured in
the same millisecond on one instance.</p>
<p>We additionally insert and artifical
row for each day with the id</p>
<p>eventListName/yyyyMMddHHmmssSSS</p>
<p>This allows us to start scanning at
the beginning of each day without
searching through the event list.</p>
<p>You need to be aware of the fact that
if you have a very high load of
inserts, then always one hbase region
server is busy inserting while the
others are idle ... if that's a
problem for you, you have to find
different keys for your purpose.</p>
<p>You could also use an HBase index
table but I have no experience with it
and I remember an email on the mailing
list that this would double all
requests because the API would first
lookup the index table and then the
original table ??? (please correct me
if this is not right ...)</p>
<p>Kind regards, Peter</p>
</blockquote>
<p>Thanks Peter. </p>
http://stackoverflow.com/questions/1217850/streaming-data-and-hadoop-not-hadoop-streaming/1278097#12780970Answer by Andrei Savu for Streaming data and Hadoop? (not Hadoop Streaming)Andrei Savu2009-08-14T14:14:12Z2009-08-14T14:14:12Z<p>I think you should take a look over Esper CEP ( <a href="http://esper.codehaus.org/" rel="nofollow">http://esper.codehaus.org/</a> ).</p>
http://stackoverflow.com/questions/1102607/how-to-remove-a-revision-from-a-bazaar-repository0How to remove a revision from a bazaar repository?Andrei Savu2009-07-09T08:44:25Z2009-07-20T11:40:34Z
<p>Is it possible to completely remove a revision from a bazaar repository? I'm asking this because someone just committed a full database dump. </p>
http://stackoverflow.com/questions/1084528/is-there-any-open-source-ai-engine1Is there any open source AI engine?Andrei Savu2009-07-05T17:58:42Z2009-07-05T20:26:51Z
<p>I am searching for an open source AI engine implemented in C/C++, ActionScript or Java with no success. Do you know any open source implementation? </p>
<p>Update: Thanks for answers! I had no idea how vast the AI field is. I am working on a sample application. I want to add intelligent behavior over a physics engine. I need some sort ai engine designed for games. </p>
http://stackoverflow.com/questions/64036/how-do-you-make-a-deep-copy-of-an-object2How do you make a deep copy of an object?Andrei Savu2008-09-15T15:39:04Z2009-06-11T04:55:01Z
<p>In java it's a bit difficult to implement a deep object copy function. What steps you take to ensure the original object and the cloned one share no reference? </p>
http://stackoverflow.com/questions/62222/centos-or-debian-as-a-server-os4Centos or Debian as a server OS ? Andrei Savu2008-09-15T11:42:56Z2009-03-27T06:06:10Z
<p>What would you choose for a server used for web hosting, dns and email and why?</p>
http://stackoverflow.com/questions/607373/is-there-any-way-to-know-if-a-php-script-is-running-in-cli-mode3Is there any way to know if a php script is running in cli mode?Andrei Savu2009-03-03T17:38:09Z2009-03-03T17:57:31Z
<p>... or the other way around, is there any way to know if a php script is running inside a web server?</p>
http://stackoverflow.com/questions/505818/apache-capacity-planning-tool1Apache capacity planning tool?Andrei Savu2009-02-03T02:13:38Z2009-02-04T04:54:27Z
<p>Is there any tool specially designed to analyze Apache traffic logs and give some advices on future load (bandwidth & requests per second)? </p>
<p>I am searching for some tools to help me understand better how the server is used and where the performance bottleneck will appear. </p>
http://stackoverflow.com/questions/505818/apache-capacity-planning-tool/506792#5067920Answer by Andrei Savu for Apache capacity planning tool?Andrei Savu2009-02-03T11:39:33Z2009-02-03T11:39:33Z<p>I have found a nice tool for this. It's not exactly what I want but it's ok for now.</p>
<p>You can find it at the following page:</p>
<p><a href="http://www.goldb.org/perflog/" rel="nofollow">http://www.goldb.org/perflog/</a></p>
http://stackoverflow.com/questions/498630/is-django-a-good-choice-for-a-security-critical-application2Is django a good choice for a security critical application ?Andrei Savu2009-01-31T10:46:37Z2009-02-02T20:06:33Z
<p>I am asking this because most of the online banking software is built using Java. Is there any real reason for this?</p>
http://stackoverflow.com/questions/43975/can-you-recommend-good-uml-tutorials8Can you recommend good UML tutorials ?Andrei Savu2008-09-04T15:11:16Z2009-02-02T14:45:29Z
<p>I know I could search for this on the internet but the signal to noise ratio is too low. Have you found or know about any good tutorials on UML? I would really like to find something that explains UML modeling from a practical point of view. Also a complete application example would be very helpful. Thanks.</p>
http://stackoverflow.com/questions/312983/how-to-fix-apache-instability0How to fix Apache instability ?Andrei Savu2008-11-23T21:28:31Z2009-01-08T18:35:59Z
<p>I have configured a simple LAMP stack on Debian and I am experiencing some problems with the Apache web server. </p>
<p>Each 3-4 hours the web server is entering a deadlock and all the requests that hit the database block. The server is creating a new child for each request. The number of processes increases very quickly. After a few seconds Monit notices something is wrong and restarts the Apache server.</p>
<p>I suspect this problem is generated by the way PHP handles database connection pooling because the server is still able to answer static content requests. Have you experienced this kind of behavior? What should I try to do?</p>
<p><strong>Update:</strong> Problem solved. It seems it's a bad idea to use APC for opcode caching and user data. I am now using Memcache for storing user data and APC only for code. I still get some segmentation faults from time to time but the server is most of the time stable.</p>
http://stackoverflow.com/questions/63748/should-i-use-clone-when-adding-a-new-element-when-should-clone-be-used2Should I use clone when adding a new element? When should clone be used?Andrei Savu2008-09-15T15:08:20Z2008-12-09T22:48:25Z
<p>I want to implement in Java a class for handling graph data structures. I have a Node class and an Edge class. The Graph class maintains two list: a list of nodes and a list of edges. Each node must have an unique name. How do I guard against a situation like this:
</p>
<pre><code>Graph g = new Graph();
Node n1 = new Node("#1");
Node n2 = new Node("#2");
Edge e1 = new Edge("e#1", "#1", "#2");
// Each node is added like a reference
g.addNode(n1);
g.addNode(n2);
g.addEdge(e1);
// This will break the internal integrity of the graph
n1.setName("#3");
g.getNode("#2").setName("#4");
</pre>
<p></code></p>
<p>I believe I should clone the nodes and the edges when adding them to the graph and return a NodeEnvelope class that will maintain the graph structural integrity. Is this the right way of doing this or the design is broken from the beginning ?</p>
http://stackoverflow.com/questions/312459/how-to-increment-the-ttl-value-on-windows0How to increment the TTL value on Windows?Andrei Savu2008-11-23T12:31:59Z2008-11-23T23:24:46Z
<p>On Linux this is easy to do. Is it possible on Windows?</p>
<p>Clarification: I want to increment the TTL for all incoming packets. </p>
http://stackoverflow.com/questions/15376/whats-the-best-uml-diagramming-tool/166532#1665320Answer by Andrei Savu for What's the best UML diagramming tool?Andrei Savu2008-10-03T12:12:44Z2008-10-03T12:12:44Z<p>For sequence diagrams you can also try <a href="http://www.tracemodeler.com/index.html" rel="nofollow">Trace Modeler</a>. It's not free but it has a great interface, very friendly and productive. You can use it on any platform. </p>
http://stackoverflow.com/questions/67097/is-there-any-mandatory-certification-a-programmer-should-have5Is there any mandatory certification a programmer should have?Andrei Savu2008-09-15T21:22:17Z2008-10-02T16:28:48Z
<p>What kind of certifications would you recommend to an young future programmer?</p>
http://stackoverflow.com/questions/111292/free-version-control-services/111899#1118990Answer by Andrei Savu for Free version control services?Andrei Savu2008-09-21T19:53:15Z2008-09-21T19:53:15Z<p><a href="https://opensvn.csie.org/" rel="nofollow">https://opensvn.csie.org/</a> also provides free private subversion hosting. </p>
http://stackoverflow.com/questions/80980/creating-modifying-images-in-javascript/81023#810230Answer by Andrei Savu for Creating/modifying images in JavaScriptAndrei Savu2008-09-17T08:11:21Z2008-09-17T08:11:21Z<p>Is possible to do file editing on the client side inside a Java applet. You will need to signed applet. </p>
http://stackoverflow.com/questions/69941/managing-itpables-rules-in-linux/69971#699710Answer by Andrei Savu for Managing itpables rules in LinuxAndrei Savu2008-09-16T07:04:44Z2008-09-16T07:04:44Z<p>One simple solution is to use multiple bash scripts for each section something like: </p>
<pre><code>iptables-routing.sh
iptables-ssh-bans.sh
iptables-blacklist.sh
</code></pre>
<p>And run this files from a master script.</p>
http://stackoverflow.com/questions/67379/advices-on-how-to-start-and-maintain-a-software-developer-blog-3Advices on how to start and maintain a software developer blog?Andrei Savu2008-09-15T21:53:16Z2008-09-15T22:01:24Z
<p>Share advices about how to run a blog about software development and technology? What mistakes have you seen very often? What makes a developer blog worth reading?</p>
http://stackoverflow.com/questions/63126/blocking-part-of-a-website/63179#631790Answer by Andrei Savu for Blocking part of a website Andrei Savu2008-09-15T14:05:40Z2008-09-15T14:05:40Z<p>Maybe you can find some sort of http proxy you could install to filter this content and use that when browsing. On Firefox you could easily define a rule for Adblock Plus.</p>
http://stackoverflow.com/questions/1084528/is-there-any-open-source-ai-engine/1084539#1084539Comment by Andrei Savu on Is there any open source AI engine?Andrei Savu2009-07-05T20:52:47Z2009-07-05T20:52:47ZI look over the following project on sourceforge: <a href="http://sourceforge.net/projects/robocode/" rel="nofollow">sourceforge.net/projects/robocode</a> , <a href="http://sourceforge.net/projects/markiv/" rel="nofollow">sourceforge.net/projects/markiv</a> , <a href="http://sourceforge.net/projects/uvsim/" rel="nofollow">sourceforge.net/projects/uvsim</a> , <a href="http://sourceforge.net/projects/simspark/" rel="nofollow">sourceforge.net/projects/simspark</a> . Thanks for answering. http://stackoverflow.com/questions/1084528/is-there-any-open-source-ai-engine/1084539#1084539Comment by Andrei Savu on Is there any open source AI engine?Andrei Savu2009-07-05T20:31:04Z2009-07-05T20:31:04ZExcellent list! Thanks!http://stackoverflow.com/questions/1084528/is-there-any-open-source-ai-engine/1084545#1084545Comment by Andrei Savu on Is there any open source AI engine?Andrei Savu2009-07-05T20:28:36Z2009-07-05T20:28:36ZI like Alive! Nice project. Has many of the features I need. http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782294#782294Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T19:54:02Z2009-04-23T19:54:02ZI have discovered this behaviour by helping a friend. Now I understand why things are the way they are. Thanks for explanations. I want to chat more with you about php and web apps. Contact me if you want at contact[at]andreisavu[dot]ro. Thanks again. http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782294#782294Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T15:53:42Z2009-04-23T15:53:42ZThanks for the quick answer. Strange stuff! http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chainComment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T15:50:11Z2009-04-23T15:50:11Z@CoryWalker Be my guest! You are free to change anything. http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782130#782130Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T15:11:45Z2009-04-23T15:11:45ZIt's seems the context is never set as expected. http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782130#782130Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T15:02:17Z2009-04-23T15:02:17ZI believe it's a bug because the function should be called in the context of the child class. http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782127#782127Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T15:00:03Z2009-04-23T15:00:03ZI'm not doing a call to a static method. See: <a href="http://www.php.net/keyword.parent" rel="nofollow">php.net/keyword.parent</a> http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chain/782128#782128Comment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T14:59:30Z2009-04-23T14:59:30ZIt's not possible to call parent->fn(). See: <a href="http://www.php.net/keyword.parent" rel="nofollow">php.net/keyword.parent</a> http://stackoverflow.com/questions/782033/php-call-method-in-the-context-of-each-object-of-the-inheritance-chainComment by Andrei Savu on PHP: call method in the context of each object of the inheritance chainAndrei Savu2009-04-23T14:55:16Z2009-04-23T14:55:16ZSame error:
Context: Class:B Parent:A
Fatal error: Cannot access parent:: when current class scope has no parent in /home/andrei/test/test.php
http://stackoverflow.com/questions/101935/validate-xml-using-a-custom-dtd-in-php/101962#101962Comment by Andrei Savu on Validate XML using a custom DTD in PHPAndrei Savu2009-04-02T11:47:45Z2009-04-02T11:47:45Z<a href="http://uk3.php.net/manual/en/domdocument.schemavalidate.php#62032" rel="nofollow">uk3.php.net/manual/en/…</a> looks like there is a better way than a custom error handlerhttp://stackoverflow.com/questions/101935/validate-xml-using-a-custom-dtd-in-php/101962#101962Comment by Andrei Savu on Validate XML using a custom DTD in PHPAndrei Savu2009-04-02T11:29:07Z2009-04-02T11:29:07Zthe only way to get the validation error is to use a custom error handler. really ugly. php sucks at error handlinghttp://stackoverflow.com/questions/505818/apache-capacity-planning-tool/510103#510103Comment by Andrei Savu on Apache capacity planning tool?Andrei Savu2009-02-04T23:45:11Z2009-02-04T23:45:11ZI am already using apachetop. It's a nice tool if you want to have a live look at server activity. What I need is a tool to help me see server activity ( request per second and bandwidth usage ) back in time.http://stackoverflow.com/questions/461052/smalltalk-learning-project-any-recommendation/461077#461077Comment by Andrei Savu on Smalltalk Learning Project: Any recommendation ?Andrei Savu2009-01-21T10:09:26Z2009-01-21T10:09:26ZOk. Thanks! I will do that.