User igorgue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:57:46Z http://stackoverflow.com/feeds/user/29253 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented 2 The <<- operator on Ruby, where is it documented? igorgue 2009-10-29T14:29:06Z 2009-10-30T00:33:20Z <p>Hi, I recently used the &lt;&lt;- operator to output a multi-line string, this way...</p> <pre><code>&lt;&lt;-form &lt;h1&gt;Name to say hi!&lt;/h1&gt; &lt;form method="post"&gt; &lt;input type="text" name="name"&gt; &lt;input type="submit" value="send"&gt; &lt;/form&gt; form </code></pre> <p>But I stole the &lt;&lt;- operator from some Open Source code, but I didn't find any documentation on it.</p> <p>I kinda figured out that it works the same as in bash:</p> <pre><code>$ cat &lt;&lt;EOF &gt;&gt; form.html &gt; &lt;h1&gt;Name to say hi!&lt;/h1&gt; &gt; &lt;form method="post"&gt; &gt; &lt;input type="text" name="name"&gt; &gt; &lt;input type="submit" value="send"&gt; &gt; &lt;/form&gt; &gt; EOF </code></pre> <p>Does it works that way? I just wanna find documentation on it...</p> <p>PS: My full example is a <a href="http://gist.github.com/220852" rel="nofollow">simple get/post Sinatra app</a></p> http://stackoverflow.com/questions/1604023/oracle-client-tuning 0 Oracle Client Tuning? igorgue 2009-10-21T22:30:44Z 2009-10-22T02:23:54Z <p>Is there a way to tune the Oracle client (InstantClient or the normal one)?</p> <p>We have a software that runs on multiple DMBS (MySQL, PGSQL and MS SQL Server) I'm wondering why the Oracle version of the product consume more resources than the other ones.</p> <p>UPDATE: I'm using the C++ API (OCI).</p> http://stackoverflow.com/questions/1323410/haskey-or-in 8 'has_key()' or 'in'? igorgue 2009-08-24T16:30:15Z 2009-08-24T22:11:34Z <p>Hi,</p> <p>I wonder what is better to do:</p> <pre><code>d = {'a': 1, 'b': 2} 'a' in d True </code></pre> <p>or:</p> <pre><code>d = {'a': 1, 'b': 2} d.has_key('a') True </code></pre> http://stackoverflow.com/questions/1084566/getting-a-dict-out-of-a-method 1 Getting a dict out of a method? igorgue 2009-07-05T18:17:23Z 2009-07-05T18:50:01Z <p>Hi,</p> <p>I'm trying to get a <code>dict</code> out of a method, so far I'm able to get the method name, and its arguments (using the inspect module), the problem I'm facing is that I'd like to have the default arguments too (or the argument type).</p> <p>This is basically my unit test:</p> <pre><code>class Test: def method1(anon_type, array=[], string="string", integer=12, obj=None): pass target = {"method1": [ {"anon": "None"}, {"array": "[]"}, {"string": "str"}, {"integer": "int"}, {"obj": "None"}] } method1_dict = get_method_dict(Test().method1) self.assertEqual(target, method1_dict) </code></pre> <p>Here, I try to use <em>inspect</em> to get the method:</p> <pre><code>&gt;&gt;&gt; import inspect &gt;&gt;&gt; class Class: ... def method(self, string='str', integer=12): ... pass ... &gt;&gt;&gt; m_desc = inspect.getargspec(Class().method) &gt;&gt;&gt; m_desc ArgSpec(args=['self', 'string', 'integer'], varargs=None, keywords=None, defaults=('str', 12)) &gt;&gt;&gt; </code></pre> <p>but my problem is with the <em>default args</em>, as you see here:</p> <pre><code>&gt;&gt;&gt; class Class: ... def method(self, no_def_args, string='str', integer=12): ... pass ... &gt;&gt;&gt; m_desc = inspect.getargspec(Class().method) &gt;&gt;&gt; m_desc ArgSpec(args=['self', 'no_def_args', 'string', 'integer'], varargs=None, keywords=None, defaults=('str', 12)) </code></pre> <p>As you see the <code>no_def_args</code> is not in the defaults, so it's a problem to try to match the argument with their default arguments.</p> http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts 0 How to delete all the items of an expecific key in a list of dicts? igorgue 2009-06-29T19:05:35Z 2009-06-29T22:09:46Z <p>I'm trying to remove some items of a dict based on their key, here is my code:</p> <pre><code>d1 = {'a': 1, 'b': 2} d2 = {'a': 1} l = [d1, d2, d1, d2, d1, d2] for i in range(len(l)): if l[i].has_key('b'): del l[i]['b'] print l </code></pre> <p>The output will be:</p> <pre><code>[{'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}] </code></pre> <p>Is there a better way to do it?</p> http://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#333219 7 Answer by igorgue for What type of scope does Haskell use? igorgue 2008-12-02T06:39:59Z 2009-06-15T16:13:15Z <p>There are some things wrong in your statements... </p> <ul> <li>There are no mutable variables in Haskell just definitions (or immutable variables)</li> <li>A variable memory location is a concept that do not exist in Haskell</li> </ul> <p>In your example, <em>x</em> is <strong>not</strong> 10 in the function is just a argument to square, that can take any value (you can specify the type later) in this case 10 but just in this case.</p> <p>Here is an example of aliases provided by <a href="http://stackoverflow.com/users/107294/curt-sampson">Curt Sampson</a>:</p> <pre><code>import Data.IORef main :: IO () main = do x &lt;- newIORef 0 -- write 0 into x readIORef x &gt;&gt;= print -- x contains 0 let y = x readIORef y &gt;&gt;= print -- y contains 0 writeIORef x 42 -- write 42 into x readIORef y &gt;&gt;= print -- y contains 42 </code></pre> http://stackoverflow.com/questions/849142/how-to-limit-the-maximum-value-of-a-numeric-field-in-a-django-model/850263#850263 -1 Answer by igorgue for How to limit the maximum value of a numeric field in a Django model? igorgue 2009-05-11T21:49:57Z 2009-05-11T21:49:57Z <p>You could create a pre-save signal: </p> <p><a href="http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre%5Fsave" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre_save</a></p> http://stackoverflow.com/questions/805393/what-is-the-best-way-to-access-stored-procedures-in-djangos-orm/805423#805423 2 Answer by igorgue for What is the best way to access stored procedures in Django's ORM. igorgue 2009-04-30T05:16:28Z 2009-04-30T05:16:28Z <p>You have to use the connection utility in Django:</p> <pre><code>from django.db import connection cursor = connection.cursor() cursor.execute("SQL STATEMENT CAN BE ANYTHING") </code></pre> <p>then you can fetch the data:</p> <pre><code>cursor.fetchone() </code></pre> <p>or:</p> <pre><code>cursor.fetchall() </code></pre> <p>More info here: <a href="http://docs.djangoproject.com/en/dev/topics/db/sql/" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/db/sql/</a></p> http://stackoverflow.com/questions/689807/sql-server-vs-oracle/690125#690125 2 Answer by igorgue for SQL server VS Oracle igorgue 2009-03-27T15:03:50Z 2009-03-27T18:09:34Z <p>The advantage of Oracle is the tuning aspect, in Oracle you can pretty much change everything... I don't know if you get that level of customization in SQL Server.</p> <p>On the tools side SQL Server shines, its very easy to work with (has limitations but still very easy).</p> <p>Integration... well it depends, if you're using .NET then SQL Server (even though you can use Oracle with it too) if you're using Java then Oracle (you can also connect to SQL Server using Java).</p> <p>If you ask me which one to choose, I'll say NONE!, since you get pretty much the same quality and advanced technology with free database servers like MySQL or PostgreSQL (and since I use Python/Django and .NET they integrate pretty well).</p> <p>Which one should you pick? I don't know, try both!, it won't take you more than a day to install and play with them :). Both have advantages and both are cool, we've reach the point that it doesn't matter which DBMS you pick (the 4 big ones, MySQL, PgSQL, MSSQL or Oracle).</p> http://stackoverflow.com/questions/577562/is-python-a-job-seekers-choice/578067#578067 0 Answer by igorgue for Is Python a job seeker's choice igorgue 2009-02-23T15:43:22Z 2009-02-23T15:43:22Z <p>Actually look at this graph: <a href="http://www.indeed.com/jobtrends?q=django&amp;l=" rel="nofollow">http://www.indeed.com/jobtrends?q=django&amp;l=</a> it doesn't look any bad for a Python web application framework.</p> <p>Do not learn a programming language because of its quantity of jobs openings, that tells a lot about your likeness to code.</p> http://stackoverflow.com/questions/575202/what-helps-to-you-improve-your-ability-to-find-a-bug/578025#578025 0 Answer by igorgue for What helps to you improve your ability to find a bug? igorgue 2009-02-23T15:33:53Z 2009-02-23T15:33:53Z <p>I'm part of the QA team @ work, and knowing anything about the product and how it is developed, helps <strong>a lot</strong> in finding bugs, also when I make new QA tools I pass it to our dev team to test it, finding bugs in your own code is just plain <strong>hard</strong>!</p> <p>Some people say programmers are <strong>tainted</strong>, so we cannot see bugs in their own product; we are not talking about code here, we are beyond that, usability and functionality itself.</p> <p>Meanwhile unit testing seams to be a nice solution to find bugs in your own code, its totally pointless if you're wrong even before writing the unit test, how are you going to find the bugs then? you don't!, let your co-worker find them, hire a QA guy.</p> http://stackoverflow.com/questions/493603/what-is-the-cleanest-way-to-write-this-if-then-logic/493691#493691 -1 Answer by igorgue for What is the cleanest way to write this if..then logic? igorgue 2009-01-29T22:11:13Z 2009-01-29T22:11:13Z <p>The first one. You don't need any else if you are returning a value inside the if statement. So:</p> <pre><code>if (!String.IsNullOrEmpty(returnUrl)) return Redirect(returnUrl); return RedirectToAction("Open", "ServiceCall"); </code></pre> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/489129#489129 2 Answer by igorgue for What real life bad habits has programming given you? igorgue 2009-01-28T20:17:26Z 2009-01-28T20:17:26Z <p>I do binary search on everything, it works quite well though :)</p> http://stackoverflow.com/questions/4101/where-do-you-store-your-code-snippets/485783#485783 0 Answer by igorgue for Where do you store your code snippets? igorgue 2009-01-27T23:08:01Z 2009-01-27T23:08:01Z <p>If code in Django, use <a href="http://www.djangosnippets.org/" rel="nofollow">www.djangosnippets.org</a>.</p> <p>For my personal snippets I use <a href="http://gist.github.com/" rel="nofollow">gist.github.com</a> and use it for team work.</p> <p>Also since I code in VIM, I use <a href="http://www.vim.org/scripts/script.php?script_id=1318" rel="nofollow">SnippetsEMU</a>.</p> http://stackoverflow.com/questions/459238/when-and-how-do-you-use-server-side-javascript/459315#459315 0 Answer by igorgue for When and how do you use server side JavaScript? igorgue 2009-01-19T21:48:50Z 2009-01-19T21:48:50Z <p>I remember with <a href="http://cocoon.apache.org/" rel="nofollow">Cocoon</a> (Apache's Java/XML/Javascript MVC framework) I used to use server-side Javascript since there was a something (I believe cforms) that needed to be written in Javascript and was running on the server even though I believe you could write it in Java.</p> <p>We used Rhyno by that time, please check: <a href="http://peter.michaux.ca/articles/server-side-javascript-with-rhino-and-jetty" rel="nofollow">http://peter.michaux.ca/articles/server-side-javascript-with-rhino-and-jetty</a></p> http://stackoverflow.com/questions/453471/which-has-more-job-openings-for-programmers-rails-or-django/456133#456133 0 Answer by igorgue for Which has more job openings for programmers - Rails or Django? igorgue 2009-01-18T23:39:42Z 2009-01-18T23:39:42Z <p>Definitely Rails, but I don't really think that is important, if you're deciding which one to learn don't do it based on which one has more jobs openings. Try both you'll have fun :)</p> http://stackoverflow.com/questions/450943/do-you-recommend-sharpdevelop-for-trying-out-c-on-linux/451053#451053 0 Answer by igorgue for Do you recommend SharpDevelop for trying out C# on Linux? igorgue 2009-01-16T16:36:22Z 2009-01-16T16:36:22Z <p>MonoDevelop, and its default solutions files are the same as Visual Studio, so here you go, portability of your dev environments</p> http://stackoverflow.com/questions/332668/is-the-table-in-use 1 Is the Table in Use? igorgue 2008-12-02T00:18:58Z 2008-12-05T02:27:28Z <p>How to figure out if a table is in use in SQL (on any type database)? if somebody is already using it, or have it "open" then its in use.</p> http://stackoverflow.com/questions/332668/is-the-table-in-use/341881#341881 0 Answer by igorgue for Is the Table in Use? igorgue 2008-12-04T20:08:46Z 2008-12-05T02:27:28Z <p>Actually this will give you a better result:</p> <pre><code>select spid from master..sysprocesses where dbid = db_id('Works') and spid &lt;&gt; @@spid </code></pre> http://stackoverflow.com/questions/340959/how-could-i-share-workspace-between-ubuntu-and-windows-xp/341004#341004 0 Answer by igorgue for how could I share workspace between ubuntu and windows xp? igorgue 2008-12-04T15:35:39Z 2008-12-04T15:35:39Z <p>How did you mount the partition in your <code>/etc/fstab</code>? did you use the option <code>rw</code> to mount it as read-write?</p> <p>Can you tell me the output of: </p> <pre><code>cat /etc/mtab </code></pre> http://stackoverflow.com/questions/338768/python-importerror-no-module-named/338858#338858 2 Answer by igorgue for python ImportError No module named igorgue 2008-12-03T21:50:15Z 2008-12-03T21:50:15Z <p>Does</p> <pre><code>(local directory)/site-packages/toolkit </code></pre> <p>have a <code>__init__.py</code>?</p> <p>To make import <em>walk</em> through your directories every directory must have a <code>__init__.py</code> file.</p> http://stackoverflow.com/questions/335036/what-is-a-good-resource-to-help-start-an-open-source-project/335233#335233 1 Answer by igorgue for What is a good resource to help start an open source project? igorgue 2008-12-02T20:02:01Z 2008-12-02T20:02:01Z <p>To start an OSS software a lot of people recommends: <a href="http://producingoss.com/" rel="nofollow">http://producingoss.com/</a> the book is free so everybody can get it.</p> http://stackoverflow.com/questions/176998/what-is-the-most-important-feature-in-mono-2-0/334767#334767 0 Answer by igorgue for What is the most important feature in Mono 2.0? igorgue 2008-12-02T17:30:43Z 2008-12-02T17:30:43Z <p>The complete .NET 2.0 profile is quite of an accomplishment!</p> http://stackoverflow.com/questions/330194/is-it-possible-to-use-mono-static-compilation-on-windows/334311#334311 2 Answer by igorgue for Is it possible to use Mono static compilation on Windows? igorgue 2008-12-02T15:26:24Z 2008-12-02T15:26:24Z <p>Yes it is possible,</p> <p><a href="http://www.mono-project.com/AOT#Supported_Platforms" rel="nofollow">http://www.mono-project.com/AOT#Supported_Platforms</a></p> http://stackoverflow.com/questions/304103/how-much-math-do-i-need-to-become-productive-in-haskell/333231#333231 0 Answer by igorgue for How much math do I need to become productive in Haskell? igorgue 2008-12-02T06:58:35Z 2008-12-02T06:58:35Z <p>I believe that Haskell teach you a lot of logic, discrete maths so then learn Haskell and you'll get some maths skill too :)</p> http://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented/1647388#1647388 Comment by igorgue on The <<- operator on Ruby, where is it documented? igorgue 2009-11-02T21:45:14Z 2009-11-02T21:45:14Z yep, I didn't know that, thanks :) http://stackoverflow.com/questions/1646641/is-there-a-way-to-know-if-a-list-of-elements-is-on-a-larger-list-without-using-i/1646720#1646720 Comment by igorgue on Is there a way to know if a list of elements is on a larger list without using 'in' keyword? igorgue 2009-10-29T21:46:33Z 2009-10-29T21:46:33Z I liked this answer :( http://stackoverflow.com/questions/1646641/is-there-a-way-to-know-if-a-list-of-elements-is-on-a-larger-list-without-using-i Comment by igorgue on Is there a way to know if a list of elements is on a larger list without using 'in' keyword? igorgue 2009-10-29T21:26:10Z 2009-10-29T21:26:10Z the in keyword will only tell you if small_list, is an element of big_list... big_list = [1,2,5,7,2,small_list,4,2,5,67,8,5,13,45] http://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented/1644155#1644155 Comment by igorgue on The <<- operator on Ruby, where is it documented? igorgue 2009-10-29T14:39:18Z 2009-10-29T14:39:18Z Thank you I didn't even know what was the name of that :) http://stackoverflow.com/questions/1604023/oracle-client-tuning Comment by igorgue on Oracle Client Tuning? igorgue 2009-10-22T02:12:49Z 2009-10-22T02:12:49Z Ahh I'm using C++ http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426 Comment by igorgue on 'has_key()' or 'in'? igorgue 2009-08-25T14:54:04Z 2009-08-25T14:54:04Z yeah, you can use it with lists too... &quot;in&quot; is pretty smart http://stackoverflow.com/questions/1323410/haskey-or-in/1323880#1323880 Comment by igorgue on 'has_key()' or 'in'? igorgue 2009-08-24T18:56:27Z 2009-08-24T18:56:27Z thanks a lot, good to know, now I'm changing my code to use 'in' instead of has_key() ;) http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426 Comment by igorgue on 'has_key()' or 'in'? igorgue 2009-08-24T16:58:03Z 2009-08-24T16:58:03Z awesome http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426 Comment by igorgue on 'has_key()' or 'in'? igorgue 2009-08-24T16:35:28Z 2009-08-24T16:35:28Z thanks (added some text to avoid the 15 chars limitation ;)) http://stackoverflow.com/questions/1084566/getting-a-dict-out-of-a-method/1084599#1084599 Comment by igorgue on Getting a dict out of a method? igorgue 2009-07-05T18:44:49Z 2009-07-05T18:44:49Z I didn't know that if you don't order your arguments is a syntax error, and yes I know how to slice a list, thanks! http://stackoverflow.com/questions/1070484/git-hosting-with-personal-namespaces Comment by igorgue on Git hosting with personal namespaces igorgue 2009-07-01T21:28:15Z 2009-07-01T21:28:15Z You can host your .git dir renaming it to project.git, and putting it in your user public_html directory, just remember this wont work to do a push to the repo, in other words just read only. Also remember to add the user_dirs module to apache. You can actually do it using webdav, here is a guide, but I had many problems with it, that I switched to ssh: <a href="http://www.kernel.org/pub/software/scm/git/docs/howto/setup-git-server-over-http.txt" rel="nofollow">kernel.org/pub/software/&hellip;</a> http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts/1059981#1059981 Comment by igorgue on How to delete all the items of an expecific key in a list of dicts? igorgue 2009-06-29T22:12:26Z 2009-06-29T22:12:26Z I was worried about the use of 'pop', but it makes sense because of the double indexing, thanks! http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts/1060086#1060086 Comment by igorgue on How to delete all the items of an expecific key in a list of dicts? igorgue 2009-06-29T21:54:15Z 2009-06-29T21:54:15Z Thanks for your feedback, I didn't understand (or remember) that until now http://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#333219 Comment by igorgue on What type of scope does Haskell use? igorgue 2009-06-17T18:57:14Z 2009-06-17T18:57:14Z I meant that you don't think of a variable's memory location http://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#333219 Comment by igorgue on What type of scope does Haskell use? igorgue 2009-06-15T16:13:34Z 2009-06-15T16:13:34Z Edited my answer, thanks for your feedback