resources

PHP - Foreach loops and ressources

I'm using a foreach loop to process a large set of items, unfortunately it's using alot of memory. (probably because It's doing a copy of the array). Apparently there is a way to save some memory with the following code: $items = &$array; Isn't it better to use for loops instead? And is there a way to destroy each item as soon as they ...

Java Project Modules - use InputStream/OutputStream or .tmpFile/byte[]

Hi all, I found myself passing InputStream/OutputStream objects around my application modules. I'm wondering if it's better to - save the content to disk and pass something like a Resource between the various methods calls - use a byte[] array instead of having to deal with streams everytime. What's your approach in these situatio...

Getting started with autotools

Anyone recommend how a person could get started with autotools in building a C project? ...

Why keep throws Rescources.NotFoundException?

In the following code, these lines: "score.setText(shops[i].getScore());" and "icon.setImageResource(R.drawable.test1);" the app keep throws the Rescources.NotFoundException. I checked the xml file, all the ids are defined and they are all in the R.java. So I really don't know why the app throw this exception. Could anyone help me on th...

How to search categorywise in the web? are there any categorysearch search engines

Example: I want to search results only from the research papers or I want to search results only from opensource tools/packages/codes Kindly help me ...

Maven - extract /test/resources/my.zip in /target during the Test Phase

Hi all, I've some test resources (that are specific for a particular task) zipped in /test/resources/my.zip. I want to extract the zip content to /target during the maven's Test Phase. Do you know what should I specify in the pom.xml to achieve this? Thanks ...

Working with relative file paths in .Net

I have a C# project where I include some resources which I need to refer using the Uri-class. For this specific problem I have some shaders placed in a "Shaders" folder in the root of the project, but I've had this problem before with other files like images, etc. This far I've used the simple solution giving a fixed absolute path, and m...

C# Form resx usage for programmatic strings?

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. I was wondering if I could use the same resx to add strings which have to be used programmatically and based on cond...

What are some authoritative/respected "best known implementation" websites/resources?

EDIT: Wow, the initial response to this question was quite negative. I think I might have triggered some pretty strong emotions by using the word "best"; it seems like a few people latched onto that word and decided to dismiss my question right away. Obviously, there are many, many situations in which no single approach is "best", or a...

Starting OpenGL Programming "Ultimate" Resource

So I have a class for OpenGL programming next term. I would at least like to have my feet (maybe even my ankles!) wet in the OpenGL pool before the class starts. I am looking for a resource for OpenGL programming, preferably using Visual Studio if at all possible. I know C/C++ and C# pretty well as well as some experience in a handful ...

Directory tree in a Resource without extraction…

Hi all, i am looking for a way to store a complete directory including sub directories in an application's resource and not have to extract it to use it. Details: We would like to use GeckoFx (Gecko as C# Component) in one of our applications. GeckoFX needs the XUL-Runner and needs to find it's folder structure We have some other dat...

Check if a packed resource exists in WPF

Is there a way to check in code if a resource exists at an Uri such as: "pack://application:,,,/MyResource.jpg" ...

ANT: Force error on missing resource?

I've inherited an Ant build system that contains many resource set definitions like this: <files id="app1.lib.jars"> <include name="${java}/jre/lib/jsse.jar"/> <include name="${work.lib}/jtidy.jar"/> ... </files> <files id="app2.lib.jars"> <include name="${work.lib}/itext.jar"/> <include name="${work.lib}/commons-httpclient.j...

Embedding native win32 resources into .NET assembly?

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. ...

What's limiting my PHP resources?

I'm having a problem getting more memory out of PHP. This is the error message: Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 82 bytes) in ... Yet: I've set memory_limit in the php.ini file to 32M: memory_limit = 32M; I've also tried to override it manually in the actual script: ini_set('memory_...

Where To Get Some Resources To Learn HyperTalk?

Hello, 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! :D ...

WPF - where can I find some window layout ideas/examples and resource files that will make my application look better

I enjoy working with WPF but I need a little more of "designer's touch" to my applications. I have been unable to find a good resource for WPF layout examples and color schemes along with the corresponding resource files.Are there any good resources out there to help developers make their applications really "pop". ...

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?

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). While I understand the point of the map.connect 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 se...

iPhone: string resource not resolved

Hi all, preemptive sorry for the newbie question. 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: /* s.strings Created by Seva on 11/22/09. */ "a"="b" The file is in UTF-16, it's in the Resources folder in the project,...

How to include resources in iphone static library ?

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 ...