Okay here is what it says read the second last paragraph
JSON_LICENSE wrote:
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The lines of juice has been bolded and colored in red.. for ease of visibility ...
source page that contains it
Aint that Cute :3 ??
Last edited by fanofcena (2011-08-11 07:38:30)
Offline
fanofcena wrote:
Okay here is what it says read the second last like
JSON_LICENSE wrote:
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.The lines of juice has been bolded and colored in red.. for ease of visibility ...
[url = http://www.json.org/license.html] source page that contains it[/url]
Aint that Cute :3 ??
LOL, cutenezz.
BTW, not [red][/red], it's [color=red][/color]!
Last edited by 777w (2011-08-11 07:38:38)
Offline
777w wrote:
fanofcena wrote:
Okay here is what it says read the second last like
JSON_LICENSE wrote:
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.The lines of juice has been bolded and colored in red.. for ease of visibility ...
[url = http://www.json.org/license.html] source page that contains it[/url]
Aint that Cute :3 ??LOL, cutenezz.
BTW, not [red][/red], it's [color=red][/color]!
Indeed
Offline
I'll download and use for Evil. *wicked grin* JK XD
Last edited by scimonster (2011-08-11 08:12:38)
Offline
Scratch should add that to theirs XD That's so funny!

Offline
lilacfuzz101 wrote:
Scratch should add that to theirs XD That's so funny!
its actually a modification of scratches license.
@Scimonster... JSON is a data transfer format ... so yeah you can use it for evil purposes xD
Offline
fanofcena wrote:
Okay here is what it says read the second last paragraph
JSON_LICENSE wrote:
Copyright (c) 2002 JSON.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.The lines of juice has been bolded and colored in red.. for ease of visibility ...
source page that contains it
Aint that Cute :3 ??
It means that you will NOT transfer malicious or otherwise unwanted files to someone else's computer.
(I did not read that from somewhere, I am a computer nerd so that was actually what I thought at the moment.)
Offline
Scratchthatguys wrote:
It means that you will NOT transfer malicious or otherwise unwanted files to someone else's computer.
(I did not read that from somewhere, I am a computer nerd so that was actually what I thought at the moment.)
zOmg let me explain json now to you guys..
Let me first explan objects though.
In higher (actually lower level ) programming languages you can describe classes which are basically a user defined data type with some functions . Now every variable of the type of class you define is known as an object. JSON or JAVA SCRIPT OBJECT NOTATION is a transport method that allows you to transport an object from 1 computer to other without losing the data over internet or any other kind of network , you guys might think why use json when we can simply put value etc. but when you write code with a lower level language and use WebSocket like API for lower level and faster data transfer there is a loss of data.
say u sent a packet from a 64 bit computer to a 32 bit . then the data when reacing on the 32 bit processor might get curropted . (thats not good!!!!).. Or say on 1 computer the software sends data from JavaSCRIPT and it gets recieved into C++ which accidently converts it to something WRONG! ( javascript has no data type c++ relies on data types) .. so here comes JSON its very lightweight and most used framework that ensures that data is transferred in the form it is via using utf8 or ASCII ( as character set ) and runs very very fast because its nearly RAW getting transferred with data security.
Sources ::
My own experiences while writing a pure C++ based socket api from the beginning (even the socket api via using buffers etc. )
A huge amount of data shared on internet about programming with JSON
Offline