User Sam Hoice - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:43:23Z http://stackoverflow.com/feeds/user/8092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/534199/how-to-collect-spring-properties-from-multiple-files-for-use-on-a-single-bean 0 How to collect spring properties from multiple files for use on a single bean Sam Hoice 2009-02-10T21:02:39Z 2009-11-27T13:13:52Z <p>I haven't gotten my head wrapped around Spring yet, so correct me if this question doesn't make sense...</p> <p>I have a PropertyPlaceholderConfigurer</p> <pre><code>&lt;bean id="rdbmPropertiesPlacholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" lazy-init="false"&gt; &lt;property name="location" value="classpath:/properties/rdbm.properties" /&gt; &lt;/bean&gt; </code></pre> <p>And I have a bean being injected I guess?</p> <pre><code>&lt;bean id="PortalDb" class="org.apache.commons.dbcp.BasicDataSource"&gt; &lt;property name="driverClassName" value="${hibernate.connection.driver_class}" /&gt; &lt;property name="url" value="${hibernate.connection.url}" /&gt; &lt;property name="username" value="${hibernate.connection.username}" /&gt; &lt;property name="password" value="${hibernate.connection.password}" /&gt; ... </code></pre> <p>What I want is a second placeholder pointing to a different properties file with the username/password so that I can split up the properties into two different files. Then the database connection information can be separate from the db username/password, and I can source control one and not the other.</p> <p>I've tried basically copying the rdbmPropertiesPlaceholder with a different id and file and trying to access the properties, but it doesn't work.</p> <p>This code is from the uPortal open source web portal project.</p> http://stackoverflow.com/questions/1251556/how-to-start-debugging/1251562#1251562 3 Answer by Sam Hoice for How to start debugging? Sam Hoice 2009-08-09T15:17:04Z 2009-08-09T15:17:04Z <p>The information on building and installing GTK+ should be here: <a href="http://www.gtk.org/development.html" rel="nofollow">http://www.gtk.org/development.html</a></p> <p>The sources should be here: <a href="http://www.gtk.org/download-linux.html" rel="nofollow">http://www.gtk.org/download-linux.html</a></p> <p>You can check out gdb: <a href="http://www.gnu.org/software/gdb/" rel="nofollow">http://www.gnu.org/software/gdb/</a> That's a pretty standard linux debugger. I would spend time with it on something simple first, or get an IDE that uses it. Learning gdb can be worth the time though.</p> http://stackoverflow.com/questions/1251392/read-from-socket-is-it-guaranteed-to-at-least-get-x-bytes/1251533#1251533 3 Answer by Sam Hoice for Read from socket: Is it guaranteed to at least get x bytes? Sam Hoice 2009-08-09T14:55:53Z 2009-08-09T14:55:53Z <p>This is just the way TCP works. You aren't going to get all of your data at once. There are just too many timing issues between sender and receiver including the senders operating system, NIC, routers, switches, the wires themselves, the receivers NIC, OS, etc. There are buffers in the hardware, and in the OS.</p> <p>You can't assume that the TCP network is the same as a OS pipe. With the pipe, it's all software so there's no cost in delivering the whole message at once for most messages. With the network, you have to assume there will be timing issues, even in a simple network.</p> <p>That's why recv() can't give you all the data at once, it may just not be available, even if everything is working right. Normally, you will call recv() and catch the output. That should tell you how many bytes you've received. If it's less than you expect, you need to keep calling recv() (as has been suggested) until you get the correct number of bytes. Be aware that in most cases, recv() returns -1 on error, so check for that and check your documentation for ERRNO values. EAGAIN in particular seems to cause people problems. You can read about it on the internet for details, but if I recall, it means that no data is available at the moment and you should try again.</p> <p>Also, it sounds like from your post that you're sure the sender is sending the data you need sent, but just to be complete, check this: <a href="http://beej.us/guide/bgnet/output/html/multipage/advanced.html#sendall" rel="nofollow">http://beej.us/guide/bgnet/output/html/multipage/advanced.html#sendall</a></p> <p>You should be doing something similar on the recv() end to handle partial receives. If you have a fixed packet size, you should read until you get the amount of data you expect. If you have a variable packet size, you should read until you have the header that tells you how much data you send(), then read that much more data.</p> http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210850#210850 28 Answer by Sam Hoice for What is an NP-complete problem? Sam Hoice 2008-10-17T01:32:51Z 2009-06-28T14:26:01Z <p>NP stands for Non-deterministic Polynomial time.</p> <p>This means that the problem can be solved in Polynomial time using a <a href="http://en.wikipedia.org/wiki/Turing%5Fmachine" rel="nofollow">Turing Machine</a>. Basically, a solution has to be <i>testable</i> in poly time. If that's the case, and a known NP problem can be solved using the given problem with modified input (an NP problem can be <i>reduced</i> to the given problem) then the problem is NP complete.</p> <p>The main thing to take away from an NP-complete problem is that it cannot be solved in polynomial time in any known way. NP-Hard/NP-Complete is a way of showing that certain classes of problems are not solvable in realistic time.</p> <p>Edit: As others have noted, there are often approximation solutions for NP-Complete problems. In this case, the approximation solution usually gives a approximation bound using special notation which tells us how close the approximation is.</p> http://stackoverflow.com/questions/967745/strcmp-not-working/967758#967758 0 Answer by Sam Hoice for strcmp not working Sam Hoice 2009-06-09T01:20:53Z 2009-06-09T01:20:53Z <p>Agree with Dave. Also you may wish to use strncmp() instead. Then you can set a length for the comparison.</p> <p><a href="http://www.cplusplus.com/reference/clibrary/cstdio/fgets/" rel="nofollow">http://www.cplusplus.com/reference/clibrary/cstdio/fgets/</a></p> <p><a href="http://www.cplusplus.com/reference/clibrary/cstring/strncmp/" rel="nofollow">http://www.cplusplus.com/reference/clibrary/cstring/strncmp/</a></p> http://stackoverflow.com/questions/825521/how-do-you-use-a-java-library/825540#825540 6 Answer by Sam Hoice for How do you use a Java Library? Sam Hoice 2009-05-05T15:49:57Z 2009-05-05T15:49:57Z <p>I believe if you put the jars in your classpath, you can import and use classes just like you would a standard library. Figuring out the classpath can be confusing, but you can just set it when you start your jvm. Your IDE may have options for it, too. </p> <p>Most java problems are classpath problems.</p> http://stackoverflow.com/questions/778544/client-server-programme/778741#778741 0 Answer by Sam Hoice for client-server programme Sam Hoice 2009-04-22T19:17:13Z 2009-04-22T19:17:13Z <p>You should check your send()s to see if they succeed. You may find that at some point the write buffer (that is, the socket's output buffer) is full and the send fails. This is normal behavior. Send returns the number of bytes sent. If you are not sending multibyte characters, this would probably manifest as missing data rather than corruted data. If you lose one byte of a two byte character, it could result in corruption.</p> http://stackoverflow.com/questions/764505/inputing-into-other-programs-c-c/764594#764594 0 Answer by Sam Hoice for Inputing into other programs [C/C++] Sam Hoice 2009-04-19T01:01:44Z 2009-04-19T01:01:44Z <p>Your program could open a socket and accept data over the socket. Then you would need to have at least a simple protocol with some security. You'd probably also have to write a client of some sort. From your description, I would suggest one of the other answers provided, but this could be a viable option for some situations.</p> http://stackoverflow.com/questions/741813/best-way-to-close-a-stream-an-sax-parser-is-reading-during-the-parsing-process/741938#741938 0 Answer by Sam Hoice for Best way to close a stream an SAX parser is reading during the parsing process? Sam Hoice 2009-04-12T15:31:57Z 2009-04-12T15:31:57Z <p>If you control the document generating end, you could set up a close request message to send back to the server and have the incoming document ended. Depending on the details of your complete system, this is either an ugly hack or an elegant solution... :)</p> http://stackoverflow.com/questions/741900/binary-trees-question-checking-for-similar-shape/741908#741908 1 Answer by Sam Hoice for Binary Trees question. Checking for similar shape Sam Hoice 2009-04-12T15:00:28Z 2009-04-12T15:06:57Z <p>Two Breadth First Searches in parallel would be one way.</p> <p><a href="http://en.wikipedia.org/wiki/Breadth-first_search" rel="nofollow">http://en.wikipedia.org/wiki/Breadth-first_search</a></p> <p>With BFS, you can examine all nodes a particular level of the tree at the same time. That way, if you don't distinguish between right and left children (i.e. if your tree is considered the same if a node's counterpart has one child, regardless of "right" or "left" child) you can handle that at that time.</p> http://stackoverflow.com/questions/710501/need-a-simple-explanation-of-the-inject-method/710529#710529 2 Answer by Sam Hoice for Need a simple explanation of the inject method Sam Hoice 2009-04-02T16:33:58Z 2009-04-02T19:03:16Z <p>Inject applies the block </p> <pre><code>result + element </code></pre> <p>to each item in the array. For the next item ("element"), the value returned from the block is "result". The way you've called it (with a parameter), "result" starts with the value of that parameter. So the effect is adding the elements up.</p> http://stackoverflow.com/questions/706115/how-to-get-the-array-index-or-iteration-number-with-an-each-iterator 1 How to get the array index or iteration number with an each iterator? Sam Hoice 2009-04-01T15:43:11Z 2009-04-01T15:55:22Z <p>I'm iterating through an array in ruby with each. Is there an easy way to get the iteration number or array index without going back to a for loop?</p> http://stackoverflow.com/questions/706115/how-to-get-the-array-index-or-iteration-number-with-an-each-iterator/706133#706133 4 Answer by Sam Hoice for How to get the array index or iteration number with an each iterator? Sam Hoice 2009-04-01T15:45:28Z 2009-04-01T15:45:28Z <p>Ah, got it.</p> <pre><code>each_with_index </code></pre> <p>woo!</p> <p>edit: whoops!</p> http://stackoverflow.com/questions/669598/problem-with-socket-programming-in-c-c/669626#669626 0 Answer by Sam Hoice for problem with socket programming in c\c++ Sam Hoice 2009-03-21T17:36:57Z 2009-03-21T17:37:13Z <p>stdafx has to do with precompiled headers in visual studio. It doesn't have anything specific to do with the socket.</p> <p>APIENTRY has to do with the calling convention of WinMain, again it shouldn't have anything to do with the socket.</p> <p>Post errors.</p> http://stackoverflow.com/questions/655103/why-doesnt-my-find-work-like-i-expect-using-exec 4 Why doesn't my 'find' work like I expect using -exec? Sam Hoice 2009-03-17T16:52:30Z 2009-03-17T17:04:25Z <p>I'm trying to remove all the .svn directories from a working directory.</p> <p>I thought I would just use find and rm like this:</p> <pre><code>find . -iname .svn -exec 'rm -rf {}' \; </code></pre> <p>But the result is:</p> <p>find: rm -rf ./src/.svn: No such file or directory</p> <p>Obviously the file exists, or find wouldn't find it... What am I missing?</p> http://stackoverflow.com/questions/633278/how-do-i-overwrite-my-local-changes-in-tortoisesvn/633285#633285 2 Answer by Sam Hoice for How do I overwrite my local changes in TortoiseSVN? Sam Hoice 2009-03-11T04:02:07Z 2009-03-11T04:02:07Z <p>revert.</p> <p>It should appear in the menu when you right click on the file you changed. That should lose your changes.</p> http://stackoverflow.com/questions/572547/what-does-static-mean-in-a-c-program/572553#572553 0 Answer by Sam Hoice for What does "static" mean in a C program? Sam Hoice 2009-02-21T06:52:48Z 2009-02-21T06:52:48Z <p>If you declare a variable in a function static, its value will not be stored on the function call stack and will still be available when you call the function again.</p> <p>If you declare a global variable static, its scope will be restricted to within the file in which you declared it. This is slightly safer than a regular global which can be read and modified throughout your entire program.</p> http://stackoverflow.com/questions/567255/how-can-i-follow-a-webapp-log-in-netbeans-for-the-included-tomcat-server 2 How can I follow a webapp log in NetBeans for the included Tomcat server? Sam Hoice 2009-02-19T21:30:22Z 2009-02-19T21:59:32Z <p>I'm running a webapp using the included tomcat server in NetBeans. NetBeans shows me the Tomcat log in the output window, but I also want to see my webapp's log. Is this possible? Can I configure NetBeans to do this? I can't find any options in the server or project settings so far...</p> http://stackoverflow.com/questions/305538/how-do-i-figure-out-which-parts-of-a-web-page-are-encrypted-and-which-arent 1 How do I figure out which parts of a web page are encrypted and which aren't? Sam Hoice 2008-11-20T14:57:14Z 2009-02-19T08:53:50Z <p>I'm working on a webserver that I didn't totally set up and I'm trying to figure out which parts of a web page are being sent encrypted and which aren't. Firefox tells me that parts of the page are encrypted, but I want to know what, specifically, is encrypted.</p> http://stackoverflow.com/questions/558028/how-to-write-socket-communication-program-using-win32/558093#558093 1 Answer by Sam Hoice for How to write socket communication program using win32 Sam Hoice 2009-02-17T18:18:28Z 2009-02-17T18:18:28Z <p><a href="http://beej.us/guide/bgnet/" rel="nofollow">http://beej.us/guide/bgnet/</a></p> <p>Beej's guide is a pretty common starting point. It has been a few years since I started with this stuff, but iirc, the guide uses Berkeley sockets and points out the differences with winsock where appropriate.</p> http://stackoverflow.com/questions/558009/ansi-c-no-echo-keyboard-input/558074#558074 0 Answer by Sam Hoice for ANSI C No-echo keyboard input. Sam Hoice 2009-02-17T18:14:26Z 2009-02-17T18:14:26Z <p>This will depend on your environment, it is not something that the language provides. If you intend to do extensive character mode I/O, you might look into a library like curses. Otherwise, you will have to manipulate the terminal or the windows console manually.</p> http://stackoverflow.com/questions/480248/function-references/480491#480491 -1 Answer by Sam Hoice for Function References Sam Hoice 2009-01-26T16:54:15Z 2009-01-26T16:54:15Z <p>I was involved in a project that intended to implement an Object system in C using function pointers and structs to implement classes. Since the functions could be replaced, they could implement a sort of inheritance system. Fortunately, that effort broke down. While the task was interesting, it wasn't a good idea for the project (probably not a good idea for anything in production).</p> <p>I've also used function pointers for a DLL based pluggable module system, as was mentioned before.</p> http://stackoverflow.com/questions/436004/weird-ruby-segmentation-fault-with-dbi-and-mysql/436091#436091 0 Answer by Sam Hoice for Weird ruby segmentation fault with DBI and MySQL Sam Hoice 2009-01-12T16:54:01Z 2009-01-12T16:54:01Z <p>I don't know why you're getting a segfault in this code.</p> <p>It is possible that, for instance, if you overrun the bounds of the array, you may not actually segfault until you try to run the code or access the memory that you overwrote. So you could have a system that runs for days before it segfaults if it only wrote in memory the process owns in an area it didnt' access often.</p> http://stackoverflow.com/questions/436013/is-there-any-way-to-check-if-an-iterator-is-valid/436051#436051 2 Answer by Sam Hoice for Is there any way to check if an iterator is valid? Sam Hoice 2009-01-12T16:46:19Z 2009-01-12T16:46:19Z <p>If you implement a reader/writer solution, then you can have the writer set a flag that invalidates all the iterators of the readers.</p> <p><a href="http://en.wikipedia.org/wiki/Readers-writer_lock" rel="nofollow">http://en.wikipedia.org/wiki/Readers-writer_lock</a></p> <p>I would not try to write to the map without synchronization, as Josh and Paul Tomblin mentioned.</p> http://stackoverflow.com/questions/433164/what-happens-to-an-stl-iterator-after-erasing-it-in-vs-unix-linux/433186#433186 0 Answer by Sam Hoice for What happens to an STL iterator after erasing it in VS, UNIX/Linux? Sam Hoice 2009-01-11T16:46:39Z 2009-01-11T16:46:39Z <p>I think if you modify the collection you invalidate your iterator. You can't rely on the behavior, as you found out.</p> http://stackoverflow.com/questions/321137/how-do-i-install-modules-into-the-maven-repository-using-netbeans-embedded-maven 1 How do I install modules into the maven repository using Netbeans embedded Maven? Sam Hoice 2008-11-26T15:39:54Z 2008-12-04T08:19:09Z <p>I have the Maven plugin for NetBeans and it successfully set up a local repository for me. Now I need to add a 3rd party library (specifically Oracle JDBC driver) to my repository. The build fails with instructions on how to install a third party module but it doesn't look like I can run that command with the NetBeans Maven plugin. Is this possible, or do I need to just get the external version of Maven?</p> http://stackoverflow.com/questions/218522/tools-for-debugging-xslt 7 Tools for debugging xslt Sam Hoice 2008-10-20T13:57:18Z 2008-12-02T03:22:22Z <p>I have a Java servlet which generates xml, translates it with an xslt stylesheet, and then displays the resulting HTML. This is the first time I've worked with xslt. What's a good way to debug xslt? I have (or can get) some sample XML files to apply the transform too. But I'm not really even sure of the syntax so something that would give me syntax warnings would be great.</p> http://stackoverflow.com/questions/321137/how-do-i-install-modules-into-the-maven-repository-using-netbeans-embedded-maven/321484#321484 0 Answer by Sam Hoice for How do I install modules into the maven repository using Netbeans embedded Maven? Sam Hoice 2008-11-26T17:21:38Z 2008-11-26T17:21:38Z <p>I ended up downloading Maven here: <a href="http://maven.apache.org/download.html" rel="nofollow">http://maven.apache.org/download.html</a> and using the standalone Maven binaries to install the jar into my Maven repository. If anyone has any thoughts on the question, I am still interested in knowing the answer.</p> http://stackoverflow.com/questions/305538/how-do-i-figure-out-which-parts-of-a-web-page-are-encrypted-and-which-arent/305586#305586 0 Answer by Sam Hoice for How do I figure out which parts of a web page are encrypted and which aren't? Sam Hoice 2008-11-20T15:12:33Z 2008-11-20T16:04:16Z <p>Can firebug do this?</p> <p>Edit: Looks like firebug will also do this using the "Net" panel, which also gives you some other interesting statistics.</p> http://stackoverflow.com/questions/295861/how-much-of-linux-should-i-learn-in-order-to-deploy-web-sites-using-lamp/295899#295899 1 Answer by Sam Hoice for How much of Linux should I learn in order to deploy web sites using LAMP? Sam Hoice 2008-11-17T15:36:54Z 2008-11-17T15:36:54Z <p>I would learn vi and bash. vi is lightweight and tends to be installed everywhere. It can be a big pain until you get used to it, but if you want to know linux it tends to pretty much always be available, and you'll need a text editor a lot. I'd also learn bash, because it tends to be the default shell.</p> <p>vfilby's suggestions are good.</p> <p>Definitely learn the package manager for whichever linux you choose. I would spend some time with Apache, because it's a bit of a monster just because it has a LOT of configuration options.</p> <p>I try to keep my linux testbed off the public internet because I know I'm not a good enough sysadmin to keep it secure. At least put it behind a firewall. It's pretty easy to find iptables scripts to block everything coming in, so you might want to check out iptables for some good firewalling/address/port manipulation.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1251556/how-to-start-debugging/1251558#1251558 Comment by Sam Hoice on How to start debugging? Sam Hoice 2009-08-09T15:17:19Z 2009-08-09T15:17:19Z +1 beat me to it. ;) http://stackoverflow.com/questions/1061383/safe-to-share-a-subversion-working-copy-between-os Comment by Sam Hoice on Safe to share a Subversion working copy between OS? Sam Hoice 2009-06-30T01:56:45Z 2009-06-30T01:56:45Z I'm curious as to why you would copy the repository instead of just checking in/checking out? http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218901#218901 Comment by Sam Hoice on What was the strangest coding standard rule that you were forced to follow? Sam Hoice 2009-06-11T03:51:21Z 2009-06-11T03:51:21Z It's possible, although since the company was primary made hardware, I'd think Fortran was a more likely ancestor. http://stackoverflow.com/questions/825521/how-do-you-use-a-java-library/825540#825540 Comment by Sam Hoice on How do you use a Java Library? Sam Hoice 2009-05-07T21:49:32Z 2009-05-07T21:49:32Z Yeah, I think I read that on stackoverflow.com :) http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/193705#193705 Comment by Sam Hoice on What is the best comment in source code you have ever encountered? Sam Hoice 2009-04-23T01:07:37Z 2009-04-23T01:07:37Z It doesn't matter if it's true, its still just as funny. Maybe funnier. Can you imagine making it up? http://stackoverflow.com/questions/764529/what-tactics-can-i-use-to-prevent-users-from-discovering-what-language-a-website/764532#764532 Comment by Sam Hoice on What tactics can I use to prevent users from discovering what language a website is written in? Sam Hoice 2009-04-19T01:05:02Z 2009-04-19T01:05:02Z could you use mod_rewrite to help with this? http://stackoverflow.com/questions/741813/best-way-to-close-a-stream-an-sax-parser-is-reading-during-the-parsing-process/741883#741883 Comment by Sam Hoice on Best way to close a stream an SAX parser is reading during the parsing process? Sam Hoice 2009-04-12T15:30:08Z 2009-04-12T15:30:08Z I like this, assuming the document ever does have an &quot;end,&quot; since it's just data coming over a socket. Otherwise, just catch the exception. http://stackoverflow.com/questions/741900/binary-trees-question-checking-for-similar-shape/741923#741923 Comment by Sam Hoice on Binary Trees question. Checking for similar shape Sam Hoice 2009-04-12T15:25:46Z 2009-04-12T15:25:46Z In Java, you're still going to have to iterate through the arrays to do the comparison. Unless you're representing the binary tree as an array in the first place, why not just do the comparison as you traverse the tree and save yourself a second traversal and the space for the array? http://stackoverflow.com/questions/730835/how-create-file-in-c-in-a-specific-place-in-the-pc/730846#730846 Comment by Sam Hoice on How create file in C++ in a specific place in the PC Sam Hoice 2009-04-08T16:45:49Z 2009-04-08T16:45:49Z Note that this clear the file if it exists. http://stackoverflow.com/questions/722801/fast-way-to-parse-a-configuration/722811#722811 Comment by Sam Hoice on fast way to parse a configuration Sam Hoice 2009-04-06T19:34:49Z 2009-04-06T19:34:49Z strtok is confusing but it is one way to tokenize a string. You may want to make sure strtok is thread safe. Historically, that was a problem, but I don't know nowadays. http://stackoverflow.com/questions/303608/graphviz-for-documentation/303635#303635 Comment by Sam Hoice on Graphviz for documentation. Sam Hoice 2009-04-03T16:14:30Z 2009-04-03T16:14:30Z I agree. I don't know about documentation purposes, but I was able to generate useful graphs programmatically in half an hour. My impression is that an hour is probably reasonable for the basics. http://stackoverflow.com/questions/669598/problem-with-socket-programming-in-c-c/669614#669614 Comment by Sam Hoice on problem with socket programming in c\c++ Sam Hoice 2009-03-21T17:37:45Z 2009-03-21T17:37:45Z Beat me to it. That's what I was going to say. :) http://stackoverflow.com/questions/662378/error-in-returning-a-pointer-from-a-function-that-points-to-an-array Comment by Sam Hoice on Error in returning a pointer from a function that points to an array Sam Hoice 2009-03-19T14:23:08Z 2009-03-19T14:23:08Z Which line would be line 81 from your program? http://stackoverflow.com/questions/662378/error-in-returning-a-pointer-from-a-function-that-points-to-an-array/662398#662398 Comment by Sam Hoice on Error in returning a pointer from a function that points to an array Sam Hoice 2009-03-19T14:21:46Z 2009-03-19T14:21:46Z Also, should CFE be returning an int or a double? http://stackoverflow.com/questions/655103/why-doesnt-my-find-work-like-i-expect-using-exec Comment by Sam Hoice on Why doesn't my 'find' work like I expect using -exec? Sam Hoice 2009-03-18T15:57:40Z 2009-03-18T15:57:40Z Looks like -delete implies -depth according to the man page.