active questions tagged resources - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:30:01Z http://stackoverflow.com/feeds/tag/resources http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read 579 What is the single most influential book every programmer should read? NotMyself 2008-08-04T23:50:22Z 2009-12-07T17:30:35Z <p>If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?</p> <p>I expect this list to be varied and to cover a wide range of things. For me, the book would be Code Complete. After reading that book, I was able to get out of the immediate task mindset and begin to think about the bigger picture, quality and maintainability.</p> <p>Suggest your programming books</p> http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox 5 How can you change the highlighted text color for a WPF TextBox? demwiz 2009-01-02T03:37:26Z 2009-12-07T16:45:34Z <p>The WPF TextBox natively makes use of the System Highlight color for painting the background of selected text. I would like to override this and make it consistent since it varies by OS/user theme.</p> <p>For ListBoxItems, there is a <a href="http://blogs.msdn.com/wpfsdk/archive/2007/08/31/specifying-the-selection-color-content-alignment-and-background-color-for-items-in-a-listbox.aspx" rel="nofollow">neat trick</a> (see below) where you can override the resource key for the HighlightBrushKey to customize the System Highlight color in a focused setting.</p> <pre><code> &lt;Style TargetType="ListBoxItem"&gt; &lt;Style.Resources&gt; &lt;SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightGreen"/&gt; &lt;/Style.Resources&gt; &lt;/Style&gt; </code></pre> <p>The same trick does not work for the TextBox unfortunately. Does anyone have any other ideas, besides "override the ControlTemplate"?</p> <p>Thanks for any suggestions!</p> <p><a href="http://blogs.msdn.com/llobo/archive/2009/10/27/new-wpf-features-caretbrush-selectionbrush.aspx" rel="nofollow">NOTE: This behavior appears to be added to WPF 4.</a></p> http://stackoverflow.com/questions/1761340/c-form-resx-usage-for-programmatic-strings 1 C# Form resx usage for programmatic strings? Chandra 2009-11-19T06:47:05Z 2009-12-07T15:08:21Z <p>Hi All, Had a basic WinForm question: By default a resx file is created for every form or usercontrol (along with the designer.cs). This resx works fine for all the controls and the text added to the controls via the UI.</p> <p>I was wondering if I could use the same resx to add strings which have to be used programmatically and based on conditions, attached to the controls? Will the resx get overridden in any case and this custom strings be removed? What is the best practice to follow in this case?</p> <p>Thanks for any inputs.</p> <p>Warm Regards, Chandra</p> http://stackoverflow.com/questions/525154/concurrency-and-coordination-runtime-ccr-learning-resources 9 Concurrency and Coordination Runtime (CCR) Learning Resources Harry 2009-02-08T04:26:05Z 2009-12-07T06:26:08Z <p>I have recently been learning the in's and out's of the <a href="http://msdn.microsoft.com/en-us/library/bb905450.aspx" rel="nofollow">Concurrency and Coordination Runtime (CCR).</a> Finding good learning resources for this relatively new technology has been quite difficult.</p> <p>(A quick google search brings up "Creedence Clearwater Revival" as the top result!)</p> <p>Some of the resources I have found:</p> <ul> <li><a href="http://www.robochamps.com/rc/data/learningarea/141076-cover-df.pdf" rel="nofollow">Free e-book chapter</a> from WROX on the Robotics Developer Studio</li> <li><a href="http://www.infoq.com/articles/Using-CCR" rel="nofollow">Good Article/post</a> on InfoQ</li> <li><a href="http://blogs.msdn.com/pollrobots/archive/2008/07/22/ccr-utilities-part-1.aspx" rel="nofollow">Robotic's Member blog</a></li> <li>Very active <a href="http://social.msdn.microsoft.com/forums/en-US/roboticsccr/threads/" rel="nofollow">MSDN CCR Forum</a> - Got plenty of help from here!</li> <li><a href="http://msdn.microsoft.com/en-au/magazine/cc163556.aspx" rel="nofollow">Great MSDN Magazine</a> by Jeffrey Richter</li> <li>Official <a href="http://msdn.microsoft.com/en-us/library/bb905450.aspx" rel="nofollow">CCR User Guide</a> - Didn't find this very helpful</li> <li>Great <a href="http://iodyne.blogspot.com/" rel="nofollow">blogging series</a> on CCR</li> <li>iodyner <a href="http://iodyne.blogspot.com/" rel="nofollow">CCR Related Blog</a> - Update: <a href="http://iodyner.spaces.live.com/" rel="nofollow">Moved to here</a></li> <li>Eight or so <a href="http://channel9.msdn.com/tags/CCR/" rel="nofollow">Videos</a> on Channel9.msdn.com</li> <li><a href="http://channel9.msdn.com/wiki/ccrpatterns/" rel="nofollow">CCR Patterns page</a> on MS Robotics Studio - I haven't read this yet</li> <li>4 x <a href="http://stackoverflow.com/questions/tagged/ccr">CCR Questions</a> on Stackoverflow - Most of the questions have been Mine! LOL</li> <li><a href="http://blogs.msdn.com/msroboticsstudio/archive/2009/04/22/rds-2008-standard-edition-and-ccr-and-dss-toolkit-2008-available-on-msdn.aspx" rel="nofollow">CCR and DSS toolkit</a> has now been released to MSDN Members</li> </ul> <p>Do you have any good learning resources for the CCR?</p> <p>I really hope that Microsoft will publish more material, so far it has been too Robotics specific. I believe that MS needs to acknowledge that most people are using the CCR in issolation from the DSS and Robotics Studio.</p> http://stackoverflow.com/questions/1401881/in-silverlight-3-0-can-i-create-a-data-template-in-an-external-file-that-include 0 In Silverlight 3.0, can I create a data template in an external file that includes a reference to an event handler? Brad Tutterow 2009-09-09T20:23:46Z 2009-12-07T00:00:04Z <p>Is it possible to include an event handler reference in a data template that is not associated with the code-behind where the event handler is defined? I'm getting a PARSER-BAD-PROPERTY-VALUE when trying to pull this off.</p> <p>For example, let's say I have this very simple XAML.</p> <p><strong>page.xaml</strong></p> <pre><code>&lt;DataTemplate x:Key="ItemsTemplate"&gt; &lt;HyperlinkButton Click="HyperlinkButton_Click" /&gt; &lt;/DataTemplate&gt; &lt;ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" /&gt; </code></pre> <p>This works fine since the event handler *HyperlinkButton_Click* is in the code-behind for page.xaml.</p> <p>BUT ... when I move the data template to another file ...</p> <p><strong>resources.xaml</strong></p> <pre><code>&lt;DataTemplate x:Key="ItemsTemplate"&gt; &lt;HyperlinkButton Click="HyperlinkButton_Click" /&gt; &lt;/DataTemplate&gt; </code></pre> <p><strong>page.xaml</strong></p> <pre><code>&lt;ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" /&gt; </code></pre> <p>... Silverlight seems to lose track of what I'm doing and I get the PARSER-BAD-PROPERTY-VALUE error.</p> http://stackoverflow.com/questions/1844578/intro-to-x86-assembly-with-windows 0 Intro To x86 Assembly With Windows Onorio Catenacci 2009-12-04T02:59:26Z 2009-12-06T08:06:59Z <p>There's a chapter in Robbins' <em><a href="http://www.worldcat.org/oclc/80061562&amp;referer=brief%5Fresults" rel="nofollow">Debugging Microsoft Windows Applications</a></em> where he discusses the assembly code created for Windows apps. This is a community wiki question--please post links to other books, websites, blogs, articles etc. which discuss the x86 assembly code generated by Windows. I'm looking for a little more in-depth discussion of assembly and Windows. </p> <p>If this was asked and answered somewhere else, please post a link and I'll close this question.</p> http://stackoverflow.com/questions/1853622/how-to-get-instance-id-with-php 1 How to get instance ID with PHP eyze 2009-12-05T22:05:57Z 2009-12-05T22:24:57Z <p>I'm looking for a way to get the instance ID of a given object / resource with PHP, the same way var_dump() does:</p> <pre><code>var_dump(curl_init()); // resource #1 of type curl var_dump(curl_init()); // resource #2 of type curl </code></pre> <p>How can I get the instance count without calling var_dump()? Is it possible?</p> http://stackoverflow.com/questions/1535027/app-domain-restarts-when-resx-file-changes-any-way-to-avoid-this 0 App domain restarts when .resx file changes. Any way to avoid this? frankadelic 2009-10-08T00:51:01Z 2009-12-05T21:27:01Z <p>I have an ASP.NET app with many .resx (resource) files used for localized user controls and pages.</p> <p>We would like these files to be editable on-the-fly.</p> <p>However, we have noticed that editing these files on the web server causes the app domain to reload, which causes the server to slow down for about a minute while the app domain restarts.</p> <p>Is there any way to permit editing of these files without causing the app domain to restart?</p> http://stackoverflow.com/questions/1850012/eclipse-indexer-implementation 1 Eclipse indexer implementation Peter Štibraný 2009-12-04T22:16:40Z 2009-12-05T15:59:02Z <p>I'd like to implement eclipse plugin, which parses .properties files and remembers keys from these files for quick-searching them. It should work similar to Open Type or Open Resource, but with property keys.</p> <p>I don't know what is best practice for implementing such plugin. Should it work as an builder? Should it register itself for workspace changes, and parse files on change? How can I quickly find all *.properties files via resources API?</p> http://stackoverflow.com/questions/244807/how-to-use-image-resource-in-asp-net-website 1 How to use image resource in asp.net website? Chris Lively 2008-10-28T20:44:32Z 2009-12-04T14:39:11Z <p>I have a c# site which makes use of a lot of images with embedded english text. </p> <p>How can I use a standard resource file to swap out images depending on the language?</p> <p>I have a resx file in my App_GlobalResources directory, but I can't seem to get it plugged into an asp:image control for the imageurl correctly.</p> <p>Ideas?</p> <p><strong>UPDATE:</strong> </p> <p>For some further information, here is the image tag code:</p> <pre><code>&lt;asp:image runat="server" ID="img2" ImageUrl="&lt;%$Resources: Resource, cs_logo %&gt;" /&gt; </code></pre> <p>The result on the client side is:</p> <pre><code>&lt;img id="img2" src="System.Drawing.Bitmap" style="border-width:0px;" /&gt; </code></pre> <p>Note that the source is obviously not what I expected...</p> http://stackoverflow.com/questions/1843051/winforms-strings-in-resource-files-wired-up-in-designer 0 WinForms strings in resource files, wired up in designer Danny Tuppeny 2009-12-03T21:29:34Z 2009-12-04T08:21:50Z <p>I'm trying to localise a WinForms app for multiple languages. I'm trying to find a way to set my form labels/buttons text properties to read from the resources file in the designer (rather than having to maintain a chunk of code that sets them programatically).</p> <p>I've found I can set form.Localizable=true, but then the resources are read from a file alongside the form, but many of mine are shared across multiple forms.</p> <p>Is there any way to set a label's text in the designer, to a value stored in a project-level resx file?</p> http://stackoverflow.com/questions/1839546/resrouce-consumption-in-wpf 0 Resrouce consumption in WPF manemawanna 2009-12-03T12:14:03Z 2009-12-03T13:56:15Z <p>Hello,</p> <p>I'm looking at WPF to develop the front-end of a proposed application where I work and really I'm here just looking for other peoples experiences of how memory intensive WPF applications are in general?</p> <p>I've tried a few openly avaliable applications and to me they seem pretty memory intensive, so what are your experiences, with WPF and its use of resources, or do you have any tips as to how resource consumption can be reduced?</p> <p>If you do have any tips thanks, I'm just looking at the kind of consumption I'll be expecting and if it will be viable to build the front end using it and hopefully this can help others who have used or looking to use it.</p> http://stackoverflow.com/questions/1835163/iphone-cross-platform-references-and-referencing-external-framework-resources 0 iphone: cross platform references and referencing external framework resources dan 2009-12-02T19:15:59Z 2009-12-02T19:15:59Z <p>hi there</p> <p>working on an iphone app and separate framework.</p> <p>the separate framework is for an API that i'm building for use in multiple future apps.</p> <p>this api now needs to reference resources (images). what i would like to do is keep the resources WITH the API framework as local set of resources. </p> <p>i followed the instructions from <a href="http://www.clintharris.net/2009/iphone-app-shared-libraries/" rel="nofollow">http://www.clintharris.net/2009/iphone-app-shared-libraries/</a> to setup my app's project to use the headers from the separate API framework.</p> <p>what i can't seem to figure out is how to automatically load the framework's resources into the app's xcode environment so they can be linked in at app compile time.</p> <p>sure, i can drag the resources across from the framework into the main app's set of resources. but that seems kinda ugly and another step that possibly can be automated (??) anyone know of a better way? it would be great if any changes from the framework would be automatically available in the main app (due to the project 'link-age').</p> <p>thanks for any help/tips/suggestions...</p> http://stackoverflow.com/questions/1107906/how-do-i-access-getglobalresourceobject-function-from-a-class-that-is-not-a-page 0 How do I access GetGlobalResourceObject function from a class that is not a page? Shimmy 2009-07-10T05:50:15Z 2009-12-02T13:20:18Z <p>Hi, I have a class in my asp.net proj, I would like to get access GetGlobalResourceObject (that page exposes), from anywhere in the site, possible?</p> <p>In other words I wanna access the global resources from a class that is not a page I don't care how.</p> http://stackoverflow.com/questions/1828067/moving-from-vb-net-to-c 1 Moving from VB.Net to C# Joe 2009-12-01T18:43:46Z 2009-12-01T19:15:48Z <p>I'm seriously considering moving from VB.Net to C#. If you made the jump to C# from vb.net, then what were the best resources you used to learn the language going from novice to pro?</p> <p>Thanks</p> http://stackoverflow.com/questions/1825574/c-how-to-get-a-resource-string-from-a-certain-culture 1 C#: How to get a resource string from a certain culture Svish 2009-12-01T11:28:22Z 2009-12-01T11:44:29Z <p>I have a resource assembly with translated texts in various languages. Project kind of looks like this:</p> <ul> <li>FooBar.resx</li> <li>FooBar.nb-NO.resx</li> <li>FooBar.sv-SE.resx</li> <li>...</li> </ul> <p>I can get the texts using static properties like this:</p> <pre><code>var value = FooBar.Hello; </code></pre> <p>Or by using reflection like this:</p> <pre><code>var value = resourceAssembly .GetType("Namespace.FooBar") .GetProperty("Hello") .GetValue(null, null) as string; </code></pre> <p>Both ways will get me the value belonging to the current UI culture of the current thread. Which is fine and totally what I would usually like.</p> <p>But, is there something I can do if I explicitly want for example the Swedish value, without having to change the UI culture?</p> http://stackoverflow.com/questions/1178048/could-someone-recommend-a-good-online-video-to-learn-uml 1 could someone recommend a good online video to learn UML ? Shore 2009-07-24T14:25:53Z 2009-12-01T02:00:04Z <p>I've found this one: <a href="http://www.softwaretrainingtutorials.com/uml.php" rel="nofollow">http://www.softwaretrainingtutorials.com/uml.php</a></p> <p>but that's not complete!</p> http://stackoverflow.com/questions/1155369/javascript-performance-evaluation 2 JavaScript Performance Evaluation NateDSaint 2009-07-20T19:15:00Z 2009-11-30T22:09:40Z <p><em>background:</em></p> <p>I've searched around for a reference, or possibly a tool, that helps you theoretically evaluate the efficiency (resource cost) of your JavaScript. This search has turned up a lot of excellent debugging software, but I can't really find something that helps me optimize the code, by utilizing less resource-intensive methods.</p> <p><em>question:</em></p> <p><strong>Is there any resource (online guide, list, database, book, anything) or perhaps some software (web-based, browser plugin, IDE extension) that will help you optimize your JavaScript?</strong></p> <p><em>example:</em></p> <p><code>innerText</code> in IE / <code>textContent</code> in Firefox requires far fewer resources than <code>innerHTML</code> in either browser.</p> <p>That one is kinda common sense, because it's less powerful, but there are other comparisons I hear about on a daily basis, and can't really verify if they are in fact better for optimized code or more efficient, and even if I could I have no way to test it!</p> <p>Any ideas? </p> http://stackoverflow.com/questions/1814347/uiimage-not-being-loaded-but-file-is-there 0 UIImage not being loaded but file is there. Nick 2009-11-29T01:24:10Z 2009-11-29T01:42:02Z <p>Hey guys,</p> <p>I can't seem to load an image, but I'm sure it is at the path I specify.</p> <p>Here is the code that tries to load the image:</p> <pre>- (UIImage*) CPPlistImageToUIImage: (NSString *) CPPlistImage { /*TODO: Is this a memory leak? Find out*/ UIImage * ret = [UIImage imageNamed: CPPlistImage]; if(ret == nil){ RDLogString(@"Warning: Failed to load image: \"%@\"", CPPlistImage); } return ret; }</pre> And here is a function that lists all the files in the directory where this function looks: <pre> - (void) lsOwnDirectory { NSError * error = [[NSError alloc] init]; NSArray * files = [[NSFileManager defaultManager] contentsOfDirectoryAtPath: pathToOwnDirectory error: &error]; for(NSString * file in files){ RDLogString(@"%@", file); } }</pre> And here is a sample of the output of both functions in the same run: <pre> // CPPlist...Image telling he can't find/load the image 2009-11-29 02:12:51.510 CPPlayer[6452:207] CPConversation.m:113 Warning: Failed to load image: "/Users/nick/Library/Application Support/iPhone Simulator/User/Applications/D3403591-3A56-4F05-B4C1-C21DAAF918A2/CPPlayer.app/CP.Resources/CP.Conversations/Supermarkt/OIGNONS.png" ... // lsOwnDirectory is called AFTER CPPList...Image 2009-11-29 02:12:51.557 CPPlayer[6452:207] RootViewController.m:81 Contents of /Users/nick/Library/Application Support/iPhone Simulator/User/Applications/D3403591-3A56-4F05-B4C1-C21DAAF918A2/CPPlayer.app/CP.Resources/CP.Conversations/Supermarkt 2009-11-29 02:12:51.566 CPPlayer[6452:207] CPConversation.m:133 audio 2009-11-29 02:12:51.567 CPPlayer[6452:207] CPConversation.m:133 CPConversation.plist 2009-11-29 02:12:51.568 CPPlayer[6452:207] CPConversation.m:133 CPData.sqlite 2009-11-29 02:12:51.569 CPPlayer[6452:207] CPConversation.m:133 images 2009-11-29 02:12:51.570 CPPlayer[6452:207] CPConversation.m:133 OIGNONS.png </pre> <p>I have no clue why it can't find the file. One function sees it, the other does not, they seem to look in the same directory...</p> <p>Any help, greatly appreciated,</p> <p>Thanks in advance, Nick</p> <p>Edit: I forgot to add that the code is executed and compiled by xcode for the iPhone OS 3.0. You probably got that from the tags but still.</p> http://stackoverflow.com/questions/1812209/finding-free-individual-note-sounds-for-procedural-music 0 Finding free individual note sounds for procedural music RCIX 2009-11-28T10:41:31Z 2009-11-28T12:17:45Z <p>If you want to make procedural music, generally you're going to need individual note sounds (for whatever instrument) which you can string together. Is there somewhere i can get these for free, preferably usable for commercial purposes?</p> http://stackoverflow.com/questions/1808673/how-to-include-resources-in-iphone-static-library 1 How to include resources in iphone static library ? CodeFlakes 2009-11-27T13:07:16Z 2009-11-27T19:43:18Z <p>I'd like to include files, data and images in a static library API so the users won't need to include them manually in their project. I see that there isn't obvious way to do it but is there some hack or workaround to achieve this goal ? Thanks</p> http://stackoverflow.com/questions/1023371/xcode-different-resources-for-different-targets 1 XCode Different Resources For Different Targets FlorianZ 2009-06-21T07:27:50Z 2009-11-27T08:08:31Z <p>Hi.</p> <p>I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode project.</p> <p>Now, I want to have the Lite target copy only a subset of the resource files to the bundle. But, xcode won't simply let me delete individual files from the "Copy Files to Bundle" build step, since I imported all my resources as folder references. I need this in order to maintain a directory structure in the resources directory.</p> <p>How do I solve this problem? Any suggestions or ideas are greatly appreciated!</p> <p>Flo</p> http://stackoverflow.com/questions/1801756/can-someone-please-explain-to-me-in-clear-laymans-terms-what-the-deal-is-with-m 3 Can someone please explain to me in clear, layman's terms what the deal is with mapped resources and named routes in Ruby on Rails? Ash 2009-11-26T05:49:23Z 2009-11-26T08:55:08Z <p>I've been using Ruby for the first time on a project at my work, so I am still somewhat learning the ropes (and loving every minute of it).</p> <p>While I understand the point of the <code>map.connect</code> functions in the route.rb file, I don't understand the "resources" and "named route" features of Rails. I have my Rails book here and read it over several times, but I still don't get it. The named routes I kinda get - I think that they are either rules, either explicitly defined, or calculated by a code block, but the resources are a complete mystery to me; the only thing I've gleamed rom them is that you just NEED them if you want some of the cool stuff to work, such as being able to call 'resource_path' (and its awesome related family of methods).</p> <p>My current project has:</p> <pre><code>map.resources :application_forms map.resources :sections map.resources :questions map.resources :seed_answers map.resources :question_types map.resources :form_questions map.resources :rules map.resources :form_rules </code></pre> <p>..but my Rails book has this awesome kinda "has_many" and "only" type hashes and parameters hanging off them and I can't work out exactly when I am supposed to use them, nor what the benefit is. </p> <p>Can anyone set me straight?</p> http://stackoverflow.com/questions/1801912/iphone-string-resource-not-resolved 0 iPhone: string resource not resolved Seva Alekseyev 2009-11-26T06:38:54Z 2009-11-26T08:29:37Z <p>Hi all, preemptive sorry for the newbie question.</p> <p>I'm trying to load strings from a resource file in an iPhone project (XCode, Objective C++). I've created a file called s.strings with the following content:</p> <pre><code>/* s.strings Created by Seva on 11/22/09. */ "a"="b" </code></pre> <p>The file is in UTF-16, it's in the Resources folder in the project, XCode treats it as "text.plist.strings". There are no localizations to this file.</p> <p>Then I'm trying to load that string on application start:</p> <pre><code>NSString *s = NSLocalizedStringFromTable(@"a", @"s", nil); </code></pre> <p>No matter what I do, the value of s is "a", as opposed to "b".</p> <p>I must be missing something very basic - any ideas, please, what's wrong in this trivial example?</p> http://stackoverflow.com/questions/1361495/blackberry-how-to-retrieve-images-from-a-zip-resource-file 0 Blackberry - How to retrieve images from a zip resource file? Jessu 2009-09-01T09:32:18Z 2009-11-26T06:57:38Z <p>I am using eclipse &amp; JDE to develop Blackberry Application. I compressed a folder which has set of images in .jpg and .png formats. Please help me, how to retrieve images form the zipped file?</p> <p>Thank you.....</p> http://stackoverflow.com/questions/1800642/where-to-get-some-resources-to-learn-hypertalk 0 Where To Get Some Resources To Learn HyperTalk? Nathan Campos 2009-11-25T23:23:17Z 2009-11-25T23:40:44Z <p>Hello,</p> <p>I'm now emulating a Macintosh IIci(System 7.5.5 68k) and now I want to learn HyperTalk(HyperCard), but I don't know where to start, then if someone can help me I will be very happy! <strong>:D</strong></p> http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources 0 What's limiting my PHP resources? bigmattyh 2009-11-25T21:19:58Z 2009-11-25T22:27:48Z <p>I'm having a problem getting more memory out of PHP.</p> <p>This is the error message:</p> <pre><code>Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 82 bytes) in ... </code></pre> <p>Yet:</p> <p>I've set memory_limit in the php.ini file to 32M:</p> <pre><code>memory_limit = 32M; </code></pre> <p>I've also tried to override it manually in the actual script:</p> <pre><code>ini_set('memory_limit', '32M'); </code></pre> <p>And -- here's where I'm lost -- I've confirmed via phpinfo() that this php.ini file is the actual ini file used, and the memory_limit seems to be set correctly. The line on memory_limit gives this:</p> <pre><code>memory_limit 32M 32M </code></pre> <p>So it would seem that everything is configured properly, but I'm only getting 20971520 bytes (~20M).</p> <p>Where else should I be looking to figure out where this limitation is being imposed?</p> <p><strong>EDIT:</strong> I'm running php under nginx/fastcgi, on Ubuntu 9.04 in a VPS. The php-cgi processes do seem to be a bit resource-hungry (RES=25m, VIRT=187m), but I have 10m of physical memory free and 500m of swap space free.</p> http://stackoverflow.com/questions/1798345/embedding-native-win32-resources-into-net-assembly 0 Embedding native win32 resources into .NET assembly? aloneguid 2009-11-25T16:55:25Z 2009-11-25T16:58:48Z <p>Is it possible to embed a .net resource (resx) into compiled assembly as a native win32 resource? Like I need an array of native resource images writing my MMC custom snap-in.</p> http://stackoverflow.com/questions/1685148/writing-compilers-whats-right-and-whats-wrong 8 Writing compilers ... what's right and what's wrong? unknown (google) 2009-11-06T03:03:32Z 2009-11-25T05:05:57Z <p>Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition somewhere.</p> <p>I use Bison and Flex right now but I'm getting the feeling that this method is outdated. Is this true? Is this a good forward-compatible way to proceed with writing a full fledged programming language?</p> <p>In a sea of different concepts and tools (ANTLR, LL(k), GLR, LALR, LLVM, Flex, Bison) What's the current trend and best practices for writing compilers? Is the dragon book out of date?</p> http://stackoverflow.com/questions/1785387/check-if-a-packed-resource-exists-in-wpf 0 Check if a packed resource exists in WPF James Cadd 2009-11-23T19:23:57Z 2009-11-24T17:15:48Z <p>Is there a way to check in code if a resource exists at an Uri such as:</p> <pre><code>"pack://application:,,,/MyResource.jpg" </code></pre>