This is a markdown text
This is also markdown text
| function doRectanglesIntersert(r1_x0, r1_y0, r1_x1, r1_y1, r2_x0, r2_y0, r2_x1, r2_y1) { | |
| // magic | |
| } | |
| function pointInRectangle(x0, y0, x1, y1, qx, qy) { | |
| // magic | |
| } | |
| function pointInCircle(cx, cy, radius, qx, qy) { | |
| // magic |
| Application Basics | |
| ------------------ | |
| Name: Pale Moon | |
| Version: 26.0.3 | |
| User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.9) Gecko/20100101 Goanna/2.0 Firefox/38.9 PaleMoon/26.0.3 | |
| Extensions | |
| ---------- |
| "[{"name":"Portfolio", | |
| "prices":[ | |
| { | |
| "end":"2016-01-03T05:00:00.000Z", | |
| "open":0.9475496789539849, | |
| "close":0.9475496789539849, | |
| "index":1 | |
| }, | |
| { | |
| "end":"2016-01-04T05:00:00.000Z", |
| <html> | |
| <head> | |
| <script src="media/js/jquery.js" type="text/javascript"></script> | |
| <script src="media/js/jquery.dataTables.js" type="text/javascript"></script> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $('#awesome').dataTable({ | |
| bPaginate: false | |
| , bSort: false | |
| , bAutoWidth: true |
| _.mixin({ | |
| // Polls condition indefinitely every N milliseconds and executes | |
| // a function once the condition has passed. | |
| retry: function(func, cond, wait) { | |
| var args = slice.call(arguments, 3); | |
| if (cond()) { | |
| func.apply(this, args); | |
| } else { | |
| _.delay.apply(this, [_.retry, wait, func, cond, wait].concat(args)); | |
| } |