19
votes
34answers
2k views
Which Version Control System would you use for a 1000+ developer organization? Why?
There are many SCM systems out there. Some open, some closed, some free, some quite expensive. Which one (please choose only one) would you use for a 3000+ developer organization with several sites …
13
votes
12answers
836 views
How to build large applications
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 good method. I can write a good class. I can write a …
11
votes
11answers
628 views
Very large uploads with PHP
Hi guys,
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.
Browser:
HTML uploads have crappy …
6
votes
10answers
229 views
Navigating effectively through source code in Linux
Hello all,
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.
…
5
votes
7answers
168 views
Loading and analyzing massive amounts of data
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.
I wrote most of it using Groovy …
5
votes
8answers
592 views
Linux/perl mmap performance
I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to work on the dataset …
5
votes
5answers
660 views
Large Numbers in Java
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 …
5
votes
10answers
653 views
Handle large data structure in Java
Hi,
I'm working on a Java application that needs working on very large matrices. For example multiplying two 10 million * 10 million matrices!
Of course the Java heap does not have enough space even …
4
votes
9answers
1k views
Python Numpy Very Large Matrices
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 …
4
votes
5answers
138 views
Perform a lot of replacements in a text file using a huge list of replacement pairs
Given:
file a.txt containing many millions
of lines (say, one sentence per line) (2.6 gb!)
file b.txt containing 830k lines with pairs "[word1] [word2]"
Question:
how to perform the most …
3
votes
5answers
264 views
MySQL ALTER TABLE on very large table - is it safe to run it?
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 …
3
votes
3answers
346 views
What to do when you need to store a (very) large number?
Hey, I am trying to do a project euler problem but it involves adding the digits of a very large number. (100!)
Using java, int and long are too small.
Thanks for any suggestions
2
votes
6answers
106 views
Who judges and keeps the quality of the code within a team of programmers?
Hi,
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 …
2
votes
3answers
375 views
programming files of size larger than 2 GB using C#.Net
How to write large content to disk dynamically using c sharp. any advice or reference is appreciated.
Iam trying to create a file(custom format and extension)and writing to it. The User will upload a …
2
votes
5answers
316 views
Export large amounts of data to client in asp.net
Hi,
I need to export a large amount of data (~100mb) from a sql table to a user via the web. What would be the best solution for doing so? One thought was to export the data to a folder on the db …
