active questions tagged large - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:41:58Z http://stackoverflow.com/feeds/tag/large http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1746140/create-image-cache-large-png-images 0 create image cache - large png images Paul Mitchell 2009-11-17T01:59:29Z 2009-11-17T02:06:06Z <p>Hi all</p> <p>I am a first time poster. I have a problem that seems very common to a lot of people but I can't seem to find or decipher an answer anywhere.</p> <p>The game I'm making has 3 rather large sprites on screen (230 high) x various widths. Each sprite has 3 1024x1024 character sheets where the frames of animations are taken from. </p> <p>I've experimented with PVR's but at that size they are absolutely horrible so I want to keep PNG's. </p> <p>From other information I believe that the device can handle 3 1024x1024 PNGs in memory without memory warnings.</p> <p>My problem is I end up with 9 as if I don't use imagenamed then the time it takes to load the sheet from disk is unacceptable.</p> <p>I have created a NSMutableDictionary to store the data from the png image sheets into, but here lies my problem.</p> <p>How do I add uncompressed png data to the NSMutableDictionary without using imagenamed? If I add it in uncompressed (imagewithcontents of file) then there is still a massive loading time when I get the image from the cache.</p> <p>I need to somehow store it uncompressed in the NSMutableDictionary - Assign it to the image of the sprite (sprites are UIImageViews) so that it doesn't get stored as it does if I use imageNamed.</p> <p>Completely free the png from texture memeory if I need to change the sheet the sprite is grabbing the frames from. (not from my NSMutableDictionary cache)</p> <p>thanks in advance -</p> http://stackoverflow.com/questions/1739133/storing-and-accessing-large-amounts-of-data 0 Storing and accessing large amounts of data pns 2009-11-15T22:43:02Z 2009-11-15T23:03:56Z <p>Hello,</p> <p>My application creates pieces of data that, in xml, would look like this:</p> <pre><code>&lt;resource url="someurl"&gt; &lt;term&gt; &lt;name&gt;somename&lt;/name&gt; &lt;frequency&gt;somenumber&lt;/frequency&gt; &lt;/term&gt; ... ... ... &lt;/resource&gt; </code></pre> <p>This is how I'm storing these "resources" now. A resource per XML file. As many "term" per "resource" as needed. The problem is, I'll need to generate about 2 million of these resources. I've generated almost 500.000 and my mac isn't very happy about it. So my question is: how should I store this data?</p> <ul> <li>A database? that would be hard, because the structure of the data isn't fixed...</li> <li>Maybe merge some resources into larger XML files?</li> <li>...?</li> </ul> <p>I don't need to change the data once it's created. Right now I'm accessing a specific resource by the name of that resource's file.</p> <p>Any suggestions are greatly appreciated!</p> http://stackoverflow.com/questions/1721479/who-judges-and-keeps-the-quality-of-the-code-within-a-team-of-programmers 2 Who judges and keeps the quality of the code within a team of programmers? pencilcake 2009-11-12T11:10:20Z 2009-11-12T11:51:58Z <p>Hi,</p> <p>Even there are some coding conventions in a software development team, if there are more than 7-8 people coding on the same solution, who or what mechanism assures the standardizing and keeping the quality of the code? </p> <p>How do they handle this in large projects, so that when a new programmer joins the team won't feel like Alice in wonderland?</p> <p>thanks.</p> http://stackoverflow.com/questions/1701486/ajax-large-screen-refresh 0 Ajax large screen refresh JD 2009-11-09T14:49:30Z 2009-11-09T14:49:30Z <p>Hi Guys,, I have an Ajax page where a chart and a graph are displayed on the page, say 50% of the page is updated. When the next request is sent off the chart and graph are redrawn and I am unable to find a way to make this look professional, especially on slower computers. I am using Fusion Charts for the chart, Ajax and jQuery.</p> <p>Any ideas would be appreciated. </p> http://stackoverflow.com/questions/1687326/unable-to-create-snapshot-of-canvas 0 Unable to create snapshot of Canvas krishna 2009-11-06T12:40:35Z 2009-11-06T19:20:04Z <p>Hi,</p> <p>In my application a canvas object have height=90 px &amp; width =86400 px (indicating 24 hrs 1sex/pixel). The canvas is scrollable and User can add delete components in that.</p> <p>Now, i want to have snapshot of whole canvas &amp; shrink it to size 910x30 to draw taken snapshot in another canvas.</p> <p>Can anybody tell me how to take snapshot of such large Component ??</p> <p>I have tried to take snapshot in BitmapData object but as it max width is 2880 can not give whole canvas snapshot.</p> <p>Is there any other Idea possible, if yes plz let me know.</p> <p>Suggestions are welcome. </p> http://stackoverflow.com/questions/1671302/loading-and-analyzing-massive-amounts-of-data 5 Loading and analyzing massive amounts of data Reverend Gonzo 2009-11-04T01:57:03Z 2009-11-06T09:01:12Z <p>So for some research work, I need to analyze a ton of raw movement data (currently almost a gig of data, and growing) and spit out quantitative information and plots.</p> <p>I wrote most of it using Groovy (with JFreeChart for charting) and when performance became an issue, I rewrote the core parts in Java.</p> <p>The problem is that analysis and plotting takes about a minute, whereas loading all of the data takes about 5-10 minutes. As you can imagine, this gets really annoying when I want to make small changes to plots and see the output.</p> <p>I have a couple ideas on fixing this:</p> <p>1) Load all of the data into a SQLite database. Pros: It'll be fast. I'll be able to run SQL to get aggregate data if I need to.</p> <p>Cons: I have to write all that code. Also, for some of the plots, I need access to each point of data, so loading a couple hundred thousand files, some parts may still be slow.</p> <p>2) Java RMI to return the object. All the data gets loaded into one root object, which, when serialized, is about 200 megs. I'm not sure how long it would take to transfer a 200meg object through RMI. (same client).</p> <p>I'd have to run the server and load all the data but that's not a big deal.</p> <p>Major pro: this should take the least amount of time to write</p> <p>3) Run a server that loads the data and executes a groovy script on command within the server vm. Overall, this seems like the best idea (for implementation time vs performance as well as other long term benefits)</p> <p>What I'd like to know is have other people tackled this problem?</p> http://stackoverflow.com/questions/1683371/store-large-lists-of-data-in-iphone-app-so-they-are-available-to-the-ui 1 Store large lists of data in iPhone app so they are available to the UI RickiG 2009-11-05T20:29:06Z 2009-11-05T20:35:51Z <p>Hi</p> <p>A bit cryptic, which is also what drives me to start a thread in here, I simply can't find the words to Google the challenge.</p> <p>Im building an app that will have 2 search views that displays 1400 and 16000 possible choices. It is plain lists, no relational or otherwise spanning data.</p> <p>As far as I can figure out I have 3 possibilities:</p> <p>1: Write a script to have it preloaded into my Core Data Model and pull it from there when I need the list.</p> <p>2: Build a plist file I bundle with the app and read the data out from there.</p> <p>3: Put a text/xml/json file into the app and read it from there..</p> <p>4:… oh fourth crazy possibility, actually write a ValueObject.m that contains all these pieces of data.</p> <p>I only need to display them in a tableView with a searchBar, have the user select one and Im done with it. (I pull a string value from the selection and stuff it into my webservice querry) As this is quite some lists, what would be a good way to go about it, I would like to avoid as much parsing/data handling as possible to speed things up.</p> <p>Hope some can point me in a direction so I don't have to speed test each of these possibilities :) or even better someone comes along with a 5. and even better possibility:)</p> <p>Thanks</p> http://stackoverflow.com/questions/1627418/opengl-es-scrolling-3-layer-starfield-textures-gets-me-from-60-40-fps 1 OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS unknown (google) 2009-10-26T21:25:05Z 2009-10-27T03:52:12Z <p>I need to draw the background for a 2D space scrolling shooter. I need to implement 3 layers of stars: one distant nebula (moving really slow) in the background, one layer of far away stars (moving slow) and one layer of close stars (moving normal) on top of the other two.</p> <p>The way i first tried this was using 3 textures of 320 x 480 that were transparent pngs of the stars. I used GL_BLEND and SRC_ALPHA, ONE_MINUS_SRC_ALPHA.</p> <p>The results were not great even on the 3GS. On the first generation devices the FPS dropped to 40..50 so i think i'm doing this the wrong way.</p> <p>When i disable the GL_BLEND everything works great even on the 1st gen devices and the FPS is back to 60 again... so it's must be the fact that i'm trying to belnd large transparent textures.</p> <p>The problem is i don't know how to do it some other way...</p> <p>Should i draw only the first nebula like an opaque texture and then try to emulate the middle and top star layer with small points moving around the screen?</p> <p>Is there any other approach on the blending issue? How can i speed up the rendering process? Is one big texture (tileset) the answer?</p> <p>Please help me cuz i'm stuck here and i can't get out.</p> http://stackoverflow.com/questions/1463011/best-way-of-storing-very-large-number-of-objects-in-memory 0 Best way of storing very large number of objects in memory? Sapphire 2009-09-22T22:38:12Z 2009-10-18T21:05:23Z <p>Very simple question, what would be your way of storing 100 KB - 2 MB objects in memory? Object is made of 3 doubles and two strings (both mostly under 5 chars long). Would using struct instead of class be any better? </p> <p>EDIT: I don't know why I said double, it is float .. :S</p> http://stackoverflow.com/questions/1568242/what-is-the-best-program-to-use-to-create-a-large-poster 0 What is the best program to use to create a large poster? [closed] gersh 2009-10-14T18:50:20Z 2009-10-14T18:56:55Z <p>I'm trying to make a really big poster, but it seems too big for programs like Illustrator or Photoshop. What is a good program to use for it? I'd also like to be able to tile it, so it can be printed on a standard printer. Most programs seem to have some pretty tight size limitations.</p> http://stackoverflow.com/questions/1101913/is-there-a-more-efficient-way-to-reconcile-large-data-sets 1 Is there a more efficient way to reconcile large data sets? Chris 2009-07-09T05:05:12Z 2009-10-06T16:55:53Z <p>I've been tasked with reconciling two big data sets (two big lists of transactions). Basically i extract the relevant fields from the two data sources into two files of the same format, then compare the files to find any records that are in A but not in B, or vice versa, and report on them. I wrote a blog entry on <a href="http://splinter.com.au/blog/?p=135" rel="nofollow">my best efforts achieving this (click if interested).</a></p> <p>The gist of it is to load both data sets into a big hash table, with the keys being the rows, and the values being +1 each time it appears in file A, and -1 each time it appears in file B. Then at the end, i look for any key/value pairs where the value != 0.</p> <p>My algorithm seems fast enough (10 seconds for 2*100mb files), however its a bit memory-intensive: 280mb to compare two sets of 100mb files, i would hope to get it down to 100mb peak memory usage, and possibly lower if the two data sets are sorted in roughly the same order.</p> <p>Any ideas?</p> <p>Also, let me know if this is too open ended for SO.</p> http://stackoverflow.com/questions/1519512/how-to-send-large-file-from-client-to-server-using-wcf-in-c 1 How to Send Large File From Client To Server Using WCF in C#? Charan 2009-10-05T11:24:22Z 2009-10-06T11:26:59Z <p>How to Send Large File From Client To Server Using WCF in C#? Below the configuration code.</p> <pre><code>&lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="HttpStreaming_IStreamingSample" maxReceivedMessageSize="67108864" transferMode="Streamed"&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://localhost:4127/StreamingSample.svc" binding="basicHttpBinding" bindingConfiguration="HttpStreaming_IStreamingSample" contract="StreamingSample.IStreamingSample" name="HttpStreaming_IStreamingSample" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/1504644/which-tool-to-use-for-drawing-large-scatterplots 0 Which tool to use for drawing large scatterplots tful 2009-10-01T15:28:58Z 2009-10-01T15:46:15Z <p>For drawing Scatter plots of >100K points, Excel 2007/10 hangs under repeated refresh.</p> <p>What is a better tools for such tasks. I have 4 GB ram etc on this machine.</p> http://stackoverflow.com/questions/1488653/large-file-upload-into-wss-v3 1 Large file upload into WSS v3 Rubens Farias 2009-09-28T18:39:23Z 2009-09-30T13:31:46Z <p>I'd built an WSSv3 application which upload files in small chunks; when every data piece arrives, I temporarly keep it into a SQL 2005 image data type field for performance reasons**.</p> <p>Problem come when upload ends; I need to move data from my SQL Server to Sharepoint Document Library through WSSv3 object model.</p> <p>Right now, I can think two approaches:</p> <pre><code>SPFileCollection.Add(string, (byte[])reader[0]); // OutOfMemoryException</code></pre> <p>and</p> <pre><code>SPFile file = folder.Files.Add("filename", new byte[]{ }); using(Stream stream = file.OpenBinaryStream()) { // ... init vars and stuff ... while ((bytes = reader.GetBytes(0, offset, buffer, 0, BUFFER_SIZE)) > 0) { stream.Write(buffer, 0, (int)bytes); // Timeout issues } file.SaveBinary(stream); } </code></pre> <p>Are there any other way to complete successfully this task?</p> <p>** Performance reasons: if you tries to write every chunk directly at Sharepoint, you'll note a performance degradation as file grows up (>100Mb).</p> http://stackoverflow.com/questions/1214000/read-large-file-into-sqlite-table-in-objective-c-on-iphone 1 Read large file into sqlite table in objective-C on iPhone James Testa 2009-07-31T18:04:58Z 2009-09-30T05:21:17Z <p>I have a 2 MB file, not too large, that I'd like to put into an sqlite database so that I can search it. There are about 30K entries that are in CSV format, with six fields per line. My understanding is that sqlite on the iPhone can handle a database of this size.</p> <p>I have taken a few approaches but they have all been slow > 30 s. I've tried:</p> <p>1) Using C code to read the file and parse the fields into arrays.</p> <p>2) Using the following Objective-C code to parse the file and put it into directly into the sqlite database:</p> <pre><code>NSString *file_text = [NSString stringWithContentsOfFile: filePath usedEncoding: NULL error: NULL]; NSArray *lineArray = [file_text componentsSeparatedByString:@"\n"]; for(int k = 0; k &lt; [lineArray count]; k++){ NSArray *parts = [[lineArray objectAtIndex:k] componentsSeparatedByString: @","]; NSString *field0 = [parts objectAtIndex:0]; NSString *field2 = [parts objectAtIndex:2]; NSString *field3 = [parts objectAtIndex:3]; NSString *loadSQLi = [[NSString alloc] initWithFormat: @"INSERT INTO TABLE (TABLE, FIELD0, FIELD2, FIELD3) VALUES ('%@', '%@', '%@');",field0, field2, field3]; if (sqlite3_exec (db_table, [loadSQLi UTF8String], NULL, NULL, &amp;errorMsg) != SQLITE_OK) { sqlite3_close(db_table); NSAssert1(0, @"Error loading table: %s", errorMsg); } </code></pre> <p>Am I missing something? Does anyone know of a fast way to get the file into a database? </p> <p>Or is it possible to translate the file into a sqlite format that can be read directly into sqlite?</p> <p>Or should I turn the file into a plist and load it into a Dictionary? Unfortunately I need to search on two of the fields, and I think a Dictionary can only have one key?</p> <p>Jim</p> http://stackoverflow.com/questions/872538/delphi-database-server 0 Delphi - Database Server Aldo 2009-05-16T14:33:38Z 2009-09-23T11:06:04Z <p>Hello everyone.</p> <p>Which of the Database servers would you people recommend for using in a moderate-to-large scale (will vary from customer to customer) application.</p> <p>I know MS SQL but since the app will be developed using delphi the .net framework is kind of annoying to deploy aswell. Also how realiable is Interbase.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/849813/large-numbers-in-java 5 Large Numbers in Java Petey B 2009-05-11T20:02:50Z 2009-09-23T01:13:33Z <p>How would i go about doing calculations with extremely large numbers in Java? i have tried long but that maxes out at 9223372036854775807, and when using an integer it does not save enough digits and therefore is not accurate enough for what i need. Is there anyway around this?</p> http://stackoverflow.com/questions/473797/how-to-build-large-applications 13 How to build large applications Mr Grieves 2009-01-23T17:34:38Z 2009-09-16T18:59:09Z <p>I think I've become quite good at the basics of programming (for a variety of languages). I can write a *good** line of code. I can write a <em>good</em> method. I can write a <em>good</em> class. I can write a <em>good</em> group of classes. I can write <em>good</em> small or medium application.</p> <p>I do not however know how to build a <em>good</em> large application. Particularly in the case where multiple technologies are involved and more are likely to become involved with time. Say a project with a large web front-end, a large server back-end that connects to some other integration back-end and finally a large and complex database. Oh, I've been involved in a few of these applications and I could build one I'm sure. I'm not so sure however that it could qualify as "good". </p> <p>My question is thus for a reference to a book or other good source of reading where I could learn how to distribute and organize code and data for general large projects. For example, would I want to layer things very strictly or would I want to encapsulate it independent units instead. Would I want to try to keep most of the logic in the same pool, or should it just be distributed as it seems most logical when adding whatever feature I'm adding. </p> <p>I've seen lots of general principals on these issues (e.g. No spaghetti code, meatball code...) and read a few excellent articles that discuss the matter but I've never encountered a source which would lead me to concrete <strong>practical</strong> knowledge. I realize the difficultly of the question and so I'd be happy to just hear about the readings that others have found to help them in their quest for such knowledge.</p> <p>As always, thank you for your replies.</p> <blockquote> <p>****Given the debated nature of the definition of "good" code, the term "good" in this context won't be defined (it means whatever you think it ought to mean).</p> </blockquote> http://stackoverflow.com/questions/1167062/best-way-to-process-large-xml-in-php 0 Best way to process large XML in PHP Petruza 2009-07-22T17:56:05Z 2009-09-15T20:25:51Z <p>I have to parse large XML files in php, one of them is 6.5 MB and they could be even bigger. The SimpleXML extension as I've read, loads the entire file into an object, which may not be very efficient. In your experience, what would be the best way?</p> http://stackoverflow.com/questions/1191324/strategies-for-writing-expanding-ordered-files-to-disk 0 Strategies for writing expanding ordered files to disk James Matta 2009-07-28T00:18:35Z 2009-09-11T01:53:38Z <p>I an a graduate student of nuclear physics currently working on a data analysis program. The data consists of billions of multidimensional points.</p> <p>Anyways I am using space filling curves to map the multiple dimensions to a single dimension and I am using a B+ tree to index the pages of data. Each page will have some constant maximum number of points within it.</p> <p>As I read the raw data (several hundred gigs) in from the original files and preprocess and index it I need to insert the individual points into pages. Obviously there will be far too many pages to simply store them in memory and then dump them to disk. So my question is this: What is a good strategy for writing the pages to the disk so that there is a minimum of reshuffling of data when a page hits it's maximum size and needs to be split.</p> <p>Based on the comments let me reduce this a little.</p> <p>I have a file that will contain ordered records. These records are being inserted into the file and there are too many of these records to simply do this in memory and then write to the file. What strategy should I use to minimize the amount of reshuffling needed when I insert a record.</p> <p>If this is making any sense at all I would appreciate any solutions to this that you might have.</p> <p>Edit: <br> The data are points in multidimensional spaces. Essentially lists of integers. Each of these integers is 2 bytes but each integer also has an additional 2 bytes of meta-data associated with it. So 4 bytes per coordinate and anywhere between 3 and 20 coordinate. So essentially the data consists of billions of chunks each chunk somewhere between 12 and 100 bytes. (obviously points with 4 dimensions will be located in a different file than points with 5 dimensions once they have been extracted).</p> <p>I am using techniques similar to those discussed in this article: <a href="http://www.ddj.com/184410998" rel="nofollow">http://www.ddj.com/184410998</a></p> <p>Edit 2: I kinda regret asking this question here so consider it officially rescinded; but here is my reason for not using off the shelf products. My data are points that range anywhere from 3 to 22 dimensions. If you think of each point as simply a list you can think of how I want to query the points as what are all the numbers that appeared in the same lists as these numbers. Below are some examples with low dimensionality (and many fewer data points than normal) Example: Data 237, 661, 511, 1021 1047, 661, 237 511, 237, 1021 511, 661, 1047, 1021</p> <pre><code>Queries: 511 1021 237, 661 1021, 1047 511, 237, 1047 Responses: 237, 661, 1021, 237, 1021, 661, 1047, 1021 237, 661, 511, 511, 237, 511, 661, 1047 511, 1021, 1047 511, 661 _ </code></pre> <p>So that is a difficult little problem for most database programs, though I know of some that exist that can handle this well.</p> <p>But the problem gets more complex. Not all the coordinates are the same. Many times we just run with gammasphere by itself and so each coordinate represents a gamma ray energy. But at other times we insert neutron detectors into gammasphere or a detector system called microball, or sometimes the nuclides produced in gammasphere are channeled into the fragment mass analyzer, all those and more detector systems can beused singly or in any combination with gammasphere. Unfortunately we almost always want to be able to select on this additional data in a manner similar to that described above. So now coordinates can have different meanings, if one just has microball in addition to gammasphere you make make up an n dimensional event in as many ways as there are positive solutions to the equation x + y = n. Additionally each coordinate has metadata associated with it. so each of the numbers I showed would have at least 2 additional numbers associated with them, the first, a detector number, for the detector that picked up the event, the second, an effeciency value, to describe how many times that particular gamma ray counts for (since the percentage of gamma rays entering the detector that are actually detected, varies with teh detector and with the energy).</p> <p>I sincerely doubt that any off the shelf database solution can do all these things and perform well at the same time without an enourmous amount of customization. I believe that the time spent on that is better spent on writing my own, much less general, solution. Because of the loss of generality I do not need to implement a delete function for any of the databasing code, I do not need to build secondary indices to gate on different types of coordinates (just one set, effectively counting each point only once), etc.</p> http://stackoverflow.com/questions/1359097/mysql-alter-table-on-very-large-table-is-it-safe-to-run-it 3 MySQL ALTER TABLE on very large table - is it safe to run it? Timothy Mifsud 2009-08-31T19:47:55Z 2009-09-01T18:43:21Z <p>I have a MySQL database with one particular MyISAM table of above 4 million rows. I update this table about once a week with about 2000 new rows. After updating, I then perform the following statement:</p> <p>ALTER TABLE x ORDER BY PK DESC</p> <p>i.e. I order the table in question by the primary key field in descending order. This has not given me any problems on my development machine (Windows with 3GB memory), but, even though 3 times I have tried it successfully on the production Linux server (with 512MB RAM - and achieving the resulted sorted table in about 6 minutes each time), the last time I tried it I had to stop the query after about 30 minutes and rebuild the database from a backup.</p> <p>I have started to wonder whether a 512MB server can cope with that statement (on such a large table) as I have read that a temporary table is created to perform the ALTER TABLE command?! And, if it can be safely run, what should be the expected time for the alteration of the table?</p> <p>Thanks in advance, Tim</p> http://stackoverflow.com/questions/1353223/where-to-put-large-static-files-in-a-tomcat-project 0 Where to put large static files in a tomcat project? noam 2009-08-30T06:21:52Z 2009-08-30T13:59:11Z <p>I have a few relatively big files (Flash movies) which I want to serve. Where should I put them inside my project? I would like not to export them each time I export the .war file, since they take up a lot of space.</p> http://stackoverflow.com/questions/1349171/can-you-link-your-c-projects-dependencies-using-their-objs-and-make-a-single 0 Can you link your C++ project's dependencies using their .objs (and make a single dll)? mr-tambourine-man 2009-08-28T20:29:08Z 2009-08-28T20:58:15Z <p>Hello,</p> <p>I have a C++/CLI project in VS 2008 that has a direct dependency on a native C++ library that, in turn, has four additional native C and C++ library dependencies; some of these dependent projects rely on each other as well. I have source code for all of the libraries and can build them all successfully as separate libraries, but instead of having a multitude of assemblies to distribute, I would really like to consolidate all of them into a single dll containing my managed and unmanaged code.</p> <p>The dependency projects are rather large (~2000 source and header files) so merging them into a 'super-project' is a bit unwieldy. Given some of the blog posts and articles I've read it does seem possible to link them all together; my challenge thus far has been the lack of documentation or first-person accounts of anyone actually trying this. </p> <p>Is this something that can reasonably be done? If not, what alternatives should I consider? Is there a strategy in the building and/or linking process(es) that needs to be considered?</p> http://stackoverflow.com/questions/1053928/python-numpy-very-large-matrices 3 Python Numpy Very Large Matrices Peter 2009-06-28T00:32:21Z 2009-08-19T00:27:02Z <p>Numpy is an extremely useful library, and from using it I've found that it's capable of handling matrices which are quite large (10000x10000) easily, but begins to struggle with anything much larger (trying to create a matrix of 50000x50000 fails). Obviously, this is because of the massive memory requirements. </p> <p>I was wondering if there is a way to create huge matrices natively in numpy (say 1 million by 1 million) in some way (without having several terrabytes of RAM)?</p> http://stackoverflow.com/questions/1133755/does-an-exe-file-size-affect-if-its-icon-is-shown 0 Does an .exe file size affect if its icon is shown? TylerMoore 2009-07-15T20:19:42Z 2009-08-04T17:00:02Z <p>Hello,</p> <p>I have a large cluster of files that I'm trying to pack into a single self-extracting executable and have so far been able to accomplish this with both Installshield 10.5 and Winzip Self-Extractor 4.0, however I cannot get the icon to appear for the final .exe file (right now, windows default white window/blue title icon is being shown)</p> <p>I tried using the utilities built into NSIS, Installshield, Winzip Self-Extractor and even used Reshacker and eXe on the final .exe file to change the icon. According to each solution, the icon files are indeed embedded in the .exe, but they refuse to show in explorer.</p> <p>So, I figured this problem may be related to the large file size of the .exe (1.39 GB), prehaps in scanning the file for .ico's it could not parse the whole file and gives up.</p> <p>I tested this using Winzip Self-Extractor to create a smaller .exe (10 MB) and indeed, the icon shows up, working as intended.</p> <p>However, this does not solve my problem, and I'm stuck at this point. There might be a way to get that icon to show up despite the operating system's trouble but I have not found it yet. If anyone can provide any insight or point me in the right direction, I would appreciate it.</p> <p>I have tested this on: Windows XP Home, 2002, SP2 Windows XP Pro, 2002, SP3</p> http://stackoverflow.com/questions/1220456/navigating-effectively-through-source-code-in-linux 6 Navigating effectively through source code in Linux verma 2009-08-03T02:18:41Z 2009-08-03T11:21:18Z <p>Hello all,</p> <p>I was wondering how people usually navigate through large projects with several source files in Linux environment. I primarily work with C and python and sometimes with C++, C# and Java.</p> <p>I wanted to know specific editors, plugins etc. I used to program on windows so editors like vi and emacs are not really in my league, but if you think if it could be really helpful for me to learn one of these editors please suggest so and any specific plug-ins you use to make your life simpler with managing large projects with these programs.</p> <p>Here are a couple of scenarios: Let's say I am working on a particular function A in file F, and all of a sudden I realize that this function needs to call function B in file G. I quickly need to navigate to that function to determine things like function parameters, take a quick look at the function etc. Another scenario would be working on two different locations at one time in a file and switching quickly between these two locations. </p> <p>I am using eclipse to manage my project and do development (eclipse's auto completion is painfully slow) and geany to edit files individually, but seems like I can't really get to that level of efficiency. </p> <p>Please share your code management and navigation techniques.</p> <p>Thanks,</p> <p>edit: languages</p> http://stackoverflow.com/questions/1212033/dealing-with-gigabytes-of-data 1 Dealing with Gigabytes of Data Vadi 2009-07-31T11:28:06Z 2009-08-02T20:25:59Z <p>I am going to start on with a new project. I need to deal with hundred gigs of data in a .NET application. It is very early stage now to give much detail about this project. Some overview is follows:</p> <ol> <li>Lots of writes and Lots of reads on same tables, very realtime</li> <li>Scaling is very important as the client insists expansion of database servers very frequently, thus, the application servers as well</li> <li>Foreseeing, lots and lots of usage in terms of aggregate queries could be implemented</li> <li>Each row of data may contains lots of attributes to deal with</li> </ol> <p>I am suggesting/having following as a solution:</p> <ol> <li>Use distributed hash table sort of persistence (not S3 but an inhouse one)</li> <li>Use Hadoop/Hive likes (any replacement in .NET?) for any analytical process across the nodes</li> <li>Impelement GUI in ASP.NET/Silverlight (with lots of ajaxification,wherever required)</li> </ol> <p><strong>What do you guys think? Am i making any sense here?</strong></p> http://stackoverflow.com/questions/1199459/batch-windows-30-minutes -1 BATCH Windows: 30 minutes. YourComputerHelpZ 2009-07-29T11:04:42Z 2009-07-29T11:25:09Z <p>Hello,</p> <p>I want to do something:</p> <p>i have a LARGE batch file, but this is what i want to apply to HOLE the batch:</p> <p>After 30 Minutes, it should display a message.</p> <p>How is this possible, and can i set this to the hole batch. I kinda have a lot of stuff in it.</p> http://stackoverflow.com/questions/864570/very-large-uploads-with-php 11 Very large uploads with PHP Evert 2009-05-14T17:09:59Z 2009-07-22T23:25:44Z <p>Hi guys,</p> <p>I want to allow uploads of very large files into our PHP application (hundred of megs - 8 gigs). There are a couple of problems with this however.</p> <p>Browser:</p> <ul> <li>HTML uploads have crappy feedback, we need to either poll for progress (which is a bit silly) or show no feedback at all</li> <li>Flash uploader puts entire file into memory before starting the upload</li> </ul> <p>Server:</p> <ul> <li>PHP forces us to set post_max_size, which could result in an easily exploitable DOS attack. I'd like to not set this setting globally.</li> <li>The server also requires some other variables to be there in the POST vars, such as an secret key. We'd like to be able to refuse the request right away, instead of after the entire file is uploaded.</li> </ul> <p>Requirements:</p> <ul> <li>HTTP is a must.</li> <li>I'm flexible with client-side technology, as long as it works in a browser.</li> <li>PHP is not a requirement, if there's some other technology that will work well on a linux environment, that's perfectly cool.</li> </ul> http://stackoverflow.com/questions/552516/use-php-to-zip-large-files 0 Use php to zip large files Joseph 2009-02-16T07:42:08Z 2009-07-19T19:00:02Z <p>Hi,</p> <p>I have a php form that has a bunch of checkboxes that all contain links to files. Once a user clicks on which checkboxes (files) they want, it then zips up the files and forces a download. </p> <p>I got a simple php zip force download to work, but when one of the files is huge or if someone lets say selects the whole list to zip up and download, my server errors out.</p> <p>I understand that I can increase the server size, but are there any other ways?</p> <p>Thanks!</p>