Interesting paper from Microsoft research1266 (9/10/2007 3:10:32 PM) comp.compression Well, it looks interesting from the abstract at least, it's fairly long so I can't comment on the whole thing yet. http://research.microsoft.com/research/pubs/view.aspx?0rc=p&type=technical+report&id=1345 "Wh... markn
aggregate return warnings1328 (5/9/2007 3:06:49 PM) comp.lang.c++ Running some code through static analysis, I noticed that gcc will generate a warning if a function returns an aggregate, controlled with this flag (from the gcc manual): -Waggregate-return Warn if any fun... markn
comp.compression FAQ #50151 (5/2/2007 10:55:25 AM) comp.compression ***Before posting a question to comp.compression, it is a good idea to scan the FAQ to see if your question has already been answered many times before.*** This is a regularly scheduled FAQ notice. Regular m... markn
comp.compression FAQ #40142 (4/3/2007 1:09:27 PM) comp.compression ***Before posting a question to comp.compression, it is a good idea to scan the FAQ to see if your question has already been answered many times before.*** This is a regularly scheduled FAQ notice. Regular ma... markn
news item026 (2/14/2007 5:08:52 PM) comp.compression >From a Stanford press release: http://news-service.stanford.edu/news/2007/february14/nae-021407.html -----[quote]----- Four Stanford professors have been elected to the National Academy of Engineering (NAE).... markn
compressed database - sort of088 (1/30/2007 2:31:12 PM) comp.compression I get a fair number of emails asking about compressed databases. Random access of compressed data is interesting, and there are a few papers and sample programs on the web, but not a lot. I saw this article ... markn
1stWorks Corporation Awarded Patent for Quantized Indexing193 (1/9/2007 10:00:31 PM) comp.compression http://biz.yahoo.com/bw/070109/20070109005831.html?.v=1 1stWorks Corporation Awarded Patent for Quantized Indexing, a Fundamentally More Efficient and Faster Entropy Coding Algorithm for General Purpose Data C... markn
comp.compression FAQ #31130 (1/1/2007 5:39:32 PM) comp.compression ***Before posting a question to comp.compression, it is a good idea to scan the FAQ to see if your question has already been answered many times before.*** This is a regularly scheduled FAQ notice. Regular ma... markn
comp.compression FAQ #20125 (12/2/2006 12:39:23 AM) comp.compression ***Before posting a question to comp.compression, it is a good idea to scan the FAQ to see if your question has already been answered many times before.*** This is a regularly scheduled FAQ notice. Regular ma... markn
Funny story5123 (12/1/2006 5:09:42 PM) comp.compression Wired has an article on a company called Meaningful Machines, http://www.meaningfulmachines.com/, which is doing some machine translation work. The company started with an idea from an outsider: "an Israeli i... markn
markn211's replies:
Items(2) /1
aggregate return warnings1328 (5/9/2007 3:06:49 PM) comp.lang.c++ Running some code through static analysis, I noticed that gcc will generate a warning if a function returns an aggregate, controlled with this flag (from the gcc manual): -Waggregate-return Warn if any fun... markn211(18)
g++ 3.4 exception problem1127 (8/12/2005 10:01:18 PM) comp.lang.c++ I have a case where an exception in the constructor of class with a virtual base leads to termination: struct vbase {}; struct foo : virtual vbase { foo() { throw "exception in foo ctor"; } };... snorkelman(24)