Yeah.. And Russians wear winter hats all the summer:)).. And Americans also invented first light bulb, life on the earth, first man in space was American and North America has only two countries...
This may be true for American high-school system but this is definitely not true for Russian HS system - evolution isn't an advanced subject compared to some areas of physics and mathematics taught in last grades of school (btw.. we graduate at age of 16 or 17). Oh.. and to all the people that say 'you can't prove evolution' - prove the existence of God!.
>Win 3.11 : Broke Win32 compatibility in OS/2 ???. Win 3.11 is Win16 operating system, not Win32 operating system!.
>Win32 API : Incompatabilities used to drive >competing office software market share down What major incompatibilities?. Can you provide real proof instead of 'everything M$ does is bad..' etc. >Win98 : When IE5 was removed reports of >increased Netscape stability So what?. Btw, Win98 is bundled with IE4 (at least it was when I bought my notebook) not IE5. And I think IE5 is much much better than Netscape 4.x and Mozilla (I tested M8).
In Russia, we have passports as primary form of identification. Newer passports contain little personal information but have the number - passport number but you need it not very frequently - mostly you can just show your passsport and that's also rarely needed. I don't understand why US can't have normal identification card (ID card) - why license for driving should be used as ID card?
5000 milliseconds?. What they were doing in ASP?. My ASP apps would take so long only under a load of maybe 30-40 simultaneous requests!. And I'm talking about 3-4 database connections per page!.
(Note: above approximation is for my laptop - K6 300Mhz, 64M RAM, NT 4.0 Wks)
Use Response.Flush() in ASP to send buffered output to browser as often as you want. You can output some static HTML and then do Response.Flush(). But anyway, using Quicksort and empty loops for measuring performance is meaningless. I think more valid benchmark would be like outputting data from same databases to HTML - using best methods available in both platforms. And you should know that ASP is NOT a language like PHP/Zend - it's scripting host that can accept multiple languages - mixed in one file. You can use VBScript, JScript, PerlScript and any scripting engine you want easily.
I don't agree with comment you replied to but I don't understand how posting as AC reduces the value of comment. If I register as ABC with e-mail of abc@abcabc.com, does it make me less anonymous?.
This all depends on who writes the code. The best approach (and this applies also to ASP, which I think is superior despite non-real-world PHP vs ASP benchmarks) is to use an include files (like header and footer) which contain common HTML code.. sort of template and then write all the code inside one large ASP/PHP block and using Response.Write/php equivalent to write all HTML like (header.asp also includes lib.asp with all the functions): <%@ Language = JScript %> <!--#include file="header.asp"--> <% var conn = openConn() var rs = conn.Execute("select * from authors") while (!rs.EOF) { Response.Write(rs("FirstName") + " " + rs("LastName") + "<br>") } rs.Close() delete rs releaseConn(conn) %> <!--#include file="footer.asp"--> This means all outer HTML (e.g. headers, footers, menus, navigation etc.) is separate from inner code. HTH
Yeah.. And Russians wear winter hats all the summer :)).. And Americans also invented first light bulb, life on the earth, first man in space was American and North America has only two countries...
:)
(^ sarcasm
This may be true for American high-school system but this is definitely not true for Russian HS system - evolution isn't an advanced subject compared to some areas of physics and mathematics taught in last grades of school (btw.. we graduate at age of 16 or 17).
Oh.. and to all the people that say 'you can't prove evolution' - prove the existence of God!.
What God?
It seems Microsoft think so too - they added a few cool features to Win2K CLI.
Not nobody... About 1.5-2% ( in case of some ads
up to 6-7% - really).. And anyway, ads are keeping most sites free.
And how the people creating the site would be
earning money?. There's no such a thing as a free
lunch.
I got to crack.linuxppc.org less than a minute after posting previous message :)) :)
but now it's unreachable again
Really?. I can't get to crack.linuxppc.org but I also W2K box is not responding.
hmmm
Try:
HEAD / HTTP/1.1^M
Host:www.windows2000test.com^M
^M
According to HTTP/1.1 standard you MUST include Host header in the request.
I'm not sure but I think it's from U.S. - United States or Uncle Sam.
>Win 3.11 : Broke Win32 compatibility in OS/2
???. Win 3.11 is Win16 operating system, not Win32 operating system!.
>Win32 API : Incompatabilities used to drive >competing office software market share down
What major incompatibilities?. Can you provide real proof instead of 'everything M$ does is bad..' etc.
>Win98 : When IE5 was removed reports of >increased Netscape stability
So what?. Btw, Win98 is bundled with IE4 (at least it was when I bought my notebook) not IE5.
And I think IE5 is much much better than Netscape 4.x and Mozilla (I tested M8).
In Russia, we have passports as primary form of identification. Newer passports contain little personal information but have the number - passport number but you need it not very frequently - mostly you can just show your passsport and that's also rarely needed.
I don't understand why US can't have normal identification card (ID card) - why license for driving should be used as ID card?
5000 milliseconds?. What they were doing in ASP?. My ASP apps would take so long only under a load of maybe 30-40 simultaneous requests!. And I'm talking about 3-4 database connections per page!.
(Note: above approximation is for my laptop - K6 300Mhz, 64M RAM, NT 4.0 Wks)
Use Response.Flush() in ASP to send buffered output to browser as often as you want. You can output some static HTML and then do Response.Flush().
But anyway, using Quicksort and empty loops for measuring performance is meaningless. I think more valid benchmark would be like outputting data from same databases to HTML - using best methods available in both platforms.
And you should know that ASP is NOT a language like PHP/Zend - it's scripting host that can accept multiple languages - mixed in one file. You can use VBScript, JScript, PerlScript and any scripting engine you want easily.
hermanmiller.com/hmstore.com.. I saw it there.. It's 749$
I don't agree with comment you replied to but I don't understand how posting as AC reduces the value of comment. If I register as ABC with e-mail of abc@abcabc.com, does it make me less anonymous?.
Oops... There should be rs.MoveNext() inside the loop just after Response.Write
This all depends on who writes the code. The best approach (and this applies also to ASP, which I think is superior despite non-real-world PHP vs ASP benchmarks) is to use an include files (like header and footer) which contain common HTML code.. sort of template and then write all the code inside one large ASP/PHP block and using Response.Write/php equivalent to write all HTML like (header.asp also includes lib.asp with all the functions):
<%@ Language = JScript %>
<!--#include file="header.asp"-->
<%
var conn = openConn()
var rs = conn.Execute("select * from authors")
while (!rs.EOF)
{
Response.Write(rs("FirstName") + " " + rs("LastName") + "<br>")
}
rs.Close()
delete rs
releaseConn(conn)
%>
<!--#include file="footer.asp"-->
This means all outer HTML (e.g. headers, footers, menus, navigation etc.) is separate from inner code. HTH
This is incorrect. Chat.ru simply offers free e-mail and web space for home pages. So it's not ISP.
(russian: esli ponimaesh to chego govorish o tom chego ne znaesh.. ili ti specialno?)
Yes.. Last accident (with computer systems) was :)
a year ago... Oh.. and what space station US operates (asides from ISS)?
They are commiting a crime. Maybe not a 'hate crime' but crime.
I should have probably used 'was' instead of 'is'.
Who uses Access for high-traffic web sites?. It isn't suited for multi-threading.. so the problem isn't ASP but Access
I'm Russian myself (and 20 years of age) and never have heard such an expression. Really.
Actually it's run by TalkCity