and how often will bind work? DNS servers cache site, so there is moon.com and noon.com, noon.com falls off for a day or something and now all noon.com requests go to moon.com, noon.com comes back online, how long will the noon.com requests keep going to moon.com? HRM, cnn.com is popular, some crazy haxors get cnnn.com, and DDOS cnn.com and everything on its network out of this world, requests for cnn.com now start going to cnnn.com.
I don't think the solution should be in bind. If I do a telnet host123 to see if it exists, I don't want to connect to host231 cuz bind thought that's what i wanted.
RTFA, It is not Emulation, it is Translation. With Emulation you need an Emulator program on the target machine. With translation, the rom is converted to an executable that can be executed independent of any program on the target machine.
Not to put down your post, but that article is dated 2000 when the Tzero did 0 to 60 in 4.1 seconds, it now does it in 3.7, and let me tell you, that is mighty impressive to drop.4 seconds in 0-60, that must be at least 1 second drop in the quarter mile, so I am sure the horsepower has increased by 50-75... they never mentioned that in the old article, I wonder if they new article mentions any horsepower dynos.
it's not fast because of the language but according to his description of the program the ability to load all the hashes in memory and compare. even that will be very fast in basic.:D
comparing object code will not work if one line of code is there as the check sum will be different. a lot of codes don't port directly, so when stolen perhaps a few lines are added or deleted. if i was the author of this tool (note, i have no idea how it works besides checksums) i will look at the logic of code.
for example, if statement will the value 1 variables have 2 logical operators will have their own numbers say, && = 4 comparasion operators will have their etc... == = 6 ~ = 7 ( = 8 numbers = 9 & = 10
this code if (a && b) & ~0xf000 will yeild 1,8,2,4,8,10,9
now we can pass those numbers to f()our result will be Z, Z defines the logic for that code the next logic we can call Z1, Z2... Zn
now if the offending code has if (foobar && feh) & ~0xffff it will likewise yield 1,8,2,4,8,10,9 we get Y, and the next line Y1, Y2... Yn We can now then compare logics and compare how often they match. So if Z0 matches Y3, we check if Z1 matches Y4 and if Z2 matches Y5
by using this technique we can find logics that match, even if someone inserts 5 lines without our code, we do not have to worry about the checksums not matching or matching object codes.
basically we are matching by logic and if we notice 20 consecutive matching logics or whatever the threshold we set, we can yeild a positive result.
I just made this algorithm on the spot, perhaps someone has already done it, perhaps note.:D the beauty of this is that we can even use this algorithm to compare DIFFERENT languages, for example, C code that has been ported to Java or Python.
Wooops, it's now left for someone to implement and attempt to patent it, then profit!:D
next time peeps rip off codes, they litter every other line with dummy lines, n = n; n = n * 1 n = n + 0 and bam his tool fails.
Re:Slashdot should stop testing during the day
on
One DVD To Rule Them All
·
· Score: 1, Flamebait
As usual, I am not surprised that the above comment was modded down, We now pay for slashdot and the least we can demand is quality service. Therefore slashdot should stop testing during the day and if possible use offline database.
perhaps the slashdot crowd needs to learn to read or perhaps I need to learn to read. Our we seriously misreading the agreement? I still don't see them claiming that all submitted papers are now owned by them. "All contens of this web site are coprrighted... and or ITS SUPPLIERS" sounds more like their own content or copyrighted by whoever supplied it!
it take skills to copy, and sometimes copying is the way to go. look at the japanese, they didn't come up with ideas when electronics where out, they copied ideas, perfected it and that's how they are leading. perhaps this is what will work for us.
You are required to register on Slashdot to post, so what's wrong with registering on Newyork times to read? If you guys cannot register to read a free article, tell me how you can pay for quality content! Shame, Shame, Shame!!!
If you have studied history, you should know that the Japanese are good at borrowing and making better. It doesn't matter if this was first started by an American, what matters is who will be the first to market, perfect it and bring it to the market.
the turbografx made the list, yet the SNES and the gameboy didn't? hello? the gameboy has been the hottest selling console and i still see myself playing one in 10 years. i thought the jaguar was 64bit? it got listed as 32! and the psx which is 32 got listed as 64.
4500 pcs, 550 serverS?
how many computers were used in the 70's and 80's, why is it just getting more complex?
in 2020 they will need, 50,000 computers despite the fact that computer of those areas will be 100x faster and with more storage device.
nah, it's not a good idea.
% ping www.cnnn.com
PING www.cnn.com (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: icmp_seq=0 ttl=240 time=5.6ms
64 bytes from 127.0.0.1: icmp_seq=1 ttl=240 time=5.6ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=240 time=5.6ms
If I ping www.cnnn.com, I want to get the appropriate ping response.
and how often will bind work? DNS servers cache site, so there is moon.com and noon.com, noon.com falls off for a day or something and now all noon.com requests go to moon.com, noon.com comes back online, how long will the noon.com requests keep going to moon.com? HRM, cnn.com is popular, some crazy haxors get cnnn.com, and DDOS cnn.com and everything on its network out of this world, requests for cnn.com now start going to cnnn.com.
I don't think the solution should be in bind. If I do a telnet host123 to see if it exists, I don't want to connect to host231 cuz bind thought that's what i wanted.
RTFA, It is not Emulation, it is Translation. With Emulation you need an Emulator program on the target machine. With translation, the rom is converted to an executable that can be executed independent of any program on the target machine.
Not to put down your post, but that article is dated 2000 when the Tzero did 0 to 60 in 4.1 seconds, it now does it in 3.7, and let me tell you, that is mighty impressive to drop .4 seconds in 0-60, that must be at least 1 second drop in the quarter mile, so I am sure the horsepower has increased by 50-75... they never mentioned that in the old article, I wonder if they new article mentions any horsepower dynos.
it's not fast because of the language but according to his description of the program the ability to load all the hashes in memory and compare. even that will be very fast in basic. :D
his algorithm is really cheap...
... Zn
... Yn
:D the beauty of this is that we can even use this algorithm to compare DIFFERENT languages, for example, C code that has been ported to Java or Python.
:D
comparing object code will not work if one line of code is there as the check sum will be different.
a lot of codes don't port directly, so when stolen perhaps a few lines are added or deleted. if i was the author of this tool (note, i have no idea how it works besides checksums) i will look at the logic of code.
for example,
if statement will the value 1
variables have 2
logical operators will have their own numbers
say, && = 4
comparasion operators will have their etc...
== = 6
~ = 7
( = 8
numbers = 9
& = 10
this code
if (a && b) & ~0xf000 will yeild
1,8,2,4,8,10,9
now we can pass those numbers to f()our result will be Z, Z defines the logic for that code
the next logic we can call Z1, Z2
now if the offending code has
if (foobar && feh) & ~0xffff it will likewise yield
1,8,2,4,8,10,9
we get Y, and the next line Y1, Y2
We can now then compare logics and compare how often they match.
So if Z0 matches Y3, we check
if Z1 matches Y4
and if Z2 matches Y5
by using this technique we can find logics that match, even if someone inserts 5 lines without our code, we do not have to worry about the checksums not matching or matching object codes.
basically we are matching by logic and if we notice 20 consecutive matching logics or whatever the threshold we set, we can yeild a positive result.
I just made this algorithm on the spot, perhaps someone has already done it, perhaps note.
Wooops, it's now left for someone to implement and attempt to patent it, then profit!
next time peeps rip off codes, they litter every other line with dummy lines, n = n;
n = n * 1
n = n + 0
and bam his tool fails.
As usual, I am not surprised that the above comment was modded down, We now pay for slashdot and the least we can demand is quality service. Therefore slashdot should stop testing during the day and if possible use offline database.
Slashdot should stop testing during the day, or learn to test on offline database. :
In theory everything is possible, until someone demonstrates that possiblity in reality. OpenBSD is still right with her claim.
perhaps the slashdot crowd needs to learn to read or perhaps I need to learn to read. Our we seriously misreading the agreement? I still don't see them claiming that all submitted papers are now owned by them. "All contens of this web site are coprrighted ... and or ITS SUPPLIERS" sounds more like their own content or copyrighted by whoever supplied it!
It would help if someone can find the line/paragraph in question and post it. I can't. Anyway, I will never GPL my paper to protect it.
With all this metered crap, if I mirror some section so I don't use up my meter, is that legal? What if I let me friends see it?
it take skills to copy, and sometimes copying is the way to go. look at the japanese, they didn't come up with ideas when electronics where out, they copied ideas, perfected it and that's how they are leading. perhaps this is what will work for us.
SHAME SHAME SHAME.
You are required to register on Slashdot to post, so what's wrong with registering on Newyork times to read? If you guys cannot register to read a free article, tell me how you can pay for quality content! Shame, Shame, Shame!!!
you are stupid, most people would fall for that since they believe their credit card is protected and they can contest the charges.
We can always build alternatives, and that's what will keep happening.
In this tough times? I am quite happy to have a job, liking it is optional.
thanks a lot for telling them. i have a decstation 240, and have been running netbsd on it for 3 years now, i don't see why this is news.
Uh oh!
If you have studied history, you should know that the Japanese are good at borrowing and making better. It doesn't matter if this was first started by an American, what matters is who will be the first to market, perfect it and bring it to the market.
i got a free idsl line dropped, and 2 idsl modems, never paid for them too. no connection tho. ;(
the turbografx made the list, yet the SNES and the gameboy didn't? hello? the gameboy has been the hottest selling console and i still see myself playing one in 10 years. i thought the jaguar was 64bit? it got listed as 32! and the psx which is 32 got listed as 64.
4500 pcs, 550 serverS?
how many computers were used in the 70's and 80's, why is it just getting more complex?
in 2020 they will need, 50,000 computers despite the fact that computer of those areas will be 100x faster and with more storage device.
and when you go, who are they going to call? your mother?