User leeand00 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T16:50:02Zhttp://stackoverflow.com/feeds/user/18149http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1875030/best-place-to-store-reference-directories-for-unit-tests-in-boost0Best place to store reference directories for unit tests in boost?leeand002009-12-09T16:22:17Z2009-12-09T16:22:17Z
<p>I'm trying to <a href="http://stackoverflow.com/questions/1833888/unziping-files-to-existing-directories-in-visual-studio-2005-c">write a library</a> which unzips a zip file contents to an existing directory, replacing the content of only the folders which exist in the zip file.</p>
<p>In order to do this I am employing the use of the Boost Unit Testing framework.</p>
<p>Before each test I wish make a copy of an existing directory, the copy of which will serve as the baseline for my tests, before each test this directory will be deleted and re-copied from the existing directory, so that each of the tests may make use of it.</p>
<p>Since I am <a href="http://stackoverflow.com/questions/1661503/how-are-ms-visual-c-environments-generally-setup">unfamiliar with the general development directory structure of Visual C++/Boost programs</a> I was wondering where the standard location for a directory used over and over in unit tests would be; <a href="http://stackoverflow.com/questions/1661503/how-are-ms-visual-c-environments-generally-setup">considering the answer to my previous question though</a>, I'm concerned that there might not actually be an answer to this question. </p>
http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe5What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T15:03:22Z2009-12-09T15:58:45Z
<p>In <a href="http://stackoverflow.com/questions/251007/how-difficult-is-it-to-turn-a-java-school-programmer-into-a-c-or-c-programmer">this other question</a> in the winning answer I read:</p>
<blockquote>
<p>... good C++ programming typically
doesn't use pointers in complicated
ways.</p>
</blockquote>
<p>What does it mean to not use pointers in complicated ways?</p>
<p>(I'm really hoping that this isn't a subjective question)</p>
http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-20051How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-05T23:13:46Z2009-12-09T15:34:50Z
<p>I'm trying to use boost::filesystem to copy files and folders (just like a standard copy a folder and paste it in windows explorer).</p>
<p>Although I've been to the <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/filesystem/doc/index.htm" rel="nofollow">boost::filesystem documentation</a>, I still don't really know how to go about doing this. </p>
<p>Do you have to recursively go though each directory (creating it) and find each file copying it?</p>
<p>Additionally, how do you copy the file in C++/Boost?</p>
<p>P.S. I'm using Boost 1.40.0</p>
<p><strong>Update</strong>
I think I may have ended up creating an answer to this one, only concern being that I don't do any try-catch errors to check for locked files and folders. </p>
<p>The following code makes a copy of a directory in the relative path "../example/ecomm" and duplicates it to a non-existing path "../example/dup_ecomm":</p>
<pre><code>#include <boost/test/unit_test.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/regex.hpp>
#include <iostream>
#include <fstream>
#include<string>
bool copy_dir( const boost::filesystem::path & ext_dir_path, // the existing directory
const boost::filesystem::path & duplicate_dir_path // the duplicate directory
)
{
std::cout << "BEGIN: copy_dir " << endl;
std::cout << "- ext_dir_path: " << ext_dir_path << endl;
std::cout << "- duplicate_dir_path: " << duplicate_dir_path << endl;
// 1. Ensure that the directory we are trying to copy exists.
if (!boost::filesystem::exists( ext_dir_path ) ) return false;
bool createdDir = boost::filesystem::create_directory( duplicate_dir_path );
// cout << "createdDir: " << createdDir << endl;
copy_dir(ext_dir_path, // the existing directory
duplicate_dir_path, // the duplicate directory,
ext_dir_path, // the base path for the existing directory
duplicate_dir_path,
true);
std::cout << "END: copy_dir " << endl;
}
bool copy_dir( const boost::filesystem::path & ext_dir_path, // the existing directory
const boost::filesystem::path & duplicate_dir_path, // the duplicate directory,
const boost::filesystem::path & base_ext_dir_path, // the base path for the existing directory
const boost::filesystem::path & base_duplicate_dir_path, // the base path for the duplicate of the exisiting directory
bool isRootPath)
{
// Debug input arguments
std::cout << "BEGIN: copy_dir " << endl;
std::cout << "- ext_dir_path: " << ext_dir_path << endl;
std::cout << "- duplicate_dir_path: " << duplicate_dir_path << endl;
std::cout << "- base_ext_dir_path: " << base_ext_dir_path << endl;
std::cout << "- base_duplicate_dir_path: " << base_duplicate_dir_path << endl;
std::cout << "- isRootPath: " << isRootPath << endl;
boost::filesystem::directory_iterator end_itr; // default construction yields past-the-end
cout << "--Beginning itr loop" << endl;
for ( boost::filesystem::directory_iterator itr( ext_dir_path );
itr != end_itr;
++itr )
{
if ( boost::filesystem::is_directory(itr->status()) )
{
cout << "---itr->path(): " << itr->path() << endl;
boost::filesystem::path newExtDir(itr->path());
string dup_path = itr->path().string();
boost::algorithm::replace_first(dup_path, base_ext_dir_path.string(), base_duplicate_dir_path.string());
cout << "dup_path: " << dup_path << endl;
boost::filesystem::path new_dup_dir(dup_path);
bool createdDir = boost::filesystem::create_directory( new_dup_dir );
cout << "creating directory " << dup_path << " created: " << createdDir << endl;
boost::filesystem::path newDuplicateDir(duplicate_dir_path);
copy_dir(newExtDir, // the existing directory
newDuplicateDir, // the duplicate directory,
base_ext_dir_path,
base_duplicate_dir_path,
false);
}
else
{
cout << "---isLeaf: " << itr->path() << endl;
string dup_path = itr->path().string();
boost::algorithm::replace_first(dup_path, base_ext_dir_path.string(), base_duplicate_dir_path.string());
string src_path = itr->path().string();
cout << "src_path: " << src_path << endl;
cout << "dup_path: " << dup_path << endl;
boost::filesystem::path s_path(src_path);
boost::filesystem::path d_path(dup_path);
boost::filesystem::copy_file(s_path, d_path);
}
}
std::cout << "--Ending itr loop" << endl;
std::cout << "END: copy_dir " << endl;
return false;
}
test_suite*
init_unit_test_suite( int, char* [] ) {
boost::filesystem::path ext_dir("..\\example\\ecomm");
boost::filesystem::path dir_dup("..\\example\\dup_ecomm");
copy_dir(ext_dir,
dir_dup); // the duplicate directory,
// ... unit tests...etc...
}
</code></pre>
<p>My question now is what I'm I forgetting to do in regards to locked files and directories?</p>
http://stackoverflow.com/questions/1869534/service-app-for-viewing-a-webpage-as-hex-straight-off-the-wire0Service/App for viewing a Webpage as hex straight off the wire?leeand002009-12-08T20:12:24Z2009-12-08T20:15:09Z
<p>Are there any tools/websites/utilities for viewing a website in hex as it comes strait off the wire? </p>
<p>I'm getting some strange non-printing characters back from somebody else's C++ code and I want to identify the characters to find out where they are comming from.</p>
<p>I'm concerned that writing the file to disk messes with the characters that are written out (I think that this may only be true in the case of saving it with a text-editor, but I'm not entirely sure about that).</p>
<p>I have already used a tool called wget.exe to download the page in the past, but I'm still not entirely sure that it doesn't modify it before it writes it to disk.</p>
<p>Also what about the hex-editor itself? Does it modify the file (or the display of the file)?</p>
<p>So that (hopefully) gives you an overview of what I am looking for here.</p>
http://stackoverflow.com/questions/1867504/embedding-content-iframes-with-an-html-4-01-doctype0Embedding Content (iframes) with an HTML 4.01 doctype?leeand002009-12-08T14:56:24Z2009-12-08T14:56:24Z
<p>I have some existing code that I have been tasked with upgrading to a valid doctype of HTML4.01 strict.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
<p>In the code I've come across an <iframe>, and this does not sit well with the <a href="http://validator.w3.org" rel="nofollow">w3 validator</a>.</p>
<pre><code><iframe
OnLoad="javascript: LoadAddAttachmentiFrame('Stock-Attachment-135','/cgi-bin/Xebra?UploadAttachment&amp;s=gnfhcjt7&amp;itemIdentifier=Stock-Attachment-135','gnfhcjt7');"
src="/xebrajustadiv.htm"
frameborder=0
id="Stock-Attachment-135-AttachFrame"
name="Stock-Attachment-135-AttachFrame"
width="525"
height="10">
</iframe>
</code></pre>
<p>The <a href="http://validator.w3.org" rel="nofollow">w3 validator</a> even seems to claim that <iframe> is not included the html 4.01 strict doctype. </p>
<p>Now I've been to <a href="http://www.velocityreviews.com/forums/t658990-iframe-validation-issues.html" rel="nofollow">another website</a> where they claim that there is infact another way to embed content within another document. Unfortunately it requires that you use two different methods (one for IE and one for all other browsers); IE uses an ActiveX Object, and the rest of the browsers use an <object> tag. Additionally the site seems to be refering to an xhtml doctype and not the html 4.01 strict doctype that I am referring to myself.</p>
<p>I don't know what the correct way to embed this content into my html 4.01 strict doctype would be, and additionally I'm concerned that the Javascript that is meant to be called in the onload attribute of the <iframe> tag will not work with the methods suggested in <a href="http://www.velocityreviews.com/forums/t658990-iframe-validation-issues.html" rel="nofollow">the website</a>; using the ActiveX control for IE and <object> tag for all other browsers.</p>
<blockquote>
<p><strong>Note:</strong> This question is really better suited to <a href="http://www.doctype.com/" rel="nofollow">doctype</a> and thus I have <a href="http://doctype.com/embedding-content-iframes-html-401-doctype" rel="nofollow">posted it there</a>. Unfortunately, it seems that I am more likely to get an answer from someone on stackoverflow, so I have posted it here with a link to the question on <a href="http://doctype.com/embedding-content-iframes-html-401-doctype" rel="nofollow">doctype</a>.</p>
</blockquote>
http://stackoverflow.com/questions/1597368/changing-the-output-directory-of-the-resulting-css-file-in-compass-webby1Changing the output directory of the resulting CSS file in Compass/Webby?leeand002009-10-20T21:17:12Z2009-12-06T19:59:05Z
<p>I want my resulting *.css file to land in the output/css directory instead of the stylesheets directory. How would I go about doing this?</p>
<p>I've already tried:</p>
<pre><code>Compass.configuration do |config|
config.project_path = File.dirname(__FILE__)
config.sass_dir = File.join('src','stylesheets')
config.css_dir = 'css'
config.output_style = :compact
end
</code></pre>
<p><strong><proj-root>/SiteFile</strong></p>
<p>In my Webby SiteFile configuration, but the resulting css file is still output into the <a href="http://wiki.github.com/chriseppstein/compass/configuration-reference" rel="nofollow">default directory ("stylesheets")</a>. How can I change this?</p>
http://stackoverflow.com/questions/589182/has-anyone-ever-used-aop-to-detect-a-circular-reference0Has anyone ever used AOP to detect a circular reference?leeand002009-02-26T05:07:33Z2009-12-05T23:26:44Z
<p>I don't know, so that you could throw a CircularReferenceException?</p>
http://stackoverflow.com/questions/1844732/loading-boost-1-40-0-into-intellisense-in-visual-studio-20050Loading Boost 1.40.0 into Intellisense in Visual Studio 2005?leeand002009-12-04T03:54:18Z2009-12-04T22:40:06Z
<p>Is there any way to get Intellisense in Visual C++ for Visual Studio 2005?</p>
<p>I'm trying to get the Boost libraries to load up with intellisense and in the object browser/class view.</p>
<p>I installed the binary for Windows with the <a href="http://www.boostpro.com/download" rel="nofollow">BoostPro installer</a> (BoostPro 1.40.0 Installer).</p>
<p>I'm not certain that it comes with the source code however, which may be required to make Intellisense work in VS2005. </p>
http://stackoverflow.com/questions/1843633/unziping-a-zip-file-with-boost-and-visual-c-20050Unziping a zip file with boost and Visual C++ 2005?leeand002009-12-03T22:55:31Z2009-12-04T16:45:36Z
<p>Is there a library in boost that can be used to unzip a zip file?</p>
http://stackoverflow.com/questions/1822635/how-do-i-maintain-multiple-lines-of-development-between-customers-in-mecurial0How do I Maintain Multiple Lines of Development Between Customers In Mecurial?leeand002009-11-30T21:51:09Z2009-12-04T03:35:54Z
<p>I work on maintaining the same e-commerce web-app for multiple customers.</p>
<p>Originally there was a standard set of pages from which all the rest of the customers customizations were derived in the past.</p>
<p>Recently the place where I work decided to use Mercurial for version control. They've also decided to re-work the standard set of pages for our e-commerce and make them a main-line/base-line of development.</p>
<p>That being said there are existing customizations for each of our customers that were made before the base-line set of pages, which have not been entered into version control (hg) yet. </p>
<p><a href="http://www.twitpic.com/rmk4v" rel="nofollow">Overview</a></p>
<p>What is the best way to merge the changes from the base-line of development into a separate line of development for each of our customers while we keep the existing customizations for each customer?</p>
http://stackoverflow.com/questions/1837312/which-version-of-boost-should-i-use-with-c-visual-studio-20051Which version of boost should I use with c++ visual-studio-2005?leeand002009-12-03T02:44:37Z2009-12-03T08:19:58Z
<p>Does anyone know what version of the Boost Library to use with Visual Studio 2005?</p>
http://stackoverflow.com/questions/1837333/which-version-of-zlib-should-i-use-with-visual-c-on-visual-studio-20050Which version of zlib should I use with visual c++ on visual-studio-2005?leeand002009-12-03T02:51:10Z2009-12-03T04:04:35Z
<p>I was wondering if anybody knew what versions of gzstream are compatible with visual-studio 2005.</p>
http://stackoverflow.com/questions/1833888/unziping-files-to-existing-directories-in-visual-studio-2005-c0Unziping files to existing directories in Visual Studio 2005 C++?leeand002009-12-02T16:04:12Z2009-12-02T22:30:52Z
<p>I have a possibly pre-existing directory structure on the client machine server that looks like this:</p>
<pre><code>-|
+css
|-ABC
|-EFG
|-XYZ
+img
|-ABC
|-EFG
|-XYZ
+js
|-ABC
|-EFG
|-XYZ
+htm
|-ABC
|-EFG
|-XYZ
</code></pre>
<p>When we send our customers updates to their e-commerce websites we send them in a zip file, which has the following structure:</p>
<pre><code>-|
+css
|-UniqueDirectory
+img
|-UniqueDirectory
+js
|-UniqueDirectory
+htm
|-UniqueDirectory
</code></pre>
<p>...where UniqueDirectory is always the same name.</p>
<p>That being said, is there a way using Visual C++ 2005 that a program could be written to unzip the zip file that we send the customer into the existing directory without overwriting any of the existing directories (excluding the UniqueDirectory of course, that can and should be overwritten). </p>
<p>The end result after the file being unzipped on the client machine should be:</p>
<pre><code>-|
+css
|-ABC
|-EFG
|-UniqueDirectory
|-XYZ
+img
|-ABC
|-EFG
|-UniqueDirectory
|-XYZ
+js
|-ABC
|-EFG
|-UniqueDirectory
|-XYZ
+htm
|-ABC
|-EFG
|-UniqueDirectory
|-XYZ
</code></pre>
<p>Can this be done using C++? My clients don't possess the technical skill involved to just unzip the files to the correct directories. They also don't necessarily want to install an unzipping program.</p>
<p>Would it require an external library? Preferably I'd like to do this using just libraries from Visual C++ 2005, but if an external library is required I'd like to know what it is called.</p>
http://stackoverflow.com/questions/1836191/tips-for-writing-the-least-verbose-visual-c-code-you-can-in-visual-studio-20050Tips for writing the least verbose Visual C++ code you can in Visual Studio 2005?leeand002009-12-02T22:09:07Z2009-12-02T22:23:48Z
<p>While I realize that Visual C++ is a language lacking much of the syntactic-sugar that most of us new programmers are used to these days, VC++ 2005 must have some shortcuts that can decrease the verbosity of the code at least a little; does anyone know of these, or is c++ just that verbose?</p>
http://stackoverflow.com/questions/1830705/installing-tortoisehg-on-gnome-in-ubuntu-9-100Installing TortoiseHG on Gnome in Ubuntu 9.10?leeand002009-12-02T04:46:57Z2009-12-02T16:38:23Z
<p>I followed the following steps to install TortoiseHG on Ubuntu 9.10 using the following document: </p>
<p><a href="http://bitbucket.org/tortoisehg/stable/wiki/nautilus" rel="nofollow">http://bitbucket.org/tortoisehg/stable/wiki/nautilus</a></p>
<p>I get the following error in my ~/.xsession-errors</p>
<pre><code>evolution-alarm-notify-Message: Tue Dec 1 23:28:26 2009
sys:1: GtkWarning: Refusing to add non-unique action 'HgNautilus::00None' to action group 'DirExtensionsMenuGroup'
sys:1: GtkWarning: gtk_action_get_name: assertion `GTK_IS_ACTION (action)' failed
sys:1: GtkWarning: gtk_ui_manager_add_ui: assertion `name != NULL || type == GTK_UI_MANAGER_SEPARATOR' failed
sys:1: GtkWarning: Refusing to add non-unique action 'HgNautilus::01clone' to action group 'DirExtensionsMenuGroup'
sys:1: GtkWarning: Refusing to add non-unique action 'HgNautilus::02init' to action group 'DirExtensionsMenuGroup'
sys:1: GtkWarning: Refusing to add non-unique action 'HgNautilus::03userconfig' to action group 'DirExtensionsMenuGroup'
sys:1: GtkWarning: Refusing to add non-unique action 'HgNautilus::05about' to action group 'DirExtensionsMenuGroup'
Traceback (most recent call last):
File "/usr/bin/hgtk", line 44, in <module>
sys.exit(hggtk.hgtk.dispatch(sys.argv[1:]))
File "/usr/lib/pymodules/python2.6/hggtk/hgtk.py", line 29, in dispatch
u = _ui.ui(traceback='--traceback' in args)
TypeError: __init__() got an unexpected keyword argument 'traceback'
</code></pre>
<p>Does anyone know how to make this work? Meanwhile I'll be using the command line. Thanks.</p>
http://stackoverflow.com/questions/1833536/how-can-mercurial-be-copyright-and-free-software1How can Mercurial be Copyright and Free Software?leeand002009-12-02T15:15:00Z2009-12-02T15:19:06Z
<p>I was looking at my version of Mecurial and I don't understand how it is that it can be Copyrighted and Free software at the same time.</p>
<blockquote>
<p>Mercurial Distributed SCM (version
1.3.1+7cea12e70129)</p>
<p>Copyright (C) 2005-2009 Matt Mackall
and others This is
free software; see the source for
copying conditions. There is NO
warranty; not even for MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.</p>
</blockquote>
http://stackoverflow.com/questions/1711834/defining-your-own-vs-c-build-macros0Defining your own VS C++ Build Macrosleeand002009-11-10T22:55:26Z2009-11-29T20:39:03Z
<p>We came across a bunch of pre-defined Build Macros for instance $(SolutionDir), but can you define your own build macros in Visual C++ 2005?</p>
http://stackoverflow.com/questions/1445378/jquery-doesnt-select-lineargradient-object0jQuery doesn't select lineargradient object.leeand002009-09-18T15:43:28Z2009-11-27T08:00:05Z
<p>I am using jQuery 1.3.2, and I'm trying to select some elements in an svg DOM element.</p>
<pre><code>$('svg > defs > lineargradient')
</code></pre>
<p>However for some reason it does not select it, I know that I can access other items in the <svg> element since I have successfully retrieved an $("svg > rect").</p>
<p>My SVG DOM looks like this:</p>
<pre><code><svg width="975" height="385">
<defs>
<lineargradient id="raphael-gradient-0" x1="1.000" y1="1.000" x2="0.000" y2="0.000">
<stop offset="0%" stop-color="#242b62"/><stop offset="9.090909090909092%" stop-color="#174a88"/>
<stop offset="18.181818181818183%" stop-color="#0e60a3"/><stop offset="27.272727272727273%" stop-color="#0b66ab"/>
<stop offset="36.36363636363637%" stop-color="#0870b7"/>
...
</lineargradient>
<lineargradient id="raphael-gradient-1" x1="1.000" y1="1.000" x2="0.000" y2="0.000">...</lineargradient>
</defs>
<circle cx="50" cy="40" r="10" fill="#ff0000" stroke="#000" transform=""/>
<rect x="0" y="0" width="975" height="385" fill="url(#raphael-gradient-1)" stroke="none" transform="" style="opacity: 1;" opacity="1" fill-opacity="1"/>
</svg>
</code></pre>
<p>Is there any reason why jQuery 1.3.2 wouldn't be able to select the <lineargradient> elements?</p>
http://stackoverflow.com/questions/666575/ie8-inconsistent-rendering-when-reloading3IE8 Inconsistent Rendering when Reloadingleeand002009-03-20T15:13:37Z2009-11-24T20:03:37Z
<p>I am working on fixing a website that doesn't work in the new release of IE8. After a bit I found out that you can force IE8 to render as IE7 with the following meta tag:</p>
<pre><code><!--
Meta tag for IE8 so that it always displays the site in IE7 Compatibility mode
-->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
</code></pre>
<p>I have found that although the page loads fine when you specify this meta-tag; However, when you click or press the refresh button after the initial load of the page, the page renders completely wrong (see bellow):</p>
<p><a href="http://i9.photobucket.com/albums/a58/Maskkkk/refresh.jpg" rel="nofollow"><img src="http://i9.photobucket.com/albums/a58/Maskkkk/refresh.jpg" width="400" height="356" /></a></p>
<p>This really seems like an IE8 bug to me, as I've never seen any other browser render inconstantly on a page refresh.</p>
<p>As anyone else noticed this?</p>
<p><br/></p>
<h1>Update!</h1>
<p>This was cause by having <a href="http://www.google.com/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fwww.my-debugbar.com%2Fwiki%2FCompanionJS%2FHomePage&ei=xNzcScq0HI22NIzX4dgN&usg=AFQjCNFKsEuzmMNZbkMe9UMl2OOgTVj25g" rel="nofollow">CompanionJS</a> installed in IE8.</p>
http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular27Why is C# suddenly so popular?leeand002009-02-22T19:22:01Z2009-11-15T14:02:28Z
<p>Why is C# suddenly so popular? There's been like a repeat explosion in the blogs lately about it; It reminds me of the earlier part of this decade when all of those frameworks for Java came out like Spring, JSF, Hibernate, Struts, Struts2, Tapestry etc...</p>
<p>I've actually been thinking about learning C#, and it seems to contain a lot of qualities that it has gotten from Java (aside from it being completely cross-platform)</p>
<p>But, it almost seems like a step backwards to me...its not totally multi-platform, a language that's run by a corporation rather than a community...</p>
<p>(But, knowing this isn't the case, I've come here to find out why it isn't...)</p>
<p>P.S. And yes, I am aware of the Mono project so that you can run it on Linux, but isn't it always behind the curve? A new version of Java would be supported on all the platforms. </p>
http://stackoverflow.com/questions/1676677/what-is-the-keyboard-shortcut-for-jumping-to-the-matching-tag-in-visual-studio-201What is the keyboard shortcut for jumping to the matching tag in Visual Studio 2005?leeand002009-11-04T21:14:53Z2009-11-12T13:32:29Z
<p>When editing HTML in Visual Studio, is there a keyboard shortcut for jumping to/from the matched html tag in much the same way that you can do so with matched brackets?</p>
<p>I've already been to the <a href="http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts">Visual-Studio-Keyboard-Shortcuts Question</a>.</p>
<p>For example:</p>
<p>I want to move from <head> to </head> when I press a keyboard shortcut.</p>
http://stackoverflow.com/questions/660892/free-ecommerce-service-for-non-profit-organization1Free eCommerce Service for non-profit organization?leeand002009-03-19T02:45:40Z2009-11-10T18:33:35Z
<p>Are there any free eCommerce processing services (similar to Paypal or Google Checkout) just for non-profit organizations? I'm looking into setting up paid registrations for a <a href="http://www.acrod.org/camp.html" rel="nofollow">summer-camp</a> that is a non-profit organization.</p>
http://stackoverflow.com/questions/811844/is-there-an-equivent-library-to-javas-displaytag-in-php0Is there an equivent library to Java's DisplayTag in PHP?leeand002009-05-01T15:20:05Z2009-11-07T00:06:53Z
<p>For a long time in the Java/JSP world I used to use the <a href="http://displaytag.sourceforge.net/1.2/" rel="nofollow">Display Tag</a> library to generate a table that would allow you to sort a table, and export the table as a CSV file.</p>
<p>Is there anything like this in a PHP library that I could use?</p>
http://stackoverflow.com/questions/1680840/are-there-any-websites-dedicated-to-the-distribution-of-visual-studio-macros2Are there any websites dedicated to the distribution of Visual Studio Macros?leeand002009-11-05T14:15:48Z2009-11-05T17:46:55Z
<p>Preferably a site that has macros searchable by Visual Studio version.</p>
http://stackoverflow.com/questions/1680900/how-to-test-java-code/1680984#16809840Answer by leeand00 for How to test java code?leeand002009-11-05T14:42:14Z2009-11-05T14:42:14Z<p>If you really want to get started with Java Unit testing for web development you may want to look into the <a href="http://appfuse.org/display/APF/AppFuse+QuickStart" rel="nofollow">Appfuse/Appfuse 2</a> projects, they're both Java based and both have stupendous tutorials to get you started. </p>
<p>Appfuse generates a pre-setup project for you so you can see how it fits together and works. Additionally it allows you to pick from some frameworks of your choosing to do web-development with, and integrates those with JUnit.</p>
<p>Although be warned that the projects are a bit old; even so it's a great way to get started learning about unit testing.</p>
http://stackoverflow.com/questions/411019/how-do-you-get-yourself-back-out-of-the-zone-when-the-work-day-is-over24How do you get yourself back "out of the zone" when the work day is over? [closed]leeand002009-01-04T14:10:40Z2009-11-05T00:14:03Z
<p>Sometimes I have trouble sleeping after I get obsessed with a programming problem down at work; How do you get yourself back "out of the zone" so you can get a good nights sleep, and solve the programming problem in the morning?</p>
http://stackoverflow.com/questions/1674915/how-to-teach-someone-that-less-is-more7How to teach someone that less is more?leeand002009-11-04T16:19:47Z2009-11-04T20:49:52Z
<p>I work in a shop where the mentality/culture does not have any sense of the concept of "less being more" (i.e. the less code you have to maintain, the more flexible you can be, and the faster you can fulfill customer requests). There's also a strong copy-and-paste mentality around here.</p>
<p>The backend code base being used is written in rather verbose C++ (the code base is 1.5 GB), and I have inherited some Javascript/HTML/CSS code from one of these C++ programmers that I have been tasked with "cleaning it up". The code was written to quickly appease some customers and is therefore not production level code (dispite the fact that it is being used in production-level systems). </p>
<p>The code has alot of document.write statements contained in <script> tags scattered throughout the html documents. It is some very obtrusive Javascript.</p>
<p>It also contains many style attributes in the actual HTML code itself rather than in a logical place like a stylesheet.</p>
<p>Also nobody seems to know what the code actually does, it's not commented, and this is why I've been tasked with cleaning up the old code rather than just trying to re-write it into a smaller, faster, more maintainable code base.</p>
<p>May I please have some advice on how to drive home the concept that "your should code smarter and smaller, rather than code more"? </p>
<h2>Update</h2>
<p>I've just added another <a href="http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argument">question</a> related to this one and <a href="http://stackoverflow.com/questions/1674915/how-to-teach-someone-that-less-is-more/1674974#1674974">@Joel's Answer</a> bellow.</p>
http://stackoverflow.com/questions/1267175/is-graceful-degradation-in-the-absence-of-javascript-still-useful6Is graceful degradation in the absence of JavaScript still useful?leeand002009-08-12T16:13:30Z2009-11-04T19:23:24Z
<p>When even mobile browsers have JavaScript, is it really necessary to consider potential script-free users?</p>
http://stackoverflow.com/questions/1661503/how-are-ms-visual-c-environments-generally-setup1How are MS Visual C++ environments generally setup?leeand002009-11-02T14:05:45Z2009-11-02T16:44:45Z
<p>I come from a Java background, and the shop where I currently work refuses to use anything other than MS VC++ to build their legacy project. They don't appear to use any standards for setting up their build environment other than just building it using VS2005 and clicking the compile button.</p>
<p>I was wondering if there was anything closer to what Java had for instance:</p>
<ul>
<li>A build tool like ANT or Maven</li>
<li>A directory structure that makes sense containing
<ul>
<li>src - Place for all my source files .c/.cpp/.h</li>
<li>lib - A place for any libraries that might be used in the project (.dll, .lib)</li>
<li>dist - A place for the output executable/distribution of the project</li>
<li>resources - A place for any images/sounds/text files that might be included in the project.</li>
<li>build.xml - Some sort of a build file (my guess would be something like ./configure or MAKEFILE)</li>
</ul></li>
</ul>
<p>Or am I asking too much from a C++ build environment? Is it just always as chaotic as the people in my shop make it out to be? I really have a hard time believing that considering the success of so many C++ projects on the internet.</p>
http://stackoverflow.com/questions/212423/where-can-i-get-some-information-on-starting-c-programming-with-mvc-asp-net6Where can I get some information on starting C# programming with MVC / ASP.NET?leeand002008-10-17T14:39:06Z2009-10-29T21:43:05Z
<p>I'm a Java developer looking to learn some C#/ASP.NET. One thing I've never liked about .NET from the get-go was that it didn't have support for MVC. But now it does! So I was wondering if anybody knew where to get started learning C# MVC. </p>
<p>Also, do you need the non-free version of developer-studio to do this?</p>
http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointeComment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:46:47Z2009-12-09T16:46:47Z@dribeas I agree, if you're working on a team, you want other people to be able to easily understand what you're doing.
The only reason to do otherwise is if you're entering the obfuscated C contest.http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe/1874516#1874516Comment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:44:41Z2009-12-09T16:44:41Z@Vinko So you're saying that an ad-hoc data structure would justify the use of pointer math? :\ <i>scratches head</i>http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe/1874526#1874526Comment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:42:08Z2009-12-09T16:42:08Z@Firas Concerning RAII; Hmm, seeing as the guy that wrote C++ came up with the idea, I'm pretty sure this can't be wrong.
http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe/1874536#1874536Comment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:35:19Z2009-12-09T16:35:19Z@jon Thanks Google ;)http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe/1874823#1874823Comment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:31:57Z2009-12-09T16:31:57Z(It's just that people think they are programming in C++ when they are really programming in C?)http://stackoverflow.com/questions/1874467/what-does-this-statement-mean-good-c-programming-typically-doesnt-use-pointe/1874823#1874823Comment by leeand00 on What does this statement mean? "good C++ programming typically doesn't use pointers in complicated ways."leeand002009-12-09T16:31:26Z2009-12-09T16:31:26ZSo the problem is really a C problem, not a C++ problem?http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-2005Comment by leeand00 on How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-09T15:41:22Z2009-12-09T15:41:22ZAnd also this on working with strings to manipulate the paths:
<a href="http://www.boost.org/doc/libs/1_41_0/doc/html/string_algo/usage.html" rel="nofollow">boost.org/doc/libs/…</a>http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-2005Comment by leeand00 on How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-09T15:40:50Z2009-12-09T15:40:50ZAdditionally, this article helped alot:
<a href="http://www.ibm.com/developerworks/aix/library/au-boostfs/index.html" rel="nofollow">ibm.com/developerworks/aix/…</a>http://stackoverflow.com/questions/1869534/service-app-for-viewing-a-webpage-as-hex-straight-off-the-wire/1869543#1869543Comment by leeand00 on Service/App for viewing a Webpage as hex straight off the wire?leeand002009-12-08T20:20:27Z2009-12-08T20:20:27ZMan I already heard of both of those, but I didn't know you could look at the hex in it. Thanks :)http://stackoverflow.com/questions/1830705/installing-tortoisehg-on-gnome-in-ubuntu-9-10/1834174#1834174Comment by leeand00 on Installing TortoiseHG on Gnome in Ubuntu 9.10?leeand002009-12-06T14:11:40Z2009-12-06T14:11:40Z@Martin Okay I'll give it a shot, thanks.http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-2005Comment by leeand00 on How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-06T06:15:04Z2009-12-06T06:15:04ZTried it out, it is relevant, but I can't understand why one might not want to copy in binary...unless it has something to do with the line endings...http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-2005Comment by leeand00 on How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-06T05:33:27Z2009-12-06T05:33:27Z<a href="http://www.java2s.com/Tutorial/Cpp/0240__File-Stream/Useifstreamandofstreamtocopyfile.htm" rel="nofollow">java2s.com/Tutorial/Cpp/…</a>
This seems relevant...http://stackoverflow.com/questions/1853812/how-do-i-copy-files-and-folders-using-boost-and-visual-studio-2005Comment by leeand00 on How do I copy files and folders using boost and Visual Studio 2005?leeand002009-12-05T23:44:33Z2009-12-05T23:44:33ZOur users aren't "technically inclined enough" to copy files correctly...also we use some strange method for uploading stuff that isn't ftp...it's some sort of old cgi thing, so we have to put them in a directory and then they get copied to the server...it's weird.http://stackoverflow.com/questions/937507/is-there-a-unit-testing-framework-for-starbasicComment by leeand00 on Is there a Unit Testing Framework for Starbasic?leeand002009-12-05T23:34:08Z2009-12-05T23:34:08ZYeah I really doubt there is...http://stackoverflow.com/questions/714269/has-anyone-used-tntnetComment by leeand00 on Has anyone used tntnet?leeand002009-12-05T23:20:02Z2009-12-05T23:20:02ZOkay so I guess nobody has?