If there is a bug in the copyright holder's product that also occurs in the reverse engineered product, it is pretty much assumed de' facto that unless proven otherwise, you lifted code from the copyright holder's product.
How can you steal code from battle.net's binary? I didn't think it was available for download.
>I don't think that this is correct. A winmodem is mearly a sound device/sound card with a telco interface. The telephone companies have to make sure that you won't wreck havoc on their networks. Thats also a driver issue:/
But a bad driver will only send wrong signals, resluting in the modem not working. I don't see how this will cause any damage to the network?
> A unified driver won't work here since almost each DSP chip which is a WinModem is totally different from others - look at the HSF modems DSP chips (conexant) VS. Lucent WinModem DSP chips VS Cirrus Logic VS TI's DSP chip...
He doesn't want code that uses a DSP, he wants a DSP-less driver.
>Regardless of the coolness factor of this bounty, the fact still remain: A GPLed softmodem driver still requires certification by the telephone companies before any device is legally connected to the telephone network using the driver.
Device is the keyword here, and the device (winmodem) has already been certified. The software driving the device doesn't need certification.
The patent is about using chains, so if i use ropes instead will i be affected?
If there is a bug in the copyright holder's product that also occurs in the reverse engineered product, it is pretty much assumed de' facto that unless proven otherwise, you lifted code from the copyright holder's product.
How can you steal code from battle.net's binary? I didn't think it was available for download.
Could you explain how you got to that formula?
The easiest way to calculate the sum from 1 to 1000000 is ofcause (n+1) * n/2.
>I don't think that this is correct. A winmodem is mearly a sound device/sound card with a telco interface. The telephone companies have to make sure that you won't wreck havoc on their networks. Thats also a driver issue :/
But a bad driver will only send wrong signals, resluting in the modem not working. I don't see how this will cause any damage to the network?
> A unified driver won't work here since almost each DSP chip which is a WinModem is totally different from others - look at the HSF modems DSP chips (conexant) VS. Lucent WinModem DSP chips VS Cirrus Logic VS TI's DSP chip...
He doesn't want code that uses a DSP, he wants a DSP-less driver.
>Regardless of the coolness factor of this bounty, the fact still remain: A GPLed softmodem driver still requires certification by the telephone companies before any device is legally connected to the telephone network using the driver.
Device is the keyword here, and the device (winmodem) has already been certified. The software driving the device doesn't need certification.
> 2.5" slimline DVD-ROM
Isn't that a bit small for a DVD disc? Aren't they atleast > 4"?
I've mailed the xmms team 2-3 times even with patches for this bug.
/= 1000; /= 60;
/= 60;
The timer thinks 1 hour is 99 minutes, so after the timer passes 99:59 it says 1:00:00, but it should wrap after 59:59.
Here is the fix
--- main.c~ Mon Jan 24 20:11:01 2000
+++ main.c Fri Jan 28 15:19:29 2000
@@ -2640,7 +2640,7 @@
stime_prefix = ' ';
}
t
- if (t > 99 * 60)
+ if (t > 60 * 60)
t
number_set_number(mainwin_10min_num, t / 600);
number_set_number(mainwin_min_num, (t / 60) % 10);
--- playlistwin.c~ Mon Jan 24 20:11:02 2000
+++ playlistwin.c Fri Jan 28 15:20:01 2000
@@ -1545,7 +1545,7 @@
if (time 99 * 60)
+ if (time > 60 * 60)
time
text = g_strdup_printf("%c%-2.2d", sign, time / 60);
If anyone out there is feeling generous, give me one of theese monsters :)
/Puppe