Wednesday, 27 April 2011
Q&A for professional and enthusiast programmers
http://stackoverflow.com/ - A social Q&A site for both expert & non-expert programmers.
Boost C++ Library
Boost C++ Library: http://www.boost.org or http://boost.teeks99.com/
*** Installation Tips
- with b2
b2 address-model=32 --build-type=complete --stagedir=stage
b2 address-model=64 --build-type=complete --stagedir=stage_x64
(regex with ICU lib)
b2 -sICU_PATH=C:\icu4c-54_1-src\icu address-model=32 --with-regex --stagedir=stage
b2 -sICU_PATH=C:\icu4c-54_1-src\icu address-model=64 --with-regex --stagedir=stage_x64
(iostream with zlib)
b2 -sZLIB_SOURCE=C:\zlib128-dll\include address-model=32 --with-iostreams --stagedir=stage
b2 -sZLIB_SOURCE=C:\zlib128-dll\include address-model=64 --with-iostreams --stagedir=stage_x64
- with bjam
(for different versions of Microsoft Visual C++)
bjam --toolset=msvc-12.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-11.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-10.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-9.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-8.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-12.0 --build-type=complete stage
bjam --toolset=msvc-11.0 --build-type=complete stage
bjam --toolset=msvc-10.0 --build-type=complete stage
bjam --toolset=msvc-9.0 --build-type=complete stage
bjam --toolset=msvc-8.0 --build-type=complete stage
--
...one of the most highly regarded and expertly designed C++ library projects in the world.— Herb Sutter and Andrei Alexandrescu, C++ Coding Standards
*** Installation Tips
- with b2
b2 address-model=32 --build-type=complete --stagedir=stage
b2 address-model=64 --build-type=complete --stagedir=stage_x64
(regex with ICU lib)
b2 -sICU_PATH=C:\icu4c-54_1-src\icu address-model=32 --with-regex --stagedir=stage
b2 -sICU_PATH=C:\icu4c-54_1-src\icu address-model=64 --with-regex --stagedir=stage_x64
(iostream with zlib)
b2 -sZLIB_SOURCE=C:\zlib128-dll\include address-model=32 --with-iostreams --stagedir=stage
b2 -sZLIB_SOURCE=C:\zlib128-dll\include address-model=64 --with-iostreams --stagedir=stage_x64
- with bjam
(for different versions of Microsoft Visual C++)
bjam --toolset=msvc-12.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-11.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-10.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-9.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-8.0 address-model=64 --build-type=complete stage
bjam --toolset=msvc-12.0 --build-type=complete stage
bjam --toolset=msvc-11.0 --build-type=complete stage
bjam --toolset=msvc-10.0 --build-type=complete stage
bjam --toolset=msvc-9.0 --build-type=complete stage
bjam --toolset=msvc-8.0 --build-type=complete stage
--
Monday, 18 April 2011
Tools for Vietnamese Spell Checking
1) Hunspell (Vietnamese version): http://code.google.com/p/hunspell-spellcheck-vi/
Original version: http://hunspell.sourceforge.net/
Source Code with Java for Hunspell: http://dren.dk/hunspell.html
2) Aspell: http://aspell.net/
Available dictionaries: ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
3) IBM csSpell (Context-sensitive Spelling Checker): http://www.alphaworks.ibm.com/tech/csspell
4) TBA
--
Cheers,
Vu
Original version: http://hunspell.sourceforge.net/
Source Code with Java for Hunspell: http://dren.dk/hunspell.html
2) Aspell: http://aspell.net/
Available dictionaries: ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
3) IBM csSpell (Context-sensitive Spelling Checker): http://www.alphaworks.ibm.com/tech/csspell
4) TBA
--
Cheers,
Vu
N-gram tools
1) http://homepages.inf.ed.ac.uk/lzhang10/ngram.html
2) Google Web N-gram
2a) Google Web N-gram Viewer: http://ngrams.googlelabs.com/
2b) Google Web N-gram Patterns: http://n-gram-patterns.sourceforge.net/
3) Microsoft Web N-gram: http://web-ngram.research.microsoft.com/info/
4) N-gram Statistics Package: http://ngram.sourceforge.net/
5) CMU Language Modeling Toolkit (version 2): http://www.speech.cs.cmu.edu/SLM/toolkit.html
2) Google Web N-gram
2a) Google Web N-gram Viewer: http://ngrams.googlelabs.com/
2b) Google Web N-gram Patterns: http://n-gram-patterns.sourceforge.net/
3) Microsoft Web N-gram: http://web-ngram.research.microsoft.com/info/
4) N-gram Statistics Package: http://ngram.sourceforge.net/
5) CMU Language Modeling Toolkit (version 2): http://www.speech.cs.cmu.edu/SLM/toolkit.html
6) N-gram Extraction Tools: http://homepages.inf.ed.ac.uk/lzhang10/ngram.html
Tools for corpus statistics
Thanks to Corpora-List member, I compiled the following list of tools for corpus statistics:
1) TMX software: https://sourceforge.net/projects/textometrie
2) R: www.r-project.org
With books accompanied:
http://www.amazon.com/dp/3110205645
http://www.amazon.com/dp/0415962706
3) Lexico3: http://www.tal.univ-paris3.fr/lexico/lexico3.htm (seemingly a commercial tool)
4) TBA
If you know others, please let me know!
--
Cheers,
Vu
1) TMX software: https://sourceforge.net/
2) R: www.r-project.org
With books accompanied:
http://www.amazon.com/dp/
http://www.amazon.com/dp/
3) Lexico3: http://www.tal.univ-paris3.fr/lexico/lexico3.htm (seemingly a commercial tool)
4) TBA
If you know others, please let me know!
--
Cheers,
Vu
Thursday, 7 April 2011
C++ STL with UTF-8
Portable Library
http://utfcpp.sourceforge.net/
https://sourceforge.net/projects/utfcpp
Conversion Tool
http://www.gnu.org/software/libiconv/
Articles
http://www.codeproject.com/KB/stl/upgradingstlappstounicode.aspx
http://www.codeproject.com/KB/stl/utf8facet.aspx
http://www.cplusplus.com/forum/beginner/7233/
--
Cheers,
Vu
http://utfcpp.sourceforge.net/
https://sourceforge.net/projects/utfcpp
Conversion Tool
http://www.gnu.org/software/libiconv/
Articles
http://www.codeproject.com/KB/stl/upgradingstlappstounicode.aspx
http://www.codeproject.com/KB/stl/utf8facet.aspx
http://www.cplusplus.com/forum/beginner/7233/
--
Cheers,
Vu
Subscribe to:
Posts (Atom)