|
I find that if there are a lot of classes the compilation time is dramatically increased when I use one *.h and one *.cpp file per class. I already use precompiled headers and incremental linking, but still the compile time is very long (yes I use boost...
Started by Alex Jenter on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
If you create a static library for reuse translation units instead of many small ones because the linker will only include the .obj files containing translation units it....
Is caused by having one .obj file for each translation unit.
|
|
Well I would like to translate some documents from English to Spanish and I have done some trials on Google translate...however I don't know Spanish and therefore can't verify if the documents have been translated correctly...
What would be a way to verify...
Started by Kevin Boyd on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
On some subjects, it comes close to a decent ....
The best one, by far, is Google translate.
There is not even a shadow of a doubt about produce an acceptable translation.
Be 100% sure that a machine translation will contain errors.
|
|
Hi,
I'm sorry for the generic title of this question but I wish I was able to articulate it less generically. :-}
I'd like to write a piece of software (in this case, using C++) which translates a stream of input tokens into a stream of output tokens....
Started by Frerich Raabe on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The other alternative is to have a delimiter character separating your tokens... .
This is the basis for Hamming code.
When designing a data compression algorithm, you need to take care that the beginning of one code can't be mistaken for another shorter code .
|
Ask your Facebook Friends
|
Just wondering if there are preferred (American) English translations over other English translations of the Qur'an? Just trying to find one that is as accurate to the Arabic one as possible. Thanks and sorry if this is a repost.
Started by Karimah on
, 11 posts
by 8 people.
Answer Snippets (Read the full thread at islamicboard):
I like the translation by Yusuf Ali http://www.amazon.com/Quran-Translat...6864621&sr=1-1 Yusuf AliIf you want to get copy of Audio Quran with English translation so there are many resources translation of Quran and that ....
|
|
I am in the process of translating an application into various languages, and I'm wondering if anyone has had experience with any translation services, and I'm not talking about Google Translate. :) Are there any that specialize more in the tech area,...
Started by Jon Tackabury on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Give them a ....
I'm heavily involved in our translation process and tools, but even for me, the people who the translation services offered to you and question them wether they specialize in technical different translation companies.
|
|
Have someone used quercus to translate php into bytecode? if you got a big php application, will the translation be flawless? it sounds to me very impossible to just translate everything without error in code like that.
but they claim on their web page...
Started by noname on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Apparently there are even some performance benefits of doing it this way - probably associated with the difference between compiled... .
Drupal makes very little use of oop and yet it seems to be running fine under quercus .
This guy has drupal running on quercus.
|
|
I've been having a hard time trying to understand PyPy's translation. It looks like something absolutely revolutionary from simply reading the description, however I'm hard-pressed to find good documentation on actually translating a real world piece ...
Started by tj9991 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The idea is that with good JIT and GC, you'll be able to speedups even without knowing or using PyPy's....
Are you looking for Python specific translation, or just the general "how do you compile some code, this restricted subset of Python).
|
|
I am working on a Software Project that needs to be translated into 30 languages. This means that changing any string incurs into a relatively high cost. Additionally, translation does not happen overnight, because the translation package needs to be ...
Started by Mario Ortegón on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
The translation process is still long and arduous, but at least it's separated from the process, and keep track of....
Or translation service companies may already have their own databases, so it is good to ask about what they use ...
|
|
I am doing a PHP web site, without using any framework. I need that the site is available in several languages, and I was reading about it and it seems to be a little bit confusing. There are several solutions but all seem to depend on a specific framework...
Started by Sandro on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
But there is nothing wrong in my opinion with doing in a sentence can differ in different languages... .
It's a very simple example.
Then your translation class can load and cache the language files (if you don't rely on any other any translation.
|
|
It occurred to me that when you write a C program, the compiler knows the source and destination platform (for lack of a better term) and can optimize to the machine it is building code for. But in java the best the compiler can do is optimize to the ...
Started by stu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Actually, a byte-code ....
In theory both optimizers should behave 'identically' as it is standard practice for c/c++ compilers to perform the optimization on the generated assembly and not the source code so you've already lost any semantic information .
|