User xardias - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T09:32:51Zhttp://stackoverflow.com/feeds/user/23156http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197160/how-do-you-optimise-your-javascript/197455#1974552Answer by xardias for How do you optimise your Javascript ?xardias2008-10-13T12:42:06Z2008-10-13T12:42:06Z<p>Yahoo provides a <a href="http://developer.yahoo.com/yui/profiler/" rel="nofollow">Javascript profiler</a>, you may want have a look at that one.</p>
http://stackoverflow.com/questions/149244/opinions-on-dbcook/152025#1520250Answer by xardias for Opinions on DBCook?xardias2008-09-30T07:01:55Z2008-09-30T07:01:55Z<p>I don't know DBCook, but it seems to be a similar project as <a href="http://elixir.ematia.de/trac/wiki" rel="nofollow">Elixir</a>. You may have a look at that project. It seems to be more active and is widely used (New TurboGears versions use this). </p>
http://stackoverflow.com/questions/149583/viewing-repository-information-from-within-eclipse-when-code-was-checked-out-usi/149606#1496061Answer by xardias for Viewing repository information from within Eclipse, when code was checked out using svn tortoisexardias2008-09-29T16:54:32Z2008-09-29T16:54:32Z<p>Did you set up your project for team sharing (right click on project->Team->Share project)? If I remember correctly that should detect the existing .svn folders an enables version control inside of eclipse.</p>
http://stackoverflow.com/questions/147741/character-reading-from-file-in-python/147755#1477550Answer by xardias for Character reading from file in Pythonxardias2008-09-29T06:54:22Z2008-09-29T06:54:22Z<p>This is Pythons way do show you unicode encoded strings. But i think you should be able to print the string on the screen or write it into a new file without any problems.</p>
<pre><code>>>> test = u"I don\u2018t like this"
>>> test
u'I don\u2018t like this'
>>> print test
I don‘t like this
</code></pre>
http://stackoverflow.com/questions/146252/which-chatrooms-do-developers-hackers-hang-out-in/146257#1462572Answer by xardias for Which chatrooms do developers/hackers hang out in?xardias2008-09-28T17:04:17Z2008-09-28T17:04:17Z<p>Well basicly in chatrooms regarding the current work and their tools. If I am configuring my server I hang out in #linux, if I am working on interfacing transmission with python I may hang out in #python and #transmission ;). Just as needed.
I usually don't hang around in multiple rooms all the time. It distracts from working on my projects. </p>
http://stackoverflow.com/questions/145683/burnt-out/145713#1457132Answer by xardias for burnt out?xardias2008-09-28T11:44:28Z2008-09-28T11:44:28Z<p>I think that this could also be the beginning of a real burn-out, or maybe a light depression. A physician or psychotherapist may be able to help you with that.</p>
http://stackoverflow.com/questions/132798/what-should-every-programmer-know/145636#1456362Answer by xardias for What should every programmer know?xardias2008-09-28T10:36:30Z2008-09-28T10:36:30Z<p>I think there are two things every programmer should learn:</p>
<ol>
<li><strong>Choose the right tools/languages for the right problem</strong></li>
<li><strong>You are programming to solve problems</strong></li>
</ol>
<p>Seems obvious but I think developers tend forget these two simple things. </p>
<p><hr /></p>
<p><strong>Choose the right tools/languages for the right problem</strong></p>
<p>I know many programmer who learned one language (mostly C++) and stick with it. Regardless of the Problem they are trying to solve they do it in C++, because C++ is the ultimate language from their point of view. Even if it could be solved in with a fractional amount of effort and code in other languages. </p>
<p><hr /></p>
<p><strong>You are programming to solve problems</strong></p>
<p>I know many programmer (me too sometimes) who start implementing one feature after another because its cool to have them. But in the end many of these features are pretty useless because no one needs them. You are programming to solve a problems for people. So don't let that target get out of your sight. </p>
http://stackoverflow.com/questions/145540/best-way-to-sandbox-apache-on-linux/145550#1455505Answer by xardias for Best way to sandbox Apache on Linuxxardias2008-09-28T09:24:33Z2008-09-28T09:24:33Z<p>Chroot jails can be really insecure when you are running a complete sandbox environment. Attackers have complete access to kernel functionality and for example may mount drives to access the "host" system.</p>
<p>I would suggest that you use linux-vserver. You can see linux-vserver as an improved chroot jail with a complete debian installation inside. It is really fast since it is running within one single kernel, and all code execution is one natively. </p>
<p>I personally use linux-vserver for seperation of all my services and there are only barely noticeable performance differences. </p>
<p>Have a look at the <a href="http://linux-vserver.org/Installation_on_Debian" rel="nofollow">linux-vserver wiki</a> for installation instructions.</p>
<p>regards, Dennis</p>
http://stackoverflow.com/questions/145508/do-you-think-a-software-company-should-impose-developers-a-coding-style/145533#1455330Answer by xardias for Do you think a software company should impose developers a coding-style?xardias2008-09-28T09:12:36Z2008-09-28T09:12:36Z<p>Yes, I think companies should. Developer may need to get used to the coding-style but in my opinion a good programmer should be able to work with any coding style. As Midhat said: It is important to have a consistent codebase.</p>
<p>I think this is also important for opensource projects, there is no supervisor to tell you how to write your code but many languages have specifications on how naming and organisation of your code should be. This helps a lot when integrating opensource components into your project. </p>
http://stackoverflow.com/questions/145499/merge-several-native-dlls-into-one-dll/145519#1455191Answer by xardias for Merge several native DLLs into one DLLxardias2008-09-28T09:05:11Z2008-09-28T09:05:11Z<p>As far as I know you cannot merge DLL files directly. But it should be possible with static libraries or object files. If it is possible for you to build static libraries of your projects you can merge them using the <a href="http://msdn.microsoft.com/en-us/library/7ykb2k5f(VS.80).aspx" rel="nofollow">Library Manager</a> by extracting object files from all libraries and packaging them into a new library. </p>
http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/145481#1454812Answer by xardias for Python Vs. Ruby for Metaprogrammingxardias2008-09-28T08:27:12Z2008-09-28T08:27:12Z<p>I am using Python for many projects and I think Python does provide all the features you asked for. </p>
<p>important:</p>
<ol>
<li>Metaprogramming: Python supports metaclasses and runtime class/method generation etc</li>
<li>Syntax: Well thats somehow subjective. I like Pythons syntax for its simplicity, but some People complain that Python is whitespace-sensitive.</li>
<li>Paradigms: Python supports procedural, object-oriented and basic functional programming. </li>
<li>I think Python has a very practical oriented style, it was very inspiring for me.</li>
</ol>
<p>Somewhat important:</p>
<ol>
<li>Performance: Well its a scripting language. But writing C extensions for Python is a common optimization practice. </li>
<li>Documentation: I cannot complain. Its not that detailed as someone may know from Java, but its good enough.</li>
</ol>
<p>As you are grad student you may want to read this paper claiming that <a href="http://openwetware.org/wiki/Julius_B._Lucks/Projects/Python_All_A_Scientist_Needs" rel="nofollow">Python is all a scientist needs</a>.
Unfortunately I cannot compare Python to Ruby, since I never used that language. </p>
<p>Regards,
Dennis</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219177#219177Comment by xardias on What was the strangest coding standard rule that you were forced to follow?xardias2008-10-21T14:24:12Z2008-10-21T14:24:12ZThats why tab identation is so great. Everyone can change the size in his editor ;)http://stackoverflow.com/questions/197160/how-do-you-optimise-your-javascript/197334#197334Comment by xardias on How do you optimise your Javascript ?xardias2008-10-13T12:45:09Z2008-10-13T12:45:09ZYou can use the "add comment" link below every answer to say something regarding that answer.http://stackoverflow.com/questions/172622/easy-to-use-free-bugtracking-system/172637#172637Comment by xardias on Easy to use Free Bugtracking Systemxardias2008-10-05T20:51:43Z2008-10-05T20:51:43ZIt is written in Ruby using the rails framework which should be easy to install on windows.