User roo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:24:56Z http://stackoverflow.com/feeds/user/716 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45175/resources-online-to-learn-c/45178#45178 1 Answer by roo for Resources online to learn C++ roo 2008-09-05T03:18:33Z 2009-10-07T10:24:01Z <p>The <a href="http://www.parashift.com/c++-faq-lite/" rel="nofollow">C++ FAQ LITE</a> is handy for most questions you might have on the language.</p> http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c 17 when should you use 'friend' in c++ ? roo 2008-08-20T05:29:32Z 2009-09-07T09:38:07Z <p>I have been reading through the <a href="http://yosefk.com/c++fqa/" rel="nofollow">c++ faq</a> and was curious about the <a href="http://yosefk.com/c++fqa/friend.html" rel="nofollow"><code>friend</code></a> declaration. I personally have never used it howevever in the interest of exploring the language I was wondering if anyone here has?</p> <p>So does anyone here have a good example of using <code>friend</code> ?</p> <p><strong>edit:</strong> Reading the faq a bit longer I like the idea of the &lt;&lt; >> operator overloading and adding as a friend of those classes, however I am not sure how this doesn't break encapsulation. When can these exceptions stay within the strictures of oop?</p> http://stackoverflow.com/questions/1242958/testing-authenticated-file-uploads-in-merb 0 Testing authenticated file uploads in merb roo 2009-08-07T04:58:54Z 2009-08-13T07:44:36Z <p>This is something that has been driving me mad over the past few days. I have an action which allows authenticated users to upload assets to the site. I know that the controller action is correct as I can run through the process manually however I want to test it using rspec.</p> <p>I have to use the <code>request</code> helper so I can reuse an authenticated session which is a <code>:given</code> for this set of tests.</p> <pre><code>it "should allow authenticated file uploads" do file = File.open(a_valid_file) mock_file = mock("file") mock_file.stub!(:path).and_return(file.path) request( resource(:assets), :method =&gt; "POST", :params =&gt; { :file =&gt; {:tempfile =&gt; mock_file, :filename =&gt; File.basename(file.path)} } ) end </code></pre> <p>If I breakpoint inside the spec it all works nicely, however when I run the spec and try to access the path in the controller action through the debugger I get this:</p> <pre><code>e file[:tempfile].path NoMethodError Exception: undefined method `path' for "#[Spec::Mocks::Mock:0x3fda2a4736c0 @name=\"file\"]":String </code></pre> <p>My guess is that the <code>stub!(:path)</code> is not being set for whatever mock object is making it through the request.</p> <p>The question is: Am I going about the right way for testing file uploads and if not what is another way?</p> http://stackoverflow.com/questions/1242958/testing-authenticated-file-uploads-in-merb/1270596#1270596 0 Answer by roo for Testing authenticated file uploads in merb roo 2009-08-13T07:44:36Z 2009-08-13T07:44:36Z <p>I was doing it wrong. By using <code>request</code> it was calling to_s on all paramaters, so my mock object was being passed as "#[Spec::Mocks::Mock:0x3fda2a4736c0 @name=\"file\"]". That will teach me to pay more attention to exception output.</p> <p>Instead I should use <code>multipart_post</code> and stub out the authentication calls in a block.</p> <pre><code>it "should allow authenticated file uploads" do file = File.open(a_valid_file) multipart_post( resource(:assets), :method =&gt; "POST", :params =&gt; { :file =&gt; file } ) do |controller| controller.stub!(:ensure_authenticated).and_return(true) controller.session.stub!(:user).and_return(User.first) ) end </code></pre> http://stackoverflow.com/questions/69115/char-to-hex-string-exercise 2 char[] to hex string exercise roo 2008-09-16T03:15:40Z 2009-08-07T12:45:04Z <p>Below is my current char* to hex string function. I wrote it as an exercise in bit manipulation. It takes ~7ms on a AMD Athlon MP 2800+ to hexify a 10 million byte array. Is there any trick or other way that I am missing?</p> <p>How can I make this faster?</p> <p>Compiled with -O3 in g++</p> <pre><code>static const char _hex2asciiU_value[256][2] = { {'0','0'}, {'0','1'}, /* snip..., */ {'F','E'},{'F','F'} }; std::string char_to_hex( const unsigned char* _pArray, unsigned int _len ) { std::string str; str.resize(_len*2); char* pszHex = &amp;str[0]; const unsigned char* pEnd = _pArray + _len; clock_t stick, etick; stick = clock(); for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++, pszHex += 2 ) { pszHex[0] = _hex2asciiU_value[*pChar][0]; pszHex[1] = _hex2asciiU_value[*pChar][1]; } etick = clock(); std::cout &lt;&lt; "ticks to hexify " &lt;&lt; etick - stick &lt;&lt; std::endl; return str; } </code></pre> <p><strong>Updates</strong></p> <p>Added timing code</p> <p><a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69126">Brian R. Bondy</a>: replace the std::string with a heap alloc'd buffer and change ofs*16 to ofs &lt;&lt; 4 - however the heap allocated buffer seems to slow it down? - result ~11ms</p> <p><a href="http://stackoverflow.com/questions/69115/#69305">Antti Sykäri</a>:replace inner loop with </p> <pre><code> int upper = *pChar &gt;&gt; 4; int lower = *pChar &amp; 0x0f; pszHex[0] = pHex[upper]; pszHex[1] = pHex[lower]; </code></pre> <p>result ~8ms</p> <p><a href="http://stackoverflow.com/questions/69115?sort=votes#69218">Robert</a>: replace <code>_hex2asciiU_value</code> with a full 256-entry table, sacrificing memory space but result ~7ms!</p> <p><a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#70254">HoyHoy</a>: Noted it was producing incorrect results</p> http://stackoverflow.com/questions/1021798/controlling-merb-authentication-errors/1242909#1242909 0 Answer by roo for Controlling Merb authentication errors roo 2009-08-07T04:37:38Z 2009-08-07T04:37:38Z <p>you would put your exception handling action in the exceptions controller</p> <pre><code># handle NotAuthorized exceptions (403) def not_authorized render :format =&gt; :html end </code></pre> <p>and to customise the view you would create a template in app/views/exceptions/not_authorized.html.haml</p> http://stackoverflow.com/questions/23860/what-is-the-best-way-to-learn-recursion/23880#23880 0 Answer by roo for What is the best way to learn recursion? roo 2008-08-23T02:38:48Z 2009-07-10T18:10:38Z <p>The way I learned recursion was through a haskell course. The method that sticks with me the most is multiplication using recursion.</p> <p>So suppose we have a function mult which multiplies two numbers</p> <p><code>mult n 0 = 0 -- anything times 0 is zero</code><br /> <code>mult n 1 = n -- anything times 1 is itself</code><br /> <code>mult n m = mult n (m - 1) + n -- recur: add m, and then multiply by n-1</code><br /></p> <p>We have defined 3 cases, two which stops the recursion (known as base cases) and one which calls mult again (the recursive case). As long as the recursive case progresses towards one of the base cases then this function will eventually return.</p> <p>So mult 3 3 would follow this recursion: <br /></p> <blockquote> <pre><code>mult 3 3 mult 3 (3-1) + 3 mult 3 (2-1) + 3 3 #return 3 since we have mult 3 1 3+3 6 + 3 = 9 </code></pre> </blockquote> http://stackoverflow.com/questions/70143/merge-multiple-xslt-stylesheets 1 Merge multiple xslt stylesheets roo 2008-09-16T07:43:49Z 2009-06-23T11:12:49Z <p>I have a xslt stylesheet with multiple <code>xsl:import</code>s and I want to merge them all into the one xslt file.</p> <p>It is a limitation of the system we are using where it passes around the xsl stylesheet as a string object stored in memory. This is transmitted to remote machine where it performs the transformation. Since it is not being loaded from disk the href links are broken, so we need to remove the <code>xsl:import</code>s from the stylesheet.</p> <p>Are there any tools out there which can do this?</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72472#72472 129 Answer by roo for What development book made the most impact on you as a developer? roo 2008-09-16T13:53:06Z 2009-04-27T14:36:58Z <p><a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p> <p>It made me think that programming is a craft, not just a job and should be something that I am proud of at the end of the day.</p> <p><img src="http://assets1.pragprog.com/images/covers/190x228/tpp.jpg?1236205216" alt="cover image" /></p> http://stackoverflow.com/questions/555684/multidimensional-character-array-question/555721#555721 0 Answer by roo for multidimensional character array question roo 2009-02-17T06:38:49Z 2009-02-17T06:53:07Z <p>A quick snippet - it compiles in g++.</p> <pre><code>int rows = 10; int cols = 10; char** array = new char*[rows]; for( int i = 0; i &lt; cols; ++i ) { array[i] = new char[cols]; } //do stuff with array for( int i = 0; i &lt; cols; ++i ) { delete array[i]; } delete array; </code></pre> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84589#84589 483 Answer by roo for What's your favorite "programmer" cartoon? roo 2008-09-17T15:37:03Z 2008-10-04T12:06:29Z <p><a href="http://xkcd.com/303/" rel="nofollow">XKCD Comic 303 - "Compiling"</a></p> <p><a href="http://xkcd.com/303/" rel="nofollow" title="'Are you stealing those LCDs?' 'Yeah, but I'm doing it while my code compiles'"><img src="http://imgs.xkcd.com/comics/compiling.png" alt="" title="'Are you stealing those LCDs?' 'Yeah, but I'm doing it while my code compiles'" /></a></p> <p>('Are you stealing those LCDs?' 'Yeah, but I'm doing it while my code compiles')</p> <p>I have this one pinned to the wall facing the entrance to our office :)</p> http://stackoverflow.com/questions/112831/how-to-get-a-stack-trace-when-c-program-crashes-using-msvc8-2005/112836#112836 0 Answer by roo for How to get a stack trace when C++ program crashes? (using msvc8/2005) roo 2008-09-22T02:03:23Z 2008-09-22T02:03:23Z <p>If I remember correctly that message box should have a button which says 'retry'. This should then break the program (in the debugger) at the point where the assertion happened.</p> http://stackoverflow.com/questions/50142/symmetric-key-storage/107810#107810 0 Answer by roo for Symmetric key storage roo 2008-09-20T10:14:28Z 2008-09-20T10:14:28Z <p>In response to #3 of this <a href="http://stackoverflow.com/questions/50142/symmetric-key-storage#50622">answer</a> from the OP</p> <p>One way for authorized members to be able to view the encrypted data, but without them actually knowing the key would be to use key escrow <a href="http://www.rsa.com/rsalabs/node.asp?id=2348" rel="nofollow">(rsa labs)</a> <a href="http://en.wikipedia.org/wiki/Key_escrow" rel="nofollow">(wikipedia)</a></p> <p>In summary the key is broken up into seperate parts and given to 'trustees'. Due to the nature of private keys each segment is useless to by its self. Yet if data is needed to be decrypted then the 'trustees' can assemble thier segments into the whole key.</p> http://stackoverflow.com/questions/84427/is-it-legal-to-pass-a-newly-constructed-object-by-reference-to-a-function/84494#84494 -1 Answer by roo for Is it legal to pass a newly constructed object by reference to a function? roo 2008-09-17T15:29:09Z 2008-09-17T15:29:09Z <p>It is legal. We use it sometime to provide a default value which we might want to ignore.</p> <pre><code>int dosomething(error_code&amp; _e = ignore_errorcode()) { //do something } </code></pre> <p>In the above case it will construct an empty error code object if no <code>error_code</code> is passed to the function.</p> http://stackoverflow.com/questions/84096/setting-the-default-ssh-key-location/84212#84212 0 Answer by roo for Setting the default ssh key location roo 2008-09-17T15:04:34Z 2008-09-17T15:04:34Z <p><code>man ssh</code> gives me this options would could be useful.</p> <blockquote> <p>-i identity_file Selects a file from which the identity (private key) for RSA or DSA authentication is read. The default is ~/.ssh/identity for protocol version 1, and ~/.ssh/id_rsa and ~/.ssh/id_dsa for pro- tocol version 2. Identity files may also be specified on a per- host basis in the configuration file. It is possible to have multiple -i options (and multiple identities specified in config- uration files).</p> </blockquote> <p>So you could create an alias in your bash config with something like</p> <blockquote> <p>alias ssh="ssh -i /path/to/private_key"</p> </blockquote> <p>I haven't looked into a ssh configuration file, but like the <code>-i</code> option this too could be aliased</p> <blockquote> <p>-F configfile Specifies an alternative per-user configuration file. If a con- figuration file is given on the command line, the system-wide configuration file (/etc/ssh/ssh_config) will be ignored. The default for the per-user configuration file is ~/.ssh/config.</p> </blockquote> http://stackoverflow.com/questions/72104/how-do-i-use-pdb-files/72190#72190 5 Answer by roo for How do I use PDB files roo 2008-09-16T13:31:34Z 2008-09-17T14:58:49Z <p>PDB files are generated when you build your project. They contain information reltating to the built binaries which visual studio can interept and is able to link the call stack back to source.</p> <p>When a program crashes and it generates a crash report, and visual studio is able to take that report and link it back to source via the PDB files. The PDB files must be built from the same binary that generated the crash report!</p> <p>There are some issues that we have encouted over time.</p> <ul> <li>The machine that is debugging the crash report needs to have the source on the same path as the machine that built the binary.</li> <li>Release builds often optimize to the extent where you cannot view the state of object member variables</li> </ul> <p>If anyone knows how to defeat the former I would be grateful for some input.</p> http://stackoverflow.com/questions/79490/linux-uptime-history/79515#79515 1 Answer by roo for linux uptime history roo 2008-09-17T03:01:45Z 2008-09-17T03:17:10Z <p>the <a href="http://linux.about.com/library/cmd/blcmdl1_last.htm" rel="nofollow"><code>last</code></a> command will give you the reboot times of the system. You could take the difference between each successive reboot and that should give the uptime of the machine.</p> <p><strong>update</strong></p> <p><a href="http://stackoverflow.com/questions/79490/linux-uptime-history#79553">1800 INFORMATION</a> answer is a better solution.</p> http://stackoverflow.com/questions/5606/license-models/5752#5752 4 Answer by roo for License Models roo 2008-08-08T06:57:38Z 2008-09-17T02:29:54Z <p>Our licence model works using public/private key cryptography. They send us thier name and contact details, which we encrypt using our private key. The encrypted file is then sent back to the licencee which they enter into the application. The application has our public key embedded in the binary (or if they have a connection to the net, it pulls it off our site) and it uses that to decrypt the licence information. If the decrypted licence matches the details that they entered then they are licenced to use the product!</p> <p>By using private/public key cryptography we give our application a trust that the data in the licence key is actually from us (authenticity of the licence)</p> <p>There are other neat things you can do with this, like encoding subscription levels into the licence key. The application will decrypt the licence key and see that they are only allowed to use certain bits of functionality.</p> <p>This can be attacked though. For example a blackhat can either remove the whole licence key checking part of the binary, or update the stored public key in the application to one that they have generated. They will then be able to make it accept their own licence. However since our applications are not that mainstream we dont consider this a major threat.</p> http://stackoverflow.com/questions/79064/cryptography-algorithm/79220#79220 0 Answer by roo for Cryptography algorithm roo 2008-09-17T02:18:44Z 2008-09-17T02:18:44Z <p>My <a href="http://stackoverflow.com/questions/5606/license-models#5752">answer</a> to this <a href="http://stackoverflow.com/questions/5606/license-models">question</a> could be helpful. We use the rsa cipher mentioned to generate the signed licence.</p> http://stackoverflow.com/questions/71036/scrum-non-cooperative-team-members/72373#72373 1 Answer by roo for SCRUM - non cooperative team members roo 2008-09-16T13:46:21Z 2008-09-16T15:58:20Z <blockquote> <p>How do you react when you find yourself being the only one who listenes, while other team members just sit there and maybe even fall asleep?</p> </blockquote> <p>If I have already heard what the others have said I would ask a question of someone who is not paying attention about how it this might affect what they are working on. Very school teacher like, however it is enough so that they respond and engage with the meeting again.</p> <p>I also agree with <a href="http://stackoverflow.com/questions/71036/scrum-non-cooperative-team-members#71485">Kief</a></p> http://stackoverflow.com/questions/11330/passing-more-parameters-in-c-function-pointers/73263#73263 0 Answer by roo for Passing more parameters in C function pointers roo 2008-09-16T14:57:42Z 2008-09-16T14:57:42Z <p>Use a typedef for the function pointer. See my <a href="http://stackoverflow.com/questions/9410/how-do-you-pass-a-function-as-a-parameter-in-c#9421">answer</a> for <a href="http://stackoverflow.com/questions/9410/how-do-you-pass-a-function-as-a-parameter-in-c">this question</a></p> http://stackoverflow.com/questions/8451/secure-memory-allocator-in-c 2 Secure Memory Allocator in C++ roo 2008-08-12T04:18:09Z 2008-09-16T13:38:13Z <p>I want to create an allocator which provides memory with the following attributes:</p> <ul> <li>cannot be paged to disk. </li> <li>is incredibly hard to access through an attached debugger</li> </ul> <p>The idea is that this will contain sensitive information (like licence information) which should be inaccessible to the user. I have done the usual research online and asked a few other people about this, but I cannot find a good place start on this problem.</p> <p><strong>Updates</strong></p> <p><a href="http://beta.stackoverflow.com/questions/8451/secure-memory-allocator-in-c#27194" rel="nofollow">Josh</a> mentions using VirtualAlloc to set protection on the memory space. I have created a custom allocator ( shown below ) I have found the using the <code>VirtualLock</code> function it limits the amount of memory I can allocate. This seems to be by design though. Since I am using it for small objects this is not a problem.</p> <pre><code>// template&lt;class _Ty&gt; class LockedVirtualMemAllocator : public std::allocator&lt;_Ty&gt; { public: template&lt;class _Other&gt; LockedVirtualMemAllocator&lt;_Ty&gt;&amp; operator=(const LockedVirtualMemAllocator&lt;_Other&gt;&amp;) { // assign from a related LockedVirtualMemAllocator (do nothing) return (*this); } template&lt;class Other&gt; struct rebind { typedef LockedVirtualMemAllocator&lt;Other&gt; other; }; pointer allocate( size_type _n ) { SIZE_T allocLen = (_n * sizeof(_Ty)); DWORD allocType = MEM_COMMIT; DWORD allocProtect = PAGE_READWRITE; LPVOID pMem = ::VirtualAlloc( NULL, allocLen, allocType, allocProtect ); if ( pMem != NULL ) { ::VirtualLock( pMem, allocLen ); } return reinterpret_cast&lt;pointer&gt;( pMem ); } pointer allocate( size_type _n, const void* ) { return allocate( _n ); } void deallocate(void* _pPtr, size_type _n ) { if ( _pPtr != NULL ) { SIZE_T allocLen = (_n * sizeof(_Ty)); ::SecureZeroMemory( _pPtr, allocLen ); ::VirtualUnlock( _pPtr, allocLen ); ::VirtualFree( _pPtr, 0, MEM_RELEASE ); } } }; </code></pre> <p>and is used</p> <pre><code> //a memory safe std::string typedef std::basic_string&lt;char, std::char_traits&lt;char&gt;, LockedVirtualMemAllocato&lt;char&gt; &gt; modulestring_t; </code></pre> <p><a href="http://beta.stackoverflow.com/questions/8451/secure-memory-allocator-in-c#38708" rel="nofollow">Ted Percival</a> mentions mlock, but I have no implementation of that yet.</p> <p>I found <a href="http://www.schneier.com/book-practical.html" rel="nofollow">Practical Cryptography by Neil Furguson and Bruce Schneier</a> quite helpful as well.</p> http://stackoverflow.com/questions/9410/how-do-you-pass-a-function-as-a-parameter-in-c/9421#9421 9 Answer by roo for How do you pass a function as a parameter in C? roo 2008-08-13T02:34:47Z 2008-09-16T13:22:06Z <p>This question already has the answer for defining function pointers, however they can get very messy, especially if you are going to be passing them around your application. To avoid this unpleasantness I would recommend that you typedef the function pointer into something more readable. For example.</p> <pre><code>typedef void (*functiontype)(); </code></pre> <p>Declares a function that returns void and takes no arguments. To create a function pointer to this type you can now do:</p> <pre><code>void dosomething() { } functiontype func = &amp;dosomething; func(); </code></pre> <p>For a function that returns an int and takes a char you would do</p> <pre><code>typedef int (*functiontype2)(char); </code></pre> <p>and to use it</p> <pre><code>int dosomethingwithchar(char a) { return 1; } functiontype2 func2 = &amp;dosomethingwithchar int result = func2('a'); </code></pre> <p>There are libraries that can help with turning function pointers into nice readable types. The <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/function.html" rel="nofollow">boost function</a> library is great and is well worth the effort!</p> <pre><code>boost::function&lt;int (char a)&gt; functiontype2; </code></pre> <p>is so much nicer than the above.</p> http://stackoverflow.com/questions/70450/is-it-worth-encrypting-email-addresses-in-the-database/70536#70536 18 Answer by roo for Is it worth encrypting email addresses in the database? roo 2008-09-16T09:00:17Z 2008-09-16T10:00:14Z <p>Bruce Schneier has a good response to this kind of problem.</p> <blockquote> <p>Cryptography is not the solution to your security problems. It might be part of the solution, or it might be part of the problem. In many situations, cryptography starts out by making the problem worse, and it isn't at all clear that using cryptography is an improvement.</p> </blockquote> <p>Essentially encrypting your emails in the database 'just in case' is not really making the database more secure. Where are the keys stored for the database? What file permissions are used for these keys? Is the database accesable publically? Why? What kind of account restrictions are in place for these accounts? Where is the machine stored, who has physical access to this box? What about remote login/ssh access etc. etc. etc.</p> <p>So I guess you can encrypt the emails if you want, but if that is the extent of the security of the system then it really isn't doing much, and would actually make the job of maintaining the database harder.</p> <p>Of course this could be part of an extensive security policy for your system - if so then great!</p> <p>I'm not saying that it is a bad idea - But why have a lock on the door from Deadlocks'R'us which cost $5000 when they can cut through the plywood around the door? Or come in through the window which you left open? Or even worse they find the key which was left under the doormat. Security of a system is only as good as the weakest link. If they have root access then they can pretty much do what they want.</p> <p><a href="http://stackoverflow.com/questions/70450/is-it-worth-encrypting-email-addresses-in-the-database#70484">Steve Morgan</a> makes a good point that even if they cannot understand the email addresses, they can still do a lot of harm (which could be mitigated if they only had SELECT access)</p> http://stackoverflow.com/questions/61893/bad-address-error-from-copytouser/61948#61948 3 Answer by roo for 'bad address' error from copy_to_user roo 2008-09-15T06:56:33Z 2008-09-15T06:56:33Z <p>Bad Address error means that the address location that you have given is invalid. With the case you have above I would guess it is because you are passing in a copy of <code>info</code> instead of a pointer to <code>info</code>'s memory location.</p> <p>Looking at the docs, <code>copy_to_user</code> is defined as</p> <pre><code>copy_to_user(void __user * to, const void * from, unsigned long n); </code></pre> <p>So unless your <code>info</code> parameter is a pointer I would update your code to be:</p> <pre><code>if(copy_to_user(&amp;info, &amp;kernel_info, sizeof(struct prinfo)) ) { //some stuff here i guess } </code></pre> http://stackoverflow.com/questions/49137/calling-python-from-a-c-program-for-distribution/49148#49148 5 Answer by roo for Calling python from a c++ program for distribution roo 2008-09-08T04:01:10Z 2008-09-08T04:01:10Z <p>boost has a python interface library which could help you.</p> <p><a href="http://www.boost.org/doc/libs/1_36_0/libs/python/doc/index.html" rel="nofollow">check it out</a></p> http://stackoverflow.com/questions/45135/linker-order-gcc/45140#45140 0 Answer by roo for Linker order - GCC roo 2008-09-05T02:33:32Z 2008-09-05T02:33:32Z <p>I would imagine it is because some of those libraries have dependencies on other libraries, and if they have not been linked yet then you would get linker errors.</p> http://stackoverflow.com/questions/41338/sharing-a-project-in-heterogeneous-environment/41344#41344 0 Answer by roo for Sharing a project in heterogeneous environment roo 2008-09-03T09:09:04Z 2008-09-03T09:09:04Z <p>Make use of project variables! If you have set up the projects environment variables correctly then you wont run into problems with directory includes.</p> <p>Read up on project property files at <a href="http://msdn.microsoft.com/en-us/library/z2f953x9.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/38922/running-db-migrations-from-application/38927#38927 0 Answer by roo for Running DB Migrations from application roo 2008-09-02T06:27:10Z 2008-09-02T06:27:10Z <p>We use seperate configuration files for each user. So in the config/ dir we would have roo.database.yml which would connect to my personal database, and I would copy that over the database.yml file that is used by rails.</p> <p>We were thinking of expanding the rails Rakefile so we could specify the developer as a environment variable, which would then select a specfic datbase configuration, allowing us to only have one database.yml file. We haven't done this though as the above method works well enough.</p> http://stackoverflow.com/questions/38870/one-or-two-primary-keys-in-many-to-many-table/38883#38883 0 Answer by roo for One or Two Primary Keys in Many-to-Many Table? roo 2008-09-02T05:29:15Z 2008-09-02T05:29:15Z <p>The userwidgetid in the first table is not needed, as like you said the uniqueness comes from the combination of the widgetid and the userid.</p> <p>I would use the second table, keep the foriegn keys and add a unique index on widgetid and userid.</p> <p>So: </p> <pre> userwidgets( widgetid(fk), userid(fk), unique_index(widgetid, userid) ) </pre> <p>There is some preformance gain in not having the extra primary key, as the database would not need to calculate the index for the key. In the above model though this index (through the unique_index) is still calculated, but I believe that this is easier to understand.</p> http://stackoverflow.com/questions/107566/where-should-you-enable-ssl/107574#107574 Comment by roo on Where should you enable SSL? roo 2008-09-20T09:44:00Z 2008-09-20T09:44:00Z I agree - The moment the site is dealing with data which relates to thier identity it should be through ssl. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84589#84589 Comment by roo on What's your favorite "programmer" cartoon? roo 2008-09-18T02:03:35Z 2008-09-18T02:03:35Z quite right, I have added the link, alt text and attribution http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84589#84589 Comment by roo on What's your favorite "programmer" cartoon? roo 2008-09-17T15:57:54Z 2008-09-17T15:57:54Z heh, its during 'compiling' that I sit on SOF. Sometimes I do a clean build just for a little more time to form an answer http://stackoverflow.com/questions/79490/linux-uptime-history/79515#79515 Comment by roo on linux uptime history roo 2008-09-17T03:15:22Z 2008-09-17T03:15:22Z Would that include account reboots as well? http://stackoverflow.com/questions/79064/cryptography-algorithm/79220#79220 Comment by roo on Cryptography algorithm roo 2008-09-17T02:59:50Z 2008-09-17T02:59:50Z ha! glad to help :) http://stackoverflow.com/questions/79064/cryptography-algorithm/79088#79088 Comment by roo on Cryptography algorithm roo 2008-09-17T02:22:36Z 2008-09-17T02:22:36Z With all public/private ciphers you encrypt with the private and decrypt with the public, and visa versa http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72771#72771 Comment by roo on What development book made the most impact on you as a developer? roo 2008-09-16T14:18:22Z 2008-09-16T14:18:22Z YES! - this is an awesome book, and I would recommended it to anyone who would listen http://stackoverflow.com/questions/70143/merge-multiple-xslt-stylesheets/70180#70180 Comment by roo on Merge multiple xslt stylesheets roo 2008-09-16T09:45:02Z 2008-09-16T09:45:02Z i edited the quetion to include the reason. since this answer was posted before that edit. http://stackoverflow.com/questions/70143/merge-multiple-xslt-stylesheets/70279#70279 Comment by roo on Merge multiple xslt stylesheets roo 2008-09-16T08:20:18Z 2008-09-16T08:20:18Z That is what I was afraid of :\