User Alex B - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T16:43:38Zhttp://stackoverflow.com/feeds/user/6180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1759207/java-make-a-copy-of-a-reader/1759228#17592280Answer by Alex B for Java make a copy of a readerAlex B2009-11-18T21:32:58Z2009-11-18T21:32:58Z<p>Have you looked at <code>BufferedReader</code>'s <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/io/BufferedReader.html#mark%28int%29" rel="nofollow"><code>mark</code></a> method? Used in conjunction with <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/io/BufferedReader.html#reset%28%29" rel="nofollow"><code>reset</code></a> it might meet your needs.</p>
http://stackoverflow.com/questions/1758959/looking-for-a-good-exercise-in-building-a-website/1759008#17590082Answer by Alex B for Looking for a good exercise in building a websiteAlex B2009-11-18T20:52:32Z2009-11-18T20:52:32Z<p>Have you considered offering your time to a local non-profit organization? You might review their existing mission, website, and other materials and approach them with an idea for something helpful that you could develop for free.</p>
<p>I find that if a project is "real" I'll put more effort into it than into a "toy" project on the side.</p>
http://stackoverflow.com/questions/1757510/please-confirm-which-user-you-are-changing-the-password-for/1757596#17575962Answer by Alex B for "Please confirm which user you are changing the password for"Alex B2009-11-18T17:14:55Z2009-11-18T17:14:55Z<p>Users of our site will only see this error if they login with multiple accounts. I would not make a change to your application based on this behavior from firefox.</p>
http://stackoverflow.com/questions/858713/can-emacs-differentiate-between-ctrl-r-and-ctrl-shift-r5Can emacs differentiate between ctrl-r and ctrl-shift-r?Alex B2009-05-13T15:41:47Z2009-11-13T22:31:37Z
<p>I'd like to bind <kbd>ctrl-r</kbd> to <code>'isearch-backward</code> and bind <kbd>ctrl-shift-r</kbd> to <code>'tags-apropos</code> but I can't distinguish between the two key presses.</p>
<p>Can emacs differentiate between <kbd>ctrl-r</kbd> and <kbd>ctrl-shift-r</kbd>? What should go into my .emacs file to allow this keybinding?</p>
http://stackoverflow.com/questions/1729949/whats-my-big-o/1729976#17299762Answer by Alex B for What's my Big O?Alex B2009-11-13T15:34:04Z2009-11-13T15:34:04Z<p>Yes, that is O(n) because it scales with the number of items.</p>
<pre><code>1000000 = 10 * 100000
</code></pre>
<p>and</p>
<pre><code>82s = 10 * 8s (roughly)
</code></pre>
http://stackoverflow.com/questions/1729791/what-are-the-disadvantages-of-writing-unit-tests-in-a-different-language-to-the/1729874#17298741Answer by Alex B for What are the (dis)advantages of writing unit tests in a different language to the code?Alex B2009-11-13T15:21:11Z2009-11-13T15:21:11Z<p>When building an API or library, I often deliver unit tests as a form of documentation on how best to use the API or library. Most of the time I build a C# library, I'm delivering to a client who will be writing C# code to use the library.</p>
<p>For documentation sake, at least some of my tests will always be written in the target language. </p>
http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why35When do you use Java's @Override annotation and why?Alex B2008-09-18T16:48:26Z2009-11-07T00:35:47Z
<p>What are the best practices for using Java's @Override annotation and why? </p>
<p>It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there certain programming situations that call for using the @Override and others that should never use the @Override? </p>
http://stackoverflow.com/questions/1682551/dependency-injection-best-practices-and-anti-patterns/1682624#16826240Answer by Alex B for Dependency Injection best practices and anti-patternsAlex B2009-11-05T18:33:51Z2009-11-05T18:33:51Z<p>I've found that when I see a violation of the <a href="http://en.wikipedia.org/wiki/Law%5FOf%5FDemeter" rel="nofollow">Law of Demeter</a> that is a hint that I might want dependency injection.</p>
<p>For example:</p>
<pre><code>void doit()
{
i += object.anotherobject.addvalue; //violation of Law of Demeter
}
</code></pre>
<p>Sometimes hints that I might want to dependency inject <code>anotherobject</code>.</p>
http://stackoverflow.com/questions/1538680/cannot-create-a-for-loop-inside-a-java-thread-why/1538715#153871511Answer by Alex B for Cannot create a for loop inside a java thread - why?Alex B2009-10-08T15:54:49Z2009-10-08T15:54:49Z<p>You are using statements inside of a class and outside of a method. </p>
<p>From the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#run%28%29" rel="nofollow">javadoc</a> for <code>Thread.run</code>: "Subclasses of Thread should override this method."</p>
<pre><code>public void incomingMessageThread() throws FileNotFoundException, IOException
{
new Thread()
{
public void run()
{
BuildData a = new BuildData();
for(int i = 0; i<100; i++)
{
a.parseDataFile("_"+i+"/outgoingMessages");
}
}
}.start();
}
</code></pre>
http://stackoverflow.com/questions/1525535/delete-all-items-from-a-c-stdvector/1525598#15255982Answer by Alex B for Delete all items from a c++ std::vectorAlex B2009-10-06T13:28:45Z2009-10-06T13:28:45Z<p>Use <a href="http://cplusplus.com/reference/stl/vector/clear/" rel="nofollow">v.clear()</a> to empty the vector.</p>
<p>If your vector contains pointers, clear calls the destructor for the object but does not delete the memory referenced by the pointer.</p>
<pre><code>vector<SomeClass*> v(0);
v.push_back( new SomeClass("one") );
v.clear(); //Memory leak where "one" instance of SomeClass is lost
</code></pre>
http://stackoverflow.com/questions/1455175/facebook-application-send-images/1455234#14552340Answer by Alex B for facebook application send imagesAlex B2009-09-21T15:48:58Z2009-09-21T15:48:58Z<p>I'd review the <a href="http://developers.facebook.com/" rel="nofollow">Facebook Developers page</a>.</p>
http://stackoverflow.com/questions/1430058/dont-know-what-format-date-is-to-be-able-to-parse-it-1252457867/1430066#14300667Answer by Alex B for Don't know what format date is to be able to parse it '[1252457867]'Alex B2009-09-15T22:59:26Z2009-09-15T22:59:26Z<p>This sounds like seconds since the <a href="http://en.wikipedia.org/wiki/Unix%5Ftime" rel="nofollow">Unix Epoch</a> (January 1, 1970).</p>
http://stackoverflow.com/questions/93591/how-do-i-use-idea-intellij-to-auto-complete-method-parameters/102638#1026382Answer by Alex B for how do I use IDEA intellij to auto-complete method parameters?Alex B2008-09-19T15:10:04Z2009-09-15T17:04:26Z<p><a href="http://blogs.jetbrains.com/idea/2009/09/super-method-completion/" rel="nofollow">IntelliJ IDEA 9 now supports</a> what they call "super completion" which matches the behavior you are looking for and is available through their early access program.</p>
<p><img src="http://blogs.jetbrains.com/idea/wp-content/uploads/2009/09/super.png" alt="alt text" /></p>
<p>IntelliJ IDEA 8 does not allow you to autocomplete more than one parameter at a time. You are forced to use Ctrl-Shift-Space once for each parameter.</p>
http://stackoverflow.com/questions/1400954/how-does-this-c-code-compile-without-an-end-return-statement2How does this C++ code compile without an end return statement?Alex B2009-09-09T17:22:45Z2009-09-09T17:46:40Z
<p>I came across the following code that compiles fine (using Visual Studio 2005):</p>
<pre><code>SomeObject SomeClass::getSomeThing()
{
for each (SomeObject something in someMemberCollection)
{
if ( something.data == 0 )
{
return something;
}
}
// No return statement here
}
</code></pre>
<p>Why does this compile if there is no return statement at the end of the method?</p>
http://stackoverflow.com/questions/1389904/antivirus-symantec-endpoint-configuration-for-developer-machine/1389975#13899753Answer by Alex B for Antivirus (Symantec Endpoint) configuration for developer machineAlex B2009-09-07T15:54:09Z2009-09-07T15:54:09Z<p>With any on-demand anti-virus program, make sure your code tree (source and build) are excluded from on-demand scans. I have seen this change a build from taking minutes to taking seconds.</p>
http://stackoverflow.com/questions/588005/how-do-i-highlight-cvs-changes-in-emacs3How do I highlight cvs changes in emacs?Alex B2009-02-25T21:39:06Z2009-09-04T16:18:00Z
<p>I'm using emacs with cvs and have cvs mode enabled. I'd like to get line-by-line highlighting of changes from the latest version in CVS. I've seen this done in intellij where there is a green indication for lines added and another indication for lines modified and a third symbol for lines deleted.</p>
<p>Is there a cvs highlighting mode for emacs to show changes from the latest version of cvs? I'm not looking for a <code>cvs diff</code> type functionality that would open in a new buffer, but something that would indicate in my current buffer what lines have been modified.</p>
<p>In the following image there is a blue rectangle on the left side in what Intellij calls the "gutter" to indicate that the code is different than what is in source control. </p>
<p><img src="http://www.jetbrains.com/idea/features/screenshots/60/actions.gif" alt="intellij example" /></p>
<p>I'm looking for similar functionality in emacs.</p>
http://stackoverflow.com/questions/1335586/good-case-for-interfaces/1335625#13356251Answer by Alex B for Good Case For InterfacesAlex B2009-08-26T15:36:02Z2009-08-26T15:36:02Z<p>If your shop is performing automated testing, interfaces are a great boon to dependency injection and being able to test a unit of software in isolation.</p>
http://stackoverflow.com/questions/654991/good-tutorial-for-stringstream-manipulation-in-c0Good tutorial for stringstream manipulation in C++Alex B2009-03-17T16:28:08Z2009-08-24T16:08:01Z
<p>I'm looking for a good tutorial on how to do string manipulation with stringstream in C++. Currently, I'm doing the following:</p>
<pre><code>double d = 7.234;
stringstream out;
out.width(8);
out.precision(6);
out << fixed << d;
</code></pre>
<p>I like <a href="http://www.cplusplus.com/reference/iostream/ostream/operator<<.html" rel="nofollow">this link</a> for a list of what options are available, but I learn best from examples and would like to see some more examples with predicted outputs of the various options so that I am not just guessing to get my desired behavior.</p>
http://stackoverflow.com/questions/1312772/what-could-go-wrong-with-calling-a-static-method-with-an-object-in-java/1312783#13127832Answer by Alex B for What could go wrong with calling a static method with an object in Java?Alex B2009-08-21T15:48:19Z2009-08-21T15:48:19Z<p>The two calls are the same. The problem that comes to mind is when overriding class A, you cannot directly override foo().</p>
http://stackoverflow.com/questions/1240504/regular-expression-to-match-a-word/1240530#12405303Answer by Alex B for Regular Expression to match a wordAlex B2009-08-06T18:10:10Z2009-08-06T18:10:10Z<p>If you want to match anything that starts with "stop" including "stop going", "stop" and "stopping" use:</p>
<pre><code>^stop
</code></pre>
<p>If you want to match the <em>word</em> stop followed by anything as in "stop going", "stop this", but not "stopped" and not "stopping" use:</p>
<pre><code>^stop\W
</code></pre>
http://stackoverflow.com/questions/1229611/explaining-software-development-to-management/1229679#12296791Answer by Alex B for explaining software development to managementAlex B2009-08-04T20:13:22Z2009-08-04T20:13:22Z<p>I would find something they are familiar with and make a metaphor. </p>
<p>This would be like using excel and everytime you enter a formula, you have to wait 1-2 minutes before editing another cell. </p>
<p>You could work around it by creating formulas for an excel spreadsheet inside a text editor, and copying them into excel only once, but it would be a significant cost to rapid spreadsheet use.</p>
http://stackoverflow.com/questions/8607/any-good-way-to-use-emacs-for-c-development/64161#641615Answer by Alex B for Any good way to use Emacs for C# development?Alex B2008-09-15T15:54:26Z2009-08-03T17:41:28Z<p>I use <a href="http://mfgames.com/csharp-mode/start" rel="nofollow">C# Mode for emacs</a> with <a href="http://sourceforge.net/projects/visemacs/" rel="nofollow">VisEmacs</a>. This lets me use visual studio but replace the editor with emacs. Every time you click something in Visual Studio that triggers a file action, it is sent to emacs instead. This works much better than emacs mode in Visual Studio.</p>
http://stackoverflow.com/questions/1213723/java-stacktrace-editor-or-gui/1213742#12137420Answer by Alex B for Java StackTrace Editor or GUIAlex B2009-07-31T17:09:04Z2009-07-31T17:09:04Z<p>Are you able to modify your code to generate more clear, user readable errors?</p>
http://stackoverflow.com/questions/1161930/is-oop-abused-in-universities/1161958#11619581Answer by Alex B for Is OOP abused in universities ?Alex B2009-07-21T21:52:15Z2009-07-21T21:52:15Z<p>I've seen some of the best results of using OOP when adding new functionality to a system or maintaining/improving a system. Unfortunately, it's not easy to get that kind of experience while attending a university.</p>
http://stackoverflow.com/questions/1160343/how-can-i-find-if-a-lat-long-coordinate-is-valid-in-a-coordinate-system/1160395#11603951Answer by Alex B for How can I find if a lat long coordinate is valid in a coordinate system?Alex B2009-07-21T16:51:37Z2009-07-21T16:51:37Z<p>The bounds for a given coordinate system are specific to that coordinate system so there is no generic algorithm for determining if a coordinate is out of bounds.</p>
<p>Beyond that, being "out of bounds" is probably specific to your domain. For example, in the Swiss Grid, 400N 200E is not in Switzerland, and therefore out of bounds for the typical use of the Swiss Grid and yet still represents a real place. Is this out of bounds for your domain or not?</p>
http://stackoverflow.com/questions/1160278/c-container-of-iterators-and-circular-references/1160348#11603482Answer by Alex B for C++ container of iterators and circular referencesAlex B2009-07-21T16:42:46Z2009-07-21T16:42:46Z<p>This works if you use a <code>deque</code> instead of a <code>queue</code>. <code>Queue</code> is not a container, but a facade so it does not support the <code>::iterator</code> call.</p>
<p>From <a href="http://www.cplusplus.com/reference/stl/queue/" rel="nofollow">cplusplus.com</a>:</p>
<blockquote>
<p>queues are implemented as containers adaptors, which are classes that use an encapsulated object of a specific container class as its underlying container, providing a specific set of member functions to access it elements. Elements are pushed into the "back" of the specific container and popped from its "front".</p>
</blockquote>
http://stackoverflow.com/questions/1145294/oracle-return-newly-inserted-key-value/1145317#11453170Answer by Alex B for Oracle - return newly inserted key value.Alex B2009-07-17T19:48:15Z2009-07-17T19:48:15Z<p>I think you are looking for a Callable Statement. Here's <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/sql/CallableStatement.html" rel="nofollow">javadoc</a> if you are trying to get to it from Java.</p>
http://stackoverflow.com/questions/1144042/declare-and-initialise-an-array-of-struct-class-at-the-same-time/1144130#11441300Answer by Alex B for Declare and initialise an array of struct/class at the same timeAlex B2009-07-17T15:48:10Z2009-07-17T15:48:10Z<p>C++ natively supports two forms of vector initialization and neither is what you are looking for.</p>
<p>1: Every element the same as in:</p>
<pre><code>vector<int> ints(4,1000); //creates a vector of 4 ints, each value is 1000.
</code></pre>
<p>2: Copy from an existing vector as in:</p>
<pre><code>vector<int> original(3,1000); //original vector has 3 values, all equal 1000.
vector<int> otherVector(original.begin(),original.end()); //otherVector has 3 values, copied from original vector
</code></pre>
http://stackoverflow.com/questions/428918/how-can-i-increment-a-date-by-one-day-in-java/428953#4289535Answer by Alex B for How can I increment a date by one day in Java?Alex B2009-01-09T17:30:46Z2009-07-17T15:40:49Z<pre><code>SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd" );
Calendar cal = Calendar.getInstance();
cal.setTime( dateFormat.parse( inputString ) );
cal.add( Calendar.DATE, 1 );
</code></pre>
http://stackoverflow.com/questions/1143951/what-is-the-simplest-way-to-convert-a-java-string-from-all-caps-words-separated/1144014#11440142Answer by Alex B for What is the simplest way to convert a Java string from all caps (words separated by underscores) to CamelCase (no word separators)?Alex B2009-07-17T15:28:53Z2009-07-17T15:28:53Z<pre><code>String input = "ABC_DEF";
StringBuilder sb = new StringBuilder;
for( String oneString : input.split("_") )
{
sb.append( oneString.substring(0,1) );
sb.append( oneString.substring(1).toLowerCase() );
}
//sb now holds your desired string
</code></pre>
http://stackoverflow.com/questions/1772675/find-missing-numbers-in-continuous-filenames-advanced-ls-findComment by Alex B on Find missing numbers in continuous filenames (advanced ls & find)Alex B2009-11-20T19:23:33Z2009-11-20T19:23:33Zare both directories accessible from a single machine or do you need a cross-machine solution?http://stackoverflow.com/questions/1677378/cruisecontrol-junit-test-results-show-all-zeroesComment by Alex B on CruiseControl JUnit test results show all zeroesAlex B2009-11-05T18:40:52Z2009-11-05T18:40:52Z@bguiz, you should post as an answer. I think you are correct.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/99840#99840Comment by Alex B on What non-programming books should programmers read?Alex B2009-10-07T16:46:30Z2009-10-07T16:46:30ZIt is amazing how relevant this book is today. http://stackoverflow.com/questions/1521544/does-anyone-use-the-scheme-programming-language-for-a-livingComment by Alex B on Does anyone use the Scheme programming language for a living?Alex B2009-10-05T18:17:53Z2009-10-05T18:17:53ZYou might look at "Are there people using Scheme out there?" <a href="http://stackoverflow.com/questions/291033/" rel="nofollow">stackoverflow.com/questions/291033</a>http://stackoverflow.com/questions/1400954/how-does-this-c-code-compile-without-an-end-return-statementComment by Alex B on How does this C++ code compile without an end return statement?Alex B2009-09-09T17:30:09Z2009-09-09T17:30:09ZThe above code will compile in visual studio. The "for each" is an extension to C++ present in vs-2005.http://stackoverflow.com/questions/1384213/java-source-code-to-html-with-links-from-uses-to-definitionsComment by Alex B on java source code to html with links from uses to definitionsAlex B2009-09-05T20:47:59Z2009-09-05T20:47:59ZSee similar intellij question: <a href="http://stackoverflow.com/questions/1162537/intellij-idea-plugin-for-saving-java-html" rel="nofollow" title="intellij idea plugin for saving java html">stackoverflow.com/questions/1162537/…</a>http://stackoverflow.com/questions/1335566/what-is-the-max-number-of-websites-virtual-directories-one-can-host-on-iisComment by Alex B on What is the max number of websites / virtual directories one can host on IIS?Alex B2009-08-26T15:39:12Z2009-08-26T15:39:12ZDoes this belong on serverfault?
http://stackoverflow.com/questions/1240504/regular-expression-to-match-a-word/1240517#1240517Comment by Alex B on Regular Expression to match a wordAlex B2009-08-06T18:08:32Z2009-08-06T18:08:32ZThis will match "don't stop going"http://stackoverflow.com/questions/8607/any-good-way-to-use-emacs-for-c-development/64161#64161Comment by Alex B on Any good way to use Emacs for C# development?Alex B2009-08-03T17:41:47Z2009-08-03T17:41:47Z@Ray The link is updated.http://stackoverflow.com/questions/1213723/java-stacktrace-editor-or-gui/1213742#1213742Comment by Alex B on Java StackTrace Editor or GUIAlex B2009-07-31T19:38:13Z2009-07-31T19:38:13ZIn that case, I usually log the stack trace to a log file for me to review and log "Unexpected Software Exception" to the user. The user should get as specific a message as they can, possibly "Unexpected Database Exception" or "Unexpected Exception while storing customer data", etc. http://stackoverflow.com/questions/1168887/alternative-intel-drivers-for-xComment by Alex B on Alternative Intel drivers for XAlex B2009-07-22T23:57:49Z2009-07-22T23:57:49ZYou will get a better answer on superuser.com. During the beta, you'll need a password to get in: ewok.adventurehttp://stackoverflow.com/questions/1146655/cvs-read-only-check-out/1147827#1147827Comment by Alex B on CVS read only check outAlex B2009-07-19T04:05:40Z2009-07-19T04:05:40ZHello Amit, You can add a response to an answer by clicking "add comment" below an answer. There you can put the responses and the answerer will get notified. It would be best to delete this answer, and add these responses as comments to the answers from Rex and Theatrus.http://stackoverflow.com/questions/1144286/how-to-tell-apache-in-reverse-proxy-mode-to-intercept-or-trap-302-responses-froComment by Alex B on How to tell Apache, in reverse proxy mode, to intercept or trap 302 responses from backend server and redirect internally without sending 302 response back to client?Alex B2009-07-17T16:19:29Z2009-07-17T16:19:29ZServer configuration questions will probably get a much better answer at serverfault.comhttp://stackoverflow.com/questions/1063832/ant-cant-find-javac-no-matter-what-i-do-it-always-claims-javahome-is-c-progComment by Alex B on Ant can't find Javac. No matter what I do it always claims JAVA_HOME is "C:\Program Files\Java\jre6"Alex B2009-07-10T16:26:47Z2009-07-10T16:26:47ZDid your environment variable include " characters? It should have them because of the space as in "C:\Program Files\Java\jdk1.6.0_12"http://stackoverflow.com/questions/61553/track-your-reputationComment by Alex B on Track your reputationAlex B2009-07-10T15:45:52Z2009-07-10T15:45:52ZBelongs on meta.stackoverflow.com