User Jimmy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:28:47Zhttp://stackoverflow.com/feeds/user/25071http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1897503/web-hosting-linux-windows/1897520#18975200Answer by Jimmy for Web Hosting. Linux/WindowsJimmy2009-12-13T19:49:08Z2009-12-13T19:49:08Z<p>If you're just going to be posting to the blog, it really doesn't matter what hosting you have - so long as you're happy with your blog software. That said, there are a lot more blog engines available that run on PHP and MySQL, which typically comes with Linux hosting (and can often be found pretty cheap). </p>
<p>If you're looking to build a full site, there's more room for consideration. Many people will suggest Linux with PHP and MySQL (also referred to as LAMP - Linux, Apache, MySQL, PHP), as PHP is a pretty easy language to get started with. You'll also be able to install many of the blog engines on your site with this as well.</p>
<p>One benefit to Windows hosting, is that you can experiment with ASP.NET. I'm going to go on a limb and say most Windows hosting plans will also offer PHP and MySQL, so you'll have a little more option to change things up down the road.</p>
<p>Overall, however, LAMP is probably the way to go for getting started. It will be a lot easier to get things up and running. You can always get a different hosting service later if you want to try something new on the Windows side of things.</p>
http://stackoverflow.com/questions/1315116/i-have-downloaded-silverlight3-sdk-and-silverlight-toolkit-now-how-to-configure/1315297#13152970Answer by Jimmy for I have downloaded silverlight3 SDK and silverlight toolkit. Now How to configure this with Visual studio 2008?Jimmy2009-08-22T06:25:59Z2009-08-22T06:25:59Z<p>Seems everyone gets confused about this ;-)</p>
<p>You need the <a href="http://go.microsoft.com/fwlink/?LinkID=143571" rel="nofollow">Silverlight Tools for Visual Studio</a> package. It contains the developer runtime (for debugging), the SDK (for building and basic controls), and the Visual Studio integration package. </p>
<p>The Silverlight Toolkit is a separate package containing a larger set of controls that don't ship in the SDK (partly because they're less mature, and partly because the Toolkit updates more often).</p>
http://stackoverflow.com/questions/1302622/to-host-silverlight-application-on-a-classic-asp-page/1304252#13042520Answer by Jimmy for To Host Silverlight Application on a Classic ASP pageJimmy2009-08-20T06:08:15Z2009-08-20T06:08:15Z<p>You can probably do what you want via the initParams parameter, at least as far as sending data from the page to the Silverlight app at load time. If you're setting it from the server, you can just do something like: (forgive syntax errors, I don't know classic ASP)</p>
<pre><code><object type="application/x-silverlight-2" data="data:application/x-silverlight," ... >
<param name="initParams" value="<% Response.Write("foo=bar,bin=baz") %>" />
</object>
</code></pre>
<p>Connecting to the database should be exposed via a webservice. You probably don't want your users connecting directly to your database anyways. It doesn't really matter what your service is implemented in, you should still be able to consume it in your Silverlight application.</p>
http://stackoverflow.com/questions/1270445/my-vs2008-cannot-connect-to-sql-server-2008-why/1270503#12705032Answer by Jimmy for my VS2008 cannot connect to Sql Server 2008, why?Jimmy2009-08-13T07:20:44Z2009-08-13T07:20:44Z<p>I'm almost certain that you need VS2008 SP1. The two were released in parallel, and there was a lot of coordination between them to get things working. I sincerely doubt that there are any ways to get SQL 2008 to work properly without VS2008 SP installed.</p>
http://stackoverflow.com/questions/1253291/why-null-terminated-strings-or-null-terminated-vs-characters-length-storage/1253334#12533343Answer by Jimmy for Why null-terminated strings? Or: null-terminated vs. characters + length storage.Jimmy2009-08-10T06:14:38Z2009-08-10T06:14:38Z<p>Just throwing out some hypotheticals:</p>
<ul>
<li>there's no way to get a "wrong" implementation of null terminated strings. A standardized struct however could have vendor-specific implementations.</li>
<li>no structs are required. Null terminated strings are "built-in" so to speak, by virtue of being a special case of a char*.</li>
</ul>
http://stackoverflow.com/questions/1172956/what-is-the-most-memory-visual-studio-can-use-on-a-32bit-windows-server-2003-os/1172979#11729790Answer by Jimmy for What is the most memory Visual Studio can use on a 32bit Windows Server 2003 OS?Jimmy2009-07-23T16:35:47Z2009-07-23T16:35:47Z<p>The restraints per process should remain unchanged for any 32-bit OS. The default is 4GB of address space per process, with 2GB of that reserved for the OS itself. There is a flag for Windows which you can use to change it to 1GB of reserved memory and 3GB of userspace memory.</p>
http://stackoverflow.com/questions/1169918/should-i-get-visual-studio-2008-or-skip-it-for-2010-beta/1169947#11699473Answer by Jimmy for Should I get Visual Studio 2008 or skip it for 2010 beta?Jimmy2009-07-23T06:25:43Z2009-07-23T06:25:43Z<p>I would opt for 2008 over 2010 beta. The former has a service pack released, and several other hotfixes, so a lot of the kinks have been worked out. The latter is at beta quality (which means there's plenty of small issues wrong with it, and maybe a couple big ones) and has not had very much performance tuning at all. Also, I find that upgrading from a beta of Visual Studio to a later release can be painful (it has been in the past), so I would try to avoid that unless the VM is easily replaced.</p>
<p>Alternatively, you could set up your Server 2008 VM and 2010 beta without activating Windows and you can decide if 2010 is good enough for you. (I forget if the Windows activation timespan is long enough to make this feasible.) If you don't like it, you can go back to 2008. If you do like it, you can still install 2008 and compare between the two.</p>
http://stackoverflow.com/questions/1148182/does-silverlight-3-have-access-to-local-file-system-open-excel-and-print-report/1148205#11482050Answer by Jimmy for Does Silverlight 3 have access to local file system, Open Excel, and print reports?Jimmy2009-07-18T18:23:04Z2009-07-18T18:23:04Z<p>No, as far as I know Silverlight 3 is still as sand-boxed as ever. This is becoming a bottleneck for developers though, so I'm sure it will be addressed in upcoming versions of Silverlight.</p>
http://stackoverflow.com/questions/1141903/silverlight-out-of-browser-host/1142086#11420861Answer by Jimmy for Silverlight Out of Browser HostJimmy2009-07-17T08:48:15Z2009-07-17T08:48:15Z<p>Aside from hosting in a browser control or window, there's a <a href="http://msdn.microsoft.com/en-us/library/cc296246%28VS.95%29.aspx" rel="nofollow">COM API</a> for hosting the Silverlight control, or you could <a href="http://msdn.microsoft.com/en-us/library/dd550717%28VS.95%29.aspx" rel="nofollow">use the browser plugin APIs</a> as well. I'm not positive on which one the is used for either the Windows or Mac implementations.</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081558#10815584Answer by Jimmy for What is the "Quickest" Programming Language (and why)?Jimmy2009-07-04T05:08:14Z2009-07-04T05:08:14Z<p>It depends on what you're currently most familiar/fluent in. For me, it would currently be C# or VB.NET because that's what I use every day at work and am currently most used to. In a few months, it might be Python, Java, who knows?</p>
http://stackoverflow.com/questions/1081519/why-does-c-use-pointers/1081533#10815331Answer by Jimmy for Why does C++ use pointers?Jimmy2009-07-04T04:58:54Z2009-07-04T04:58:54Z<p>Most higher level languages don't have pointers per se, but they do use similar constructs. Here's an example. In C++, if you have something like:</p>
<pre><code>Foo myObject();
</code></pre>
<p>you've declared an instance of a Foo, which is always going to be of type Foo. You can't declare a Foo and instantiate another type without using a pointer. However, in C#, you can do it easily:</p>
<pre><code>Foo myObject = new Bar(); // assuming Bar derives from class Foo
</code></pre>
<p>The only way to do this in C++ is with a pointer (and thanks to polymorphism). C# is using a pointer of sorts, but abstracting out the messy stuff that makes pointers so "hard" to use.</p>
http://stackoverflow.com/questions/1053220/siverlight-setup-issue/1053388#10533881Answer by Jimmy for Siverlight setup issueJimmy2009-06-27T18:36:51Z2009-06-27T18:36:51Z<p>You won't need to install anything, just deploy the files. However, if you're on IIS 6 (such as the Server 2003 scenario), you do need to register the MIME type for XAP files (see <a href="http://www.dolittle.com/blogs/einar/archive/2008/07/07/registering-xap-mime-type-in-iis-6-0.aspx" rel="nofollow">here</a> for how to do so). IIS7 should serve up XAP files by default.</p>
<p>Of course, you should also make sure that your server is correctly configured for ASP.NET, if necessary. But that's not related to Silverlight.</p>
http://stackoverflow.com/questions/1053315/asp-net-mvc-newbie-cant-get-aspnetregsql-exe-to-work/1053384#10533841Answer by Jimmy for ASP.NET MVC newbie: can't get aspnet_regsql.exe to workJimmy2009-06-27T18:32:17Z2009-06-27T18:32:17Z<p>You can look up how to run aspnet_regsql against SQL Express (there's lots of blog posts about it). I've had issues getting it working right in the past (bad lucky, probably) but you can also do this:</p>
<ol>
<li>run the MVC app after creating the project</li>
<li>click the Log On link, then register a new account (this will create a SQL Express database for you)</li>
<li>(optional but handy:) in VS, add the MDF file to the project (it's under App_Data)</li>
<li>(optional:) rename the MDF file, and update the connection strings in web.config (replace aspnetdb.mdf with NerdDinner.mdf or whatever name you chose)</li>
</ol>
<p>Lame workaround, I know, but it will get you up and running without too much fiddling around.</p>
http://stackoverflow.com/questions/1033584/how-to-delete-an-array-of-pointers/1033636#10336362Answer by Jimmy for How to delete an array of pointersJimmy2009-06-23T16:15:21Z2009-06-23T16:15:21Z<p>Your array is not dynamically allocated, so you don't need to delete it. Each element, however, is pointing to a dynamically allocated object (from your comment): </p>
<blockquote>
<p>createfd is a function pointer that returns a new instance of FileData though</p>
</blockquote>
<p>What you need to do is loop over the elements of the array, and free each of them.</p>
<pre><code>for(int i = 0; i < num_files; i++)
{
delete fileData[i];
}
</code></pre>
http://stackoverflow.com/questions/1024145/how-to-customize-publication-in-asp-net/1024438#10244381Answer by Jimmy for How to customize publication in ASP.NET?Jimmy2009-06-21T18:11:53Z2009-06-21T18:11:53Z<p>You might look to see if the IIS <a href="http://www.iis.net/downloads/default.aspx?tabid=34&g=6&i=1602" rel="nofollow">Web Deployment Tool</a> fits your scenario; it allows you to publish your website, configuration settings, database, etc... all together. This will also be integrated into Visual Studio 2010.</p>
http://stackoverflow.com/questions/1024415/starting-age-for-a-career-in-software-fresh-out-of-school/1024431#10244311Answer by Jimmy for Starting age for a career in software - fresh out of school?Jimmy2009-06-21T18:06:38Z2009-06-21T18:06:38Z<p>Whether you take the job or not will probably have little impact on your career later. What will likely benefit you either way would be to build up a portfolio of your work in your spare time. Examples:</p>
<ul>
<li>contribute to an open source project</li>
<li>put together a number of small apps by yourself</li>
<li>put together your own webpage, wherein you can showcase any of the above</li>
</ul>
<p>Also, you should probably continue to keep an eye out for new software jobs in the meantime; don't just give up on finding a software job for X months because that's what recruiters are telling you.</p>
http://stackoverflow.com/questions/1021161/should-i-have-separate-sql-accounts-for-different-query-types4Should I have separate SQL accounts for different query types?Jimmy2009-06-20T07:32:30Z2009-06-20T18:03:00Z
<p>I'm getting started on a small internal web application at work, mostly a proof-of-concept, but we want to treat it like a "real" application. I don't have much experience as a DBA, nor does anyone in my group (it's not particularly important to have one, since it's a PoC). </p>
<p>I was wondering though, if this web app was going public, should we have separate accounts to the DB server for different query types? E.g. have one SQL account for SELECT queries, and another for UPDATE/DELETE? I can't convince myself of any particular advantage to doing so, but I've heard of the technique before so there must be some value.</p>
http://stackoverflow.com/questions/1016676/passing-pointers-to-function/1016744#10167441Answer by Jimmy for Passing pointers to functionJimmy2009-06-19T07:26:01Z2009-06-19T07:26:01Z<p>The problem in your code is that you want to print a string (char*) but you're giving it a char. Remember that P is an array of char*. When you de-reference it once, you get a char*; when you do it a second time, you just get the char at the beginning of the char*.</p>
<p>When you try to use the char value with the %s specifier, it treats the value as a pointer, and tries to dereference that value. Hence, it will try to print the "string" at the memory location X, where X is the value of the char (i.e. a value from 0 to 255). This gives you an access violation/segmentation fault (the error you see at runtime).</p>
<p>The best workarounds for this, as noted by <a href="http://stackoverflow.com/questions/1016676/passing-of-pointers/1016695#1016695">Cătălin Pitiș</a> and <a href="http://stackoverflow.com/questions/1016676/passing-of-pointers/1016708#1016708">RBerteig</a>, are to either:</p>
<ul>
<li>pass another parameter to specify the length of the array</li>
<li>add an additional null at the end of the array.</li>
</ul>
http://stackoverflow.com/questions/1016466/mysql-or-sql-server-better-for-an-enterprise-application/1016578#10165780Answer by Jimmy for MySQL or SQL Server better for an Enterprise application?Jimmy2009-06-19T06:20:35Z2009-06-19T06:20:35Z<p>It will depend on your application's needs. I'm not especially well researched on the differences between the various SQL engines, but as far as I know, MySQL is faster for SELECT queries (if you have a predominantly read-only type app). On the other hand, MSSQL and PostgreSQL both have better support for transactions, and perhaps also better performance if you have lots of inserts/updates happening. Also, MSSQL and PostgreSQL are said to scale better, but there are various successful applications that seem to do fine with MySQL (Facebook and Flickr as examples).</p>
http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/994581#9945812Answer by Jimmy for What "already invented" algorithm did you invent?Jimmy2009-06-15T05:21:53Z2009-06-15T05:21:53Z<p>During an interview, I came up with the <a href="http://en.wikipedia.org/wiki/Knuth%5Fshuffle" rel="nofollow">Knuth shuffle</a> (or Fisher-Yates Shuffle, as it is also known). I was quite proud after I looked it up later, as I'd never really considered the problem of randomizing a list before (sorting, on the other hand...)</p>
http://stackoverflow.com/questions/973952/migrating-tiny-c-console-app-to-something-running-on-ubuntu-server-9-04/973980#9739800Answer by Jimmy for Migrating tiny C# console app to something running on Ubuntu Server 9.04Jimmy2009-06-10T06:28:32Z2009-06-10T06:28:32Z<p>Have you tried just using C#? The <a href="http://mono-project.com/Main%5FPage" rel="nofollow">Mono project</a> provides an open-source, cross-platform .NET port of the .NET framework. That way you can avoid the having to re-write your code (which presumably is already functional and tested).</p>
http://stackoverflow.com/questions/903433/wcf-for-silverlight-app/909295#9092951Answer by Jimmy for WCF for Silverlight AppJimmy2009-05-26T07:06:22Z2009-05-26T07:06:22Z<p>If you're going from an http://... context to a file://... context, it's not a cross-domain issue, actually. Instead, it's a cross-context issue, which is not allowed in Silverlight 2 (this also happens with http:// and https://) for security reasons. I'm not sure what the state of this will be in Silverlight 3.</p>
http://stackoverflow.com/questions/832217/can-i-adjust-the-visual-studio-break-when-an-exception-is-thrown-options-progra/896634#8966340Answer by Jimmy for Can I adjust the visual studio "Break when an exception is thrown" options programatically?Jimmy2009-05-22T06:45:06Z2009-05-22T06:45:06Z<p>You can probably do this by creating a macro (as shown in <a href="http://stackoverflow.com/questions/832217/can-i-adjust-the-visual-studio-break-when-an-exception-is-thrown-options-programa/896615#896615">Michael Lehenbauer</a>'s example), and then re-configure your breakpoint to run the macro and continue execution. You could do the same at the end of the code section you care about to disable the option again, or manually disable it between debugging sessions.</p>
http://stackoverflow.com/questions/896581/will-tfs-2010-beta-1-upgrade-to-the-final-product/896617#8966170Answer by Jimmy for Will TFS 2010 Beta 1 upgrade to the final product?Jimmy2009-05-22T06:38:30Z2009-05-22T06:38:30Z<p>I would guess that there won't be a seamless upgrade process. There wasn't during the VS2008 release cycle, and there isn't for the Win7 cycle (I know they're two separate divisions, I'm just pointing out that large public pre-releases from Microsoft don't seem to have good seamless upgrade experiences).</p>
http://stackoverflow.com/questions/896578/which-is-preferred-varnull-or-nullvar/896593#8965930Answer by Jimmy for Which is preferred: (var==null) or (null==var)Jimmy2009-05-22T06:32:21Z2009-05-22T06:32:21Z<p>I prefer to use (var==null) myself. It makes more sense to me, since I'm checking "if var is null". The other order comes across when I read it as "if null is var", which never makes sense. I also like how VB.NET makes it quite readable, and makes a check for null different from other comparisons, with "if var is nothing".</p>
http://stackoverflow.com/questions/891437/including-file-in-php/891446#8914463Answer by Jimmy for Including file in PHP ?Jimmy2009-05-21T05:02:47Z2009-05-21T05:02:47Z<p>The difference between include() and require() is whether you get a warning or a fatal error (respectively). The PHP docs don't mention any performance difference.</p>
<p>Using the _once() variants is useful if you want to avoid duplicating the contents of the included files. From the <a href="http://us2.php.net/manual/en/function.include-once.php" rel="nofollow">PHP docs</a> for include_once:</p>
<blockquote>
<p>include_once() may be used in cases where the same file might be included and evaluated more than once during a particular execution of a script, so in this case it may help avoid problems such as function redefinitions, variable value reassignments, etc. </p>
</blockquote>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/889139#8891397Answer by Jimmy for What is your longest-held programming assumption that turned out to be incorrect?Jimmy2009-05-20T17:10:56Z2009-05-20T17:10:56Z<p>That I should always optimize my code. That's not to say I shouldn't think through it before I write it, but that I should think hard about how to squeeze every bit of performance out of each statement, even to the point of sacrificing readability.</p>
http://stackoverflow.com/questions/842794/visual-studio-2008-sp1-package-load-failure-error/842799#8427990Answer by Jimmy for Visual Studio 2008 SP1 “Package Load Failure” ErrorJimmy2009-05-09T06:06:11Z2009-05-09T06:06:11Z<p>My gut response to Package Load Failures, which doesn't always solve the problem, is to open a VS command prompt and run 'devenv /resetskippkgs' (without quotes). If you're on Vista+, you need to run the prompt elevated.</p>
http://stackoverflow.com/questions/816159/embedding-silverlight-anything-like-flash/816244#8162444Answer by Jimmy for embedding silverlight, anything like flash?Jimmy2009-05-03T03:25:12Z2009-05-03T07:18:19Z<p>You can do it with just an object tag. The JavaScript used in the MSDN example is to print any errors that occur while loading the application (though they usually just end up as warning in the browser's status bar).</p>
<p>The minimum snippet I would recommend might look like:</p>
<pre><code><object data="data:application/x-silverlight-2," type="application/x-silverlight-2"
width="200px" height="200px">
<param name="source" value="URL/To/SilverlightApp.xap" />
<param name="minRuntimeVersion" value="2.0.31005.0" />
<a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"
style="border-style: none" />
</a>
</object>
</code></pre>
http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/815357#8153570Answer by Jimmy for Programming tips with Japanese Language/CharactersJimmy2009-05-02T18:39:06Z2009-05-02T18:39:06Z<p>If I recall correctly (and I slacked off a lot the year I took Japanese so I could be wrong), the replacements you want to do are determined by the last symbol or two in the word. Taking your first example, any verb ending in 'す' will always have 'して' when conjugated this way. Similarly for む -> んで. Could you maybe establish a mapping of last character(s) -> conjugated form. You might have to account for exceptions, such as anything which conjugates to xxって.</p>
<p>As for portability between languages, you'll have to implement the logic differently based on how they work. This solution would be fairly straightforward to implement for Spanish as well, since the conjugations depends on if the verb ends in -ar, -er, or -ir (with some verbs requiring exceptions in your logic). Unfortunately, that's the limit of my multi-lingual skills, so I don't know how well it would do beyond those two.</p>
http://stackoverflow.com/questions/1406608/how-to-add-and-bind-a-cs-file-to-an-ascx-aspx-page-that-doesnt-alrady-have-oneComment by Jimmy on How to add and bind a cs file to an ASCX/ASPX page that doesn't alrady have one?Jimmy2009-09-10T17:29:53Z2009-09-10T17:29:53ZAre you going from a single file (i.e. inline code) to a code-beside file?http://stackoverflow.com/questions/1253291/why-null-terminated-strings-or-null-terminated-vs-characters-length-storage/1253431#1253431Comment by Jimmy on Why null-terminated strings? Or: null-terminated vs. characters + length storage.Jimmy2009-08-10T06:49:12Z2009-08-10T06:49:12Z"When CPU registers were a scarce resource" - registers are still a scarce resource on x86 and x64. http://stackoverflow.com/questions/1253291/why-null-terminated-strings-or-null-terminated-vs-characters-length-storage/1253333#1253333Comment by Jimmy on Why null-terminated strings? Or: null-terminated vs. characters + length storage.Jimmy2009-08-10T06:45:29Z2009-08-10T06:45:29ZExtra storage can still be a big issue for embedded systems, which is one reason to stress keeping the language light-weight.http://stackoverflow.com/questions/1191882/in-stackoverflow-how-can-i-find-peoples-who-have-got-gold-badges-for-their-greatComment by Jimmy on in StackOverFlow, how can I find peoples who have got gold badges for their great answers?Jimmy2009-07-28T04:04:06Z2009-07-28T04:04:06Zprobably belongs on SO metahttp://stackoverflow.com/questions/1172475/what-software-do-i-need-to-install-to-use-wpf-in-vs2005/1172595#1172595Comment by Jimmy on What software do i need to install to use WPF in VS2005Jimmy2009-07-23T15:38:54Z2009-07-23T15:38:54ZThe Silverlight link you posted was relating to the 1.1 alpha release; much has changed from then to SL 2 and now SL 3. Silverlight development requires VS 2008 now.http://stackoverflow.com/questions/480971/can-you-install-visual-studio-2008-pro-and-team-system-side-by-side/1150760#1150760Comment by Jimmy on Can you install Visual Studio 2008 Pro and Team System side-by-side?Jimmy2009-07-19T20:17:38Z2009-07-19T20:17:38ZWrong, you can install different SKUs of the same version side by side.http://stackoverflow.com/questions/1107078/how-do-i-find-make-programming-friends/1107107#1107107Comment by Jimmy on How do I find/make programming friends?Jimmy2009-07-10T01:00:14Z2009-07-10T01:00:14Z@esm: you're missing out on your potential. <a href="http://xkcd.com/323/" rel="nofollow">xkcd.com/323</a>http://stackoverflow.com/questions/1085584/how-do-i-programatically-retrieve-the-actual-path-to-program-files-folder/1085592#1085592Comment by Jimmy on How do I programatically retrieve the actual path to "Program Files" folder?Jimmy2009-07-06T06:28:03Z2009-07-06T06:28:03ZThere is a gotcha to this if I recall correctly: it does not distinguish between x64 and x86 versions of Windows. If you're looking for %programfiles(x86)%, you'll have to find another method.http://stackoverflow.com/questions/1081519/why-does-c-use-pointers/1081532#1081532Comment by Jimmy on Why does C++ use pointers?Jimmy2009-07-04T05:04:56Z2009-07-04T05:04:56ZFor that matter, try writing a swap function in C# or Java without explicitly declaring parameters as a reference. It's suddenly a bit difficult. They use something quite similar to pass-by-reference, but a better name is eluding me at this point.http://stackoverflow.com/questions/1081519/why-does-c-use-pointers/1081530#1081530Comment by Jimmy on Why does C++ use pointers?Jimmy2009-07-04T05:02:57Z2009-07-04T05:02:57Z"Beginners are well advised to stay FAR away from this amoutn of power and ... complication..."
Except that beginners are also often pointed to languages which provide nearly equally difficult concepts, if not the same features provided by pointers anyways.http://stackoverflow.com/questions/1024389/print-an-int-in-binary-representation-using-c/1024414#1024414Comment by Jimmy on Print an int in binary representation using CJimmy2009-06-21T19:31:40Z2009-06-21T19:31:40Zone more code tweak that (IMHO) makes it more readable is to use (a & (1<<i)) instead of (a & 1) followed by (a >>= 1) to verify the i'th bit. That way the loop body contains only the logic, not any statements needed to update values.http://stackoverflow.com/questions/901320/anti-joel-test/901661#901661Comment by Jimmy on Anti-Joel TestJimmy2009-05-24T23:17:05Z2009-05-24T23:17:05Znot sure if 3 is the magical number, but excessive meetings are definitely a productivity killer, +1http://stackoverflow.com/questions/896551/is-it-better-to-register-dlls-to-gac-or-reference-them-from-bin-folder-in-asp-ne/896560#896560Comment by Jimmy on is it better to register dll's to GAC or reference them from bin folder in ASP.NETJimmy2009-05-22T06:35:01Z2009-05-22T06:35:01ZHe's probably referring to ~/bin, which is where references are copied to for ASP.NET web projects.