Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cai /
admins /
vendor /
flot /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxr-x--x
API.md
53.78
KB
-rwxr-x--x
CONTRIBUTING.md
3.26
KB
-rwxr-x--x
FAQ.md
3.23
KB
-rwxr-x--x
LICENSE.txt
1.07
KB
-rwxr-x--x
Makefile
297
B
-rwxr-x--x
NEWS.md
40.35
KB
-rwxr-x--x
PLUGINS.md
4.38
KB
-rwxr-x--x
README.md
3.8
KB
-rwxr-x--x
excanvas.js
42.35
KB
-rwxr-x--x
excanvas.min.js
18.86
KB
-rwxr-x--x
jquery.colorhelpers.js
6.18
KB
-rwxr-x--x
jquery.colorhelpers.min.js
3.06
KB
-rwxr-x--x
jquery.flot.canvas.js
9.71
KB
-rwxr-x--x
jquery.flot.canvas.min.js
3.87
KB
-rwxr-x--x
jquery.flot.categories.js
6.08
KB
-rwxr-x--x
jquery.flot.categories.min.js
2.54
KB
-rwxr-x--x
jquery.flot.crosshair.js
5.46
KB
-rwxr-x--x
jquery.flot.crosshair.min.js
2.12
KB
-rwxr-x--x
jquery.flot.errorbars.js
12.66
KB
-rwxr-x--x
jquery.flot.errorbars.min.js
5.33
KB
-rwxr-x--x
jquery.flot.fillbetween.js
5.35
KB
-rwxr-x--x
jquery.flot.fillbetween.min.js
2.26
KB
-rwxr-x--x
jquery.flot.image.js
7.42
KB
-rwxr-x--x
jquery.flot.image.min.js
2.63
KB
-rwxr-x--x
jquery.flot.js
123.18
KB
-rwxr-x--x
jquery.flot.min.js
51.73
KB
-rwxr-x--x
jquery.flot.navigate.js
14.22
KB
-rwxr-x--x
jquery.flot.navigate.min.js
6.42
KB
-rwxr-x--x
jquery.flot.pie.js
24.05
KB
-rwxr-x--x
jquery.flot.pie.min.js
11.9
KB
-rwxr-x--x
jquery.flot.resize.js
3.29
KB
-rwxr-x--x
jquery.flot.resize.min.js
2.29
KB
-rwxr-x--x
jquery.flot.selection.js
13.18
KB
-rwxr-x--x
jquery.flot.selection.min.js
5.15
KB
-rwxr-x--x
jquery.flot.stack.js
7.11
KB
-rwxr-x--x
jquery.flot.stack.min.js
2.41
KB
-rwxr-x--x
jquery.flot.symbol.js
2.52
KB
-rwxr-x--x
jquery.flot.symbol.min.js
1.17
KB
-rwxr-x--x
jquery.flot.threshold.js
4.51
KB
-rwxr-x--x
jquery.flot.threshold.min.js
1.8
KB
-rwxr-x--x
jquery.flot.time.js
11.91
KB
-rwxr-x--x
jquery.flot.time.min.js
6.74
KB
-rwxr-x--x
jquery.js
269.07
KB
-rwxr-x--x
jquery.min.js
138.97
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.flot.symbol.js
/* Flot plugin that adds some extra symbols for plotting points. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The symbols are accessed as strings through the standard symbol options: series: { points: { symbol: "square" // or "diamond", "triangle", "cross" } } */ (function ($) { function processRawData(plot, series, datapoints) { // we normalize the area of each symbol so it is approximately the // same as a circle of the given radius var handlers = { square: function (ctx, x, y, radius, shadow) { // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2 var size = radius * Math.sqrt(Math.PI) / 2; ctx.rect(x - size, y - size, size + size, size + size); }, diamond: function (ctx, x, y, radius, shadow) { // pi * r^2 = 2s^2 => s = r * sqrt(pi/2) var size = radius * Math.sqrt(Math.PI / 2); ctx.moveTo(x - size, y); ctx.lineTo(x, y - size); ctx.lineTo(x + size, y); ctx.lineTo(x, y + size); ctx.lineTo(x - size, y); }, triangle: function (ctx, x, y, radius, shadow) { // pi * r^2 = 1/2 * s^2 * sin (pi / 3) => s = r * sqrt(2 * pi / sin(pi / 3)) var size = radius * Math.sqrt(2 * Math.PI / Math.sin(Math.PI / 3)); var height = size * Math.sin(Math.PI / 3); ctx.moveTo(x - size/2, y + height/2); ctx.lineTo(x + size/2, y + height/2); if (!shadow) { ctx.lineTo(x, y - height/2); ctx.lineTo(x - size/2, y + height/2); } }, cross: function (ctx, x, y, radius, shadow) { // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2 var size = radius * Math.sqrt(Math.PI) / 2; ctx.moveTo(x - size, y - size); ctx.lineTo(x + size, y + size); ctx.moveTo(x - size, y + size); ctx.lineTo(x + size, y - size); } }; var s = series.points.symbol; if (handlers[s]) series.points.symbol = handlers[s]; } function init(plot) { plot.hooks.processDatapoints.push(processRawData); } $.plot.plugins.push({ init: init, name: 'symbols', version: '1.0' }); })(jQuery);
Close