Wouldn't it be more reasonable to suspect that any such crippling would have be done by Hitachi, specifically to avoid giving away their hold on the market for large fast digital camera media?
em-u-late 3.Computer Sci. To cause one system to accept the same data, execute the same programs, and achieve identical results as another system.
From Webster's II New College Dictionary
Is this definition incorrect? Does it somehow not apply to WINE? I don't see it.
I could swear that the WINE web site established that "Windows Emulator" and "Wine Is Not an Emulator" were both acceptable expansions, though it's been a few years. Perhaps things have changed since then.
I'm sure that your Win 95 machine running on a 386/20 with 8mb does not run very responsively. Obviously, a 386/20 with 8mb of RAM is below the sys requirements that MSFT released for Win 95
I seem to recall that the minimum hardware requirements for the original release of Windows 95 as indicated on the box were for a 386DX with 4 MB, though a 486 and 8 MB were recommended. Regardless, you're probably right; Microsoft wouldn't care.
I'd rather pay an extra $200 and get the OTHER really small computer.
But the new Fruit Box is described as an eight-inch cube. Sixty-four cubic inches would produce a rather unsightly bulge when stuffed in your pocket, now, wouldn't it?
666: Windows Reboot Options 714: The Kernel Debugger and You The kernel debugger? But...wouldn't invoking a debugger on the Windows kernel be considered reverse engineering, and thus be a violation of Microsoft's intellectual property rights under the DMCA? We couldn't have that...
I've never seen Outlook for the Macintosh, but Outlook Express for MacOS is indeed pervasively AppleScriptable. Not only that, but if you receive a Macintosh executable as an attachment in Outlook Express, its presence is indicated by a blank document icon (rather the diamond that traditionally indicates an executable file type in MacOS), and the default behavior of Outlook Express on double-clicking the icon is to execute it. So it would be quite easy to make a compiled-as-application AppleScript named something innocuous like 'pricelist.txt'. Most users would probably just double-click the icon, expecting the attached 'text file' to open in SimpleText, and then, well, you get the point. In theory, of course...
A web server written in BASIC, in traditional BASIC spaghetti style.
It doesn't handle images, as the novelty of working in this so-called programming languge again for the first time in 12 years quickly wore off. I hope I haven't caused myself any permanent nerve damage.
If I recall correctly, the PS/2 series wasn't introduced until 1987 (including the i8086 models). They may be horribly outdated, but they certainly aren't, well...old.
Don't need a license clause for that. When you buy hardware from Apple, they throw in the MacOS for free. You shouldn't have too much trouble getting a $0 refund out of Apple for the unused software.
With the Microsoft Mouse 2.x, anyway, (the standard two-button variety) there were two different versions - the retail packaged version, which had a smooth white shell, and the OEM version (For Distribution With New Hardware Only) which had a textured grayish shell. The OEM mice are, in my experience, cheaply constructed and prone to failure. They're the same shape, but other than that, the mechanisms, the switches, the cable and connector, the internal construction, are all totally different.
It seems that on many (most?) PC motherboards, one side of the speaker connector is constantly at +5V relative to the chassis, not 0 as you might expect. I once managed to destroy a speaker by mis-connecting it across the +5 side of the speaker header and one of the ground pins for one of the LEDs, and leaving it that way for a while before realizing there wasn't any sound.
They do? God damn! What's another example?
Wouldn't it be more reasonable to suspect that any such crippling would have be done by Hitachi, specifically to avoid giving away their hold on the market for large fast digital camera media?
em-u-late 3. Computer Sci. To cause one system to accept the same data, execute the same programs, and achieve identical results as another system.
From Webster's II New College Dictionary
Is this definition incorrect? Does it somehow not apply to WINE? I don't see it.
I could swear that the WINE web site established that "Windows Emulator" and "Wine Is Not an Emulator" were both acceptable expansions, though it's been a few years. Perhaps things have changed since then.
I'm sure that your Win 95 machine running on a 386/20 with 8mb does not run very responsively. Obviously, a 386/20 with 8mb of RAM is below the sys requirements that MSFT released for Win 95
I seem to recall that the minimum hardware requirements for the original release of Windows 95 as indicated on the box were for a 386DX with 4 MB, though a 486 and 8 MB were recommended. Regardless, you're probably right; Microsoft wouldn't care.
So what if they no longer sell the thing? Chevrolett no longer sells 1957 Chevys, yet try walking up to one and just taking it.
Well, obviously you couldn't just go and take someone elses car. But how about making a copy of it? That is what we're talking about here, right?
Yeah, I know it was a troll, but I'm really bored.
I'd rather pay an extra $200 and get the OTHER really small computer.
But the new Fruit Box is described as an eight-inch cube. Sixty-four cubic inches would produce a rather unsightly bulge when stuffed in your pocket, now, wouldn't it?
666: Windows Reboot Options 714: The Kernel Debugger and You
The kernel debugger?
But...wouldn't invoking a debugger on the Windows kernel be considered reverse engineering, and thus be a violation of Microsoft's intellectual property rights under the DMCA? We couldn't have that...
I've never seen Outlook for the Macintosh, but Outlook Express for MacOS is indeed pervasively AppleScriptable. Not only that, but if you receive a Macintosh executable as an attachment in Outlook Express, its presence is indicated by a blank document icon (rather the diamond that traditionally indicates an executable file type in MacOS), and the default behavior of Outlook Express on double-clicking the icon is to execute it. So it would be quite easy to make a compiled-as-application AppleScript named something innocuous like 'pricelist.txt'. Most users would probably just double-click the icon, expecting the attached 'text file' to open in SimpleText, and then, well, you get the point. In theory, of course...
A web server written in BASIC, in traditional BASIC spaghetti style.
It doesn't handle images, as the novelty of working in this so-called programming languge again for the first time in 12 years quickly wore off. I hope I haven't caused myself any permanent nerve damage.
#!/usr/local/bin/basic
10 root$ = "/home/erb/html"
20 input "";REQ$
25 input "",h$
30 if left$(h$,1) <> chr$(0) then goto 25
40 contenttype$="text/html"
100 if left$(REQ$,3)="GET" then goto 200
120 response$="501 Method Not Implemented"
130 gosub 1000
140 gosub 1100
150 exit
200 file$=root$+field$(req$,2)
205 gosub 1200
210 on error goto 500
220 open file$ for input as #1
225 on error goto 0
230 response$="200 OK"
240 gosub 1000
250 html$=input #1
260 print html$
270 if not eof(1) then goto 250
280 close #1
290 exit
500 response$="404 File Not Found"
510 gosub 1000
520 gosub 1100
530 exit
1000 print "HTTP/1.0 ";response$
1010 print "Server: BASIC-HTTPD/0.0.1"
1020 print "Connection: close"
1030 print "Content-type: ";contenttype$
1040 print
1050 return
1100 print "<HTML>"
1110 print " <HEAD>"
1120 print " <TITLE>";response$;"</TITLE>"
1130 print " </HEAD>"
1140 print " <BODY>"
1150 print " <H1>";response$;"</H1>"
1160 print " </BODY>"
1170 print "</HTML>"
1180 return
1200 if right$(file$,1) = "/" then goto 1300
1240 return
1300 file$=file$+"index.html":return
1400 EXIT
If I recall correctly, the PS/2 series wasn't introduced until 1987 (including the i8086 models). They may be horribly outdated, but they certainly aren't, well...old.
Nah, in the computer industry, EVERYONE gets to call themselves an "engineer." Even the PHBs and Marketing Weasels. I swear it's true.
Don't need a license clause for that. When you buy hardware from Apple, they throw in the MacOS for free. You shouldn't have too much trouble getting a $0 refund out of Apple for the unused software.
With the Microsoft Mouse 2.x, anyway, (the standard two-button variety) there were two different versions - the retail packaged version, which had a smooth white shell, and the OEM version (For Distribution With New Hardware Only) which had a textured grayish shell. The OEM mice are, in my experience, cheaply constructed and prone to failure. They're the same shape, but other than that, the mechanisms, the switches, the cable and connector, the internal construction, are all totally different.
This has nothing to do with static.
It seems that on many (most?) PC motherboards, one side of the speaker connector is constantly at +5V relative to the chassis, not 0 as you might expect. I once managed to destroy a speaker by mis-connecting it across the +5 side of the speaker header and one of the ground pins for one of the LEDs, and leaving it that way for a while before realizing there wasn't any sound.
Ah, the sort of subtle humor that once characterized The Simpsons, but has long been missing...
:)
Did anyone else catch the label on Bender's beer bottle?
Gee, I wonder how long until MS invents a true pre-emptive multitasking, multi-user OS? The worls will just have to wait and see.
What, Windows Terminal Server doesn't count? It's multi-user, sort of.
This one?
Sure, they went out of their way to make it look more like MacOS 8, but its still largely the same.