User Ali Parr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:55:36Zhttp://stackoverflow.com/feeds/user/1169http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1232204/uniscribe-kerning3Uniscribe KerningAli Parr2009-08-05T09:45:51Z2009-11-21T00:06:39Z
<p>At work, I have been tasked with improving the text rendering of our application to better support text character kerning. Our application generates images that appear on Television, so image quality is paramount. Therefore, even small improvements to the appearance of any output we generate is very useful.</p>
<p>Our current text engine is implemented using Uniscribe, which seems to be an ideal solution. As mentioned <a href="http://stackoverflow.com/questions/1169709/">here</a>, it supports ligature substitution in a context aware fashion with complex scripts. It also handles right-to-left languages, and BiDi. This is all important as we need to be able to render arabic/cursive languages perfectly. </p>
<p>It therefore seems rather peculiar that Uniscribe doesn't appear to output glyph kerning information. I have attached a screenshot to demonstrate the issue.</p>
<p><img src="http://www.aliparr.net/kerning.jpg" alt="alt text" /></p>
<p>My app performs the same as notepad in that every glyph appears 'monospaced'. Notice how in Photoshop CS2, the bridge at the top of the 'T' nicely overhangs the 'e'. I want to recreate this.</p>
<p>I am aware of other APIs such as Pango/Freetype - but it seems a rather heavyweight solution to include all of that just to do the final 1% of this task, if Uniscribe is so great at everything else.</p>
<p>Am I missing a step using Uniscribe? What is the best solution to this? Can Freetype export kerning information in a lightweight fashion, so that I can integrate it with the existing Uniscribe solution? </p>
<p>N.b. We only need to run on Windows - platform portability is thankfully not an issue I need to worry about right now.</p>
<p>Cheers in advance ! </p>
http://stackoverflow.com/questions/1598888/windows-7-openldap-curl-dll-dependency-hell1Windows 7 OpenLDAP Curl DLL Dependency HellAli Parr2009-10-21T05:30:59Z2009-11-20T03:06:25Z
<p>Hi,</p>
<p>I really hope someone can be of help to me because this problem has me totally stuck and frustrated.</p>
<p>Yesterday I installed a fresh and shiney new Windows 7 x64 onto a development box.</p>
<p>I got VS2008 installed, Tortoise SVN, did a checkout, compiled my currently project, all fine and dandy. </p>
<p>But when I go to run (either F5 in VS or just running the exe from the shell) I get a dialog box that looks like this:</p>
<p><img src="http://www.aliparr.net/images/error1.jpg" alt="Sadness" /></p>
<p>So I fiddle around and can't see an obvious problem. I bust out depends.exe, thinking maybe there's a dll missing, and I get this:</p>
<p><img src="http://www.aliparr.net/images/error2.jpg" alt="Eeek" /></p>
<p>So I play, finding different versions of gpsvc.dll and ishims.dll and putting them in with the .exe, No luck.</p>
<p>If I do a profile in depends (which follows the Output window of vs), I get this:</p>
<pre><code>..
Loaded "c:\windows\syswow64\ADVAPI32.DLL" at address 0x75F20000 by thread 1. Successfully hooked module.
Loaded "c:\windows\syswow64\LPK.DLL" at address 0x76B20000 by thread 1. Successfully hooked module.
Loaded "c:\windows\syswow64\USP10.DLL" at address 0x761C0000 by thread 1. Successfully hooked module.
Loaded "c:\windows\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4926_none_508ed732bcbc0e5a\MSVCR90.DLL" at address 0x70570000 by thread 1. Successfully hooked module.
Loaded "c:\users\ali\desktop\repository\development\trunk\spree\bin\debug\OPENLDAP.DLL" at address 0x001E0000 by thread 1. Successfully hooked module.
Exited "c:\users\ali\desktop\repository\development\trunk\spree\bin\debug\SPREE.EXE" (process 0x5D4) with code -1073741701 (0xC000007B) by thread 1.
</code></pre>
<p>So it seems openldap.dll is the last thing to get loaded before it all goes wrong. I require this dll because I use cURL within the application to do a little JSON communicating...</p>
<p>I've tried playing with moving files and trying differing dlls, but honestly I'm acting a little blind here. Can someone please help or point me in the right direction?</p>
<p>It should be noted these dlls and setup work fine in Windows Vista x64 and x86 - is this a Windows 7 thing?</p>
<p>Massive thanks in advance, I might still have some hair left after this is done. </p>
<p><hr /></p>
<p>Edit</p>
<p>I've now realised curl.exe dies in exactly the same way with openldap.dll - I guess some windows 7 issue?
Can you/does anyone have a curl without the dependency on openldap? Is there another lightweight C/C++ library out there that'll let me fetch a document over http and do the odd http POST ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1661795/how-to-check-if-memory-has-aready-been-released-in-destructor/1661838#16618381Answer by Ali Parr for How to check if memory has aready been released in Destructor?Ali Parr2009-11-02T15:09:23Z2009-11-02T15:09:23Z<p>Sounds like a rather horrible <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">leaky abstraction</a></p>
<p>You cannot hope to find a safe method of destroying memory if you do not know exactly how it has been allocated. The cleanup function sounds like it's there for a reason and doing a job - just gotta live with it.</p>
<p>You could of course wrap these bits and include some documentation in comments so that other developers don't fall into the same trap.</p>
<p>Also profile your application to make sure there's no leaking.</p>
http://stackoverflow.com/questions/1636607/how-to-draw-cloud-of-characters-in-3d-with-iphone-opengles/1636621#16366211Answer by Ali Parr for How to draw cloud of characters in 3D with iPhone OpenGLES?Ali Parr2009-10-28T11:15:53Z2009-10-28T11:15:53Z<p>Render the characters as textures on quads. Then you can manipulate them in 3D to your heart's desire...</p>
<p>See: <a href="http://stackoverflow.com/questions/512258/is-there-a-decent-opengl-text-drawing-library-for-the-iphone-sdk/512389#512389">This question/answer</a> for some more details.</p>
http://stackoverflow.com/questions/1616464/what-language-generation-is-c/1616479#16164790Answer by Ali Parr for What Language Generation is c#?Ali Parr2009-10-23T23:40:12Z2009-10-23T23:40:12Z<p>3rd. Think of them as 'closeness to Natural English'</p>
<ul>
<li>1 = Machine Language (Binary etc) </li>
<li>2 = ASM</li>
<li>3 = C / C++ / C# / Java etc - Most modern languages fall in here somewhere.</li>
<li>4 = SQL like syntax (EXTRACT ALL NAMES FROM CUSTOMERS WHERE....)</li>
</ul>
http://stackoverflow.com/questions/1606248/the-ethics-of-using-my-documents-as-a-dumping-ground7The ethics of using 'My Documents' as a dumping ground...Ali Parr2009-10-22T10:11:02Z2009-10-22T13:09:03Z
<p>Something I've wondered about for a while now and would like to get a general opinion on:</p>
<p>Advanced apologies if this has been asked previously, I did a search and couldn't find anything similar. This question is related to questions like, <a href="http://stackoverflow.com/questions/752455/correct-location-to-save-a-temporary-file-in-windows">"Correct location to save a temporary file in Windows?"</a> , but not quite the same.</p>
<p>I've noticed over the years spent with Windows, from XP to Vista and now to 7, that the 'My Documents' directory has slowly turned from being a place where you're encouraged to place personal 'stuff' into a dumping ground for any junk any random application wants to store.</p>
<p>For example, if I look now at the 'My Documents' directory on my work xp machine, there are folders for Adobe, FX Composer, Maya, Processing, Visual Studio 2005/2008, Visual Studio Samples, Window Clippings, Evernote.... the list goes on and on.</p>
<p>In fact, the last thing that I'd ever use that folder for now is storing my 'stuff' - the very thing it was intended to do. I personally find storing my actual documents in there, along with these random application settings too disorganized and painful to sort through. Plus there are added headaches with backup software etc... The signal to noise ratio just becomes appalling. </p>
<p>Lamenting aside, I now find myself in the position of writing some code where I want to store some settings related to my application. These settings ideally should be 'global' (our software gets regular updates), so storing them in some Program Files directory that's likely to be ephemeral won't work. While settings themselves could be stored in the registry, what about backup files, compressed archives, samples, etc etc...</p>
<p>So really what I'm asking is, what's the right solution for this situation? Do I follow the crowd and use 'My Documents' as a dumping ground? Is that folder a write-off anyway, or am I adding to the problem? </p>
<p>Do you use 'My Documents' as a storage area for your applications? Do you share my frustration with all the junk that turns up in there? </p>
<p>The users of my software are semi-tech-savy, so would probably understand it's just a directory like any other (and so could handle it being elsewhere) - but I guess Aunt Edna isn't going to understand that, so does the answer depend on context?</p>
<p>Thanks in advance!</p>
<p><hr /></p>
<p>Edit:</p>
<p>Thanks for the suggestion of %APPDATA% - I guess this is fine for application settings and files that shouldn't be exposed to the user, but what about files that might be useful for the user to move/manage themselves? Is My Documents the only solution or should I still stick to %APPDATA% ?</p>
http://stackoverflow.com/questions/1253928/extracting-glyph-kerning-information-c1Extracting Glyph Kerning Information C++Ali Parr2009-08-10T09:33:38Z2009-08-14T05:28:31Z
<p>After asking my previous question <a href="http://stackoverflow.com/questions/1232204/uniscribe-kerning">about Uniscribe glyph kerning</a>, and not yet receiving an answer, plus further reading on google etc, it seems Uniscribe may not support extracting glyph kerning information from a font.</p>
<p>I therefore have a simple followup question - are there any good examples (preferably with some C++ code) of extracting glyph kerning information for a specified string from a font?</p>
<p>It's mentioned in various places that either Pango, QT or ICU are capable of doing this, but documentation is a bit thin on the ground and I'm struggling to know where to get started. </p>
<p>Any help pointing me in the right direction gratefully received. I already have code in place to render the glyphs in the desired way, I am simply after the extended kerning information, so I can position the glyphs a little nicer.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1259305/another-question-about-premature-optimization/1259334#12593346Answer by Ali Parr for Another question about premature optimizationAli Parr2009-08-11T09:35:34Z2009-08-11T09:35:34Z<p>I don't believe it was supposed to be taken literally. There are some circumstances and environments in which optimization is paramount (and hence the 97% rather than say, 99%), but for the majority of programmers, writing the majority of software, the majority of the time - optimization should occur only when necessary, and after proper profiling.</p>
http://stackoverflow.com/questions/1244729/how-do-you-count-the-lines-of-code-in-a-visual-studio-solution/1244767#12447677Answer by Ali Parr for How do you count the lines of code in a Visual Studio solution?Ali Parr2009-08-07T13:43:39Z2009-08-07T13:43:39Z<p>An open source line counter for VS2005, 2003 and 2002 is available here:</p>
<p><a href="http://www.wndtabs.com/" rel="nofollow">http://www.wndtabs.com/</a></p>
<p>There is also discussion of creating a line counting VS addin, complete with code on Codeproject, here</p>
<p><a href="http://www.codeproject.com/KB/macros/LineCounterAddin.aspx" rel="nofollow">http://www.codeproject.com/KB/macros/LineCounterAddin.aspx</a></p>
<p>Also Slick Edit Gadgets have a nice line-counter, here:</p>
<p><a href="http://www.slickedit.com/content/view/441" rel="nofollow">http://www.slickedit.com/content/view/441</a></p>
<p>and Microsoft Visual Studio Team System 2008 includes a good line counter.</p>
<p>Just remember though:</p>
<blockquote>
<p>Measuring programming progress by lines of code is like measuring aircraft building progress by weight.
Bill Gates</p>
</blockquote>
http://stackoverflow.com/questions/1238812/newsletter-submission/1238908#12389080Answer by Ali Parr for Newsletter submissionAli Parr2009-08-06T13:30:50Z2009-08-06T13:30:50Z<p>There are many mailing list solutions out there - google is your friend. </p>
<p>It should be relatively straightforward to write some code that links the front of your website with the mailing list backend, and many solutions will assist you in this process. I think I'd advise you invest some time in setting up an automated solution rather than handling the continual, linear burden of manually managing the list.</p>
<p>A couple of examples of completely differing management tools, one open source, one commercial:</p>
<p>a) <a href="http://www.gnu.org/software/mailman/index.html" rel="nofollow">http://www.gnu.org/software/mailman/index.html</a></p>
<p>b) <a href="http://www.mailchimp.com" rel="nofollow">http://www.mailchimp.com</a></p>
http://stackoverflow.com/questions/1238613/what-is-the-difference-between-dot-operator-and-arrow-in-c/1238834#12388340Answer by Ali Parr for what is the difference between (.) dot operator and (->) arrow in c++Ali Parr2009-08-06T13:19:14Z2009-08-06T13:19:14Z<p>The -> is simply syntactic sugar for a pointer dereference,</p>
<p>As others have said:</p>
<p>pointer->method();</p>
<p>is a simple method of saying:</p>
<p>(*pointer).method();</p>
<p>For more pointer fun, check out Binky, and his magic wand of dereferencing:</p>
<p><a href="http://www.youtube.com/watch?v=UvoHwFvAvQE" rel="nofollow">http://www.youtube.com/watch?v=UvoHwFvAvQE</a></p>
http://stackoverflow.com/questions/1013367/changing-angle-when-ball-hits-paddle/1017155#10171550Answer by Ali Parr for Changing angle when ball hits paddleAli Parr2009-06-19T09:44:57Z2009-06-19T09:44:57Z<p>The following code (C++ but easy enough to convert to ObjC), takes an incoming 2D vector and reflects it based on a surface normal (the face of your pong bat).</p>
<p>You could add some random 'fun factor' by randomizing an offset that you'd either apply to 'scalar' - to change velocity, or to the surface normal, to alter the reflection angle.</p>
<p>I'm using this in my iPhone project, and it works fine :)</p>
<pre><code>void vec2ReflectScalar(vec2& vResult, const vec2& v1, const vec2& normal, float scalar)
{
vec2 _2ndotvn;
float dotVal = vec2DotProduct(v1, normal);
vec2Scale(_2ndotvn, normal, scalar * 2.f * dotVal);
vec2Subtract(vResult, v1, _2ndotvn);
}
void vec2Reflect(vec2& vResult, const vec2& v1, const vec2& normal)
{
vec2ReflectScalar(vResult, v1, normal, 1.f);
}
</code></pre>
http://stackoverflow.com/questions/99743/what-are-some-decent-isps-that-host-subversion/377565#3775652Answer by Ali Parr for What Are Some Decent ISPs That Host SubversionAli Parr2008-12-18T11:26:26Z2009-06-06T01:35:05Z<p>I'd like to second <a href="http://www.dreamhost.com" rel="nofollow">www.dreamhost.com</a> as a superb solution / value for money.
I've been with them for about 2 years, there are limits on size/bandwidth, but they're so ridiculously high you can basically consider it unlimited for any reasonable project. </p>
<p>I've never had a server issue or any downtime (although I have heard others have). They seem open and trustworthy.</p>
http://stackoverflow.com/questions/951027/what-are-the-five-priorities-for-software-development/951125#9511250Answer by Ali Parr for What are the five priorities for software development?Ali Parr2009-06-04T14:59:28Z2009-06-04T14:59:28Z<p>As an alternative:</p>
<p>Efficient</p>
<ul>
<li>No good having feature complete software if it takes forever to do it, or requires some silly hardware....</li>
</ul>
http://stackoverflow.com/questions/815056/move-intermediates-directory-on-c-projects-in-visual-studio2Move intermediates directory on C# projects in Visual StudioAli Parr2009-05-02T15:37:15Z2009-05-02T16:21:16Z
<p>I'm currently in the process of stripping down, refactoring and cleaning up a medium sized (15 ish projects) Visual Studio solution. The solution contains projects in both C++ and C#.</p>
<p>I'm keen to keep things as neat as possible in terms of output - seperating anything compiler created from source code, as it helps subversion (okay, I can tell it to ignore files, but I still feel it's messy) from freaking out.</p>
<p>The output I would like to achieve is as follows:</p>
<pre><code>SolutionDir/
SolutionDir/src/project1/{ Code here }
SolutionDir/int/project1/configuration/{.obj files and other misc compiler junk here}
SolutionDir/bin/project1/configuration/{The fun stuff goes here}
</code></pre>
<p>This seems trivial with C++ projects as you can specify both the output and the intermediates directory. However with C#, at least through the Visual Studio 2008 User Interface it seems impossible to move the obj directory?</p>
<p>After doing some digging, I added</p>
<pre><code><IntermediateOutputPath>..\..\int\ProjectName\Debug\</IntermediateOutputPath>
</code></pre>
<p>to the C# .csproj</p>
<p>This appears to work, sort of. It's true the intermediates appear to end up there, but a directory 'obj' and under it a configuration directory (e.g. 'debug') and then a 'TempPE' directory are created in the old location - all of which are empty.</p>
<p>This isn't really a big deal, but it would be nice to know the cause of this behavior and if possible a way to fix it. </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/520712/is-it-better-to-go-broad-or-go-deep6Is it better to go broad or go deep?Ali Parr2009-02-06T15:28:33Z2009-04-07T15:19:50Z
<p>This is a rather general question about how best to further yourself as a programmer both professionally and personally. </p>
<p>As good <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">Pragmatic Programmers</a>, we have been taught that continual learning and self-improvement are things that we should consider a natural part of our lives as technologists. Part of this process is keeping abreast with the latest developments and changes in the technology, languages and frameworks that surround us.</p>
<p>Time is unfortunately a finite resource, limiting our ability and scope about what we can learn and to what degree.</p>
<p>My question is therefore: Is it better to develop a broad range of skills with a large variety of languages and frameworks - but never being able to call yourself expert in any, or is it preferable to develop a very focused set of skills but to the level of a zen-master?</p>
<p>As a further sub-topic, is it better to learn similar/related languages (C/C++/C#), which you can grok very quickly. Or take the time to learn a more disparate selection?</p>
<p>I'm thinking of this in both the context of personal development, and ability to further a career. Obviously you can argue that a greater perspective of different languages and frameworks will make you a better overall thinker, but what about a better overall earner?</p>
http://stackoverflow.com/questions/10901/future-proofing-a-large-ui-application-mfc-with-2008-feature-pack-or-c-and-wi3Future proofing a large UI Application - MFC with 2008 Feature pack, or C# and Winforms?Ali Parr2008-08-14T11:26:02Z2009-02-25T22:41:07Z
<p>My company has developed a long standing product using MFC in Visual C++ as the defacto standard for UI development. Our codebase contains ALOT of legacy/archaic code which must be kept operational. Some of this code is older than me (originally written in the late 70s) and some members of our team are still on Visual Studio 6.</p>
<p>However, a conclusion has thankfully been reached internally that our product is looking somewhat antiquated compared to our competitors', and that something needs to be done.</p>
<p>I am currently working on a new area of the UI which is quite separate from the rest of the product. I have therefore been given the chance to try out 'new' technology stacks as a sort of proving ground before the long process of moving over the rest of the UI begins.</p>
<p>I have been using C# with Windows Forms and the .net framework for a while in my spare time and enjoy it, but am somewhat worried about the headaches caused by interop. While this particular branch of the UI won't require much interop with the legacy C++ codebase, I can forsee this becoming an issue in the future.</p>
<p>The alternative is just to continue with MFC, but try and take advantage of the new feature pack that shipped with VS2008. This I guess is the easiest option, but I worry about longevity and not taking advantage of the goodness that is .net...</p>
<p>So, which do I pick? We're a small team so my recommendation will quite probably be accepted as a future direction for our development - I want to get it right.</p>
<p>Is MFC dead? Is C#/Winforms the way forward? Is there anything else I'm totally missing? Help greatly appreciated!</p>
http://stackoverflow.com/questions/556174/spicing-up-the-visual-studio-ide/556185#5561854Answer by Ali Parr for Spicing up the Visual Studio IDEAli Parr2009-02-17T10:12:44Z2009-02-17T10:12:44Z<p><a href="http://www.wholetomato.com/" rel="nofollow">Whole Tomato's Visual Assist X</a></p>
<p>I'm not sure I could live without it...</p>
http://stackoverflow.com/questions/556075/water-simulation-with-a-grid/556181#5561810Answer by Ali Parr for Water simulation with a gridAli Parr2009-02-17T10:11:02Z2009-02-17T10:11:02Z<p>Yeah, this type of voxel based solution only really work if your liquid is confined to very discrete and static boundaries. </p>
<p>For simulating flowing liquid, do some investigation into particles. Quite alot of progress has been made recently accelerating them on the GPU, and you can get some stunning results.</p>
<p>Take a look at, <a href="http://nzone.com/object/nzone_cascades_home.html" rel="nofollow">http://nzone.com/object/nzone_cascades_home.html</a> as a great example of what can be achieved.</p>
http://stackoverflow.com/questions/521068/how-can-i-improve-my-html-and-css/521113#5211131Answer by Ali Parr for How can I improve my HTML and CSS?Ali Parr2009-02-06T16:56:15Z2009-02-06T16:56:15Z<p>There are some fantastic resources at <a href="http://www.smashingmagazine.com/" rel="nofollow">Smashing Magazine</a>
Follow their guides on CSS best practice and use some of their 'best of' sections for inspiration. It's one of my first stops when starting a new web design project.</p>
http://stackoverflow.com/questions/512258/is-there-a-decent-opengl-text-drawing-library-for-the-iphone-sdk/512389#5123894Answer by Ali Parr for Is there a decent OpenGL text drawing library for the iPhone SDK?Ali Parr2009-02-04T17:21:32Z2009-02-04T17:44:20Z<p>Your description of using freetype to create a texture atlas along with all the glyph information is exactly what I'm doing in my current iPhone project.</p>
<p>I do all the parsing of the font in a pre-process step (All in C# on Windows as it happens). The atlas itself gets generated and contains only the characters needed - to cut down on space, I also sometimes end up generating more than a single atlas to keep textures sizes pow2 and of a sensible resolution. </p>
<p>You can easily pull out the glyph information from freetype. Pass that along to your app along with the textures at runtime and then it's fairly trivial to just alter the UV coords of the texture as required. </p>
<p>For what it's worth, this is how I define a glyph character inside my little engine:</p>
<p><code>
struct FontGlyph
{</p>
<p>u32 char_code;</p>
<p>u32 m_x; // base x position on tpage</p>
<p>u32 m_y; // base y position on tpage</p>
<p>u32 m_width; // glyph width</p>
<p>u32 m_height; // glyph height</p>
<p>i32 m_horiBearingX; // Distance to X shift</p>
<p>i32 m_horiBearingY; // Distance to Y shift</p>
<p>u32 m_horiAdvance; // Total Horizontal advance this character requires</p>
<p>u32 m__tpage_index; // Which tpage does this glyph use?</p>
<p>};
</code></p>
<p>I then have a 'SpriteString' object, which behaves pretty much like any other string, apart from I can draw it using sprites....</p>
<p>I agree this all might seem like a big job for a fairly trivial problem, but I've found it's given me plenty of flexibility and really didn't take that long to implement when I got down to it.</p>
<p>Feel free to reply or comment if you need any other details. (And good luck :)</p>
<p><hr /></p>
<p>Reply to your comment as I ran out of room in the comment section...</p>
<p>Check out the freetype documentation, it basically gives you the glyph data without messing about, it just pulls it right out of the font. As for the textures themselves, you get freetype to render each glyph, and then manage that to build the texture. This I do as a pre-process entirely separate from my main app.</p>
<p>Here's an excerpt of my tool code that does this: <a href="http://pastebin.com/md1c6354" rel="nofollow">http://pastebin.com/md1c6354</a></p>
<p>Please note though, this was only ever intended for my eyes and not for public consumption, so excuse the fact it's messy as hell :)</p>
http://stackoverflow.com/questions/510839/using-base-in-a-class-name/510908#5109081Answer by Ali Parr for Using "Base" in a Class NameAli Parr2009-02-04T11:08:22Z2009-02-04T11:08:22Z<p>I too would suggest No, but not cast in stone...</p>
<p>Following OO mantra, your naming system should best represent the underlying objects that the code is supposed to be encapsulating. There should really be no 'meta language', related to the actual syntactical makeup of the programming language of choice in there.</p>
<p>That said, if your object is truly abstract and you really don't see it changing anytime soon, there is an argument that adding 'Base' helps with general readability.</p>
<p>As with most things, there's no blanket right and wrong answer - it depends on the overall layout of your codebase, what this specific code is supposed to be representing and the in-house style that you have. Just try to be consistent.</p>
<p>Is base used anywhere else? </p>
http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/510838#5108382Answer by Ali Parr for How to be an eco-friendly programmer?Ali Parr2009-02-04T10:46:34Z2009-02-04T10:46:34Z<p>Use a lower power PSU and GPU (Or just use a laptop). You don't need a Nvidia Geforce 9800 beasty with extra cooling to write those ASP webforms....</p>
<p>Unless of course, you're actually writing something that does require that power....</p>
http://stackoverflow.com/questions/16248/getting-the-subversion-repository-number-into-code12Getting the subversion repository number into code...Ali Parr2008-08-19T14:19:06Z2008-10-28T13:08:04Z
<p>I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs.
It seems the best version number to use would just be the current revision number from Subversion. Is there an easy way to hook this number into a (C++ in my case) header file or something, which I can then get at in code? I guess this is a post commit hook or something?</p>
<p>Does anyone have any experience of implementing this (with code to share, please?), or can suggest a better alternative?
Thanks.</p>
http://stackoverflow.com/questions/132452/keyword-highlighting-on-selection-in-visual-studio-20083Keyword highlighting on selection in Visual Studio 2008Ali Parr2008-09-25T10:11:03Z2008-09-25T14:08:32Z
<p>Hello.
A little while ago I managed to get Visual Studio 2008 (C++) into a state where, if I would select a keyword (or any symbol for that matter), by either double clicking on it or highlighting it, all other instances of that symbol within the current file would become highlighted too.</p>
<p>This was a really useful feature.</p>
<p>Since then it's gone away, and I don't know how to get it back.</p>
<p>Please help.</p>
<p>@<a href="#132475" rel="nofollow">Sander </a>- that'll be it. Thanks!</p>
http://stackoverflow.com/questions/101797/visual-studio-2008-multiple-monitors-find-window-placement-problem/101852#1018520Answer by Ali Parr for Visual Studio 2008, Multiple Monitors, "find" window placement problemAli Parr2008-09-19T13:35:17Z2008-09-19T13:35:17Z<p>Visual Studio 2008 should remember where your Find and Replace window was last time you opened it, unless something is misbehaving on your system. I just checked the behavior on mine though and it seems to consistently appear where I last had it open.</p>
<p>So try moving it, then closing and reopening, does it still appear in the incorrect place?</p>
<p>Also, do you have visual studio maximized on one monitor, or just stretched in un-maximized state across both? Are you running any multi-monitor utilities that might alter this behavior?</p>
<p>Alternatively you could try inline search (Ctrl+i by default in VS2008)... for searching one file it's generally better anyway.</p>
http://stackoverflow.com/questions/90813/best-practices-principles-for-gui-design/90943#909436Answer by Ali Parr for Best Practices & Principles for GUI designAli Parr2008-09-18T08:27:18Z2008-09-18T08:27:18Z<p>If you're doing anything for the web, or any front-facing software application for that matter, you really owe it to yourself to read...</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0321344758" rel="nofollow">Don't make me think - Steve Krug</a></p>
http://stackoverflow.com/questions/74350/how-to-fix-an-mfc-painting-glitch/81662#816620Answer by Ali Parr for How to fix an MFC Painting Glitch?Ali Parr2008-09-17T10:05:47Z2008-09-17T10:05:47Z<p>Thanks for the answers guys, ajryan, you seem to always come up with help for my questions so extra thanks.</p>
<p>Thankfully this time the answer was fairly straightforward....</p>
<pre><code>ImageList_DragShowNolock(FALSE);
m_pDragDropTargetWnd->SendMessage(WM_USER_DRAG_DROP_OBJECT_DRAG_ENTER, (WPARAM)pDragDropObject, (LPARAM)(&dragDropPoint));
ImageList_DragShowNolock(TRUE);
</code></pre>
<p>This turns off the drawing of the dragged image, then sends a message to the window being entered to repaint in a highlighted state, then finally redraws the drag image over the top. Seems to have done the trick.</p>
http://stackoverflow.com/questions/74350/how-to-fix-an-mfc-painting-glitch0How to fix an MFC Painting Glitch?Ali Parr2008-09-16T16:41:09Z2008-09-17T10:05:47Z
<p>Hello.
I'm trying to implement some drag and drop functionality for a material system being developed at my work. Part of this system includes a 'Material Library' which acts as a repository, divided into groups, of saved materials on the user's hard drive.</p>
<p>As part of some UI polish, I was hoping to implement a 'highlight' type feature. When dragging and dropping, windows that you can legally drop a material onto will very subtly change color to improve feedback to the user that this is a valid action.</p>
<p>In the included screenshot, I am changing the bar with 'Basic Materials' (Just a CWnd with a CStatic) from having a medium gray background when unhighlighed to a blue background when hovered over. It all works well, the OnDragEnter and OnDragExit messages seem robust and set a flag indicating the highlight status. Then in OnCtrlColor I do this:</p>
<pre><code> if (!m_bHighlighted) {
pDC->FillSolidRect(0, 0, m_SizeX, kGroupHeaderHeight, kBackgroundColour);
}
else {
pDC->FillSolidRect(0, 0, m_SizeX, kGroupHeaderHeight, kHighlightedBackgroundColour);
}
</code></pre>
<p><img src="http://www.aliparr.net/badmfcpaint.jpg" alt="Material Library Badness" /></p>
<p>However, as you can see in the screenshot, the painting 'glitches' below the dragged object, leaving the original gray in place. It looks really ugly and basically spoils the whole effect.</p>
<p>Is there any way I can get around this? MFC isn't fun at the best of times, and this is causing me to tear my hair out.</p>
<p>All help gratefully appreciated.</p>
http://stackoverflow.com/questions/71199/what-makes-you-lose-motivation/71224#7122411Answer by Ali Parr for What makes you lose motivation?Ali Parr2008-09-16T11:00:40Z2008-09-16T11:00:40Z<p>Slow compile times. Instant killer to 'flow' and keeping track of things in your head.</p>
http://stackoverflow.com/questions/516788/getting-current-gmt-time-in-c-net/516804#516804Comment by Ali Parr on Getting current GMT time in C# (.Net)Ali Parr2009-11-19T17:21:15Z2009-11-19T17:21:15ZYou don't deserve a negative vote, this is still a useful, related answer. +1http://stackoverflow.com/questions/58640/great-programming-quotes/71059#71059Comment by Ali Parr on Great programming quotesAli Parr2009-11-17T23:54:11Z2009-11-17T23:54:11ZMaybe you were sobbing inside because you know it's true...?http://stackoverflow.com/questions/1356896/how-to-hide-a-string-in-binary-code/1359741#1359741Comment by Ali Parr on How to hide a string in binary code?Ali Parr2009-11-16T16:13:47Z2009-11-16T16:13:47Z+1 For the analogy!http://stackoverflow.com/questions/10901/future-proofing-a-large-ui-application-mfc-with-2008-feature-pack-or-c-and-wi/11002#11002Comment by Ali Parr on Future proofing a large UI Application - MFC with 2008 Feature pack, or C# and Winforms?Ali Parr2009-11-07T13:17:48Z2009-11-07T13:17:48ZThanks for the info Ray Burns. Food for thought.http://stackoverflow.com/questions/1654202/how-can-i-make-a-java-compilerComment by Ali Parr on How can I make a Java compiler?Ali Parr2009-10-31T12:55:17Z2009-10-31T12:55:17ZGood for you! :Dhttp://stackoverflow.com/questions/1636607/how-to-draw-cloud-of-characters-in-3d-with-iphone-opengles/1636621#1636621Comment by Ali Parr on How to draw cloud of characters in 3D with iPhone OpenGLES?Ali Parr2009-10-28T11:25:07Z2009-10-28T11:25:07ZThere are probably other methods of doing this, but the way that has worked for me:
Firstly, you need to create a texture atlas (A single large texture), with all the characters in it. <a href="http://blogs.agi.com/insight3d/wp-content/uploads/2008/08/textureatlas.png" rel="nofollow">blogs.agi.com/insight3d/wp-content/…</a>
Then you need to write an algorithm that will generate quads of the right size, and with the right uv coordinates to display those glyphs. You can get this data out of the font using a library like Freetype.
It sounds complex but it's really not so bad.http://stackoverflow.com/questions/1616464/what-language-generation-is-c/1616479#1616479Comment by Ali Parr on What Language Generation is c#?Ali Parr2009-10-23T23:46:18Z2009-10-23T23:46:18ZA higher generation doesn't mean it has to be any good ;)http://stackoverflow.com/questions/1606248/the-ethics-of-using-my-documents-as-a-dumping-ground/1606351#1606351Comment by Ali Parr on The ethics of using 'My Documents' as a dumping ground...Ali Parr2009-10-22T10:37:54Z2009-10-22T10:37:54ZProbably the most practical solution. Thank you.http://stackoverflow.com/questions/1606248/the-ethics-of-using-my-documents-as-a-dumping-ground/1606261#1606261Comment by Ali Parr on The ethics of using 'My Documents' as a dumping ground...Ali Parr2009-10-22T10:15:44Z2009-10-22T10:15:44ZPerhaps, but then why do such big name companies (Adobe/Autodesk etc) regularly ignore it? Plus is that directory obvious for people to manually backup/move etc?http://stackoverflow.com/questions/1598888/windows-7-openldap-curl-dll-dependency-hellComment by Ali Parr on Windows 7 OpenLDAP Curl DLL Dependency HellAli Parr2009-10-21T05:38:22Z2009-10-21T05:38:22ZI could do if it does indeed turn out to be a true bug. Chances are it's an 'oops' on my part though ;)http://stackoverflow.com/questions/1253928/extracting-glyph-kerning-information-c/1276199#1276199Comment by Ali Parr on Extracting Glyph Kerning Information C++Ali Parr2009-08-19T15:42:22Z2009-08-19T15:42:22ZThank you for this. I've gone ahead and used GetKerningPair() coupled with GetGlyphIndices() and I'm now getting acceptable results. It's not correct for OpenType fonts, but that's an acceptable limitation for now.http://stackoverflow.com/questions/1253928/extracting-glyph-kerning-information-cComment by Ali Parr on Extracting Glyph Kerning Information C++Ali Parr2009-08-12T14:52:51Z2009-08-12T14:52:51ZThanks - that at least rules out qt.
It's amazing how difficult this seemingly simple thing is turning out to be.http://stackoverflow.com/questions/16501/what-is-a-lambda-function/34969#34969Comment by Ali Parr on What is a lambda (function)?Ali Parr2009-08-10T13:32:26Z2009-08-10T13:32:26Z+1 - The most succinct and clear explanation of this I've ever come across.http://stackoverflow.com/questions/1254853/offered-a-new-position-should-i-take-it-in-this-economyComment by Ali Parr on Offered a new position should I take it in this economy?Ali Parr2009-08-10T13:27:02Z2009-08-10T13:27:02ZHm, Did you at some point consider this might not be programming related, and maybe doesn't belong on a programming website?http://stackoverflow.com/questions/1245341/what-is-the-best-way-to-put-advertisements-on-your-websiteComment by Ali Parr on What is the best way to put advertisements on your website?Ali Parr2009-08-07T15:20:27Z2009-08-07T15:20:27ZConfusing, and it seems not programming related.