User P-A - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:28:46Z http://stackoverflow.com/feeds/user/4975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c 5 What is the arrow operator (->) synonym for in C++? P-A 2008-10-21T10:00:08Z 2009-10-08T12:59:56Z <p>I know it, forgets it and relearn it again. Time to write it down.</p> http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c/221367#221367 0 Answer by P-A for What is the arrow operator (->) synonym for in C++? P-A 2008-10-21T10:09:52Z 2009-10-08T12:59:56Z <p>The C++-language defines the arrow operator (->) as a synonym for dereferencing a pointer and then use the .-operator on that address.</p> <p>For example:</p> <p>If you have a an object,'anObject', and a pointer, 'aPointer':</p> <pre><code>SomeClass anObject = new SomeClass(); SomeClass *aPointer = &amp;anObject; </code></pre> <p>To be able to use one of the objects methods you dereference the pointer and do a method call on that address:</p> <pre><code>(*p).method(); </code></pre> <p>Which could be written with the arrow operator:</p> <pre><code>p-&gt;method(); </code></pre> <p>The main reason of the existents of the arrow operator is that it shortens the typing of a very common task and it also kind of easy to forgot the parentheses around the dereferencing of the pointer. If you forgot the parentheses the .-operator will bind stronger then *-operator and make our example execute as:</p> <pre><code>*(p.method()); // Not our intention! </code></pre> <p>Some of the other answer have also mention both that C++ operators can be overload and that it is not that common.</p> http://stackoverflow.com/questions/221207/how-do-you-collect-programming-knowledge/221285#221285 0 Answer by P-A for How do you collect programming knowledge P-A 2008-10-21T09:23:35Z 2009-08-26T10:00:07Z <p>It is a know fact that one of the best things you can do if you really want to understand or remember something is to explain it for someone else. With other words anything you do where you trying to teach or explain some think to others will be a great help to remember it and understand it.</p> <p>So any "tool" that have an explanatory aspect I think is a good one. I think this page (<a href="http://stackoverflow.com">stackoverflow.com</a>) itself is extremely good example and for me personally one of the main reason I use it. But their are of course a lot of other way to do it, blogging for example.</p> http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal 0 How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-09T11:36:26Z 2009-04-09T12:42:16Z <p>I know it, forgets it and relearn it again. Time to write it down.</p> http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733833#733833 1 Answer by P-A for How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-09T11:39:32Z 2009-04-09T11:52:29Z <p>To start the shell-script 'file.sh':</p> <pre><code>sh file.sh bash file.sh </code></pre> <p>Another option is set executable permission using chmod command:</p> <pre><code>chmod +x file.sh </code></pre> <p>Now run .sh file as follows:</p> <pre><code>./file.sh </code></pre> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal 1 How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T08:43:35Z 2009-04-09T11:29:19Z <p>I know it, forgets it and relearn it again. Time to write it down.</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221189#221189 0 Answer by P-A for How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T08:45:46Z 2008-10-21T08:45:46Z <p>./[name of the program]</p> <p>For example ./a.out</p> http://stackoverflow.com/questions/357521/is-there-a-decent-json-editor-around/1186667#1186667 Comment by P-A on Is there a decent JSON editor around? P-A 2009-10-15T12:30:36Z 2009-10-15T12:30:36Z Is jsonpro 13$ good? Because all the other sucks! Excuse my language, say stuff like that is really not my style. In this case it is really true, I really can find any decent editor for json. Some validators like JSONLint is okay, but they are not editors. http://stackoverflow.com/questions/1401650/problem-with-list-of-strings-in-python/1401691#1401691 Comment by P-A on Problem with list of strings in python P-A 2009-09-09T19:58:00Z 2009-09-09T19:58:00Z +1 Not mush to say after reading that link. http://stackoverflow.com/questions/1028781/how-should-a-programmer-learn-great-database-design/1029077#1029077 Comment by P-A on How should a programmer learn great database design? P-A 2009-09-09T08:33:13Z 2009-09-09T08:33:13Z The uncut version from Microsoft: <a href="http://msdn.microsoft.com/en-gb/express/bb403186.aspx" rel="nofollow">msdn.microsoft.com/en-gb/express/&hellip;</a> The one on his own website (<a href="http://databaseanswers.com" rel="nofollow">databaseanswers.com</a>) and Youtube is only the first of two example he talks about. http://stackoverflow.com/questions/1028781/how-should-a-programmer-learn-great-database-design/1029077#1029077 Comment by P-A on How should a programmer learn great database design? P-A 2009-09-09T08:27:12Z 2009-09-09T08:27:12Z +1 I really like that video as an introduction to. It is extremely dry, but I still think it gives a lot of good pointers for a database beginner. http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733901#733901 Comment by P-A on How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-27T13:32:45Z 2009-04-27T13:32:45Z Thank you for taking the time to write a good answer to a simple question. http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733834#733834 Comment by P-A on How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-09T11:45:23Z 2009-04-09T11:45:23Z Thank you for answering this quite obvious question. For a Mac guy like me it is easy to forget the old Unix commands between the laps. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406788#406788 Comment by P-A on What's your most controversial programming opinion? P-A 2009-02-23T17:07:25Z 2009-02-23T17:07:25Z I teach at University-level and I think a object-oriented language is a good first language and Java was one of my favorites. But now-days I actually prefer Python, because it is a real script-language, fantastic syntax, multi-paradigm and Java have become harder to handle for beginners. http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/224784#224784 Comment by P-A on How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-22T17:03:22Z 2008-10-22T17:03:22Z If you add the comments from 'onebyone.livejournal.com' on my own answer about security this answer is complete. Thank you. http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c/221351#221351 Comment by P-A on What is the arrow operator (->) synonym for in C++? P-A 2008-10-21T10:16:54Z 2008-10-21T10:16:54Z After your edit I think your post summons it in a good way. http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221189#221189 Comment by P-A on How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T10:14:42Z 2008-10-21T10:14:42Z Even better point. http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221222#221222 Comment by P-A on How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T09:03:57Z 2008-10-21T09:03:57Z Thank you, that is a good answer too. I really try to use make as mush as I can and that is also a reason for me forgetting the syntax of the &quot;easy&quot; way.