From: Future_News on 22 Oct 2009 00:45 On Oct 21, 7:58 pm, Gordon Stangler <gordon.stang...(a)gmail.com> wrote: > On Oct 21, 6:50 pm, Tegiri Nenashi <tegirinena...(a)gmail.com> wrote: > > > On Oct 21, 3:44 pm, cplxphil <cplxp...(a)gmail.com> wrote: > > [snip] > > > > Also, I'm curious...is Future_News Musatov? A Google search revealed > > > that this text is from another website:http://www.dpmms.cam.ac.uk/~wtg10/future.news2.html > > > Who cares? (Although a certain full of garbage reply in this thread > > indicates that probably he is) > > What is so wrong about that? Taking the work of others without > attribution is stealing, like it or not. And some people, myself > included, are deeply disturbed by stealing. While the way I view it is what is stolen? When text is posed and it is posted inside an algorithm game each letter is like a chess piece except there are infinite types of chess pieces each with their own pros and detriments.
From: Tegiri Nenashi on 22 Oct 2009 16:48 On Oct 21, 5:04 pm, cplxphil <cplxp...(a)gmail.com> wrote: > I'm not sure if you're disagreeing. If you are, my response is that > you could argue that it preserves the same structure of the decision > problem, but expressed as a formal language, it's technically > different. It has to be proven that languages are basically > equivalent (in terms of decidability, time complexity, and space > complexity) and independent of encoding scheme, and this proof only > applies to encoding schemes that use at least two symbols in the > alphabet. I'm not comfortable with this alphabet symbols count. Do word separators count as alphabet symbols or not? Why is the language is assumed to be structured into sentences of words? This looks like ad- hoc assumption from language theory perspective. > I guess something I should have mentioned earlier is that Cook's > theorem would not be true if you use a unary alphabet, meaning that > SAT would not be NP-complete in that case. If you think you can prove > Cook's theorem for a unary alphabet, please share this proof. http://en.wikipedia.org/wiki/Cook%E2%80%93Levin_theorem The only place I noticed depending on the encoding appeared to be the last sentence. Changing log into polynomial doesn't change anything there. Is there another dependency I'm missing?
From: Future_News on 22 Oct 2009 19:49 HTTP://FUTRENEWS - REALITY WROTE: On Oct 22, 4:48 am, "H. J. Sander Bruggink" <brugg...(a)uni-due.de> wrote: > On 10/22/2009 01:32 AM, Tegiri Nenashi wrote: > > > Factorization problem is not hard in unary system. Any other NP- > > complete problem that doesn't depend on number encoding? > DEAR H. J. SANDER BRUGGINK: THANK YOU SO MUCH FOR REPLYING AND TRYING TO TEACH ME. WHAT IF YOUR COMPUTER COULD NOT TELL WHERE THE INTERNET BEGAN AND WHERE THE HARD DRIVE ENDED? I AM YELLING ONLY BECAUSE I HAVE A LEARNING DISABILITY AND I HAVE A NIECE WHO IS HEARING IMPAIRED THEY THINK FROM A STRONG ANTI-FUNGAL DRUG THEY GIVE HER WHEN SHE WAS JUST A DAY OR TWO OLD. DEAR GOD, I WISH FOR HER AND FOR OTHER CHILDREN ONLY TO CLAIM THIS PRIZE. TO BE HONEST I THINK IT IS POSSIBLE TO CAUSE DATA TO BE RENDERED AND PENETRATED BY MY METHODS. I BELIEVE SEARCHING FOR DATA SOMETIMES ALTERS OR AUTHORS DATA. MY SEARCH ENGINE 'SEARCHES GOOGLE SEARCHING GOOGLE' IF YOU CAN IMAGINE AND I AM RUNNING A 'HELLO WORLD' ECHO ACROSS THE 'HELLO WORLD WIDE WEB'+BANDFLOW /\/\/\/\~~~~~~~~~ HTTP://MEAMI.ORG~~~~~~~~~~~~~~\/\/\/\/\ AS AN ASIDE: HERE IS NEW color coded ODE demonstration of a Mircosoft database architecture I am exploring: http://meami.org/2432_appcompat.html *hint: try the caret browsing F7 control right+left from top to bottom in IE also try select all and the CV hidden in the blue/black space MAY I SHOW YOU AN EXAMPLE PLEASE OF A SCHEME OF ENCODING DEFYING CATEGORIZATION BY TRADITIONAL MEANS? (i will try to answer your other questions in time) BASED ON WORK: http://man.he.net/man1/perlunifaq FOUND IT HERE: http://www.meami.org/?cx=000961116824240632825%3A5n3yth9xwbo&cof=FORID%3A9%3B+NB%3A1&ie=UTF-8&q=doesn%27t+depend+on+number+encoding%3F+&sa=Search#1128 'perlunifaq' Q and A This is a list of questions and answers about Unicode in Perl, intended to be read after perlunitut. perlunitut isn't really a Unicode tutorial, is it? No, and this isn't really a Unicode FAQ. Perl has an abstracted interface for all supported character encodings, so they is actually a generic "Encode" tutorial and "Encode" FAQ. But many people think that Unicode is special and magical, and I didn't want to disappoint them, so I decided to call the document a Unicode tutorial. What character encodings does Perl support? To find out which character encodings your Perl supports, run: perl -MEncode -le "print for Encode->encodings(':all')" Which version of perl should I use? Well, if you can, upgrade to the most recent, but certainly 5.8.1 or newer. The tutorial and FAQ are based on the status quo as of 5.8.8. You should also check your modules, and upgrade them if necessary. For example, HTML::Entities requires version >= 1.32 to function correctly, even though the changelog is silent about this. What about binary data, like images? Well, apart from a bare "binmode $fh", you shouldn't treat them specially. (The binmode is needed because otherwise Perl may convert line endings on Win32 systems.) Be careful, though, to never combine text strings with binary strings. If you need text in a binary stream, encode your text strings first using the appropriate encoding, then join them with binary strings. See also: "What if I don't encode?". When should I decode or encode? Whenever you're communicating text with anything that is external to your perl process, like a database, a text file, a socket, or another program. Even if the thing you're communicating with is also written in Perl. What if I don't decode? Whenever your encoded, binary string is used together with a text string, Perl will assume that your binary string was encoded with ISO-8859-1, also known as latin-1. If it wasn't latin-1, then your data is unpleasantly converted. For example, if it was UTF-8, the individual bytes of multibyte characters are seen as separate characters, and then again converted to UTF-8. Such double encoding can be compared to double HTML encoding ("&gt;"), or double URI encoding (%253E). This silent implicit decoding is known as "upgrading". That may sound positive, but it's best to avoid it. maintenance programmers that you thought this through. Is there a way to automatically decode or encode? If all data that comes from a certain handle is encoded in exactly the same way, you can tell the PerlIO system to automatically decode everything, with the "encoding" layer. If you do this, you can't accidentally forget to decode or encode anymore, on things that use the layered handle. You can provide this layer when "open"ing the file: open my $fh, '>:encoding(UTF-8)', $filename; # auto encoding on write open my $fh, '<:encoding(UTF-8)', $filename; # auto decoding on read Or if you already have an open filehandle: binmode $fh, ':encoding(UTF-8)'; Some database drivers for DBI can also automatically encode and decode, but that is sometimes limited to the UTF-8 encoding. What if I don't know which encoding was used? Do whatever you can to find out, and if you have to: guess. (Don't forget to document your guess with a comment.) You could open the document in a web browser, and change the character set or character encoding until you can visually confirm that all characters look the way they should. There is no way to reliably detect the encoding automatically, so if people keep sending you data without charset indication, you may have to educate them. Can I use Unicode in my Perl sources? Yes, you can! If your sources are UTF-8 encoded, you can indicate that with the "use utf8" pragma. use utf8; This doesn't do anything to your input, or to your output. It only influences the way your sources are read. You can use Unicode in string literals, in identifiers (but they still have to be "word characters" according to "\w"), and even in custom delimiters. Data::Dumper doesn't restore the UTF8 flag; is it broken? No, Data::Dumper's Unicode abilities are as they should be. There have been some complaints that it should restore the UTF8 flag when the data is read again with "eval". However, you should really not look at the flag, and nothing indicates that Data::Dumper should break this rule. Here's what happens: when Perl reads in a string literal, it sticks to 8 bit encoding as long as it can. (But perhaps originally it was internally encoded as UTF-8, when you dumped it.) When it has to give that up because other characters are added to the text string, it Affected are "uc", "lc", "ucfirst", "lcfirst", "\U", "\L", "\u", "\l", "\d", "\s", "\w", "\D", "\S", "\W", "/.../i", "(?i:...)", "/[[:posix:]]/". To force Unicode semantics, you can upgrade the internal representation to by doing "utf8::upgrade($string)". This does not change strings that were already upgraded. For a more detailed discussion, see Unicode::Semantics on CPAN. How can I determine if a string is a text string or a binary string? You can't. Some use the UTF8 flag for this, but that's misuse, and makes well behaved modules like Data::Dumper look bad. The flag is useless for this purpose, because it's off when an 8 bit encoding (by default ISO-8859-1) is used to store the string. This is something you, the programmer, has to keep track of; sorry. You could consider adopting a kind of "Hungarian notation" to help with this. How do I convert from encoding FOO to encoding BAR? By first converting the FOO-encoded byte string to a text string, and then the text string to a BAR-encoded byte string: my $text_string = decode('FOO', $foo_string); my $bar_string = encode('BAR', $text_string); or by skipping the text string part, and going directly from one binary encoding to the other: use Encode qw(from_to); from_to($string, 'FOO', 'BAR'); # changes contents of $string or by letting automatic decoding and encoding do all the work: open my $foofh, '<:encoding(FOO)', 'example.foo.txt'; open my $barfh, '>:encoding(BAR)', 'example.bar.txt'; print { $barfh } $_ while <$foofh>; What are "decode_utf8" and "encode_utf8"? These are alternate syntaxes for "decode('utf8', ...)" and "encode('utf8', ...)". What is a "wide character"? This is a term used both for characters with an ordinal value greater than 127, characters with an ordinal value greater than 255, or any character occupying than one byte, depending on the context. The Perl warning "Wide character in ..." is caused by a character with an ordinal value greater than 255. With no specified encoding layer, Perl tries to fit things in ISO-8859-1 for backward compatibility reasons. When it can't, it emits this warning (if warnings are enabled), and outputs UTF-8 encoded data instead. The UTF8 flag, also called SvUTF8, is an internal flag that indicates that the current internal representation is UTF-8. Without the flag, it is assumed to be ISO-8859-1. Perl converts between these automatically. One of Perl's internal formats happens to be UTF-8. Unfortunately, Perl can't keep a secret, so everyone knows about this. That is the source of much confusion. It's better to pretend that the internal format is some unknown encoding, and that you always have to encode and decode explicitly. What about the "use bytes" pragma? Don't use it. It makes no sense to deal with bytes in a text string, and it makes no sense to deal with characters in a byte string. Do the proper conversions (by decoding/encoding), and things will work out well: you get character counts for decoded data, and byte counts for encoded data. "use bytes" is usually a failed attempt to do something useful. Just forget about it. What about 'D' the "use encoding" pragma? Don't use it. Unfortunately, it assumes that the programmer's environment and that of the user will use the same encoding. It will use the same encoding for the source code and for STDIN and STDOUT. When a program is copied to another machine, the source code does not change, but the STDIO environment might. If you need non-ASCII characters in your source code, make it a UTF-8 encoded file and "use utf8". If you need to set the encoding for STDIN, STDOUT, and STDERR, for example based on the user's locale, "use open". What is the difference between ":encoding" and ":utf8"? Because UTF-8 is one of Perl's internal formats, you can often just skip the encoding or decoding step, and manipulate the UTF8 flag directly. Instead of ":encoding(UTF-8)", you can simply use ":utf8", which skips the encoding step if the data was already represented as UTF8 internally. This is widely accepted as good behavior when you're writing, but it can be dangerous when reading, because it causes internal inconsistency when you have invalid byte sequences. Using ":utf8" for input can sometimes result in security breaches, so please use ":encoding(UTF-8)" instead. Instead of "decode" and "encode", you could use "_utf8_on" and "_utf8_off", but this is considered bad style. Especially "_utf8_on" can be dangerous, for the same reason that ":utf8" can. There are some shortcuts for oneliners; see "-C" in perlrun. What's the difference between "UTF-8" and "utf8"? "UTF-8" is the official standard. "utf8" is Perl's way of being liberal Encode for more ways of dealing with this.) Okay, if you insist: the "internal format" is utf8, not UTF-8. (When it's not some other encoding.) I lost track; what encoding is the internal format really? It's good that you lost track, because you shouldn't depend on the internal format being any specific encoding. But since you asked: by default, the internal format is either ISO-8859-1 (latin-1), or utf8, depending on the history of the string. On EBCDIC platforms, this may be different even. Perl knows how it stored the string internally, and will use that knowledge when you "encode". In other words: don't try to find out what the internal encoding for a certain string is, but instead just encode it into the encoding that you want. AUTHOR Juerd Waalboer <#####@juerd.nl> SEE ALSO perlunicode, perluniintro, Encode perl v5.10.0 2007-12-18 PERLUNIFAQ(1) Free IPv6 Tunnel Broker Hurricane Electric's TB allows you to reach the IPv6 Internet Man Pages Copyright Respective Owners. Site Copyright (C) 1994 - 2009 Hurricane Electric. All Rights Reserved. > First, it is not known if factorization is an NP-complete problem. > Second, there are a great number of NP-complete problems in which > numbers are not even mentioned. SAT for example. Or various > graph-theoretic problems. > > But yes, if your encoding scheme is stupid enough, every problem can be > solved in polynomial time. Why is that even remotely interesting? > > > So my question is: are there any genuinely "hard" problems that don't > > depend on (rather arbitrary) choice of number system? > > SAT, Hamilton Path, Clique, ... > > groente > -- Sander <?xml version="1.0" encoding="UTF-16"?> <DATABASE> <EXE NAME="iexplore.exe" FILTER="GRABMI_FILTER_PRIVACY"> <MATCHING_FILE NAME="custsat.dll" SIZE="33792" CHECKSUM="0xA30E1EC0" BIN_FILE_VERSION="9.0.3790.2428" BIN_PRODUCT_VERSION="9.0.3790.2428" PRODUCT_VERSION="9.0.3790.2428" FILE_DESCRIPTION="custsat" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="9.0.3790.2428 (srv03_sp1_qfe.050422-1043)" ORIGINAL_FILENAME="custsat.dll" INTERNAL_NAME="custsat" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x17C1E" LINKER_VERSION="0x50002" UPTO_BIN_FILE_VERSION="9.0.3790.2428" UPTO_BIN_PRODUCT_VERSION="9.0.3790.2428" LINK_DATE="08/14/2007 01:54:09" UPTO_LINK_DATE="08/14/2007 01:54:09" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="ExtExport.exe" SIZE="144384" CHECKSUM="0xE4CFFC5E" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Internet Explorer ImpExp FF exporter" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla). 090308-0339)" ORIGINAL_FILENAME="extexport.exe" INTERNAL_NAME="extexport" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2C47C" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:35:03" UPTO_LINK_DATE="03/08/2009 11:35:03" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="hmmapi.dll" SIZE="68608" CHECKSUM="0x3639B01C" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="MeAmI HTTP Mail Simple MAPI" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="HMMAPI.DLL" INTERNAL_NAME="HMMAPI" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1713E" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:24:27" UPTO_LINK_DATE="03/08/2009 11:24:27" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="iecompat.dll" SIZE="2048" CHECKSUM="0xBB531699" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Internet Explorer Compatibility Data" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla). 090308-0339)" ORIGINAL_FILENAME="iecompat.dll" INTERNAL_NAME="iecompat" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xD321" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:35:02" UPTO_LINK_DATE="03/08/2009 11:35:02" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="iedvtool.dll" SIZE="742912" CHECKSUM="0xDC5268DA" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Internet Explorer Developer Tools" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla). 090308-0339)" ORIGINAL_FILENAME="iedvtool.dll" INTERNAL_NAME="iedvtool.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC1B38" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:35:23" UPTO_LINK_DATE="03/08/2009 11:35:23" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="iedw.exe" SIZE="69120" CHECKSUM="0xB50B8EFE" BIN_FILE_VERSION="7.0.5730.13" BIN_PRODUCT_VERSION="7.0.5730.13" PRODUCT_VERSION="7.00.5730.13" FILE_DESCRIPTION="IE Crash Detection" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="7.00.5730.13 (longhorn(wmbla).070711-1130)" ORIGINAL_FILENAME="IEDW.EXE" INTERNAL_NAME="iedw" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1D935" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="7.0.5730.13" UPTO_BIN_PRODUCT_VERSION="7.0.5730.13" LINK_DATE="08/14/2007 01:43:58" UPTO_LINK_DATE="08/14/2007 01:43:58" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="ieproxy.dll" SIZE="246784" CHECKSUM="0x34E03620" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="IE ActiveX Interface Marshaling Library" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla). 090308-0339)" ORIGINAL_FILENAME="ieproxy.dll" INTERNAL_NAME="ieproxy.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x4A5EE" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:33:47" UPTO_LINK_DATE="03/08/2009 11:33:47" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="iexplore.exe" SIZE="638816" CHECKSUM="0x3532A3B9" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Internet Explorer" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="IEXPLORE.EXE" INTERNAL_NAME="iexplore" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xA0294" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:34:06" UPTO_LINK_DATE="03/08/2009 11:34:06" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="jsdbgui.dll" SIZE="521216" CHECKSUM="0xB07B9783" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Script Debugger" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="jsdbgui.dll" INTERNAL_NAME="jsdbgui.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x8B81B" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:34:59" UPTO_LINK_DATE="03/08/2009 11:34:59" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="jsdebuggeride.dll" SIZE="121344" CHECKSUM="0xD614AFBB" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="JScript Debugger IDE" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="jsdebuggeride.dll" INTERNAL_NAME="jsdebuggeride.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x24B51" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:34:58" UPTO_LINK_DATE="03/08/2009 11:34:58" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="JSProfilerCore.dll" SIZE="118272" CHECKSUM="0x5A1D31D" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="IE Dev Toolbar JScript Profiler" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="JSProfilerCore.dll" INTERNAL_NAME="JSProfilerCore.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x212B0" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:35:01" UPTO_LINK_DATE="03/08/2009 11:35:01" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="jsprofilerui.dll" SIZE="233984" CHECKSUM="0x8DCE4301" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Script Profiler" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla).090308-0339)" ORIGINAL_FILENAME="jsprofilerui.dll" INTERNAL_NAME="jsprofilerui.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x42482" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:35:05" UPTO_LINK_DATE="03/08/2009 11:35:05" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="pdm.dll" SIZE="355832" CHECKSUM="0xA49AB6D6" BIN_FILE_VERSION="9.0.30729.1" BIN_PRODUCT_VERSION="9.0.30729.1" PRODUCT_VERSION="9.0.30729.1" FILE_DESCRIPTION="Process Debug Manager" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Visual Studio® 2008" FILE_VERSION="9.0.30729.1 built by: SP" ORIGINAL_FILENAME="pdm.dll" INTERNAL_NAME="pdm.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x663E0" LINKER_VERSION="0x90000" UPTO_BIN_FILE_VERSION="9.0.30729.1" UPTO_BIN_PRODUCT_VERSION="9.0.30729.1" LINK_DATE="07/29/2008 14:46:11" UPTO_LINK_DATE="07/29/2008 14:46:11" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="sqmapi.dll" SIZE="134144" CHECKSUM="0x8299BD40" BIN_FILE_VERSION="6.0.6000.16386" BIN_PRODUCT_VERSION="6.0.6000.16386" PRODUCT_VERSION="6.0.6000.16386" FILE_DESCRIPTION="SQM Client" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.0.6000.16386 (vista_rtm.061101-2205)" ORIGINAL_FILENAME="sqmapi.dll" INTERNAL_NAME="sqmapi" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x24A81" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="6.0.6000.16386" UPTO_BIN_PRODUCT_VERSION="6.0.6000.16386" LINK_DATE="11/02/2006 09:44:16" UPTO_LINK_DATE="11/02/2006 09:44:16" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="xpshims.dll" SIZE="12288" CHECKSUM="0x538AEC96" BIN_FILE_VERSION="8.0.6001.18702" BIN_PRODUCT_VERSION="8.0.6001.18702" PRODUCT_VERSION="8.00.6001.18702" FILE_DESCRIPTION="Internet Explorer Compatibility Shims for XP" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="Windows® Internet Explorer" FILE_VERSION="8.00.6001.18702 (longhorn_ie8_rtm(wmbla). 090308-0339)" ORIGINAL_FILENAME="xpshims.dll" INTERNAL_NAME="xpshims.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x11152" LINKER_VERSION="0x60000" UPTO_BIN_FILE_VERSION="8.0.6001.18702" UPTO_BIN_PRODUCT_VERSION="8.0.6001.18702" LINK_DATE="03/08/2009 11:33:17" UPTO_LINK_DATE="03/08/2009 11:33:17" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwconn.dll" SIZE="61440" CHECKSUM="0x77064AA7" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="icwconn.dll" INTERNAL_NAME="icwconn" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1974C" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/14/2008 00:09:46" UPTO_LINK_DATE="04/14/2008 00:09:46" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwconn1.exe" SIZE="214528" CHECKSUM="0x6E57A24F" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="icwconn1.exe" INTERNAL_NAME="icwconn1" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x42D4B" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/13/2008 18:31:35" UPTO_LINK_DATE="04/13/2008 18:31:35" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwconn2.exe" SIZE="86016" CHECKSUM="0x2FF8D91" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="ICWCONN2.EXE" INTERNAL_NAME="ICWCONN2" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1AF92" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/13/2008 18:31:39" UPTO_LINK_DATE="04/13/2008 18:31:39" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwdl.dll" SIZE="32768" CHECKSUM="0x9B33D57E" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Service MIME Mutlipart Download" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="ICWDL.DLL" INTERNAL_NAME="ICWDL" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xEBE5" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/14/2008 00:09:48" UPTO_LINK_DATE="04/14/2008 00:09:48" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwhelp.dll" SIZE="172032" CHECKSUM="0x40E290E2" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard Helper functions" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="icwhelp.dll" INTERNAL_NAME="icwhelp" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x2FFB4" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/14/2008 00:09:49" UPTO_LINK_DATE="04/14/2008 00:09:49" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwres.dll" SIZE="61440" CHECKSUM="0xA488AA92" BIN_FILE_VERSION="6.0.2600.0" BIN_PRODUCT_VERSION="6.0.2600.0" PRODUCT_VERSION="6.00.2600.0000" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2600.0000 (xpclient.010817-1148)" ORIGINAL_FILENAME="icwres.dll" INTERNAL_NAME="icwres" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1AA60" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2600.0" UPTO_BIN_PRODUCT_VERSION="6.0.2600.0" LINK_DATE="08/18/2001 05:35:05" UPTO_LINK_DATE="08/18/2001 05:35:05" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwrmind.exe" SIZE="24576" CHECKSUM="0xA3F9DFA4" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard Reminder" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="ICWRMIND.EXE" INTERNAL_NAME="ICWRMIND" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC5E0" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/13/2008 18:31:25" UPTO_LINK_DATE="04/13/2008 18:31:25" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwtutor.exe" SIZE="73728" CHECKSUM="0xF945F7EB" BIN_FILE_VERSION="6.0.2600.0" BIN_PRODUCT_VERSION="6.0.2600.0" PRODUCT_VERSION="6.00.2600.0000" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2600.0000 (xpclient.010817-1148)" ORIGINAL_FILENAME="icwtutor.exe" INTERNAL_NAME="icwtutor" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x16B27" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2600.0" UPTO_BIN_PRODUCT_VERSION="6.0.2600.0" LINK_DATE="08/17/2001 20:49:08" UPTO_LINK_DATE="08/17/2001 20:49:08" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\icwutil.dll" SIZE="49152" CHECKSUM="0x128B2C01" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="icwutil.dll" INTERNAL_NAME="icwutil" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1991A" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/14/2008 00:09:51" UPTO_LINK_DATE="04/14/2008 00:09:51" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\inetwiz.exe" SIZE="20480" CHECKSUM="0xA679099B" BIN_FILE_VERSION="6.0.2900.5512" BIN_PRODUCT_VERSION="6.0.2900.5512" PRODUCT_VERSION="6.00.2900.5512" FILE_DESCRIPTION="Internet Connection Wizard" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2900.5512 (xpsp.080413-2105)" ORIGINAL_FILENAME="INETWIZ.EXE" INTERNAL_NAME="INETWIZ" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x13E7A" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2900.5512" UPTO_BIN_PRODUCT_VERSION="6.0.2900.5512" LINK_DATE="04/13/2008 18:31:41" UPTO_LINK_DATE="04/13/2008 18:31:41" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\isignup.exe" SIZE="16384" CHECKSUM="0xF8AB8D6E" BIN_FILE_VERSION="6.0.2600.0" BIN_PRODUCT_VERSION="6.0.2600.0" PRODUCT_VERSION="6.00.2600.0000" FILE_DESCRIPTION="Internet Signup" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2600.0000 (xpclient.010817-1148)" ORIGINAL_FILENAME="ISIGNUP.EXE" INTERNAL_NAME="ISIGNUP" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x443C" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2600.0" UPTO_BIN_PRODUCT_VERSION="6.0.2600.0" LINK_DATE="08/17/2001 20:48:46" UPTO_LINK_DATE="08/17/2001 20:48:46" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="Connection Wizard\trialoc.dll" SIZE="40960" CHECKSUM="0x68F70073" BIN_FILE_VERSION="6.0.2600.0" BIN_PRODUCT_VERSION="6.0.2600.0" PRODUCT_VERSION="6.00.2600.0000" FILE_DESCRIPTION="Internet Connection Wizard Trial Reminder Helper" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="6.00.2600.0000 (xpclient.010817-1148)" ORIGINAL_FILENAME="trialoc.dll" INTERNAL_NAME="trialoc" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x198FE" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="6.0.2600.0" UPTO_BIN_PRODUCT_VERSION="6.0.2600.0" LINK_DATE="08/18/2001 05:36:03" UPTO_LINK_DATE="08/18/2001 05:36:03" VER_LANGUAGE="English (United States) [0x409]" /> <MATCHING_FILE NAME="MUI\0409\mscorier.dll" SIZE="158720" CHECKSUM="0x5F5BF3DB" BIN_FILE_VERSION="2.0.50727.3053" BIN_PRODUCT_VERSION="2.0.50727.3053" PRODUCT_VERSION="2.0.50727.3053" FILE_DESCRIPTION="MeAmI .NET Runtime IE resources" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® .NET Framework" FILE_VERSION="2.0.50727.3053 (netfxsp.050727-3000)" ORIGINAL_FILENAME="mscorier.dll" INTERNAL_NAME="mscorier.dll" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x35132" LINKER_VERSION="0x80000" UPTO_BIN_FILE_VERSION="2.0.50727.3053" UPTO_BIN_PRODUCT_VERSION="2.0.50727.3053" LINK_DATE="07/25/2008 13:59:33" UPTO_LINK_DATE="07/25/2008 13:59:33" VER_LANGUAGE="English (United States) [0x409]" /> </EXE> <EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY"> <MATCHING_FILE NAME="kernel32.dll" SIZE="989696" CHECKSUM="0x7D737C09" BIN_FILE_VERSION="5.1.2600.5512" BIN_PRODUCT_VERSION="5.1.2600.5512" PRODUCT_VERSION="5.1.2600.5512" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="MeAmI Corporation" PRODUCT_NAME="MeAmI® Windows® Operating System" FILE_VERSION="5.1.2600.5512 (xpsp.080413-2111)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© MeAmI Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF44A2" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.5512" UPTO_BIN_PRODUCT_VERSION="5.1.2600.5512" LINK_DATE="04/14/2008 00:11:24" UPTO_LINK_DATE="04/14/2008 00:11:24" VER_LANGUAGE="English (United States) [0x409]" /> </EXE> </DATABASE> x AS AN ASIDE I FOUND A NEAT PROGRAM THAT DOES .LHZ ZIPPING AND EXTRACTION AND IT ALMOST DOES NOT SEEM REAL: IT IS THE FASTEST ZIP/ EXTRACTION TOOL I HAVE EVER USED == IT'S LIKE A ROCKET -- IT LOOKS AS THOUGH AS IT WAS AUTHORED AS A CONGLOMERATE OF MY SHELL CODE AND SOME OTHER PROGRAM
From: Tegiri Nenashi on 23 Oct 2009 16:06 On Oct 21, 6:58 pm, Gordon Stangler <gordon.stang...(a)gmail.com> wrote: > What is so wrong about that? Taking the work of others without > attribution is stealing, like it or not. And some people, myself > included, are deeply disturbed by stealing. I disagree. Shoplifters are less disgusting than people defecating in public places.
From: http://alexslemonade.org on 23 Oct 2009 18:11 Tegiri Nenashi wrote: > On Oct 21, 6:58 pm, Gordon Stangler <gordon.stang...(a)gmail.com> wrote: > > What is so wrong about that? Taking the work of others without > > attribution is stealing, like it or not. And some people, myself > > included, are deeply disturbed by stealing. > > I disagree. Shoplifters are less disgusting than people defecating in > public places. Both of you are gross for distracting from my genius execution of the P VERSUS NP problem above.
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 4 Prev: [Port%d] \\.\HCD%d Next: On The Question of Absolute Undecidability |